diff --git a/IOT/10019_ws63_smart_transport/README.md b/IOT/10019_ws63_smart_transport/README.md new file mode 100644 index 0000000000000000000000000000000000000000..9e96e9f00ad5450da6d517ca18b952d69c2e1cdd --- /dev/null +++ b/IOT/10019_ws63_smart_transport/README.md @@ -0,0 +1,37 @@ +智能果蔬运输保鲜监测系统 README.md +项目简介 +本项目基于 WS63 主控芯片开发,面向农户果蔬田间装车、长途冷链运输场景,实现果蔬运输全程感知、自动调控、云端远程监控一体化闭环管理,有效降低果蔬采后失水、挤压、磕碰损耗。 +系统集成温湿度采集、自动加湿、风扇通风、气垫充气泵、车载照明灯、震动检测、GPS 定位、声光报警、太阳能锂电供电模块;本地 LCD 触摸屏人机交互,搭配微信小程序远程 MQTT 云端控制,支持自动 / 手动双模式自由切换,适配小农户、农产品集散运输低成本部署需求。 +核心功能 +1. 环境感知与闭环调控 +SHT20 传感器实时采集车厢温湿度,WS63 芯片逻辑运算; +温湿度超标自动驱动风扇通风、雾化加湿,抑制果蔬呼吸、延缓萎蔫失水; +独立两路驱动电路分别控制风扇、加湿器,可单独启停,支持本地手动开关干预。 +2. 货物防护硬件模块 +充气泵:装车后自动填充缓冲气垫,替代人工捆扎,避免果蔬挤压损伤; +车载照明 LED:适配凌晨田间暗光装车作业; +震动检测模块:运输颠簸异常触发蜂鸣器报警,提醒司机减速,震动事件同步上传云端留痕溯源。 +3. 定位与云端远程管理 +EC800M 通信模块 + GPS 定位,实时上传车辆运输位置; +WiFi+MQTT 协议对接云端,微信小程序远程查看温湿度、设备状态; +远程开关风扇、加湿、照明、充气泵,本地触摸屏同步实时显示数据。 +4. 供电与低功耗设计 +太阳能 + 锂电池双路协同供电,整机低功耗控制,满足户外长时间无外接电源自维持运行。 +5. 交互模式 +本地:LCD 触摸屏可视化界面、实体按键手动控制; +远程:微信小程序云端操作; +双模式可一键切换,兼顾全自动智能运行与人工灵活干预。 +软件架构 +2026_embedded_competition +├── smart_transport_demo.c # 主程序入口,系统总逻辑调度 +└── bsp/ # 底层硬件驱动层 + ├── hal_bsp_sht20.c # SHT20温湿度传感器驱动 + ├── hal_bsp_ec800m.c # EC800M通信+GPS定位驱动 + ├── fan.c + ├── wet.c + ├── led.c + ├── mqtt.c # MQTT云端通信协议封装 + ├── wifi_connect.c # WiFi联网驱动 + ├── button_initial.c # 实体按键初始化与处理 + ├── ui.c # LCD触摸屏界面绘制、交互逻辑 + └── text.c # 屏幕文字显示工具函数 \ No newline at end of file diff --git a/IOT/10019_ws63_smart_transport/code/CMakeLists.txt b/IOT/10019_ws63_smart_transport/code/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4bf984d9b66882c3a7660179b26f55c7ada41e8 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/CMakeLists.txt @@ -0,0 +1,19 @@ +set(SOURCES_LIST + ${CMAKE_CURRENT_SOURCE_DIR}/smart_transport_demo.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/hal_bsp_sht20.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/text.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/button_initial.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/fan.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/mqtt.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/wifi_connect.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/ui.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/led.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/wet.c + ${CMAKE_CURRENT_SOURCE_DIR}/bsp/hal_bsp_ec800m.c +) +set(HEADER_LIST + ${CMAKE_CURRENT_SOURCE_DIR}/bsp +) + +set(SOURCES "${SOURCES}" ${SOURCES_LIST} PARENT_SCOPE) +set(PUBLIC_HEADER "${PUBLIC_HEADER}" ${HEADER_LIST} PARENT_SCOPE) \ No newline at end of file diff --git a/IOT/10019_ws63_smart_transport/code/bsp/button_initial.c b/IOT/10019_ws63_smart_transport/code/bsp/button_initial.c new file mode 100644 index 0000000000000000000000000000000000000000..8f971b02392d90e0f8060e7a496a41d644032fba --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/button_initial.c @@ -0,0 +1,88 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "../../LVGL/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_BUTTON_INITIAL +#define LV_ATTRIBUTE_IMG_BUTTON_INITIAL +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_BUTTON_INITIAL uint8_t button_initial_map[] = { + 0x00, 0x00, 0x00, 0x00, /*Color of index 0*/ + 0xff, 0xff, 0xff, 0x01, /*Color of index 1*/ + 0x90, 0x90, 0x90, 0x08, /*Color of index 2*/ + 0x9a, 0x9a, 0x9a, 0x0c, /*Color of index 3*/ + 0x90, 0x90, 0x90, 0x18, /*Color of index 4*/ + 0x90, 0x90, 0x90, 0x24, /*Color of index 5*/ + 0x91, 0x90, 0x8f, 0x39, /*Color of index 6*/ + 0x9f, 0x59, 0x40, 0x28, /*Color of index 7*/ + 0xa6, 0x49, 0x27, 0x82, /*Color of index 8*/ + 0xa9, 0x3f, 0x19, 0xd3, /*Color of index 9*/ + 0xa4, 0x3a, 0x13, 0xfe, /*Color of index 10*/ + 0x96, 0x34, 0x10, 0xff, /*Color of index 11*/ + 0x87, 0x2e, 0x0d, 0xff, /*Color of index 12*/ + 0x7c, 0x29, 0x0b, 0xff, /*Color of index 13*/ + 0x74, 0x26, 0x0a, 0xff, /*Color of index 14*/ + 0x80, 0x7f, 0x7f, 0x03, /*Color of index 15*/ + + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf1, 0x11, 0x00, 0x00, 0x00, + 0x00, 0x01, 0x1f, 0x3f, 0x3f, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0xf3, 0xf3, 0xf1, 0x10, 0x00, + 0x00, 0x1f, 0x33, 0x22, 0x22, 0x32, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x33, 0x32, 0x32, 0x22, 0x33, 0xf1, 0x00, + 0x01, 0xff, 0xf2, 0xf8, 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0x8f, 0x2f, 0xff, 0x10, + 0x1f, 0xf2, 0x27, 0x9a, 0xaa, 0xaa, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xaa, 0xaa, 0xa9, 0x72, 0x2f, 0xf1, + 0x13, 0xf4, 0xf9, 0xaa, 0xaa, 0xbb, 0xbb, 0xbb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xcb, 0xbb, 0xbb, 0xbb, 0xaa, 0xaa, 0x9f, 0x2f, 0x31, + 0xf3, 0x23, 0x8a, 0xaa, 0xbb, 0xbb, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcb, 0xcb, 0xbb, 0xaa, 0xa8, 0x32, 0x3f, + 0x32, 0x24, 0x9a, 0xab, 0xbb, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xbb, 0xba, 0xa9, 0x4f, 0x33, + 0xf2, 0x44, 0xaa, 0xab, 0xbc, 0xcc, 0xdc, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xdc, 0xcb, 0xba, 0xaa, 0x44, 0x2f, + 0x32, 0x44, 0xaa, 0xbb, 0xcc, 0xcd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdc, 0xcc, 0xbb, 0xaa, 0x44, 0x23, + 0xf3, 0x45, 0xaa, 0xbb, 0xcc, 0xdd, 0xdd, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xdd, 0xdd, 0xcc, 0xbb, 0xaa, 0x54, 0x2f, + 0x22, 0x45, 0xab, 0xbc, 0xcd, 0xdd, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xdd, 0xdc, 0xcb, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xbc, 0xcd, 0xdd, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xdd, 0xcc, 0xcb, 0xba, 0x54, 0x22, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xdc, 0xcb, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xcb, 0xdc, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xdd, 0xdc, 0xcb, 0xba, 0x54, 0x32, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xcd, 0xbc, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xdc, 0xcb, 0xba, 0x54, 0x32, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xdc, 0xcb, 0xba, 0x54, 0x32, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xdc, 0xcb, 0xba, 0x54, 0x32, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xcd, 0xbc, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xbc, 0xcd, 0xde, 0xde, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xdd, 0xdc, 0xcb, 0xba, 0x54, 0x32, + 0x23, 0x45, 0xab, 0xbc, 0xcd, 0xdd, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xdc, 0xcb, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xbc, 0xcd, 0xdd, 0xed, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xed, 0xdd, 0xcc, 0xcb, 0xba, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xbb, 0xcc, 0xdd, 0xed, 0xed, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xde, 0xde, 0xdd, 0xcc, 0xbb, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xbb, 0xcc, 0xcd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xcd, 0xcc, 0xbb, 0xaa, 0x54, 0x32, + 0x23, 0x45, 0xaa, 0xab, 0xbc, 0xcd, 0xcd, 0xcd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xdd, 0xcd, 0xcc, 0xcb, 0xba, 0xaa, 0x54, 0x22, + 0x22, 0x45, 0x9a, 0xab, 0xbb, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xbb, 0xba, 0xa9, 0x54, 0x32, + 0xf3, 0x45, 0x8a, 0xaa, 0xbb, 0xbc, 0xbc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xcc, 0xbb, 0xbb, 0xaa, 0xa8, 0x44, 0x2f, + 0x32, 0x44, 0x69, 0xaa, 0xaa, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xaa, 0xaa, 0x96, 0x44, 0x23, + 0xf2, 0x24, 0x56, 0x9a, 0xaa, 0xaa, 0xab, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xbb, 0xab, 0xaa, 0xaa, 0xa9, 0x65, 0x42, 0x2f, + 0x33, 0xf4, 0x46, 0x68, 0x9a, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xa9, 0x86, 0x55, 0x42, 0x23, + 0xf3, 0x23, 0x44, 0x56, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x65, 0x54, 0x32, 0x3f, + 0x13, 0xf2, 0x44, 0x55, 0x56, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, 0x55, 0x54, 0x43, 0x2f, 0x31, + 0x1f, 0xf2, 0x23, 0x44, 0x54, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x55, 0x44, 0x32, 0x2f, 0xf1, + 0x01, 0xff, 0xf2, 0x24, 0x24, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x44, 0x43, 0x42, 0x2f, 0xff, 0x10, +}; + +const lv_img_dsc_t button_initial = { + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 84, + .header.h = 36, + .data_size = 1576, + .data = button_initial_map, +}; diff --git a/IOT/10019_ws63_smart_transport/code/bsp/fan.c b/IOT/10019_ws63_smart_transport/code/bsp/fan.c new file mode 100644 index 0000000000000000000000000000000000000000..98845c9683d2f55afcfd16c9e0669303e642cdfc --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/fan.c @@ -0,0 +1,226 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_FAN +#define LV_ATTRIBUTE_IMG_FAN +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_FAN uint8_t fan_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xc0, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0x40, 0xff, 0xa0, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0x6f, 0xff, 0xbf, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xef, 0xff, 0xbf, 0xff, 0x6f, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xbf, 0xff, 0xe0, 0xff, 0x90, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0x80, 0xff, 0xd0, 0xff, 0xbf, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0x9f, 0xff, 0xe0, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xd0, 0xff, 0xbf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xcf, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xcf, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xef, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xe0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xcf, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xdf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0x9f, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xaf, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xd0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xbf, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xef, 0xff, 0xf0, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xe0, 0xff, 0x60, 0xff, 0x20, 0x00, 0x00, 0xff, 0x60, 0xff, 0xe0, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0x70, 0xff, 0x50, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xe0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xe0, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0xff, 0xd0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xef, 0xff, 0x10, 0x00, 0x00, 0xff, 0xa0, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xd0, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0x7f, 0xff, 0xbf, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0x8f, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0x80, 0xff, 0x6f, 0xff, 0xdf, 0xff, 0xd0, 0xff, 0x80, 0xff, 0x40, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xb0, 0xff, 0xbf, 0xff, 0x20, 0xff, 0x90, 0xff, 0xef, 0xff, 0xa0, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0x7f, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xa0, 0xff, 0xef, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xf0, 0xff, 0x90, 0xff, 0x60, 0xff, 0xf0, 0xff, 0xcf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0x40, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xc0, 0xff, 0x60, 0xff, 0xcf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xc0, 0x00, 0x00, 0xff, 0x90, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0x90, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xdf, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xcf, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xd0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xe0, 0xff, 0xbf, 0xff, 0xcf, 0xff, 0xd0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xe0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0xff, 0xd0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0x90, 0xff, 0xdf, 0xff, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xdf, 0xff, 0xa0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xc0, 0xff, 0xdf, 0xff, 0x8f, 0xff, 0x3f, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x3f, 0xff, 0x8f, 0xff, 0xdf, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0x70, 0xff, 0xb0, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xc0, 0xff, 0x70, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xbf, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x3f, 0xff, 0x9f, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x7f, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xa0, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0x6f, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x6f, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0x90, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0x9f, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xbf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x3d, 0xef, 0xcf, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xe0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xdf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x3d, 0xef, 0x9f, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xaf, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xe0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xd0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xef, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0x7f, 0x5d, 0xef, 0xbf, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x6f, 0x5d, 0xef, 0xdf, 0x3d, 0xef, 0xd0, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x40, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0x90, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x7f, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xa0, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xf0, 0x3d, 0xef, 0xcf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x60, 0x3d, 0xef, 0xcf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xcf, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x3d, 0xef, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x3d, 0xef, 0xd0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xbf, 0x3d, 0xef, 0xcf, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xe0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x7f, 0x3d, 0xef, 0xd0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xa0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0x8f, 0x5d, 0xef, 0x3f, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x8f, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xb0, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x5d, 0xef, 0x3f, 0x3d, 0xef, 0x9f, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x7f, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xa0, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0x6f, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x6f, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0x90, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0x9f, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xbf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x3d, 0xcf, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xe0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xdf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x3d, 0x9f, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xaf, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xe0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xd0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xef, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0x7f, 0xef, 0x5d, 0xbf, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x6f, 0xef, 0x5d, 0xdf, 0xef, 0x3d, 0xd0, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x40, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0x90, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x7f, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xa0, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xf0, 0xef, 0x3d, 0xcf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x60, 0xef, 0x3d, 0xcf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xcf, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x3d, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x3d, 0xd0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xbf, 0xef, 0x3d, 0xcf, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xe0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x7f, 0xef, 0x3d, 0xd0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xa0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0x8f, 0xef, 0x5d, 0x3f, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x8f, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xb0, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x5d, 0x3f, 0xef, 0x3d, 0x9f, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x7f, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xa0, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0x6f, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0x6f, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0x90, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0x9f, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xbf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe5, 0xe5, 0xe5, 0xcf, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe5, 0xe5, 0xe5, 0xef, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xe0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xcf, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xdf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe5, 0xe5, 0xe5, 0x9f, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xaf, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xf0, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xe0, 0xe7, 0xe7, 0xe7, 0x60, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xe0, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xe0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xe0, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xd0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xef, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xcf, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe7, 0xe7, 0xe7, 0x7f, 0xe6, 0xe6, 0xe6, 0xbf, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x6f, 0xe6, 0xe6, 0xe6, 0xdf, 0xe5, 0xe5, 0xe5, 0xd0, 0xe5, 0xe5, 0xe5, 0x80, 0xe7, 0xe7, 0xe7, 0x40, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0x90, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xa0, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x7f, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xa0, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0x90, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xf0, 0xe5, 0xe5, 0xe5, 0xcf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x60, 0xe5, 0xe5, 0xe5, 0xcf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xcf, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xdf, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xdf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xcf, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe5, 0xe5, 0xe5, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe5, 0xe5, 0xe5, 0xcf, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe5, 0xe5, 0xe5, 0xd0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xbf, 0xe5, 0xe5, 0xe5, 0xcf, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xe0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x7f, 0xe5, 0xe5, 0xe5, 0xd0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xdf, 0xe7, 0xe7, 0xe7, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xa0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0x8f, 0xe7, 0xe7, 0xe7, 0x3f, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x3f, 0xe6, 0xe6, 0xe6, 0x8f, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xb0, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0x70, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe5, 0xe5, 0xe5, 0x9f, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +}; + +const lv_img_dsc_t fan = { + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 45, + .header.h = 45, + .data_size = 2025 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .data = fan_map, +}; diff --git a/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_ec800m.c b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_ec800m.c new file mode 100644 index 0000000000000000000000000000000000000000..6ebfe998d1a3f8fc1ee1969acc48e0a0d1340468 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_ec800m.c @@ -0,0 +1,101 @@ +#include "hal_bsp_ec800m.h" +#include "../lvgl_greenhouse_demo.h" + +char ec800m_sendbuff[255] = {0}; + +int at_num = 0; +tsATCmds ATCmds[] = { + {"ATE0\r\n", "OK"}, + {"AT+QGPSCFG=\"outport\",\"uartdebug\"\r\n", "OK"}, + {"AT+QGPSCFG=\"nmeasrc\",1\r\n", "OK"}, + {"AT+QGPSCFG=\"gpsnmeatype\",63\r\n", "OK"}, + {"AT+QGPSCFG=\"gnssconfig\",0\r\n", "OK"}, + {"AT+QGPSCFG=\"autogps\",0\r\n", "OK"}, + {"AT+QGPSCFG=\"apflash\",0\r\n", "OK"}, + {"AT+QGPS=1\r\n", "OK"}, + {"AT+CSQ\r\n", "OK"}, + {"AT+CPIN?\r\n", "OK"}, + {"AT+CREG?\r\n", "OK"}, + {"AT+CGATT?\r\n", "OK"}, + {"AT+QMTOPEN=0,\"%s\",1883\r\n", "OK"}, + {"AT+QMTCONN=0,\"%s\",\"%s\",\"%s\"\r\n", "OK"}, + {"AT+QMTPUB=0,0,0,0,\"$oc/devices/%s/sys/properties/report\"\r\n", ">"}, // 14 + {"{\"services\":[{\"service_id\":\"attribute\",\"properties\":{\"temperature\":%d,\"humidity\":%d," + "\"voltage\":%.1f,\"car\":\"%s\",\"Latitude\":\"%s\",\"Longitude\":\"%s\"}}]}", + "OK"}, + {"\x1A\0", "OK"}, + {"AT+QGPSLOC=0\r\n", "OK"}, + {"AT+QMTDISC=0\r\n", "OK"}, +}; +void ec800_pwr_init(void) +{ + osal_mdelay(1000); + uapi_pin_set_mode(EC_PWR, HAL_PIO_FUNC_GPIO); + uapi_gpio_set_dir(EC_PWR, GPIO_DIRECTION_OUTPUT); + uapi_gpio_set_val(EC_PWR, GPIO_LEVEL_LOW); + + uapi_gpio_set_val(EC_PWR, GPIO_LEVEL_HIGH); + osal_mdelay(3000); + uapi_gpio_set_val(EC_PWR, GPIO_LEVEL_LOW); +} +// ec800连接云平台初始化 +void ec800_send_init(void) +{ + while (at_num < 14) { + + if (at_num == 12) { + memset(ec800m_sendbuff, 0, sizeof(ec800m_sendbuff)); + if (sprintf(ec800m_sendbuff, ATCmds[12].ATSendStr, HUWWEIYUN_MQTT_IP) > 0) + uart_send_buff((uint8_t *)ec800m_sendbuff, strlen(ec800m_sendbuff)); + } else if (at_num == 13) { + memset(ec800m_sendbuff, 0, sizeof(ec800m_sendbuff)); + if (sprintf(ec800m_sendbuff, ATCmds[13].ATSendStr, MQTT_CLIENT_ID, MQTT_USER_NAME, MQTT_PASS_WORD) > 0) + uart_send_buff((uint8_t *)ec800m_sendbuff, strlen(ec800m_sendbuff)); + } else { + memset(ec800m_sendbuff, 0, sizeof(ec800m_sendbuff)); + if (sprintf(ec800m_sendbuff, ATCmds[at_num].ATSendStr) > 0) + uart_send_buff((uint8_t *)ATCmds[at_num].ATSendStr, strlen(ATCmds[at_num].ATSendStr)); + } + + memset(uart2_recv.recv, 0, sizeof(uart2_recv.recv)); + if (uapi_uart_read(UART_ID, uart2_recv.recv, UART_RECV_SIZE, 0)) { + printf("[AT RECV %s]\n", uart2_recv.recv); + if (strstr((char *)uart2_recv.recv, ATCmds[at_num].ATRecStr) != NULL) { + printf(" 【%s succeed !!!】\n", ATCmds[at_num].ATSendStr); + at_num++; + } else { + printf(" 【%s fail !!!】\n", ATCmds[at_num].ATSendStr); + } + memset(uart2_recv.recv, 0, sizeof(uart2_recv.recv)); + } + } +} +void get_gps_coordinates(const char *input) +{ + const char *locLine = strstr(input, "+QGPSLOC:"); + if (locLine == NULL) { + return; + } + locLine += strlen("+QGPSLOC:"); // 跳过 "+QGPSLOC:" + + // 跳过第一个逗号分隔的部分(时间信息) + while (*locLine != ',' && *locLine != '\0') { + locLine++; + } + locLine++; // 跳过逗号 + + // 提取纬度信息 + uint8_t i = 0; + while ((*locLine != ',') && (i < sizeof(latitude) - 2)) { + latitude[i++] = *locLine++; + } + latitude[i] = '\0'; + locLine++; // 跳过逗号 + + // 提取经度信息 + i = 0; + while ((*locLine != ',') && (i < sizeof(longitude) - 2)) { + longitude[i++] = *locLine++; + } + longitude[i] = '\0'; +} \ No newline at end of file diff --git a/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_ec800m.h b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_ec800m.h new file mode 100644 index 0000000000000000000000000000000000000000..beacc65be067501ecfa8d127bbddf426c80b798d --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_ec800m.h @@ -0,0 +1,28 @@ +#ifndef EC800_H +#define EC800_H +#include "osal_debug.h" +#include "osal_task.h" +#include "securec.h" +#include +#include +#include +#define EC_PWR GPIO_01 +#define HUWWEIYUN_MQTT_IP "e2f41eb4ed.st1.iotda-device.cn-north-4.myhuaweicloud.com" +// MQTT客户端ID +#define MQTT_CLIENT_ID "EC_CAR_800M_0_0_2025022607" +// MQTT用户名 +#define MQTT_USER_NAME "EC_CAR_800M" +// MQTT密码 +#define MQTT_PASS_WORD "d54efc90552f4ffd3ccdbd1168f812a3c53a5ab62c027c32fba1fd2a59bb095c" + +// AT指令结构体 +typedef struct { + char *ATSendStr; // 发送指令 + char *ATRecStr; // 回复指令 +} tsATCmds; +extern tsATCmds ATCmds[]; +// extern uint8_t UART2_RECV[512]; +void ec800_pwr_init(void); +void ec800_send_init(void); +void get_gps_coordinates(const char *input); +#endif \ No newline at end of file diff --git a/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_sht20.c b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_sht20.c new file mode 100644 index 0000000000000000000000000000000000000000..80cb08c99031ffe4c6675f155d9f5d5fd32c9993 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_sht20.c @@ -0,0 +1,131 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "hal_bsp_sht20.h" +#include "stdio.h" +#include "pinctrl.h" +#include "gpio.h" +#include "i2c.h" +#include "securec.h" +#define SHT20_HOLDMASTER_TEMP_REG_ADDR 0xE3 // 主机模式会阻塞其他IIC设备的通信 +#define SHT20_HOLDMASTER_HUMI_REG_ADDR 0xE5 +#define SHT20_NOHOLDMASTER_TEMP_REG_ADDR 0xF3 +#define SHT20_NOHOLDMASTER_HUMI_REG_ADDR 0xF5 +#define SHT20_W_USER_REG_ADDR 0xE6 +#define SHT20_R_USER_REG_ADDR 0xE7 +#define SHT20_SW_REG_ADDR 0xFE + +#define TEMP_VALUE_1 175.72 +#define TEMP_VALUE_2 65536.0 +#define TEMP_VALUE_3 46.85 +#define TEMP_LEFT_SHIFT_8 8 + +#define HUMI_VALUE_1 125 +#define HUMI_VALUE_2 65536.0 +#define HUMI_VALUE_3 6 +#define HUMI_LEFT_SHIFT_8 8 +#define DELAY_TIME_MS 1 +// 读从机设备的数据 +static uint32_t SHT20_RecvData(uint8_t *data, size_t size) +{ + i2c_data_t i2cData = {0}; + i2cData.receive_buf = data; + i2cData.receive_len = size; + + return uapi_i2c_master_read(SHT20_I2C_IDX, SHT20_I2C_ADDR, &i2cData); +} + +// 向从机设备 发送数据 +uint32_t SHT20_WiteByteData(uint8_t byte) +{ + // 创建发送数据缓冲区,仅包含1个字节的命令数据 + uint8_t buffer[] = {byte}; + + // 初始化I2C数据传输结构体 + i2c_data_t i2cData = {0}; // 清零初始化 + i2cData.send_buf = buffer; // 设置发送缓冲区指针 + i2cData.send_len = sizeof(buffer); // 设置发送数据长度(1字节) + + // 调用I2C主设备写操作API + // 参数说明: + // SHT20_I2C_IDX: 使用的I2C控制器索引(如0,1,2...) + // SHT20_I2C_ADDR: SHT20的I2C设备地址 + // &i2cData: I2C数据传输结构体指针 + return uapi_i2c_master_write(SHT20_I2C_IDX, SHT20_I2C_ADDR, &i2cData); +} + +#define READ_TEMP_DATA_NUM 3 +#define READ_HUMI_DATA_NUM 3 + +// 读温湿度的值 +uint32_t SHT20_ReadData(float *temp, float *humi) +{ + uint32_t result; + uint8_t buffer[4] = {0}; + + /* 发送检测温度命令 */ + result = SHT20_WiteByteData(SHT20_NOHOLDMASTER_TEMP_REG_ADDR); + if (result != ERRCODE_SUCC) { + printf("I2C SHT20 status = 0x%x!!!\r\n", result); + return result; + } + osDelay(8); /* datasheet: typ=66, max=85 */ + // 读数据 + result = SHT20_RecvData(buffer, READ_TEMP_DATA_NUM); + if (result != ERRCODE_SUCC) { + printf("I2C SHT20 status = 0x%x!!!\r\n", result); + return result; + } + + // 看芯片手册,手册中有转换公式的说明 + *temp = TEMP_VALUE_1 * (((((int)buffer[0]) << TEMP_LEFT_SHIFT_8) + buffer[1]) / TEMP_VALUE_2) - TEMP_VALUE_3; + + memset_s(buffer, sizeof(buffer), 0, sizeof(buffer)); + + /* 发送检测湿度命令 */ + result = SHT20_WiteByteData(SHT20_NOHOLDMASTER_HUMI_REG_ADDR); + if (result != ERRCODE_SUCC) { + printf("I2C SHT20 status = 0x%x!!!\r\n", result); + return result; + } + osDelay(5); /* datasheet: typ=22, max=29 */ + // 读数据 + result = SHT20_RecvData(buffer, READ_HUMI_DATA_NUM); + if (result != ERRCODE_SUCC) { + printf("I2C SHT20 status = 0x%x!!!\r\n", result); + return result; + } + + // 看芯片手册,手册中有转换公式的说明 + *humi = HUMI_VALUE_1 * (((((int)buffer[0]) << HUMI_LEFT_SHIFT_8) + buffer[1]) / HUMI_VALUE_2) - HUMI_VALUE_3; + + return ERRCODE_SUCC; +} + +// 传感器 SHT20 的初始化 +uint32_t SHT20_Init(void) +{ + uint32_t result; + // 软复位 + result = SHT20_WiteByteData(SHT20_SW_REG_ADDR); + if (result != ERRCODE_SUCC) { + printf("I2C SHT20 status = 0x%x!!!\r\n", result); + return result; + } + + osDelay(DELAY_TIME_MS); + printf("I2C SHT20 Init is succeeded!!!\r\n"); + return ERRCODE_SUCC; +} diff --git a/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_sht20.h b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_sht20.h new file mode 100644 index 0000000000000000000000000000000000000000..70873449da2a83f5489057a07b0d0b4aee082bc3 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/hal_bsp_sht20.h @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef HAL_BSP_SHT20_H +#define HAL_BSP_SHT20_H + +#include "cmsis_os2.h" + +#define SHT20_I2C_ADDR 0x40 // 器件的I2C从机地址 +#define SHT20_I2C_IDX 1 // 模块的I2C总线号 +#define SHT20_I2C_SPEED 100000 // 100KHz +#define I2C_MASTER_ADDR 0x0 +/* io */ +#define I2C_SCL_MASTER_PIN 16 +#define I2C_SDA_MASTER_PIN 15 +#define CONFIG_PIN_MODE 2 + +/** + * @brief SHT20 读取器件的温湿度 + * @param temp 温度值 + * @param humi 湿度值 + * @return Returns {@link IOT_SUCCESS} 成功; + * Returns {@link IOT_FAILURE} 失败. + */ +uint32_t SHT20_ReadData(float *temp, float *humi); +/** + * @brief SHT20 初始化 + * @return Returns {@link IOT_SUCCESS} 成功; + * Returns {@link IOT_FAILURE} 失败. + */ +uint32_t SHT20_Init(void); +uint32_t SHT20_WiteByteData(uint8_t byte); +#endif // !__HAL_BSP_SHT20_H__ diff --git a/IOT/10019_ws63_smart_transport/code/bsp/led.c b/IOT/10019_ws63_smart_transport/code/bsp/led.c new file mode 100644 index 0000000000000000000000000000000000000000..0f01b356640a4540e0ff993f1be48a462b2b7e78 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/led.c @@ -0,0 +1,226 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_LED +#define LV_ATTRIBUTE_IMG_LED +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_LED uint8_t led_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0x7f, 0xff, 0xaf, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xaf, 0xff, 0x7f, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0x7f, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x7f, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xc0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0x70, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0x70, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0xbf, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x80, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0xbf, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0x70, 0xff, 0xb0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0xff, 0x60, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0x7f, 0x5d, 0xef, 0xaf, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xaf, 0x5d, 0xef, 0x7f, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0x7f, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x7f, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xaf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xdf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xdf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xbf, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xbf, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0x60, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0x7f, 0xef, 0x5d, 0xaf, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xaf, 0xef, 0x5d, 0x7f, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0x7f, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x7f, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xaf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xdf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xdf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xbf, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xbf, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0x60, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe7, 0xe7, 0xe7, 0x7f, 0xe6, 0xe6, 0xe6, 0xaf, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xaf, 0xe7, 0xe7, 0xe7, 0x7f, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe7, 0xe7, 0xe7, 0x7f, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xdf, 0xe7, 0xe7, 0xe7, 0x5f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x7f, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xaf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xdf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0x70, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xdf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xbf, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0xe7, 0xe7, 0xe7, 0x60, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +}; + +const lv_img_dsc_t led = { + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 45, + .header.h = 45, + .data_size = 2025 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .data = led_map, +}; diff --git a/IOT/10019_ws63_smart_transport/code/bsp/mqtt.c b/IOT/10019_ws63_smart_transport/code/bsp/mqtt.c new file mode 100644 index 0000000000000000000000000000000000000000..8a8e5d30cb9e6f5154ecd1778d787e50b101268c --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/mqtt.c @@ -0,0 +1,192 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "mqtt.h" +#include "cJSON.h" + +uint8_t mqtt_conn; +char g_send_buffer[512] = {0}; // 发布数据缓冲区 +char g_response_id[100] = {0}; // 保存命令id缓冲区 + +MQTTClient client; +volatile MQTTClient_deliveryToken deliveredToken; +extern int MQTTClient_init(void); +extern struct Threshold_t Getthreshold; +/* 回调函数,处理连接丢失 */ +void connlost(void *context, char *cause) +{ + unused(context); + printf("Connection lost: %s\n", cause); +} +int mqtt_subscribe(const char *topic) +{ + printf("subscribe start\r\n"); + MQTTClient_subscribe(client, topic, 1); + return 0; +} + +int mqtt_publish(const char *topic, char *msg) +{ + MQTTClient_message pubmsg = MQTTClient_message_initializer; + MQTTClient_deliveryToken token; + int ret = 0; + pubmsg.payload = msg; + pubmsg.payloadlen = (int)strlen(msg); + pubmsg.qos = 1; + pubmsg.retained = 0; + // printf("[payload]: %s, [topic]: %s\r\n", msg, topic); + ret = MQTTClient_publishMessage(client, topic, &pubmsg, &token); + if (ret != MQTTCLIENT_SUCCESS) { + printf("mqtt publish failed\r\n"); + return ret; + } + + return ret; +} + +/* 回调函数,处理消息到达 */ +void delivered(void *context, MQTTClient_deliveryToken dt) +{ + unused(context); + + printf("Message with token value %d delivery confirmed\n", dt); + + deliveredToken = dt; +} + +/* 回调函数,处理接收到的消息 */ +int messageArrived(void *context, char *topic_name, int topic_len, MQTTClient_message *message) +{ + unused(context); + unused(topic_len); + unused(topic_name); + printf("[Message]: %s\n", (char *)message->payload); + cJSON *root = cJSON_Parse((char *)message->payload); + if (root == NULL) { + return 1; + } + // 检查是否是设备状态消息 + cJSON *myDevice = cJSON_GetObjectItem(root, "myDevice"); + if (myDevice != NULL) { + printf("设备状态: %s\n",myDevice->valuestring); + if(strcmp(myDevice->valuestring,"online") == 0) + { + My_Mode.WeChatOnline = CONNECTED; + } + else if(strcmp(myDevice->valuestring,"offline") == 0) + { + My_Mode.WeChatOnline = DISCONNECTED; + } + cJSON_Delete(root); + return 1; + } + // 提取sensor字段 + cJSON *sensor = cJSON_GetObjectItem(root, "sensor"); + if (sensor != NULL) { + printf("传感器类型: %s\n", sensor->valuestring); + if(strcmp(sensor->valuestring,"fan") == 0) + { + // 提取data_val字段 + cJSON *data_val = cJSON_GetObjectItem(root, "data_val"); + if (data_val != NULL) + { + // 根据数据类型处理不同的值 + printf("数据值(数字): %d\n", data_val->valueint); + My_Sensor.FanCurrentState = data_val->valueint; + } + } + else if(strcmp(sensor->valuestring,"threshold") == 0) + { + // 提取data_val字段 + cJSON *data_val = cJSON_GetObjectItem(root, "data_val"); + if (data_val != NULL) + { + cJSON *temperature = cJSON_GetObjectItem(data_val, "temperature"); + if (temperature != NULL && cJSON_IsNumber(temperature)) + { + Getthreshold.Temp = temperature->valueint; + printf("温度值: %d\n", temperature->valueint); + } + + cJSON *humidity = cJSON_GetObjectItem(data_val, "humidity"); + if (humidity != NULL && cJSON_IsNumber(humidity)) + { + Getthreshold.Humid = humidity->valueint; + printf("湿度值: %d\n", humidity->valueint); + } + } + } + else if(strcmp(sensor->valuestring,"smart") == 0) + { + // 提取data_val字段 + cJSON *data_val = cJSON_GetObjectItem(root, "data_val"); + if (data_val != NULL) + { + // 根据数据类型处理不同的值 + printf("数据值(布尔): %s\n", data_val->valueint ? "true" : "false"); + if(data_val->valueint){ + My_Mode.CurrentMode = SMART; + }else{ + My_Mode.CurrentMode = USR; + } + } + } + + } + + memset((char *)message->payload, 0, message->payloadlen); + cJSON_Delete(root); + MQTTClient_freeMessage((MQTTClient_message **)&message); + MQTTClient_free(topic_name); + return 1; // 表示消息已被处理 +} + +errcode_t mqtt_connect(void) +{ + int ret; + MQTTClient_connectOptions conn_opts = MQTTClient_connectOptions_initializer; + /* 初始化MQTT客户端 */ + + MQTTClient_init(); + /* 创建 MQTT 客户端 */ + ret = MQTTClient_create(&client, SERVER_IP_ADDR, CLIENT_ID, MQTTCLIENT_PERSISTENCE_NONE, NULL); + if (ret != MQTTCLIENT_SUCCESS) { + printf("Failed to create MQTT client, return code %d\n", ret); + return ERRCODE_FAIL; + } + conn_opts.keepAliveInterval = KEEP_ALIVE_INTERVAL; + conn_opts.cleansession = 1; + conn_opts.username = g_username; + conn_opts.password = g_password; + + // 绑定回调函数 + MQTTClient_setCallbacks(client, NULL, connlost, messageArrived, delivered); + + // 尝试连接 + if ((ret = MQTTClient_connect(client, &conn_opts)) != MQTTCLIENT_SUCCESS) { + MQTTClient_destroy(&client); // 连接失败时销毁客户端 + return ERRCODE_FAIL; + } + // 订阅MQTT主题 + osDelay(DELAY_TIME_MS); + ret = mqtt_subscribe(MQTT_CMDTOPIC_SUB); + if (ret < 0) { + printf("subscribe topic error, result %d\n", ret); + } + My_Mode.mqttconnetState = 1; + printf(" My_Mode.mqttconnetState %d\n", My_Mode.mqttconnetState); + return ERRCODE_SUCC; +} + diff --git a/IOT/10019_ws63_smart_transport/code/bsp/mqtt.h b/IOT/10019_ws63_smart_transport/code/bsp/mqtt.h new file mode 100644 index 0000000000000000000000000000000000000000..4c39e96556b391f2aea3ccf6f2030df597b8ea2e --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/mqtt.h @@ -0,0 +1,48 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef MQTT_H +#define MQTT_H +#include "MQTTClientPersistence.h" +#include "MQTTClient.h" +#include "soc_osal.h" +#include "app_init.h" +#include "cmsis_os2.h" +#include "errcode.h" +#include "common_def.h" +#include +#include +#include +#include "../lvgl_greenhouse_demo.h" + +#define SERVER_IP_ADDR "a4cda0ceb7.st1.iotda-device.cn-south-1.myhuaweicloud.com" //服务器地址 +#define SERVER_IP_PORT "1883" //端口号 +#define g_username "6a4dd936c9429d337f5840cb_WS63666" //用户名 +#define g_password "ec8290ad21ee533b350e17cb98a5fb806bdb8222fdb7c9c32c1f8d9fb6bfbaa9" //密码 +#define CLIENT_ID "6a4dd936c9429d337f5840cb_WS63666_0_0_2026070805" //设备名称 + + +#define MQTT_CMDTOPIC_SUB "fsembsim/fs_embsim/greenhouse/sub" +#define MQTT_DATATOPIC_PUB "fsembsim/fs_embsim/greenhouse/pub" // 属性上报topic + +#define KEEP_ALIVE_INTERVAL 120 +#define DELAY_TIME_MS 100 + +extern uint8_t mqtt_conn; +extern uint8_t g_cmdFlag; +extern char g_response_id[100]; // 保存命令id缓冲区 +errcode_t mqtt_connect(void); +int mqtt_publish(const char *topic, char *msg); +#endif \ No newline at end of file diff --git a/IOT/10019_ws63_smart_transport/code/bsp/text.c b/IOT/10019_ws63_smart_transport/code/bsp/text.c new file mode 100644 index 0000000000000000000000000000000000000000..590a28f307a065fc116948f7cb65c66d695f528a --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/text.c @@ -0,0 +1,72 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "../../LVGL/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_TEXT +#define LV_ATTRIBUTE_IMG_TEXT +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_TEXT uint8_t text_map[] = { +0x00, 0x00, 0x00, 0x00, /*Color of index 0 (透明背景,不变)*/ + 0x00, 0x80, 0x00, 0x11, /*Color of index 1*/ + 0x00, 0x80, 0x00, 0x22, /*Color of index 2*/ + 0x00, 0x80, 0x00, 0x33, /*Color of index 3*/ + 0x00, 0x80, 0x00, 0x44, /*Color of index 4*/ + 0x00, 0x80, 0x00, 0x55, /*Color of index 5*/ + 0x00, 0x80, 0x00, 0x66, /*Color of index 6*/ + 0x00, 0x80, 0x00, 0x77, /*Color of index 7*/ + 0x00, 0x80, 0x00, 0x88, /*Color of index 8*/ + 0x00, 0x80, 0x00, 0x99, /*Color of index 9*/ + 0x00, 0x80, 0x00, 0xaa, /*Color of index 10*/ + 0x00, 0x80, 0x00, 0xbb, /*Color of index 11*/ + 0x00, 0x80, 0x00, 0xcc, /*Color of index 12*/ + 0x00, 0x80, 0x00, 0xdd, /*Color of index 13*/ + 0x00, 0x80, 0x00, 0xee, /*Color of index 14*/ + 0x00, 0x80, 0x00, 0xff, /*Color of index 15*/ + + 0x00, 0x4d, 0xc6, 0x11, 0x22, 0x11, 0x11, 0x10, 0x11, 0x21, 0x00, 0x00, 0x00, 0x27, 0xda, 0x40, 0x00, 0x2a, 0x96, 0x10, 0x11, 0x00, 0x00, 0x00, 0x16, 0x83, 0x10, 0x00, 0x00, 0x00, 0x00, 0x01, 0x31, 0x00, 0x00, 0x00, 0x03, 0xac, 0x61, 0x00, 0x00, 0x18, 0xec, 0x40, 0x00, 0x00, 0x00, 0x00, 0x13, 0x21, 0x1b, 0xb7, 0x10, 0x4c, 0xa6, 0x10, 0x00, 0x00, 0x00, 0x02, 0xa8, 0x33, 0x77, 0x54, 0x45, 0x77, 0x20, 0x01, 0x8a, 0x81, 0x00, 0x00, 0x00, 0x21, 0x22, 0x22, 0x35, 0x78, 0x9a, 0xce, 0xd7, 0x10, 0x00, 0x00, 0x00, 0x4e, 0xb4, 0x00, 0x00, 0x6c, 0xb6, 0x10, 0x00, 0x00, + 0x01, 0x8e, 0xd8, 0x66, 0x89, 0x56, 0x87, 0x56, 0x57, 0x94, 0x10, 0x00, 0x01, 0x5c, 0xea, 0x53, 0x00, 0x2e, 0xe8, 0x22, 0x65, 0x20, 0x00, 0x00, 0x08, 0xdb, 0x61, 0x02, 0x33, 0x33, 0x33, 0x37, 0x97, 0x20, 0x00, 0x00, 0x05, 0xde, 0x82, 0x11, 0x00, 0x4d, 0xff, 0x71, 0x00, 0x00, 0x00, 0x00, 0x59, 0x94, 0x2d, 0xf9, 0x11, 0x6f, 0xd8, 0x00, 0x12, 0x00, 0x00, 0x02, 0xae, 0xa7, 0xcd, 0xba, 0xaa, 0xdd, 0x61, 0x01, 0xaf, 0xc1, 0x00, 0x00, 0x15, 0x78, 0x99, 0x9a, 0xac, 0xdd, 0xdd, 0xdc, 0xc8, 0x20, 0x00, 0x00, 0x01, 0xaf, 0xd4, 0x00, 0x00, 0x3a, 0xfb, 0x41, 0x14, 0x20, + 0x03, 0xce, 0xcc, 0xcb, 0xcc, 0x89, 0xdd, 0xaa, 0xad, 0xf9, 0x20, 0x00, 0x14, 0xad, 0x95, 0x79, 0x52, 0x2e, 0xe6, 0x48, 0xca, 0x50, 0x00, 0x00, 0x03, 0xbf, 0xc3, 0x26, 0xa9, 0xa9, 0x99, 0xab, 0xdb, 0x40, 0x00, 0x13, 0x47, 0xfc, 0x75, 0x64, 0x12, 0x9f, 0xbc, 0xb5, 0x10, 0x00, 0x00, 0x00, 0x6d, 0xe5, 0x2d, 0xf6, 0x12, 0x9f, 0xd6, 0x43, 0x77, 0x40, 0x00, 0x00, 0x5d, 0xea, 0xcf, 0xa7, 0x69, 0xde, 0x65, 0x43, 0xaf, 0xb1, 0x00, 0x00, 0x17, 0xab, 0xbb, 0xbc, 0xff, 0xd8, 0x66, 0x55, 0x43, 0x10, 0x00, 0x00, 0x05, 0xee, 0x72, 0x24, 0x44, 0x59, 0xee, 0x74, 0x7b, 0x92, + 0x17, 0xdb, 0x7c, 0xeb, 0x66, 0x58, 0xdd, 0x85, 0x6d, 0xe9, 0x20, 0x01, 0x59, 0xc9, 0x42, 0x7c, 0xc7, 0x3e, 0xe7, 0x9c, 0xdb, 0x62, 0x00, 0x00, 0x00, 0x7e, 0xe4, 0x14, 0x88, 0x77, 0x77, 0x77, 0x77, 0x31, 0x00, 0x39, 0xac, 0xfd, 0xbb, 0xd8, 0x47, 0xdd, 0x65, 0xdb, 0x62, 0x10, 0x00, 0x00, 0x6d, 0xe5, 0x2c, 0xf6, 0x04, 0xcf, 0xda, 0xaa, 0xcd, 0x83, 0x00, 0x10, 0x28, 0xc9, 0xce, 0x95, 0x45, 0xce, 0x6a, 0xb8, 0xaf, 0xb1, 0x00, 0x00, 0x13, 0x54, 0x54, 0x7c, 0xed, 0x93, 0x12, 0x53, 0x10, 0x00, 0x00, 0x00, 0x2b, 0xe9, 0x25, 0x8a, 0xba, 0xad, 0xed, 0xba, 0xbd, 0xb5, + 0x3b, 0xb6, 0x5b, 0xe9, 0x46, 0x58, 0xdd, 0x41, 0x1c, 0xf8, 0x10, 0x14, 0xbe, 0xd8, 0x77, 0x8d, 0xfd, 0x6e, 0xfc, 0xba, 0x67, 0x84, 0x00, 0x00, 0x00, 0x2a, 0xa2, 0x01, 0x22, 0x12, 0x12, 0x12, 0x12, 0x30, 0x00, 0x29, 0xcf, 0xec, 0xaa, 0xa9, 0x8c, 0xd8, 0x22, 0x9f, 0xc8, 0x53, 0x00, 0x00, 0x6c, 0xe5, 0x1d, 0xf6, 0x16, 0xee, 0xcc, 0xaa, 0xab, 0x83, 0x00, 0x66, 0x23, 0x56, 0xce, 0xba, 0xa8, 0xcd, 0x6c, 0xfa, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x10, 0x35, 0xbd, 0xc6, 0x41, 0x27, 0xb9, 0x40, 0x00, 0x00, 0x02, 0x7e, 0xb3, 0x4b, 0xdb, 0x87, 0xae, 0xfa, 0x77, 0x77, 0x73, + 0x8d, 0xb8, 0xad, 0xfb, 0xac, 0xcb, 0xed, 0x41, 0x1c, 0xe8, 0x20, 0x06, 0xdf, 0xdc, 0xba, 0xaa, 0xef, 0x7e, 0xe9, 0x53, 0x26, 0xc6, 0x10, 0x00, 0x00, 0x14, 0x31, 0x01, 0x01, 0x01, 0x01, 0x01, 0x15, 0x84, 0x10, 0x03, 0x8e, 0xd9, 0x86, 0x47, 0xce, 0xc8, 0x77, 0xcf, 0xfe, 0xc9, 0x52, 0x00, 0x5d, 0xe4, 0x2c, 0xf6, 0x29, 0xea, 0x8b, 0x74, 0x33, 0x21, 0x00, 0x9c, 0x83, 0x29, 0xde, 0xbd, 0xea, 0xdd, 0x6c, 0xf7, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x26, 0x8c, 0xec, 0x86, 0x56, 0x8d, 0xfc, 0x61, 0x00, 0x00, 0x26, 0xdd, 0x75, 0x9f, 0xe8, 0x34, 0xae, 0xc7, 0x63, 0x21, 0x11, + 0xaa, 0xa9, 0xbf, 0xed, 0xaa, 0x9b, 0xed, 0x51, 0x2c, 0xf8, 0x10, 0x03, 0x9c, 0xa7, 0x64, 0x47, 0xbb, 0x5e, 0xe6, 0x21, 0x27, 0xd9, 0x20, 0x03, 0x45, 0x59, 0x74, 0x77, 0x87, 0x88, 0x88, 0x78, 0x8c, 0xeb, 0x30, 0x03, 0xae, 0xbd, 0xd8, 0x7c, 0xc9, 0x9a, 0xaa, 0xaa, 0xac, 0xfd, 0x93, 0x00, 0x6c, 0xe5, 0x1d, 0xf6, 0x4e, 0xc5, 0x5c, 0xc7, 0x30, 0x00, 0x00, 0x3e, 0xe9, 0x5d, 0xfe, 0xcc, 0xea, 0xcd, 0x6c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x6c, 0xff, 0xed, 0xcc, 0xdd, 0xed, 0x96, 0x20, 0x00, 0x00, 0x5d, 0xfc, 0xcc, 0xee, 0x82, 0x38, 0xdb, 0x55, 0xa9, 0x62, 0x00, + 0x33, 0x13, 0x8e, 0xeb, 0xa7, 0x48, 0xde, 0xa8, 0x8e, 0xe9, 0x10, 0x01, 0x6c, 0xa9, 0x99, 0x9d, 0xc6, 0x2d, 0xeb, 0x99, 0x9c, 0xfb, 0x41, 0x07, 0xbb, 0xcf, 0xe7, 0xbb, 0xaa, 0xbe, 0xec, 0xaa, 0xaa, 0xaa, 0x40, 0x16, 0xec, 0x8d, 0xec, 0xcd, 0x84, 0x37, 0x84, 0x43, 0x49, 0xc8, 0x31, 0x00, 0x6d, 0xe5, 0x2c, 0xf7, 0x9d, 0x71, 0x17, 0xde, 0x72, 0x00, 0x00, 0x19, 0xed, 0x7e, 0xde, 0xbd, 0xea, 0xce, 0x6c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x5b, 0xed, 0xba, 0xbe, 0xed, 0x97, 0x32, 0x00, 0x00, 0x00, 0x4c, 0xdb, 0xbf, 0xe8, 0x23, 0x8d, 0xb5, 0x34, 0x9e, 0xda, 0x41, + 0x00, 0x16, 0xcd, 0x9a, 0xdd, 0x89, 0xee, 0xcc, 0xce, 0xf8, 0x20, 0x00, 0x7e, 0xdb, 0xaa, 0xcf, 0xe5, 0x28, 0xdd, 0xdd, 0xdd, 0xc8, 0x30, 0x04, 0x78, 0x9f, 0xe5, 0x34, 0x33, 0x9e, 0xd8, 0x43, 0x33, 0x33, 0x10, 0x3b, 0xfd, 0xae, 0xef, 0xcd, 0xca, 0x9d, 0xe7, 0x86, 0x5b, 0xc7, 0x10, 0x01, 0x6d, 0xe5, 0x1d, 0xf8, 0xd9, 0x30, 0x03, 0xaf, 0xb4, 0x00, 0x00, 0x03, 0xa9, 0xae, 0xce, 0xbd, 0xda, 0xcd, 0x6c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x16, 0x78, 0x8a, 0xbd, 0xa6, 0x48, 0x97, 0x42, 0x00, 0x00, 0x06, 0x67, 0xbd, 0x92, 0x39, 0xde, 0xb9, 0x9a, 0xbd, 0xff, 0xb1, + 0x02, 0x5b, 0xea, 0x44, 0x9e, 0xcb, 0xcc, 0x77, 0x7b, 0xc6, 0x10, 0x00, 0x7e, 0xc8, 0x77, 0xae, 0xd4, 0x38, 0x97, 0x66, 0x77, 0x53, 0x00, 0x00, 0x10, 0x6e, 0xd3, 0x00, 0x14, 0xbd, 0xa4, 0x43, 0x10, 0x00, 0x00, 0x2a, 0xdc, 0xce, 0xfd, 0xbd, 0xfa, 0x8d, 0xf7, 0xcd, 0x8d, 0xe8, 0x10, 0x00, 0x6b, 0xb4, 0x1d, 0xf9, 0xa4, 0x00, 0x00, 0x6d, 0xb4, 0x00, 0x00, 0x00, 0x44, 0xdc, 0xce, 0xcd, 0xd9, 0xce, 0x6c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x34, 0x6a, 0xbd, 0xc8, 0x64, 0x49, 0xdd, 0xb7, 0x30, 0x00, 0x01, 0x5a, 0xe9, 0x43, 0x5c, 0xfe, 0xee, 0xdd, 0xfb, 0xbe, 0xd2, + 0x37, 0xbd, 0xcb, 0x66, 0x8d, 0xdb, 0xa9, 0x6a, 0x87, 0x52, 0x00, 0x00, 0x7e, 0xeb, 0xaa, 0xcf, 0xd4, 0x4d, 0xb5, 0x23, 0x88, 0x40, 0x00, 0x00, 0x00, 0x5e, 0xd2, 0x00, 0x38, 0xda, 0x32, 0x79, 0x52, 0x00, 0x00, 0x04, 0x65, 0x7d, 0xe9, 0x6b, 0xf9, 0x6e, 0xf5, 0xde, 0x8c, 0xd7, 0x10, 0x00, 0x38, 0x74, 0x3d, 0xe8, 0x62, 0x32, 0x22, 0x5a, 0x83, 0x00, 0x00, 0x00, 0x17, 0xea, 0xce, 0xcd, 0xd9, 0xcd, 0x6c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x03, 0x8b, 0xde, 0xed, 0xba, 0xaa, 0xab, 0xde, 0xfd, 0x71, 0x00, 0x15, 0xbf, 0xb7, 0x88, 0xaa, 0xbc, 0xed, 0x8c, 0xf7, 0x4a, 0x91, + 0x9b, 0xa8, 0xae, 0xcb, 0xbc, 0xcc, 0xbb, 0xce, 0xe5, 0x10, 0x00, 0x00, 0x7e, 0xc9, 0x88, 0xbe, 0xd3, 0x5e, 0xe4, 0x38, 0xdd, 0x72, 0x00, 0x00, 0x00, 0x5f, 0xd3, 0x02, 0x6d, 0xb5, 0x11, 0x6c, 0xc7, 0x20, 0x00, 0x00, 0x11, 0x5c, 0xd7, 0x3b, 0xfc, 0xbe, 0xf4, 0xde, 0x7c, 0xd7, 0x00, 0x00, 0x19, 0xb9, 0x8e, 0xd9, 0x98, 0x88, 0x88, 0xac, 0xb4, 0x00, 0x00, 0x00, 0x3b, 0xd6, 0xce, 0xce, 0xb8, 0xce, 0x6c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x04, 0xaf, 0xfe, 0xdb, 0xbd, 0xfc, 0xaa, 0x9a, 0xdf, 0x92, 0x00, 0x1a, 0xff, 0xec, 0xaa, 0x96, 0x48, 0xfc, 0x6a, 0xf6, 0x13, 0x30, + 0x86, 0x33, 0x9f, 0xb7, 0x66, 0x66, 0x66, 0x9e, 0xe4, 0x00, 0x00, 0x00, 0x7f, 0xc8, 0x76, 0xae, 0xd4, 0x4e, 0xd6, 0x9d, 0xda, 0x62, 0x00, 0x00, 0x00, 0x5e, 0xd3, 0x27, 0xcd, 0x86, 0x56, 0x6c, 0xee, 0x71, 0x00, 0x00, 0x13, 0x7d, 0xea, 0x9d, 0xf9, 0x7e, 0xf5, 0xde, 0x7c, 0xd7, 0x10, 0x00, 0x1b, 0xfb, 0xab, 0xfe, 0xab, 0xde, 0xca, 0xcf, 0xd6, 0x00, 0x00, 0x66, 0x8f, 0xc6, 0xce, 0xcf, 0xa6, 0xcd, 0x5c, 0xf6, 0xaf, 0xb1, 0x00, 0x00, 0x01, 0x7b, 0xac, 0xa6, 0x4d, 0xfa, 0x75, 0x33, 0x7c, 0x71, 0x00, 0x18, 0xec, 0xa8, 0x43, 0x21, 0x17, 0xfb, 0x5a, 0xf6, 0x00, 0x00, + 0x10, 0x02, 0x9e, 0xb6, 0x55, 0x55, 0x55, 0x9e, 0xd3, 0x00, 0x00, 0x00, 0x7e, 0xed, 0xcc, 0xef, 0xd3, 0x4e, 0xfc, 0xc9, 0x63, 0x42, 0x00, 0x00, 0x01, 0x6e, 0xd3, 0x4d, 0xfd, 0xcc, 0xcc, 0xdc, 0xff, 0xd3, 0x00, 0x27, 0x8a, 0xcf, 0xfc, 0x9d, 0xfa, 0x8e, 0xf4, 0xde, 0x7c, 0xd7, 0x00, 0x00, 0x1b, 0xf6, 0x25, 0xfd, 0x34, 0xce, 0x93, 0x8e, 0xb4, 0x00, 0x01, 0x9d, 0xff, 0xa4, 0xcd, 0xcf, 0xa5, 0x88, 0x4c, 0xf7, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x12, 0x6c, 0xd6, 0x2d, 0xfa, 0xaa, 0x85, 0x44, 0x30, 0x00, 0x03, 0x74, 0x22, 0x22, 0x44, 0x18, 0xfa, 0x3a, 0xf6, 0x00, 0x10, + 0x00, 0x02, 0x9e, 0xeb, 0xbb, 0xbb, 0xbb, 0xdf, 0xd3, 0x00, 0x00, 0x00, 0x7f, 0xc9, 0x78, 0xae, 0xd3, 0x4e, 0xe9, 0x52, 0x04, 0x86, 0x10, 0x00, 0x24, 0xae, 0xe5, 0x4b, 0xed, 0xb9, 0x88, 0x77, 0x9e, 0xd4, 0x00, 0x3c, 0xec, 0xbe, 0xe8, 0x3a, 0xfd, 0xcf, 0xf5, 0xde, 0x7c, 0xd7, 0x10, 0x00, 0x1b, 0xf5, 0x14, 0xfd, 0x23, 0xbe, 0x82, 0x7f, 0xa3, 0x00, 0x00, 0x27, 0xfe, 0x73, 0x69, 0xce, 0xb9, 0x52, 0x0a, 0xb5, 0xaf, 0xb1, 0x00, 0x00, 0x00, 0x15, 0xbe, 0xe9, 0x3c, 0xf9, 0x6a, 0xdc, 0x96, 0x20, 0x00, 0x12, 0x34, 0x68, 0x89, 0xa8, 0x3a, 0xf8, 0x2a, 0xf6, 0x03, 0x81, + 0x00, 0x02, 0x9e, 0xc8, 0x77, 0x77, 0x77, 0xae, 0xd3, 0x00, 0x00, 0x00, 0x7e, 0xb4, 0x11, 0x7e, 0xd4, 0x3e, 0xd3, 0x10, 0x05, 0xc8, 0x20, 0x03, 0x8b, 0xdc, 0xda, 0x77, 0x97, 0x43, 0x11, 0x11, 0x39, 0x83, 0x21, 0x26, 0x86, 0x7c, 0xd7, 0x2a, 0xf8, 0x6d, 0xf4, 0xdc, 0x7c, 0xd7, 0x00, 0x00, 0x1b, 0xf5, 0x14, 0xfd, 0x33, 0xce, 0x82, 0x7e, 0xa4, 0x10, 0x00, 0x03, 0xfe, 0x60, 0x38, 0xeb, 0x9c, 0xb6, 0x24, 0x52, 0xaf, 0xb1, 0x00, 0x00, 0x02, 0x6b, 0xeb, 0x84, 0x2d, 0xf9, 0x23, 0x9d, 0xfc, 0x82, 0x00, 0x39, 0xab, 0xcd, 0xc9, 0x75, 0x7d, 0xd6, 0x2a, 0xf6, 0x16, 0xe3, + 0x00, 0x02, 0x9e, 0xb5, 0x44, 0x44, 0x45, 0x9e, 0xd3, 0x00, 0x00, 0x00, 0x7f, 0xa5, 0x34, 0x8e, 0xd4, 0x3e, 0xd5, 0x23, 0x37, 0xda, 0x30, 0x08, 0xde, 0xa6, 0x7c, 0xcb, 0x97, 0x54, 0x44, 0x44, 0x47, 0x77, 0x83, 0x11, 0x20, 0x5d, 0xd7, 0x2a, 0xf6, 0x2d, 0xf4, 0x99, 0x6c, 0xd7, 0x10, 0x12, 0x3b, 0xf6, 0x35, 0xfd, 0x44, 0xce, 0x93, 0x8f, 0xb6, 0x63, 0x00, 0x05, 0xfe, 0x62, 0x6c, 0xc6, 0x39, 0xec, 0x44, 0x44, 0xaf, 0xb1, 0x00, 0x01, 0x37, 0xcd, 0x97, 0x54, 0x5d, 0xf9, 0x01, 0x28, 0xdf, 0xd6, 0x00, 0x4c, 0xed, 0xa6, 0x53, 0x25, 0xbf, 0x93, 0x1a, 0xf7, 0x38, 0xe6, + 0x00, 0x02, 0x9f, 0xdb, 0xba, 0xba, 0xba, 0xcf, 0xe3, 0x00, 0x00, 0x00, 0x7e, 0xb7, 0x9b, 0xdf, 0xc3, 0x3e, 0xea, 0x99, 0x9b, 0xfd, 0x61, 0x06, 0xb9, 0x40, 0x25, 0xac, 0xdd, 0xcc, 0xcc, 0xcc, 0xcc, 0xdd, 0xa4, 0x00, 0x00, 0x5c, 0xe7, 0x2a, 0xf8, 0x6d, 0xf4, 0x89, 0xae, 0xd7, 0x00, 0x47, 0x8d, 0xfa, 0x89, 0xfe, 0x89, 0xdf, 0xb9, 0xbf, 0xdc, 0xd8, 0x20, 0x07, 0xfe, 0x77, 0xcc, 0x72, 0x15, 0xcf, 0x78, 0xbb, 0xef, 0xa1, 0x00, 0x15, 0x9c, 0xb7, 0x35, 0x9b, 0xcf, 0xf8, 0x00, 0x02, 0x8e, 0xe7, 0x00, 0x18, 0x96, 0x31, 0x13, 0x6c, 0xda, 0x50, 0x1a, 0xfb, 0x9c, 0xfb, + 0x00, 0x03, 0x9e, 0xc9, 0x99, 0x99, 0x9a, 0xbf, 0xc3, 0x00, 0x00, 0x01, 0x7e, 0xa5, 0x8b, 0xee, 0x92, 0x1b, 0xdd, 0xdd, 0xdd, 0xda, 0x50, 0x02, 0x43, 0x00, 0x01, 0x36, 0x9b, 0xbc, 0xcc, 0xcc, 0xcc, 0xca, 0x41, 0x00, 0x00, 0x5d, 0xd7, 0x2a, 0xfb, 0xcf, 0xe3, 0x7b, 0xdf, 0xc5, 0x10, 0x5a, 0xbb, 0xbb, 0xab, 0xbc, 0xab, 0xbb, 0xba, 0xbb, 0xbb, 0xba, 0x30, 0x04, 0xac, 0xac, 0xa6, 0x20, 0x02, 0x8c, 0x55, 0x9d, 0xfe, 0x71, 0x00, 0x38, 0xa7, 0x42, 0x02, 0x59, 0xef, 0xc4, 0x00, 0x00, 0x39, 0xa5, 0x00, 0x02, 0x30, 0x00, 0x59, 0xcb, 0x93, 0x10, 0x17, 0xde, 0xde, 0xea, + 0x00, 0x02, 0x7a, 0x63, 0x22, 0x22, 0x22, 0x6a, 0x71, 0x00, 0x00, 0x00, 0x5a, 0x62, 0x25, 0xa9, 0x31, 0x03, 0x78, 0x88, 0x88, 0x63, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x22, 0x32, 0x33, 0x44, 0x44, 0x43, 0x00, 0x00, 0x00, 0x4a, 0xa5, 0x18, 0xa6, 0x8c, 0x92, 0x24, 0x9b, 0x81, 0x00, 0x13, 0x33, 0x33, 0x23, 0x23, 0x23, 0x23, 0x33, 0x23, 0x33, 0x32, 0x10, 0x00, 0x34, 0xa8, 0x31, 0x00, 0x00, 0x34, 0x21, 0x27, 0xb9, 0x20, 0x00, 0x14, 0x22, 0x00, 0x00, 0x02, 0x9a, 0x60, 0x00, 0x00, 0x02, 0x21, 0x00, 0x00, 0x00, 0x01, 0x8a, 0x84, 0x10, 0x00, 0x02, 0x78, 0x99, 0x83, +}; + +const lv_img_dsc_t text = { + .header.cf = LV_IMG_CF_INDEXED_4BIT, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 188, + .header.h = 20, + .data_size = 1944, + .data = text_map, +}; diff --git a/IOT/10019_ws63_smart_transport/code/bsp/ui.c b/IOT/10019_ws63_smart_transport/code/bsp/ui.c new file mode 100644 index 0000000000000000000000000000000000000000..f1b509c49f128d0047582c3a851f953e6cb3d226 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/ui.c @@ -0,0 +1,603 @@ +/* + * UI.c + * + * Created on: Jul 1, 2024 + * Author: 12433 + */ +#include "ui.h" +char STA_IP[20]; + +static lv_obj_t *TitleObj; +static lv_obj_t *WifiLogo; /* WiFi Logo Obj */ +static lv_style_t BtnStyle; +static lv_style_t TextareaStyle; +static lv_obj_t *KeyBoardObj; +lv_obj_t *modeswitch; + +LV_IMG_DECLARE(led); /* Led Img */ +LV_IMG_DECLARE(fan); /* Fan Img */ +LV_IMG_DECLARE(wet); /* Wet Img */ +LV_IMG_DECLARE(text); /* Title Img */ +LV_FONT_DECLARE(syht_font_10); /* FONT 16 */ + +/* Data display panel:temperature, humidity */ +lv_obj_t *Hum_arc; +lv_obj_t *Tmp_arc; +lv_obj_t *Tem_label; +lv_obj_t *Hum_label; +lv_obj_t *Msgbox; +/* Local control panel */ +lv_obj_t *ABC; +lv_obj_t *FanS; +lv_obj_t *LedS; +lv_obj_t *WetS; +lv_obj_t *MqttConnectState; +lv_obj_t *MqttConnectBtn; + + +char MQTT_SUB_TOPIC[128]; +char MQTT_PUB_TOPIC[128]; +char MQTT_ENABLE_TLS[2] = {0}; + +struct Threshold_t Threshold; + +static lv_obj_t *WifiPasswordTextarea; +static lv_obj_t *WifiUsrnameTextarea; +static lv_obj_t *WifiIPLabel; + + +/* MsbBox event */ +static void MsgboxCb(lv_event_t *e) +{ + lv_obj_t *target = lv_event_get_current_target(e); + + if (lv_msgbox_get_active_btn(target) == 2) + { + lv_obj_add_flag(Msgbox, LV_OBJ_FLAG_HIDDEN); + } +} + +static void WifiConnectBtnCb(lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t *target = lv_event_get_target(e); + lv_obj_t *user = lv_event_get_user_data(e); + + if (LV_EVENT_CLICKED != code) + return; + + // 获取 WiFi 用户名和密码 + const char *WifiNameBuffer = lv_textarea_get_text(WifiUsrnameTextarea); + const char *WifiPassBuffer = lv_textarea_get_text(WifiPasswordTextarea); + + // 输入校验 + if (0 == strlen(WifiNameBuffer) || 8 > strlen(WifiPassBuffer)) + { + lv_obj_t *text = lv_msgbox_get_text(Msgbox); + lv_label_set_text(text, "The account or password is incorrect"); + lv_obj_clear_flag(Msgbox, LV_OBJ_FLAG_HIDDEN); + return; + } + printf(" 【%s 1234567fail !!!】\n"); + // WiFi 连接 + if (ERRCODE_SUCC == wifi_connect((char *)WifiNameBuffer, (char *)WifiPassBuffer)) + { + // === 连接成功 === + lv_obj_clear_flag(target, LV_OBJ_FLAG_CLICKABLE); + lv_obj_set_style_bg_color(target, lv_color_make(157, 172, 186), LV_PART_MAIN); + lv_label_set_text(user, "Connected"); + lv_obj_clear_flag(WifiLogo, LV_OBJ_FLAG_HIDDEN); + lv_obj_align_to(user, target, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + lv_label_set_text_fmt(WifiIPLabel, "IP:%s", STA_IP); + lv_obj_align_to(WifiIPLabel, user, LV_ALIGN_OUT_BOTTOM_MID, 0, 20); + + osDelay(100); + mqtt_connect(); // 连接 MQTT + return; + } + else + { + // === 连接失败 === + lv_obj_t *text = lv_msgbox_get_text(Msgbox); + lv_label_set_text(text, "WiFi connection failed!\nCheck password or signal strength."); + lv_obj_clear_flag(Msgbox, LV_OBJ_FLAG_HIDDEN); + } +} + +/* Mode switching */ +static void modeswitchCb(lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t *target = lv_event_get_target(e); + + if (code != LV_EVENT_CLICKED) + return; + + if (lv_obj_has_state(target, LV_STATE_CHECKED)) + { + My_Mode.CurrentMode = SMART; + //send_Bool_data("smart", 0, "false", "true"); + } + else + { + My_Mode.CurrentMode = USR; + // send_Bool_data("smart", 0, "false", "false"); + } +} +/* tool control button callback */ +static void FanS_Cb(lv_event_t *e) +{ + if (LV_EVENT_CLICKED != lv_event_get_code(e)) + return; + + // 切换 ON/OFF + uint8_t new_state = (My_Sensor.FanCurrentState == 0) ? 1 : 0; + My_Sensor.FanCurrentState = new_state; + user_fan_control(new_state); // 控制风扇硬件 + + // 更新按钮颜色 + lv_obj_set_style_bg_color(FanS, + new_state ? lv_color_make(47, 174, 108) : lv_color_make(10, 38, 116), LV_PART_MAIN); + + // 上报状态 + if (1 == My_Mode.WeChatOnline) + send_Bool_data("fan", 0, "true", new_state ? "true" : "false"); +} + +// ==================== 加湿器点击回调 ==================== +static void WetS_Cb(lv_event_t *e) +{ + if (LV_EVENT_CLICKED != lv_event_get_code(e)) + return; + + uint8_t new_state = (My_Sensor.WetCurrentState == 0) ? 1 : 0; + My_Sensor.WetCurrentState = new_state; + user_wet_control(new_state); + + lv_obj_set_style_bg_color(WetS, + new_state ? lv_color_make(47, 174, 108) : lv_color_make(10, 38, 116), LV_PART_MAIN); + + if (1 == My_Mode.WeChatOnline) + send_Bool_data("wet", 0, "true", new_state ? "true" : "false"); +} + +// ==================== LED 点击回调 ==================== +static void LedS_Cb(lv_event_t *e) +{ + if (LV_EVENT_CLICKED != lv_event_get_code(e)) + return; + + uint8_t new_state = (My_Sensor.LedCurrentState == 0) ? 1 : 0; + My_Sensor.LedCurrentState = new_state; + user_led_control(new_state); + + lv_obj_set_style_bg_color(LedS, + new_state ? lv_color_make(47, 174, 108) : lv_color_make(10, 38, 116), LV_PART_MAIN); + + if (1 == My_Mode.WeChatOnline) + send_Bool_data("led", 0, "true", new_state ? "true" : "false"); +} + +// ==================== ABC 点击回调 ==================== +static void ABC_Cb(lv_event_t *e) +{ + if (LV_EVENT_CLICKED != lv_event_get_code(e)) + return; + + uint8_t new_state = (My_Sensor.ABCCurrentState == 0) ? 1 : 0; + My_Sensor.ABCCurrentState = new_state; + user_ABC_control(new_state); + + lv_obj_set_style_bg_color(ABC, + new_state ? lv_color_make(47, 174, 108) : lv_color_make(10, 38, 116), LV_PART_MAIN); + + if (1 == My_Mode.WeChatOnline) + send_Bool_data("abc", 0, "true", new_state ? "true" : "false"); +} + +/* Data display panel Init */ +static void DataObjInit(lv_obj_t *Parent) +{ + /* set DataObj style */ + lv_obj_set_style_text_font(Parent, &syht_font_10, LV_PART_MAIN); + lv_obj_set_style_text_opa(Parent, LV_OPA_COVER, LV_PART_MAIN); + lv_obj_set_style_text_color(Parent, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + + /* humidity arc */ + Hum_arc = lv_arc_create(Parent); + lv_obj_clear_flag(Hum_arc, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); + lv_obj_set_size(Hum_arc, 90, 90); + lv_arc_set_range(Hum_arc, 0, 100); + lv_arc_set_angles(Hum_arc, 120, 60); + lv_arc_set_bg_angles(Hum_arc, 120, 60); + lv_obj_remove_style(Hum_arc, NULL, LV_PART_KNOB); + lv_obj_set_style_arc_color(Hum_arc, lv_color_make(16, 32, 84), LV_PART_MAIN); + lv_obj_set_style_arc_color(Hum_arc, lv_color_hex(0xFFFF00), LV_PART_INDICATOR); + lv_obj_align(Hum_arc, LV_ALIGN_BOTTOM_MID, 0, 0); + + /* temperature arc */ + Tmp_arc = lv_arc_create(Hum_arc); + lv_obj_clear_flag(Tmp_arc, LV_OBJ_FLAG_CLICKABLE | LV_OBJ_FLAG_SCROLLABLE); + lv_obj_set_size(Tmp_arc, LV_PCT(80), LV_PCT(80)); + lv_arc_set_range(Tmp_arc, -20, 50); + lv_arc_set_angles(Tmp_arc, 120, 60); + lv_arc_set_bg_angles(Tmp_arc, 120, 60); + lv_obj_remove_style(Tmp_arc, NULL, LV_PART_KNOB); + lv_obj_set_style_arc_color(Tmp_arc, lv_color_make(16, 32, 84), LV_PART_MAIN); + lv_obj_set_style_arc_color(Tmp_arc, lv_color_hex(0xFF0000), LV_PART_INDICATOR); + lv_obj_center(Tmp_arc); + + /* Style panel */ + lv_obj_t *panel1 = lv_obj_create(Tmp_arc); + lv_obj_set_size(panel1, LV_PCT(80), LV_PCT(80)); + lv_obj_set_style_radius(panel1, 360, LV_PART_MAIN); + lv_obj_set_style_bg_color(panel1, lv_color_make(100, 100, 100), LV_PART_MAIN); + lv_obj_set_style_bg_grad_color(panel1, lv_color_hex(0x66FFE6), LV_PART_MAIN); + lv_obj_set_style_bg_grad_dir(panel1, LV_GRAD_DIR_VER, LV_PART_MAIN); + lv_obj_set_style_border_color(panel1, lv_color_make(45, 50, 60), LV_PART_MAIN); + lv_obj_set_style_text_font(panel1, &syht_font_10, LV_PART_MAIN); + lv_obj_set_style_text_opa(panel1, LV_OPA_COVER, LV_PART_MAIN); + lv_obj_set_style_text_color(panel1, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_obj_center(panel1); + + /* temperature display label */ + Tem_label = lv_label_create(panel1); + lv_obj_align(Tem_label, LV_ALIGN_CENTER, 0, -10); + + /* humidity display label */ + Hum_label = lv_label_create(panel1); + lv_obj_align(Hum_label, LV_ALIGN_CENTER, 0, 5); + + /* temperature color tag */ + lv_obj_t *Tem_tag = lv_obj_create(Parent); + lv_obj_set_size(Tem_tag, 12, 12); + lv_obj_set_style_pad_all(Tem_tag, 0, 0); + lv_obj_set_style_bg_color(Tem_tag, lv_color_hex(0xFF0000), LV_PART_MAIN); + lv_obj_align_to(Tem_tag, Hum_arc, LV_ALIGN_OUT_TOP_LEFT, -20, 0); + lv_obj_t *TemTagLabel = lv_label_create(Parent); + lv_label_set_text(TemTagLabel, "温度"); + lv_obj_align_to(TemTagLabel, Tem_tag, LV_ALIGN_OUT_RIGHT_MID, 4, 0); + + /* humidity color tag */ + lv_obj_t *Hum_tag = lv_obj_create(Parent); + lv_obj_set_size(Hum_tag, 12, 12); + lv_obj_set_style_pad_all(Hum_tag, 0, 0); + lv_obj_set_style_bg_color(Hum_tag, lv_color_hex(0xFFFF00), LV_PART_MAIN); + lv_obj_align_to(Hum_tag, Tem_tag, LV_ALIGN_OUT_RIGHT_MID, 70, 0); + lv_obj_t *HumTagLabel = lv_label_create(Parent); + lv_label_set_text(HumTagLabel, "湿度"); + lv_obj_set_style_opa(HumTagLabel, LV_OPA_COVER, LV_PART_MAIN); + lv_obj_align_to(HumTagLabel, Hum_tag, LV_ALIGN_OUT_RIGHT_MID, 4, 0); + + /* led image init */ + lv_obj_t *led_img = lv_img_create(Parent); + lv_img_set_src(led_img, &led); + lv_obj_align(led_img, LV_ALIGN_TOP_LEFT, 5, 20); + + /* fan image init */ + lv_obj_t *fan_img = lv_img_create(Parent); + lv_img_set_src(fan_img, &fan); + lv_obj_align(fan_img, LV_ALIGN_TOP_MID, 0, 20); + + /* wet image init */ + lv_obj_t *wet_img = lv_img_create(Parent); + lv_img_set_src(wet_img, &wet); + lv_obj_align(wet_img, LV_ALIGN_TOP_RIGHT, -5, 20); +} + +/* Textarea callback */ +static void Textarea_cb(lv_event_t *e) +{ + lv_event_code_t code = lv_event_get_code(e); + lv_obj_t *target = lv_event_get_target(e); + + char *Userdata = (char *)lv_event_get_user_data(e); + + if (LV_EVENT_FOCUSED == code) + { + if (NULL != Userdata) + { + lv_keyboard_set_mode(KeyBoardObj, LV_KEYBOARD_MODE_NUMBER); + } + if (NULL == Userdata) + { + lv_keyboard_set_mode(KeyBoardObj, LV_KEYBOARD_MODE_TEXT_LOWER); + } + if (lv_indev_get_type(lv_indev_get_act()) != LV_INDEV_TYPE_KEYPAD) + { + lv_keyboard_set_textarea(KeyBoardObj, target); + lv_obj_set_style_max_height(KeyBoardObj, LV_HOR_RES * 1 / 3, 0); + lv_obj_clear_flag(KeyBoardObj, LV_OBJ_FLAG_HIDDEN); + lv_obj_scroll_to_view_recursive(target, LV_ANIM_OFF); + } + return; + } + else if (code == LV_EVENT_DEFOCUSED) + { + lv_keyboard_set_textarea(KeyBoardObj, NULL); + lv_obj_add_flag(KeyBoardObj, LV_OBJ_FLAG_HIDDEN); + } + else if (code == LV_EVENT_READY || code == LV_EVENT_CANCEL) + { + lv_obj_add_flag(KeyBoardObj, LV_OBJ_FLAG_HIDDEN); + lv_obj_clear_state(target, LV_STATE_FOCUSED); + lv_indev_reset(NULL, target); /*To forget the last clicked object to make it focusable again*/ + } +} + +/* Local control panel init */ +static void LocalTvInit(lv_obj_t *parent) +{ + + /* set obj font style */ + lv_obj_set_style_text_font(parent, &syht_font_10, LV_PART_MAIN); + lv_obj_set_style_text_color(parent, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_obj_set_style_pad_all(parent, 0, LV_PART_MAIN); + + lv_obj_t *ModeSw = lv_label_create(parent); + lv_label_set_text(ModeSw, "模式选择"); + lv_obj_align(ModeSw, LV_ALIGN_TOP_LEFT, 60, 10); + + modeswitch = lv_switch_create(parent); + lv_obj_set_style_bg_color(modeswitch, lv_color_make(183, 200, 236), LV_PART_MAIN); + lv_obj_align_to(modeswitch, ModeSw, LV_ALIGN_OUT_BOTTOM_MID, 0, 5); + lv_obj_add_event_cb(modeswitch, modeswitchCb, LV_EVENT_CLICKED, NULL); + lv_obj_t *usermode = lv_label_create(parent); + lv_label_set_text(usermode, "手动"); + lv_obj_align_to(usermode, modeswitch, LV_ALIGN_OUT_LEFT_MID, -5, 0); + + lv_obj_t *aimode = lv_label_create(parent); + lv_label_set_text(aimode, "自动"); + lv_obj_align_to(aimode, modeswitch, LV_ALIGN_OUT_RIGHT_MID, 5, 0); + + /* */ + lv_obj_t *toolobj = lv_obj_create(parent); + lv_obj_set_size(toolobj, 150, 95); + lv_obj_set_style_bg_color(toolobj, lv_color_make(17, 42, 109), LV_PART_MAIN); + lv_obj_set_style_border_color(toolobj, lv_color_make(25, 59, 154), LV_PART_MAIN); + lv_obj_set_style_pad_all(toolobj, 6, LV_PART_MAIN); + lv_obj_align_to(toolobj, ModeSw, LV_ALIGN_OUT_BOTTOM_LEFT, -60, 40); + + lv_obj_t *toolobjTitle = lv_label_create(toolobj); + lv_label_set_text(toolobjTitle, "工具控制"); + lv_obj_set_style_text_color(toolobjTitle, lv_color_make(116, 144, 219), LV_PART_MAIN); + + /* */ + FanS = lv_btn_create(toolobj); + lv_obj_add_style(FanS, &BtnStyle, LV_PART_MAIN); + lv_obj_align_to(FanS, toolobjTitle, LV_ALIGN_OUT_BOTTOM_LEFT, 1, 1); + + lv_obj_t *FanLabel = lv_label_create(FanS); + lv_label_set_text(FanLabel, "风扇"); + lv_obj_set_style_text_font(FanLabel, &syht_font_10, LV_PART_MAIN); + lv_obj_center(FanLabel); + + lv_obj_add_event_cb(FanS, FanS_Cb, LV_EVENT_CLICKED, NULL); + WetS = lv_btn_create(toolobj); + lv_obj_add_style(WetS, &BtnStyle, LV_PART_MAIN); + lv_obj_align_to(WetS, FanS, LV_ALIGN_OUT_RIGHT_MID, 5, 0); + + lv_obj_t *WetLabel = lv_label_create(WetS); + lv_label_set_text(WetLabel, "加湿"); + lv_obj_set_style_text_font(WetLabel, &syht_font_10, LV_PART_MAIN); + lv_obj_center(WetLabel); + + lv_obj_add_event_cb(WetS, WetS_Cb, LV_EVENT_CLICKED, NULL); + + LedS = lv_btn_create(toolobj); + lv_obj_add_style(LedS, &BtnStyle, LV_PART_MAIN); + lv_obj_align_to(LedS, FanS, LV_ALIGN_BOTTOM_MID, 0, 45); + + lv_obj_t *LedLabel = lv_label_create(LedS); + lv_label_set_text(LedLabel, "灯光"); + lv_obj_set_style_text_font(LedLabel, &syht_font_10, LV_PART_MAIN); + lv_obj_center(LedLabel); + + lv_obj_add_event_cb(LedS, LedS_Cb, LV_EVENT_CLICKED, NULL); + + ABC = lv_btn_create(toolobj); + lv_obj_add_style(ABC, &BtnStyle, LV_PART_MAIN); + lv_obj_align_to(ABC, LedS, LV_ALIGN_OUT_RIGHT_MID, 5, 0); + + lv_obj_t *ABCLabel = lv_label_create(ABC); + lv_label_set_text(ABCLabel, "固定"); + lv_obj_set_style_text_font(ABCLabel, &syht_font_10, LV_PART_MAIN); + lv_obj_center(ABCLabel); + + lv_obj_add_event_cb(ABC, ABC_Cb, LV_EVENT_CLICKED, NULL); +} + +/* WIFI control panel init */ +static void WifiTvInit(lv_obj_t *parent) +{ + lv_obj_set_style_text_font(parent, &syht_font_10, LV_PART_MAIN); + + lv_obj_t *WifiTvNameLabel = lv_label_create(parent); + lv_label_set_text(WifiTvNameLabel, "WIFI连接"); + lv_obj_set_style_text_color(WifiTvNameLabel, lv_color_make(255, 255, 255), LV_PART_MAIN); + lv_obj_align(WifiTvNameLabel, LV_ALIGN_TOP_MID, 0, 0); + + WifiUsrnameTextarea = lv_textarea_create(parent); + lv_textarea_set_one_line(WifiUsrnameTextarea, true); + lv_obj_set_width(WifiUsrnameTextarea, 100); + lv_obj_add_style(WifiUsrnameTextarea, &TextareaStyle, LV_PART_MAIN); + lv_textarea_set_placeholder_text(WifiUsrnameTextarea, "请输入"); + lv_textarea_set_text(WifiUsrnameTextarea, WifiUsrname); + lv_obj_align_to(WifiUsrnameTextarea, WifiTvNameLabel, LV_ALIGN_OUT_BOTTOM_MID, 10, 0); + + lv_obj_t *UsrnameLabel = lv_label_create(parent); + lv_obj_set_style_text_color(UsrnameLabel, lv_color_make(255, 255, 255), LV_PART_MAIN); + lv_label_set_text(UsrnameLabel, "名称"); + lv_obj_align_to(UsrnameLabel, WifiUsrnameTextarea, LV_ALIGN_OUT_LEFT_MID, -3, 0); + + WifiPasswordTextarea = lv_textarea_create(parent); + lv_textarea_set_one_line(WifiPasswordTextarea, true); + lv_obj_set_width(WifiPasswordTextarea, 100); + lv_obj_add_style(WifiPasswordTextarea, &TextareaStyle, LV_PART_MAIN); + lv_textarea_set_placeholder_text(WifiPasswordTextarea, "请输入"); + lv_textarea_set_text(WifiPasswordTextarea, WifiPassword); + lv_obj_align_to(WifiPasswordTextarea, WifiUsrnameTextarea, LV_ALIGN_OUT_BOTTOM_RIGHT, 0, 5); + + lv_obj_t *passwordLabel = lv_label_create(parent); + lv_obj_set_style_text_color(passwordLabel, lv_color_make(255, 255, 255), LV_PART_MAIN); + lv_label_set_text(passwordLabel, "密码"); + lv_obj_align_to(passwordLabel, WifiPasswordTextarea, LV_ALIGN_OUT_LEFT_MID, -3, 0); + + lv_obj_t *WifiConnectBtn = lv_btn_create(parent); + lv_obj_add_style(WifiConnectBtn, &BtnStyle, LV_PART_MAIN); + lv_obj_align_to(WifiConnectBtn, WifiPasswordTextarea, LV_ALIGN_OUT_BOTTOM_MID, 0, 5); + + lv_obj_t *WifiConnectBtnName = lv_label_create(WifiConnectBtn); + lv_obj_set_style_opa(WifiConnectBtnName, LV_OPA_COVER, LV_PART_MAIN); + lv_label_set_text(WifiConnectBtnName, "连接"); + lv_obj_center(WifiConnectBtnName); + + lv_obj_t *WifiStateLabel = lv_label_create(parent); + lv_obj_set_style_text_color(WifiStateLabel, lv_color_make(255, 255, 255), LV_PART_MAIN); + lv_label_set_text(WifiStateLabel, "Disconnect"); + lv_obj_align_to(WifiStateLabel, WifiConnectBtn, LV_ALIGN_OUT_BOTTOM_MID, 0, 5); + + WifiIPLabel = lv_label_create(parent); + lv_obj_set_style_text_color(WifiIPLabel, lv_color_make(255, 255, 255), LV_PART_MAIN); + lv_label_set_text(WifiIPLabel, "0.0.0.0"); + lv_obj_align_to(WifiIPLabel, WifiStateLabel, LV_ALIGN_OUT_BOTTOM_MID, 0, 10); + + lv_obj_add_event_cb(WifiUsrnameTextarea, Textarea_cb, LV_EVENT_ALL, NULL); + + lv_obj_add_event_cb(WifiPasswordTextarea, Textarea_cb, LV_EVENT_ALL, NULL); + + lv_obj_add_event_cb(WifiConnectBtn, WifiConnectBtnCb, LV_EVENT_CLICKED, WifiStateLabel); +} + +void StyleInit(void) +{ + /* Btn style Init */ + lv_style_init(&BtnStyle); + lv_style_set_width(&BtnStyle, 60); + lv_style_set_height(&BtnStyle, 33); + lv_style_set_bg_color(&BtnStyle, lv_color_make(10, 38, 116)); + lv_style_set_shadow_width(&BtnStyle, 0); + lv_style_set_border_width(&BtnStyle, 1); + lv_style_set_radius(&BtnStyle, 6); + lv_style_set_border_color(&BtnStyle, lv_color_make(20, 60, 170)); + + /* Textarea style init */ + lv_style_init(&TextareaStyle); + lv_style_set_bg_color(&TextareaStyle, lv_color_make(212, 220, 227)); + lv_style_set_border_width(&TextareaStyle, 1); + lv_style_set_border_color(&TextareaStyle, lv_color_make(110, 140, 207)); +} + +/* UI INIT */ +void UI_Init() +{ + printf("UI_Init start!\n"); // 开头打印 + /* style init */ + StyleInit(); + + /* background color */ + lv_obj_set_style_bg_color(lv_scr_act(), lv_color_hex(0x131a3b), LV_PART_MAIN); + + /* Title */ + TitleObj = lv_img_create(lv_scr_act()); + lv_img_set_src(TitleObj, &text); + lv_obj_align(TitleObj, LV_ALIGN_TOP_MID, 0, 0); + + /* Wifi Connect Logo */ + WifiLogo = lv_label_create(lv_scr_act()); + lv_label_set_text(WifiLogo, LV_SYMBOL_WIFI); + lv_obj_set_style_text_color(WifiLogo, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_obj_add_flag(WifiLogo, LV_OBJ_FLAG_HIDDEN); + lv_obj_align_to(WifiLogo, TitleObj, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + + static lv_style_t PanelStyle; + lv_style_init(&PanelStyle); + lv_style_set_bg_color(&PanelStyle, lv_color_make(21, 49, 134)); + lv_style_set_border_width(&PanelStyle, 1); + lv_style_set_border_color(&PanelStyle, lv_color_make(157, 185, 218)); + lv_style_set_shadow_width(&PanelStyle, 10); + lv_style_set_shadow_spread(&PanelStyle, 2); + lv_style_set_shadow_color(&PanelStyle, lv_color_make(22, 46, 124)); + lv_style_set_shadow_opa(&PanelStyle, LV_OPA_COVER); + lv_style_set_pad_all(&PanelStyle, 0); + + static lv_style_t MainObjStyle; + lv_style_init(&MainObjStyle); + lv_style_set_bg_color(&MainObjStyle, lv_color_make(16, 32, 84)); + lv_style_set_border_width(&MainObjStyle, 0); + lv_style_set_shadow_width(&MainObjStyle, 15); + lv_style_set_shadow_spread(&MainObjStyle, 5); + lv_style_set_shadow_color(&MainObjStyle, lv_color_make(16, 32, 84)); + lv_style_set_opa(&MainObjStyle, LV_OPA_COVER); + lv_style_set_pad_all(&MainObjStyle, 0); + + /* Data display panel */ + lv_obj_t *DataObjPanel = lv_obj_create(lv_scr_act()); + lv_obj_set_size(DataObjPanel, LV_PCT(45), LV_PCT(85)); + lv_obj_add_style(DataObjPanel, &PanelStyle, LV_PART_MAIN); + lv_obj_align(DataObjPanel, LV_ALIGN_TOP_LEFT, 5, 30); + + lv_obj_t *DataObj = lv_obj_create(DataObjPanel); + lv_obj_set_size(DataObj, LV_PCT(95), LV_PCT(96)); + lv_obj_add_style(DataObj, &MainObjStyle, LV_PART_MAIN); + lv_obj_center(DataObj); + + /* Control panel */ + lv_obj_t *CtlObjPanel = lv_obj_create(lv_scr_act()); + lv_obj_set_size(CtlObjPanel, LV_PCT(50), LV_PCT(85)); + lv_obj_add_style(CtlObjPanel, &PanelStyle, LV_PART_MAIN); + lv_obj_align_to(CtlObjPanel, DataObj, LV_ALIGN_OUT_RIGHT_MID, 10, 0); + + lv_obj_t *CtlObj = lv_obj_create(CtlObjPanel); + lv_obj_set_size(CtlObj, LV_PCT(95), LV_PCT(96)); + lv_obj_add_style(CtlObj, &MainObjStyle, LV_PART_MAIN); + lv_obj_center(CtlObj); + + /* table View */ + lv_obj_t *tabview = lv_tabview_create(CtlObj, LV_DIR_TOP, 40); + lv_obj_set_style_radius(tabview, 7, LV_PART_MAIN); + lv_obj_set_style_bg_color(tabview, lv_color_make(26, 37, 83), LV_PART_MAIN); + + lv_obj_t *tab_btns = lv_tabview_get_tab_btns(tabview); + lv_obj_set_style_radius(tab_btns, 0, 0); + lv_obj_set_style_bg_color(tab_btns, lv_color_hex(0xFFFFFF), LV_PART_MAIN); + lv_obj_set_style_border_color(tab_btns, lv_color_make(26, 121, 104), LV_PART_ITEMS | LV_STATE_CHECKED); + lv_obj_set_style_text_color(tab_btns, lv_color_make(26, 121, 104), LV_PART_ITEMS | LV_STATE_CHECKED); + lv_obj_set_height(tab_btns, 35); + + /* the msgbox */ + static const char *msgboxbtns[] = {" ", " ", "Close", ""}; + Msgbox = lv_msgbox_create(lv_scr_act(), LV_SYMBOL_WARNING " Notice", "msgbox", msgboxbtns, false); + lv_obj_set_style_bg_opa(Msgbox, LV_OPA_COVER, LV_PART_MAIN); + lv_obj_add_flag(Msgbox, LV_OBJ_FLAG_HIDDEN); + lv_obj_center(Msgbox); + + lv_obj_t *msgboxtitle = lv_msgbox_get_title(Msgbox); + lv_obj_set_style_text_font(msgboxtitle, &lv_font_montserrat_14, LV_STATE_DEFAULT); + lv_obj_set_style_text_color(msgboxtitle, lv_color_hex(0xFF0000), LV_STATE_DEFAULT); + lv_obj_add_event_cb(Msgbox, MsgboxCb, LV_EVENT_VALUE_CHANGED, NULL); + + lv_obj_t *msgboxbtn = lv_msgbox_get_btns(Msgbox); + lv_obj_set_style_bg_opa(msgboxbtn, 0, LV_PART_ITEMS); + lv_obj_set_style_shadow_width(msgboxbtn, 0, LV_PART_ITEMS); + lv_obj_set_style_text_color(msgboxbtn, lv_color_hex(0x2271df), LV_PART_ITEMS); + printf("UI_Init end!\n"); // 结尾打印 + /* KeyBoard */ + KeyBoardObj = lv_keyboard_create(lv_scr_act()); + lv_obj_add_flag(KeyBoardObj, LV_OBJ_FLAG_HIDDEN); + + /* Local control panel */ + lv_obj_t *LocalTv = lv_tabview_add_tab(tabview, "Local"); + + /* wifi connection panel */ + lv_obj_t *WifiTv = lv_tabview_add_tab(tabview, "WIFI"); + + /* Data display panel Init */ + DataObjInit(DataObj); + + // /* Local control panel init */ + LocalTvInit(LocalTv); + + /* WIFI control panel init */ + WifiTvInit(WifiTv); +} diff --git a/IOT/10019_ws63_smart_transport/code/bsp/ui.h b/IOT/10019_ws63_smart_transport/code/bsp/ui.h new file mode 100644 index 0000000000000000000000000000000000000000..870df116d2b55902ab275b15004529ff3d68770e --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/ui.h @@ -0,0 +1,59 @@ +/* + * UI.h + * + * Created on: Jul 1, 2024 + * Author: W + */ + +#ifndef UI_UI_H_ +#define UI_UI_H_ + +#include "cmsis_os2.h" +#include "../lvgl_greenhouse_demo.h" + +#include "stdio.h" +#include "string.h" +#include "stdlib.h" +#include "ctype.h" +#include +#include "lvgl.h" + +extern lv_obj_t *FanS; +extern lv_obj_t *WetS; +extern lv_obj_t *LedS; +extern lv_obj_t *ABC; + +enum SensorType{ + IO, + AD +}; + +enum ModeType{ + USR, + SMART, +}; + +enum MQTTState{ + DISCONNECTED, + CONNECTED, + NOT +}; + +struct Threshold_t +{ + char Temp; + char Humid; +}; + +enum FANSTATE{ + FANSPREEDOFF, + FANSPREED1 , + FANSPREED2, + FANSPREED3, + +}; +#define WifiUsrname "1001" //WiFi名称 +#define WifiPassword "12345678" //WiFi密码 + +void UI_Init(void); +#endif /* UI_UI_H_ */ diff --git a/IOT/10019_ws63_smart_transport/code/bsp/wet.c b/IOT/10019_ws63_smart_transport/code/bsp/wet.c new file mode 100644 index 0000000000000000000000000000000000000000..1faa9f2d8abe414d9b6ac88a582ff0cb919cb92f --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/wet.c @@ -0,0 +1,226 @@ +#ifdef __has_include + #if __has_include("lvgl.h") + #ifndef LV_LVGL_H_INCLUDE_SIMPLE + #define LV_LVGL_H_INCLUDE_SIMPLE + #endif + #endif +#endif + +#if defined(LV_LVGL_H_INCLUDE_SIMPLE) + #include "lvgl.h" +#else + #include "lvgl/lvgl.h" +#endif + + +#ifndef LV_ATTRIBUTE_MEM_ALIGN +#define LV_ATTRIBUTE_MEM_ALIGN +#endif + +#ifndef LV_ATTRIBUTE_IMG_WET +#define LV_ATTRIBUTE_IMG_WET +#endif + +const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_LARGE_CONST LV_ATTRIBUTE_IMG_WET uint8_t wet_map[] = { +#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8 + /*Pixel format: Alpha 8 bit, Red: 3 bit, Green: 3 bit, Blue: 2 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xaf, 0xff, 0xef, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xaf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x30, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xef, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xcf, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xef, 0xff, 0xff, 0xff, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0xff, 0x40, 0xff, 0xff, 0xff, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xd0, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0xff, 0x90, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xcf, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0xff, 0x30, 0xff, 0xff, 0xff, 0xff, 0xff, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0x60, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0x50, 0x00, 0x00, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x70, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x20, 0xff, 0xff, 0xff, 0xff, 0xff, 0xa0, 0x00, 0x00, 0xff, 0x50, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcf, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0x5f, 0xff, 0x3f, 0xff, 0x4f, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x30, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0x8f, 0xff, 0x5f, 0xff, 0x5f, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0x00, 0x00, 0xff, 0x10, 0xff, 0xd0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xb0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0x00, 0x00, 0x00, 0x00, 0xff, 0x80, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xa0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0x80, 0xff, 0x70, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x60, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0x80, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x3f, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0x80, 0xff, 0x90, 0xff, 0xa0, 0xff, 0x80, 0xff, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x9f, 0xff, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x10, 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xbf, 0xff, 0x9f, 0xff, 0x7f, 0xff, 0xaf, 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x40, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x90, 0xff, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0x30, 0xff, 0x80, 0xff, 0xc0, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xd0, 0xff, 0x90, 0xff, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP == 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xaf, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xaf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x9f, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xcf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xdf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x70, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x20, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xa0, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x50, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xcf, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x5f, 0x5d, 0xef, 0x3f, 0x3d, 0xef, 0x4f, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xef, 0x5d, 0xef, 0x8f, 0x5d, 0xef, 0x5f, 0x5d, 0xef, 0x5f, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xb0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xe0, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xa0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x70, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x60, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xf0, 0x3d, 0xef, 0x80, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x3f, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0xa0, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0x9f, 0x7d, 0xef, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9e, 0xf7, 0x10, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xbf, 0x3d, 0xef, 0x9f, 0x5d, 0xef, 0x7f, 0x5d, 0xef, 0xaf, 0x5d, 0xef, 0xdf, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x5d, 0xef, 0x40, 0x5d, 0xef, 0xe0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0x90, 0x9e, 0xf7, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7d, 0xef, 0x30, 0x3d, 0xef, 0x80, 0x5d, 0xef, 0xc0, 0x5d, 0xef, 0xf0, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x5d, 0xef, 0xff, 0x3d, 0xef, 0xd0, 0x5d, 0xef, 0x90, 0x5d, 0xef, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 16 && LV_COLOR_16_SWAP != 0 + /*Pixel format: Alpha 8 bit, Red: 5 bit, Green: 6 bit, Blue: 5 bit BUT the 2 color bytes are swapped*/ + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xaf, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xaf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x9f, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xcf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xdf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x70, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x20, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xa0, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x50, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xcf, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x5f, 0xef, 0x5d, 0x3f, 0xef, 0x3d, 0x4f, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xef, 0xef, 0x5d, 0x8f, 0xef, 0x5d, 0x5f, 0xef, 0x5d, 0x5f, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xb0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xe0, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xa0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x70, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x60, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xf0, 0xef, 0x3d, 0x80, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x3f, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0xa0, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0x9f, 0xef, 0x7d, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x9e, 0x10, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xbf, 0xef, 0x3d, 0x9f, 0xef, 0x5d, 0x7f, 0xef, 0x5d, 0xaf, 0xef, 0x5d, 0xdf, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x5d, 0x40, 0xef, 0x5d, 0xe0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0x90, 0xf7, 0x9e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x7d, 0x30, 0xef, 0x3d, 0x80, 0xef, 0x5d, 0xc0, 0xef, 0x5d, 0xf0, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x5d, 0xff, 0xef, 0x3d, 0xd0, 0xef, 0x5d, 0x90, 0xef, 0x5d, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +#if LV_COLOR_DEPTH == 32 + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xaf, 0xe5, 0xe5, 0xe5, 0xef, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xaf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x9f, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xbf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xcf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xef, 0xef, 0xef, 0x10, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xaf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xdf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x70, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x20, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xa0, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0x50, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xcf, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x5f, 0xe7, 0xe7, 0xe7, 0x3f, 0xe5, 0xe5, 0xe5, 0x4f, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xef, 0xe6, 0xe6, 0xe6, 0x8f, 0xe7, 0xe7, 0xe7, 0x5f, 0xe7, 0xe7, 0xe7, 0x5f, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xb0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xe0, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xa0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x8f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x70, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x60, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xf0, 0xe5, 0xe5, 0xe5, 0x80, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x3f, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x90, 0xe6, 0xe6, 0xe6, 0xa0, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0x50, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0x9f, 0xea, 0xea, 0xea, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xbf, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0xef, 0xef, 0x10, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xbf, 0xe5, 0xe5, 0xe5, 0x9f, 0xe7, 0xe7, 0xe7, 0x7f, 0xe6, 0xe6, 0xe6, 0xaf, 0xe6, 0xe6, 0xe6, 0xdf, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe7, 0xe7, 0xe7, 0x40, 0xe6, 0xe6, 0xe6, 0xe0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0x90, 0xef, 0xef, 0xef, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xea, 0xea, 0xea, 0x30, 0xe5, 0xe5, 0xe5, 0x80, 0xe6, 0xe6, 0xe6, 0xc0, 0xe6, 0xe6, 0xe6, 0xf0, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe6, 0xe6, 0xe6, 0xff, 0xe5, 0xe5, 0xe5, 0xd0, 0xe6, 0xe6, 0xe6, 0x90, 0xe7, 0xe7, 0xe7, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, +#endif +}; + +const lv_img_dsc_t wet = { + .header.cf = LV_IMG_CF_TRUE_COLOR_ALPHA, + .header.always_zero = 0, + .header.reserved = 0, + .header.w = 45, + .header.h = 45, + .data_size = 2025 * LV_IMG_PX_SIZE_ALPHA_BYTE, + .data = wet_map, +}; diff --git a/IOT/10019_ws63_smart_transport/code/bsp/wifi_connect.c b/IOT/10019_ws63_smart_transport/code/bsp/wifi_connect.c new file mode 100644 index 0000000000000000000000000000000000000000..6284fcaea08e6720ad995b1771cb9937f9c8c51d --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/wifi_connect.c @@ -0,0 +1,182 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "wifi_connect.h" + +#define WIFI_SCAN_AP_LIMIT 64 +#define WIFI_CONN_STATUS_MAX_GET_TIMES 5 /* 启动连接之后,判断是否连接成功的最大尝试次数 */ +#define DHCP_BOUND_STATUS_MAX_GET_TIMES 20 /* 启动DHCP Client端功能之后,判断是否绑定成功的最大尝试次数 */ +#define WIFI_STA_IP_MAX_GET_TIMES 5 /* 判断是否获取到IP的最大尝试次数 */ + +/***************************************************************************** + STA 扫描-关联 sample用例 +*****************************************************************************/ +static errcode_t example_get_match_network(const char *expected_ssid, + const char *key, + wifi_sta_config_stru *expected_bss) +{ + uint32_t num = WIFI_SCAN_AP_LIMIT; /* 64:扫描到的Wi-Fi网络数量 */ + uint32_t bss_index = 0; + + /* 获取扫描结果 */ + uint32_t scan_len = sizeof(wifi_scan_info_stru) * WIFI_SCAN_AP_LIMIT; + wifi_scan_info_stru *result = osal_kmalloc(scan_len, OSAL_GFP_ATOMIC); + if (result == NULL) { + return ERRCODE_MALLOC; + } + + memset_s(result, scan_len, 0, scan_len); + if (wifi_sta_get_scan_info(result, &num) != ERRCODE_SUCC) { + osal_kfree(result); + return ERRCODE_FAIL; + } + + /* 筛选扫描到的Wi-Fi网络,选择待连接的网络 */ + for (bss_index = 0; bss_index < num; bss_index++) { + if (strlen(expected_ssid) == strlen(result[bss_index].ssid)) { + if (memcmp(expected_ssid, result[bss_index].ssid, strlen(expected_ssid)) == 0) { + break; + } + } + } + + /* 未找到待连接AP,可以继续尝试扫描或者退出 */ + if (bss_index >= num) { + osal_kfree(result); + return ERRCODE_FAIL; + } + /* 找到网络后复制网络信息和接入密码 */ + if (memcpy_s(expected_bss->ssid, WIFI_MAX_SSID_LEN, result[bss_index].ssid, WIFI_MAX_SSID_LEN) != EOK) { + osal_kfree(result); + return ERRCODE_MEMCPY; + } + if (memcpy_s(expected_bss->bssid, WIFI_MAC_LEN, result[bss_index].bssid, WIFI_MAC_LEN) != EOK) { + osal_kfree(result); + return ERRCODE_MEMCPY; + } + expected_bss->security_type = result[bss_index].security_type; + if (memcpy_s(expected_bss->pre_shared_key, WIFI_MAX_KEY_LEN, key, strlen(key)) != EOK) { + osal_kfree(result); + return ERRCODE_MEMCPY; + } + expected_bss->ip_type = DHCP; /* IP类型为动态DHCP获取 */ + osal_kfree(result); + return ERRCODE_SUCC; +} +extern char STA_IP[20]; +errcode_t wifi_connect(char *ssid, char *psk) +{ + char ifname[WIFI_IFNAME_MAX_SIZE + 1] = "wlan0"; /* WiFi STA 网络设备名 */ + wifi_sta_config_stru expected_bss = {0}; /* 连接请求信息 */ + const char *expected_ssid = ssid; + const char *key = psk; /* 待连接的网络接入密码 */ + struct netif *netif_p = NULL; + wifi_linked_info_stru wifi_status; + uint8_t index = 0; + uint8_t retry_num = 0; + /* 等待wifi初始化完成 */ + while (wifi_is_wifi_inited() == 0) { + (void)osDelay(10); /* 10: 延时100ms */ + } + /* 创建STA */ + if (wifi_sta_enable() != ERRCODE_SUCC) { + PRINT("STA enbale fail !\r\n"); + return ERRCODE_FAIL; + } + do { + if (retry_num > 3) { + PRINT("wifi connect err!\r\n"); + return ERRCODE_FAIL; + } + PRINT("Start Scan !\r\n"); + (void)osDelay(50); /* 100: 延时1s */ + /* 启动STA扫描 */ + if (wifi_sta_scan() != ERRCODE_SUCC) { + PRINT("STA scan fail, try again !\r\n"); + continue; + } + + (void)osDelay(300); /* 300: 延时100ms */ + + /* 获取待连接的网络 */ + if (example_get_match_network(expected_ssid, key, &expected_bss) != ERRCODE_SUCC) { + PRINT("Can not find AP, try again !\r\n"); + retry_num++; + continue; + } + + PRINT("STA start connect.\r\n"); + /* 启动连接 */ + if (wifi_sta_connect(&expected_bss) != ERRCODE_SUCC) { + retry_num++; + continue; + } + + /* 检查网络是否连接成功 */ + for (index = 0; index < WIFI_CONN_STATUS_MAX_GET_TIMES; index++) { + (void)osDelay(50); /* 50: 延时5s */ + memset_s(&wifi_status, sizeof(wifi_linked_info_stru), 0, sizeof(wifi_linked_info_stru)); + if (wifi_sta_get_ap_info(&wifi_status) != ERRCODE_SUCC) { + continue; + } + if (wifi_status.conn_state == WIFI_CONNECTED) { + break; + } + } + if (wifi_status.conn_state == WIFI_CONNECTED) { + break; /* 连接成功退出循环 */ + } + + } while (1); + + /* DHCP获取IP地址 */ + netif_p = netifapi_netif_find(ifname); + if (netif_p == NULL) { + return ERRCODE_FAIL; + } + + if (netifapi_dhcp_start(netif_p) != ERR_OK) { + PRINT("STA DHCP Fail.\r\n"); + return ERRCODE_FAIL; + } + + for (uint8_t i = 0; i < DHCP_BOUND_STATUS_MAX_GET_TIMES; i++) { + (void)osDelay(50); /* 50: 延时500ms */ + if (netifapi_dhcp_is_bound(netif_p) == ERR_OK) { + PRINT("STA DHCP bound success.\r\n"); + break; + } + } + + for (uint8_t i = 0; i < WIFI_STA_IP_MAX_GET_TIMES; i++) { + osDelay(1); /* 1: 延时10ms */ + if (netif_p->ip_addr.u_addr.ip4.addr != 0) { + PRINT("STA IP %u.%u.%u.%u\r\n", (netif_p->ip_addr.u_addr.ip4.addr & 0x000000ff), + (netif_p->ip_addr.u_addr.ip4.addr & 0x0000ff00) >> 8, /* 8: 移位 */ + (netif_p->ip_addr.u_addr.ip4.addr & 0x00ff0000) >> 16, /* 16: 移位 */ + (netif_p->ip_addr.u_addr.ip4.addr & 0xff000000) >> 24); /* 24: 移位 */ + + sprintf(STA_IP,"%u.%u.%u.%u",(netif_p->ip_addr.u_addr.ip4.addr & 0x000000ff), + (netif_p->ip_addr.u_addr.ip4.addr & 0x0000ff00) >> 8, /* 8: 移位 */ + (netif_p->ip_addr.u_addr.ip4.addr & 0x00ff0000) >> 16, /* 16: 移位 */ + (netif_p->ip_addr.u_addr.ip4.addr & 0xff000000) >> 24); + /* 连接成功 */ + PRINT("STA connect success.\r\n"); + return ERRCODE_SUCC; + } + } + PRINT("STA connect fail.\r\n"); + return ERRCODE_FAIL; +} diff --git a/IOT/10019_ws63_smart_transport/code/bsp/wifi_connect.h b/IOT/10019_ws63_smart_transport/code/bsp/wifi_connect.h new file mode 100644 index 0000000000000000000000000000000000000000..48e9e20fdcabed120f993e6eb254497a63cac4ca --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/bsp/wifi_connect.h @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef WIFI_CONNECT_H +#define WIFI_CONNECT_H +#include "lwip/netifapi.h" +#include "wifi_hotspot.h" +#include "wifi_hotspot_config.h" +#include "stdlib.h" +#include "uart.h" +#include "lwip/nettool/misc.h" +#include "soc_osal.h" +#include "app_init.h" +#include "cmsis_os2.h" + + +errcode_t wifi_connect(char *ssid, char *psk); +#endif \ No newline at end of file diff --git a/IOT/10019_ws63_smart_transport/code/smart_transport_demo.c b/IOT/10019_ws63_smart_transport/code/smart_transport_demo.c new file mode 100644 index 0000000000000000000000000000000000000000..790a026f6f4c9a0b85fdc57bad5fbf9a14dac695 --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/smart_transport_demo.c @@ -0,0 +1,630 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "smart_transport_demo.h" +extern lv_obj_t *Hum_arc; +extern lv_obj_t *Tmp_arc; +extern lv_obj_t *Tem_label; +extern lv_obj_t *Hum_label; +extern lv_obj_t *Msgbox; +/* Local control panel */ +extern lv_obj_t *CurrentSpreedBtn; /* Records the key that is currently pressed */ +extern lv_obj_t *MqttConnectState; +extern lv_obj_t *MqttConnectBtn; +extern lv_obj_t *modeswitch; +osThreadId_t task1_ID; // 任务1 ID +osThreadId_t task2_ID; // 任务2 ID +osThreadId_t task3_ID; // 任务3 ID +osThreadId_t task4_ID; // 任务4 ID +osThreadId_t task5_ID; // 任务5 ID +osThreadId_t task6_ID; // 任务5 ID + +#define RELOAD_CNT 1000 // 定时器重载值,单位:微秒 +#define TIMER_IRQ_PRIO 3 // 定时器中断优先级,范围:0~7(0最高) + +timer_handle_t timer1_handle = 0; // 定时器1句柄 + +Mode_Select My_Mode; +Sensor_Data My_Sensor; //存储温湿度值 +struct Threshold_t Getthreshold = {30, 50}; + +uint8_t latitude[20] = {0}; +uint8_t longitude[20] = {0}; +/*串口接收缓冲区大小*/ +uart_recv uart2_recv = {0}; +#define CONFIG_UART_TXD_PIN 8 +#define CONFIG_UART_RXD_PIN 7 +#define CONFIG_UART_PIN_MODE 2 + +char ec800m_sendcmd[255] = {0}; +char ec800m1_sendcmd[255] = {0}; + +#define RGB_ON 255 +#define RGB_OFF 0 + +lv_obj_t *Fanbtn; + +static void sensor_data_update_handler(void); // 定时更新数据函数声明 +static void FanCtl(uint8_t FanState); +static void WetCtl(uint8_t WetState); +static void LedCtl(uint8_t LedState); +static void ABCCtl(uint8_t ABCState); + +void user_fan_control(uint8_t state); +void user_wet_control(uint8_t state); +void user_led_control(uint8_t state); +/** + * @brief 定时器1回调函数 + * @param data 用户数据(未使用) + * @note 该函数每1ms执行一次,用于LVGL心跳和数据更新计时 + */ +void timer1_callback(uintptr_t data) +{ + unused(data); + lv_tick_inc(1); // LVGL心跳递增 + + /* 开启下一次timer中断 */ + uapi_timer_start(timer1_handle, RELOAD_CNT, timer1_callback, 0); +} + +/** + * @brief LVGL定时器初始化 + * @note 初始化硬件定时器1,设置中断优先级并启动定时器 + */ +void lvgl_timer_init(void) +{ + uapi_timer_init(); // 初始化定时器模块 + + /* 设置 timer1 硬件初始化,设置中断号,配置优先级 */ + uapi_timer_adapter(TIMER_INDEX_1, TIMER_1_IRQN, TIMER_IRQ_PRIO); + + /* 创建 timer1 软件定时器控制句柄 */ + uapi_timer_create(TIMER_INDEX_1, &timer1_handle); + + /* 启动定时器,设置重载值和回调函数 */ + uapi_timer_start(timer1_handle, RELOAD_CNT, timer1_callback, 0); +} +/** + * @brief 传感器数据采集任务 + */ +static int sensor_collect(const char *arg) +{ + unused(arg); + + while (1) + { + sensor_data_update_handler(); // 更新传感器数据和UI状态 + osal_mdelay(500); + } + return 0; +} +/** + * @brief 任务1主函数 + * @param arg 任务参数(未使用) + * @return 任务执行状态 + * @note 主要功能:初始化硬件、LVGL、UI,并处理主循环任务 + */ +static int lvgl_refresh(const char *arg) +{ + unused(arg); + uint16_t msLVGL; // LVGL刷新计时器 + lvgl_timer_init(); // 初始化LVGL定时器 + + // 主循环 + while (1) + { + msLVGL = lv_timer_handler(); // 处理LVGL定时器任务 + osal_mdelay(msLVGL); + } + return 0; +} +/** + * @brief 硬件初始化任务 + * @param arg 任务参数(未使用) + * @note 主要功能:初始化硬件、LVGL、UI + */ +static int bsp_init(const char *arg) +{ + unused(arg); + + uapi_watchdog_disable(); // 禁用看门狗 + // LVGL初始化 + lv_init(); // 初始化LVGL库 + lv_port_disp_init(); // 初始化LVGL显示端口 + lv_port_indev_init(); // 初始化LVGL输入设备端口 + UI_Init(); // 初始化用户界面 + + // 硬件初始化 + SHT20_Init(); + + + // GPIO初始化 + uapi_pin_set_mode(GPIO_02, HAL_PIO_FUNC_GPIO); // 配置GPIO_02引脚为普通GPIO功能模式(非复用功能) + uapi_gpio_set_dir(GPIO_02, GPIO_DIRECTION_OUTPUT); // 设置GPIO_02为输出模式 + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_LOW); // 设置GPIO_02初始输出高电平(IO2初始电平为低) + uapi_pin_set_mode(GPIO_04, HAL_PIO_FUNC_GPIO); // 配置GPIO_04引脚为普通GPIO功能模式(非复用功能) + uapi_gpio_set_dir(GPIO_04, GPIO_DIRECTION_OUTPUT); // 设置GPIO_04为输出模式 + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_LOW); // 设置GPIO_04初始输出高电平(IO4初始电平为低) + uapi_pin_set_mode(GPIO_00, HAL_PIO_FUNC_GPIO); // 配置GPIO_07引脚为普通GPIO功能模式(非复用功能) + uapi_gpio_set_dir(GPIO_00, GPIO_DIRECTION_OUTPUT); // 设置GPIO_07为输出模式 + uapi_gpio_set_val(GPIO_00, GPIO_LEVEL_LOW); // 设置GPIO_07初始输出高电平(IO2初始电平为低) + uapi_pin_set_mode(GPIO_03, HAL_PIO_FUNC_GPIO); // 配置GPIO_09引脚为普通GPIO功能模式(非复用功能) + uapi_gpio_set_dir(GPIO_03, GPIO_DIRECTION_OUTPUT); // 设置GPIO_09为输出模式 + uapi_gpio_set_val(GPIO_03, GPIO_LEVEL_LOW); // 设置GPIO_09初始输出高电平(IO4初始电平为低) + // 配置GPIO_13引脚为普通GPIO功能模式(非复用功能) + uapi_pin_set_mode(GPIO_13, HAL_PIO_FUNC_GPIO); + // 设置GPIO_13为输出模式 + uapi_gpio_set_dir(GPIO_13, GPIO_DIRECTION_OUTPUT); + // 设置GPIO_13初始输出高电平(LED初始状态为亮) + uapi_gpio_set_val(GPIO_13, GPIO_LEVEL_HIGH); + + osThreadAttr_t attr; + attr.name = "lvgl_refresh"; // 任务名称 + attr.attr_bits = 0U; // 任务属性位 + attr.cb_mem = NULL; // 任务控制块内存 + attr.cb_size = 0U; // 任务控制块大小 + attr.stack_mem = NULL; // 任务堆栈内存 + attr.stack_size = 0x1000; // 任务堆栈大小(4KB) + attr.priority = osPriorityNormal; // 任务优先级 + // 创建任务 + task2_ID = osThreadNew((osThreadFunc_t)lvgl_refresh, NULL, &attr); + if (task1_ID != NULL) + { + printf("ID = %d, Create task2_ID is OK!\r\n", task2_ID); + } + attr.name = "sensor_collect"; // 任务名称 + // 创建任务 + task3_ID = osThreadNew((osThreadFunc_t)sensor_collect, NULL, &attr); + if (task1_ID != NULL) + { + printf("ID = %d, Create task3_ID is OK!\r\n", task3_ID); + } + // task4_ID = osThreadNew((osThreadFunc_t)uart2_send_task, NULL, &attr); + // if (task1_ID != NULL) { + // printf("ID = %d, Create Task2_ID is OK!\r\n", task4_ID); + // } + task5_ID = osThreadNew((osThreadFunc_t)asdfg, NULL, &attr); + if (task1_ID != NULL) { + printf("ID = %d, Create Task2_ID is OK!\r\n", task5_ID); + } + attr.priority = osPriorityNormal1; + // task6_ID = osThreadNew((osThreadFunc_t)uart2_recv_task, NULL, &attr); + // if (task1_ID != NULL) { + // printf("ID = %d, Create Task2_ID is OK!\r\n", task6_ID); + // } + return 0; +} +/** + * @brief LVGL任务入口函数 + * @note 创建任务1并启动LVGL应用 + */ +static void lvgl_entry(void) +{ + printf("Enter lvgl_entry()!\r\n"); + + osThreadAttr_t attr; + attr.name = "bsp_init"; // 任务名称 + attr.attr_bits = 0U; // 任务属性位 + attr.cb_mem = NULL; // 任务控制块内存 + attr.cb_size = 0U; // 任务控制块大小 + attr.stack_mem = NULL; // 任务堆栈内存 + attr.stack_size = 0x1000; // 任务堆栈大小(4KB) + attr.priority = osPriorityNormal; // 任务优先级 + + // 创建任务 + task1_ID = osThreadNew((osThreadFunc_t)bsp_init, NULL, &attr); + if (task1_ID != NULL) + { + printf("ID = %d, Create Task1_ID is OK!\r\n", task1_ID); + } +} + +/* 运行示例应用 */ +app_run(lvgl_entry); + +uint32_t uart_send_buff(uint8_t *str, uint16_t len) +{ + uint32_t ret = 0; + // printf("[AT SEND ]: %s\n", str); + ret = uapi_uart_write(UART_ID, str, len, 0xffffffff); + if (ret != 0) { + return ret; + } + return ret; +} +/** + * @brief 定时更新数据函数 + * @note 每1秒执行一次,更新传感器数据、UI状态并处理智能控制逻辑 + */ +static void sensor_data_update_handler(void) +{ + char textbuff[20] = {0}; + + SHT20_ReadData(&My_Sensor.Tem,&My_Sensor.Hum); + lv_arc_set_value(Tmp_arc, My_Sensor.Tem); + sprintf(textbuff, "%.1f", My_Sensor.Tem); + lv_label_set_text_fmt(Tem_label, "%sRH", textbuff); + + sprintf(textbuff, "%.1f", My_Sensor.Hum); + lv_arc_set_value(Hum_arc, My_Sensor.Hum); + lv_label_set_text_fmt(Hum_label, "%sRH", textbuff); + + /* 智能控制模式处理 */ + if (My_Mode.CurrentMode == SMART) + { + if((My_Sensor.Hum>50 )&&( My_Sensor.Tem>32.4)) + { + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_HIGH); + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_HIGH); + osDelay(DELAY_TIME_MS); + } + else if((My_Sensor.Hum<50 )&&( My_Sensor.Tem>32.4)) + { + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_HIGH); + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_LOW); + osDelay(DELAY_TIME_MS); + } + else if((My_Sensor.Hum>50 )&&( My_Sensor.Tem<32.4)) + { + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_LOW); + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_HIGH); + osDelay(DELAY_TIME_MS); + } + else + { + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_LOW); + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_LOW); + osDelay(DELAY_TIME_MS); + } + FanCtl(My_Sensor.FanCurrentState); + WetCtl(My_Sensor.WetCurrentState); + LedCtl(My_Sensor.LedCurrentState); + ABCCtl(My_Sensor.LedCurrentState); + } + /* MQTT通信处理 */ + if (1 == My_Mode.WeChatOnline) + { + FanCtl(My_Sensor.FanCurrentState); + WetCtl(My_Sensor.WetCurrentState); + LedCtl(My_Sensor.LedCurrentState); + ABCCtl(My_Sensor.LedCurrentState); + osDelay(10); + /* WeChatOnline */ + send_Hum_or_Tmpdata_protocol("temperature", 0, "false", My_Sensor.Tem); + osDelay(10); + send_Hum_or_Tmpdata_protocol("humidity", 0, "false", My_Sensor.Hum); + osDelay(10); + // 风扇状态 + send_Bool_data("fan", 0, "true", My_Sensor.FanCurrentState ? "true" : "false"); + osDelay(10); + // 加湿器状态 + send_Bool_data("wet", 0, "true", My_Sensor.WetCurrentState ? "true" : "false"); + osDelay(10); + // LED 状态 + send_Bool_data("led", 0, "true", My_Sensor.LedCurrentState ? "true" : "false"); + osDelay(10); + // ABC 模式状态 + send_Bool_data("abc", 0, "true", My_Sensor.ABCCurrentState ? "true" : "false"); + osDelay(10); + + /* 模式改变时发送模式状态 */ + if (My_Mode.CurrentMode != My_Mode.last_CurrentMode) + { + if(My_Mode.CurrentMode == USR) + { + send_Bool_data("smart", 0, "false", "false"); // 发送手动模式 + } + else + { + send_Bool_data("smart", 0, "false", "true"); // 发送智能模式 + } + My_Mode.last_CurrentMode =My_Mode.CurrentMode ; + } + } + if (My_Mode.CurrentMode == SMART) { + lv_obj_add_state(modeswitch, LV_STATE_CHECKED); + } else { + lv_obj_clear_state(modeswitch, LV_STATE_CHECKED); + } + +} + +void send_Hum_or_Tmpdata_protocol(const char *Sensor, const int ID, const char *Control, const float val) +{ + char json[300] = {0}; + sprintf(json, "{\"sensor\":\"%s\",\"id\":%d,\"control\":%s,\"data_val\":%.2f}", Sensor, ID, Control, val); + mqtt_publish(MQTT_DATATOPIC_PUB, json); // 发布到MQTT主题 +} + +/** + * @brief 发送字符串数据到MQTT + * @param Sensor 传感器类型 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 字符串数值 + */ +void send_String_data(const char *Sensor, const int ID, const char *Control, const char *val) +{ + char json[300] = {0}; + sprintf(json, "{\"sensor\":\"%s\",\"id\":%d,\"control\":%s,\"data_val\":\"%s\"}", + Sensor, ID, Control, val); + mqtt_publish(MQTT_DATATOPIC_PUB, json); // 发布到MQTT主题 +} + +/** + * @brief 发送数值数据到MQTT + * @param Sensor 传感器类型 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 数值数据 + */ +void send_Num_data(const char *Sensor, const int ID, const char *Control, const short val) +{ + char json[300] = {0}; + sprintf(json, "{\"sensor\":\"%s\",\"id\":%d,\"control\":%s,\"data_val\":%d}", + Sensor, ID, Control, val); + mqtt_publish(MQTT_DATATOPIC_PUB, json); // 发布到MQTT主题 +} + +/** + * @brief 发送布尔数据到MQTT + * @param Sensor 传感器类型 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 布尔值 + */ +void send_Bool_data(const char *Sensor, const int ID, const char *Control, const char *val) +{ + char json[300] = {0}; + sprintf(json, "{\"sensor\":\"%s\",\"id\":%d,\"control\":%s,\"data_val\":%s}", + Sensor, ID, Control, val); + mqtt_publish(MQTT_DATATOPIC_PUB, json); // 发布到MQTT主题 +} + +/** + * @brief 发送重复确认消息到MQTT + * @param val 确认的传感器类型 + */ +void send_repeat(const char *val) +{ + char json[100] = {0}; + sprintf(json, "{\"repeat\":\"%s\"}", val); + mqtt_publish(MQTT_DATATOPIC_PUB, json); // 发布到MQTT主题 +} + +static void FanCtl(uint8_t FanState) +{ + if (FanState > 1) + return; + + if (My_Sensor.FanSS != FanState) + { + My_Sensor.FanSS = FanState; + user_fan_control(FanState); + + if (FanState == 1) + { + lv_obj_set_style_bg_color(FanS, lv_color_make(47, 174, 108), LV_PART_MAIN); + } + else + { + lv_obj_set_style_bg_color(FanS, lv_color_make(10, 38, 116), LV_PART_MAIN); + } + + if (1 == My_Mode.WeChatOnline) + { + send_Bool_data("fan", 0, "true", FanState ? "true" : "false"); + } + } +} + +static void WetCtl(uint8_t WetState) +{ + if (WetState > 1) + return; + + if (My_Sensor.WetSS != WetState) + { + My_Sensor.WetSS = WetState; + user_wet_control(WetState); + + if (WetState == 1) + { + lv_obj_set_style_bg_color(WetS, lv_color_make(47, 174, 108), LV_PART_MAIN); + } + else + { + lv_obj_set_style_bg_color(WetS, lv_color_make(10, 38, 116), LV_PART_MAIN); + } + + if (1 == My_Mode.WeChatOnline) + { + send_Bool_data("wet", 0, "true",WetState ? "true" : "false"); + } + } +} + +static void LedCtl(uint8_t LedState) +{ + if (LedState > 1) + return; + + if (My_Sensor.LedSS != LedState) + { + My_Sensor.LedSS = LedState; + user_led_control(LedState); + + if (LedState == 1) + { + lv_obj_set_style_bg_color(LedS, lv_color_make(47, 174, 108), LV_PART_MAIN); + } + else + { + lv_obj_set_style_bg_color(LedS, lv_color_make(10, 38, 116), LV_PART_MAIN); + } + + if (1 == My_Mode.WeChatOnline) + { + send_Bool_data("led", 0, "true", LedState ? "true" : "false"); + } + } +} + +static void ABCCtl(uint8_t ABCState) +{ + if (ABCState > 1) + return; + + if (My_Sensor.ABCSS != ABCState) + { + My_Sensor.ABCSS = ABCState; + user_ABC_control(ABCState); + + if (ABCState == 1) + { + lv_obj_set_style_bg_color(ABC, lv_color_make(47, 174, 108), LV_PART_MAIN); + } + else + { + lv_obj_set_style_bg_color(ABC, lv_color_make(10, 38, 116), LV_PART_MAIN); + } + + if (1 == My_Mode.WeChatOnline) + { + send_Bool_data("led", 0, "true", ABCState ? "true" : "false"); + } + } +} + +void user_fan_control(uint8_t state) +{ + if (state == 1) + { + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_HIGH); + } + else + { + uapi_gpio_set_val(GPIO_02, GPIO_LEVEL_LOW); + } +} + +void user_wet_control(uint8_t state) +{ + if (state == 1) + { + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_HIGH); + } + else + { + uapi_gpio_set_val(GPIO_04, GPIO_LEVEL_LOW); + } +} + +void user_led_control(uint8_t state) +{ + if (state == 1) + { + uapi_gpio_set_val(GPIO_13, GPIO_LEVEL_LOW); + } else + { + uapi_gpio_set_val(GPIO_13, GPIO_LEVEL_HIGH); + } +} + +void user_ABC_control(uint8_t state) +{ + if (state == 1) + { + uapi_gpio_set_val(GPIO_03, GPIO_LEVEL_HIGH); + } else + { + uapi_gpio_set_val(GPIO_03, GPIO_LEVEL_LOW); + } +} + +void uart2_send_task(void *argument) +{ + unused(argument); + ec800_pwr_init(); + ec800_send_init(); + uart2_recv.recv_flag = 1; + sprintf(ec800m_sendcmd, ATCmds[14].ATSendStr, MQTT_USER_NAME); + while (1) { + sprintf(ec800m1_sendcmd, + "{\"services\":[{\"service_id\":\"attribute\",\"properties\":{\"Latitude\":\"%s\",\"Longitude\":\"%s\"}}]}", + latitude, longitude); + uart_send_buff((uint8_t *)ec800m_sendcmd, strlen(ec800m_sendcmd)); + osal_msleep(1000); + uart_send_buff((uint8_t *)ec800m1_sendcmd, strlen(ec800m1_sendcmd)); + osal_msleep(1000); + uart_send_buff((uint8_t *)ATCmds[16].ATSendStr, strlen(ATCmds[16].ATSendStr)); + osal_msleep(5000); + } +} +void asdfg(void) +{ + // 1. 初始化 GPIO_12 为输入模式(检测高电平) + uapi_pin_set_mode(GPIO_12, HAL_PIO_FUNC_GPIO); + uapi_gpio_set_dir(GPIO_12, GPIO_DIRECTION_INPUT); + + // 2. 初始化 GPIO_10 为输出模式(控制输出) + uapi_pin_set_mode(GPIO_10, HAL_PIO_FUNC_GPIO); + uapi_gpio_set_dir(GPIO_10, GPIO_DIRECTION_OUTPUT); + uapi_gpio_set_val(GPIO_10, GPIO_LEVEL_LOW); // 初始输出低电平 + + printf("GPIO monitor task started!\n"); + printf("GPIO_12 -> Input, GPIO_10 -> Output\n"); + + while (1) { + // 3. 读取 GPIO_12 的电平状态 + uint32_t pin_state = uapi_gpio_get_val(GPIO_12); + + // 4. 如果 GPIO_12 为高电平,GPIO_10 输出高电平 + if (pin_state == GPIO_LEVEL_HIGH) { + uapi_gpio_set_val(GPIO_10, GPIO_LEVEL_HIGH); + printf("GPIO_12 is HIGH -> GPIO_10 set HIGH\n"); + } else { + uapi_gpio_set_val(GPIO_10, GPIO_LEVEL_LOW); + // 可选:减少打印,避免刷屏 + // printf("GPIO_12 is LOW -> GPIO_10 set LOW\n"); + } + + // 5. 延时 10ms,避免占用过多 CPU + osal_msleep(10); + } +} +void uart2_recv_task(void *argument) +{ + unused(argument); + uint8_t len = 0; + uint16_t times = 0; + while (1) { + + if (uart2_recv.recv_flag) { + if (times % 100 == 0) { + printf("获取GPS数据\n"); + uart_send_buff((uint8_t *)ATCmds[17].ATSendStr, strlen(ATCmds[17].ATSendStr)); + } + len = uapi_uart_read(UART_ID, uart2_recv.recv, 512, 0); + if (len > 0) { + printf("[uart2_recv.recv %d: %s]\n", len, uart2_recv.recv); + get_gps_coordinates((char *)uart2_recv.recv); + memset(uart2_recv.recv, 0, sizeof(uart2_recv.recv)); + } + } + osal_msleep(1000); + times++; + } +} diff --git a/IOT/10019_ws63_smart_transport/code/smart_transport_demo.h b/IOT/10019_ws63_smart_transport/code/smart_transport_demo.h new file mode 100644 index 0000000000000000000000000000000000000000..07a945e2e4ce0ed86f7d8e7af2395f47f1d0f6fe --- /dev/null +++ b/IOT/10019_ws63_smart_transport/code/smart_transport_demo.h @@ -0,0 +1,128 @@ +/* + * Copyright (c) 2024 Beijing HuaQingYuanJian Education Technology Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef LVGL_DEMO_H +#define LVGL_DEMO_H + +#include "soc_osal.h" // 操作系统抽象层 +#include "app_init.h" // 应用初始化 +#include "cmsis_os2.h" // CMSIS-RTOS2 API +#include "platform_core_rom.h" // 平台核心ROM +#include "watchdog.h" // 看门狗 +#include "timer.h" // 定时器 +#include "chip_core_irq.h" // 芯片核心中断 +#include // 标准输入输出 +#include "bsp/hal_bsp_sht20.h" // AP3216C传感器驱动(光敏/接近/红外) +#include "bsp/hal_bsp_ec800m.h" // + +#include "bsp/ui.h" // 用户界面 +#include "bsp/wifi_connect.h" // WiFi连接 +#include "bsp/mqtt.h" // MQTT客户端 +#include "lvgl.h" // LVGL图形库主头文件 +//温湿度传感器数据结构 +typedef struct +{ + float Tem; + float Hum; + uint8_t FanCurrentState; + uint8_t WetCurrentState; + uint8_t LedCurrentState; + uint8_t ABCCurrentState; + int FanSS; + int WetSS; + int LedSS; + int ABCSS; + +}Sensor_Data; + +#define UART_ID UART_BUS_2 +// 串口接收 +#define UART_RECV_SIZE 512 +typedef struct { + uint8_t recv[UART_RECV_SIZE]; + uint8_t recv_len; + uint8_t recv_flag; +} uart_recv; + +extern Sensor_Data My_Sensor; //存储温湿度值 +extern uart_recv uart2_recv; +extern uint8_t latitude[20]; +extern uint8_t longitude[20]; +/** + * @brief 模式选择管理结构体 + * @note 管理系统工作模式和网络连接状态 + */ +typedef struct { + uint8_t CurrentMode; /**< 当前工作模式 */ + uint8_t last_CurrentMode;/**< 上一次工作模式,用于模式变化检测 */ + uint8_t WeChatOnline; /**< 微信在线状态标志 */ + uint8_t mqttconnetState; /**< MQTT连接状态标志 */ +} Mode_Select; + +extern Mode_Select My_Mode; /**< 全局模式选择实例 */ + + +/** + * @brief 发送温湿度数据到MQTT + * @param Sensor 传感器类型标识 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 字符串数值 + */ +void send_Hum_or_Tmpdata_protocol(const char *Sensor, const int ID, const char *Control, const float val); + +/** + * @brief 发送字符串数据到MQTT + * @param Sensor 传感器类型标识 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 字符串数值 + */ +void send_String_data(const char *Sensor, const int ID, const char *Control, const char *val); + +/** + * @brief 发送布尔数据到MQTT + * @param Sensor 传感器类型标识 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 布尔值 + */ +void send_Bool_data(const char *Sensor, const int ID, const char *Control, const char *val); + +/** + * @brief 发送数值数据到MQTT + * @param Sensor 传感器类型标识 + * @param ID 传感器ID + * @param Control 控制标志 + * @param val 数值数据 + */ +void send_Num_data(const char *Sensor, const int ID, const char *Control, const short val); + +/** + * @brief 发送重复确认消息到MQTT + * @param val 需要确认的传感器类型 + * @note 用于响应平台命令,确认接收 + */ +void send_repeat(const char *val); + +void user_fan_control(uint8_t state); +void user_wet_control(uint8_t state); +void user_led_control(uint8_t state); +void user_ABC_control(uint8_t state); +uint32_t uart_send_buff(uint8_t *str, uint16_t len); +void uart2_send_task(void *argument); +void uart2_recv_task(void *argument); +void asdfg(void); +#endif /* LVGL_DEMO_H */ \ No newline at end of file diff --git a/IOT/29924_team_smart_home_gateway/code/.gitattributes b/IOT/29924_team_smart_home_gateway/code/.gitattributes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/.gitignore b/IOT/29924_team_smart_home_gateway/code/.gitignore old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/Dockerfile b/IOT/29924_team_smart_home_gateway/code/Dockerfile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/LICENSE b/IOT/29924_team_smart_home_gateway/code/LICENSE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/android_app/gradlew b/IOT/29924_team_smart_home_gateway/code/android_app/gradlew old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/adc.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/adc.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/adc_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/adc/adc_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/blinky.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/blinky.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/blinky_cmsis.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/blinky/blinky_cmsis.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/button.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/button.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/button.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/button/button.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/i2c.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/i2c.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/i2c_master_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/i2c_master_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306.h b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306_fonts.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306_fonts.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306_fonts.h b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/i2c/ssd1306_fonts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/pinctrl.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/pinctrl.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/pinctrl_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pinctrl/pinctrl_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/pwm.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/pwm.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/pwm_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/pwm/pwm_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/spi.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/spi.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/spi_master_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/spi_master_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306.h b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306_fonts.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306_fonts.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306_fonts.h b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/spi/ssd1306_fonts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/systick/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/systick/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/systick/systick.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/systick/systick.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/systick/systick_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/systick/systick_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tasks/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tasks/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tasks/tasks.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tasks/tasks.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tasks/tasks.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tasks/tasks.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tcxo/tcxo.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tcxo/tcxo.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tcxo/tcxo_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/tcxo/tcxo_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/timer.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/timer.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/timer_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/timer/timer_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/uart.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/uart.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/uart_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/uart/uart_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/watchdog.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/watchdog.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/watchdog_demo.c b/IOT/29924_team_smart_home_gateway/code/application/samples/peripheral/watchdog/watchdog_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/products/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/products/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client_scan.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client_scan.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client_scan.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_client/ble_uart_client_scan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server_adv.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server_adv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server_adv.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/ble_uart_server/ble_uart_server_adv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/board.json b/IOT/29924_team_smart_home_gateway/code/application/samples/products/ble_uart/board.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/board.json b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/board.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_gateway.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_gateway.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_client/sle_uart_client.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_client/sle_uart_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_client/sle_uart_client.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_client/sle_uart_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server_adv.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server_adv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server_adv.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/sle_uart_server/sle_uart_server_adv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/wifi/wifi_connect.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/wifi/wifi_connect.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/wifi/wifi_connect.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_gateway/wifi/wifi_connect.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/board.json b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/board.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_client/sle_uart_client.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_client/sle_uart_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_client/sle_uart_client.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_client/sle_uart_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server_adv.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server_adv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server_adv.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart/sle_uart_server/sle_uart_server_adv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/board.json b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/board.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart.code-workspace b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart.code-workspace old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_client/sle_uart_client.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_client/sle_uart_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_client/sle_uart_client.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_client/sle_uart_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server_adv.c b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server_adv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server_adv.h b/IOT/29924_team_smart_home_gateway/code/application/samples/products/sle_uart_1_vs_8/sle_uart_server/sle_uart_server_adv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/Kconfig b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/softap_sample/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/softap_sample/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/softap_sample/softap_sample.c b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/softap_sample/softap_sample.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/sta_sample/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/sta_sample/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/sta_sample/sta_sample.c b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/sta_sample/sta_sample.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/udp_client.c b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/udp_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/wifi/wifi_connect.c b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/wifi/wifi_connect.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/wifi/wifi_connect.h b/IOT/29924_team_smart_home_gateway/code/application/samples/wifi/udp_client/wifi/wifi_connect.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/clock_init.c b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/clock_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/clock_init.h b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/clock_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/main.c b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/main.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/main.h b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/reset_vector.S b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_application/reset_vector.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_mfg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_mfg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_mfg/ws63-liteos-mfg.bin b/IOT/29924_team_smart_home_gateway/code/application/ws63/ws63_liteos_mfg/ws63-liteos-mfg.bin old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/bootloader/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/Kconfig b/IOT/29924_team_smart_home_gateway/code/bootloader/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/Kconfig b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_cmd_loop.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_cmd_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_crc.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_crc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_debug.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_def.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_delay.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_delay.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_efuse_opt.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_efuse_opt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_erase.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_erase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_errcode.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_errcode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_flash.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_flash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_hash.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_jump.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_jump.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_load.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_load.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_malloc.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_reset.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_reset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_serial.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_serial.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_transfer.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_transfer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_uart_auth.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_uart_auth.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_verify.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_verify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_watchdog.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_watchdog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_ymodem.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/boot_ymodem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/secure_verify_boot.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/include/secure_verify_boot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/alloca.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/endian.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/errno.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/limits.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/soc_timer.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/soc_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/string.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memcmp.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memcmp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memcpy.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memcpy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memmove.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memmove.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memset.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/memset.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/strcmp.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/strcmp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/strlen.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/libc/src/string/strlen.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_cmd_loop.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_cmd_loop.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_crc16.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_crc16.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_debug.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_efuse_opt.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_efuse_opt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_erase.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_erase.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_flash.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_flash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_jump.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_jump.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_load.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_load.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_reset.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_reset.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_transfer.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_transfer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_uart_auth.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_uart_auth.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_ymodem.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/boot_ymodem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/secure_verify_boot.c b/IOT/29924_team_smart_home_gateway/code/bootloader/commonboot/src/secure_verify_boot.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/flashboot_ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/bootloader/flashboot_ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/flashboot_ws63/startup/main.c b/IOT/29924_team_smart_home_gateway/code/bootloader/flashboot_ws63/startup/main.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/flashboot_ws63/startup/riscv_init.S b/IOT/29924_team_smart_home_gateway/code/bootloader/flashboot_ws63/startup/riscv_init.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/provision_ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/bootloader/provision_ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/provision_ws63/startup/main.c b/IOT/29924_team_smart_home_gateway/code/bootloader/provision_ws63/startup/main.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/bootloader/provision_ws63/startup/riscv_init.S b/IOT/29924_team_smart_home_gateway/code/bootloader/provision_ws63/startup/riscv_init.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build.py b/IOT/29924_team_smart_home_gateway/code/build.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_boot_bin_cp.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_boot_bin_cp.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_command.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_command.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_component.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_component.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_elf_info.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_elf_info.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_function.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_function.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_hso_database.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_hso_database.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_linker.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_linker.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_nv_bin.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_nv_bin.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_partition_bin.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_partition_bin.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_rom_callback.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_rom_callback.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_script.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_script.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_sdk.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_sdk.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_sdk_lib.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_sdk_lib.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_sign.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_sign.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/build_ssb.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/build_ssb.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/global_variable.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/global_variable.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/gmssl.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/gmssl.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/hitls.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/hitls.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/libcoap.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/libcoap.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/littlefs.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/littlefs.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/mbedtls.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/mbedtls.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/wpa_supplicant.cmake b/IOT/29924_team_smart_home_gateway/code/build/cmake/open_source/wpa_supplicant.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/common_config.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/common_config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/build_nvbin.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/build_nvbin.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/build_ws63_update.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/build_ws63_update.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/codesize_statistic_config.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/codesize_statistic_config.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/config.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/crash_info.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/crash_info.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/deveco_config.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/deveco_config.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/doc/driver_supports_matrix.dox b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/doc/driver_supports_matrix.dox old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/doxyfile b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/doxyfile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/fota/fota.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/fota/fota.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/fota/fota_format_st.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/fota/fota_format_st.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/OTA_MSG_List.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/OTA_MSG_List.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/STATUS_CommandList.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/STATUS_CommandList.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/ext_dfx_include.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/ext_dfx_include.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/mk_hdb_xml.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_cfg/mk_hdb_xml.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/apps_core_hso_msg_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/apps_core_hso_msg_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/fix_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/fix_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/prot_core_hso_msg_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/prot_core_hso_msg_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/tool_fix_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/tool_fix_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/ws63_mcore_hso_msg_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/diag/ws63_mcore_hso_msg_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_cmd_db.xml b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_cmd_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_layout_db.xml b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_layout_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_nvi_db.xml b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_nvi_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_prim_db.xml b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_prim_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_subsystem_db.xml b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hdbcfg/mss_subsystem_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hso/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/hso/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/nv/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/nv/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/nv/extern_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/nv/extern_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/nv/nv_app_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/hdb_config/database_template/acore/system/nv/nv_app_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_alios_app.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_alios_app.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_alios_btc_only.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_alios_btc_only.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_alios_testsuite.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_alios_testsuite.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ate_bgle.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ate_bgle.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ate_flash.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ate_flash.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ate_wifi.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ate_wifi.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_flashboot.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_flashboot.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_freertos_app.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_freertos_app.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_freertos_btc_only.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_freertos_btc_only.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_freertos_testsuite.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_freertos_testsuite.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_app_iot.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_app_iot.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_bgle_all_asic.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_bgle_all_asic.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_btc_only_asic.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_btc_only_asic.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_gle_sparklyzer.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_gle_sparklyzer.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_hilink.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_hilink.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_mfg.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_mfg.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_perf.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_perf.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_testsuite.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_testsuite.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_testsuite_radar.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_testsuite_radar.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_xts.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_liteos_xts.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_loaderboot.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_loaderboot.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_romboot.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_romboot.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ssb.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/acore/ws63_ssb.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/document/ws63_doxygen.config b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/menuconfig/document/ws63_doxygen.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/nv_bin_cfg/mk_nv_bin_cfg.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/nv_bin_cfg/mk_nv_bin_cfg.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/nv_bin_cfg/mk_nv_bin_cfg_perf.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/nv_bin_cfg/mk_nv_bin_cfg_perf.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector_compress.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector_compress.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector_double.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector_double.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector_hilink_indie_upgrade.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/param_sector/param_sector_hilink_indie_upgrade.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/acore.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/acore.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-app-iot.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-app-iot.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-app.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-app.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-btc-only-asic.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-btc-only-asic.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-hilink.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-hilink.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-mfg.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-mfg.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-perf.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-perf.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-testsuite-radar.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-testsuite-radar.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-testsuite.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-testsuite.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-xts.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/patch_config/ws63-liteos-xts.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/copy_files_to_interim.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/copy_files_to_interim.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/efuse.csv b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/efuse.csv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/efuse_cfg_gen.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/efuse_cfg_gen.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/entry.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/entry.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/get_mem_bin.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/get_mem_bin.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/nv_handle.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/nv_handle.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/pke_rom.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/pke_rom.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/process_sfc_hex.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/process_sfc_hex.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/rom_in_one.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/rom_in_one.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/rom_in_one.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/rom_in_one.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/ws63_mfg_build.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/script/ws63_mfg_build.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/alios_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/alios_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/alios_btc_only_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/alios_btc_only_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/alios_testsuit_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/alios_testsuit_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/btc_only_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/btc_only_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/encry_config.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/encry_config.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/flash_backup_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/flash_backup_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/flash_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/flash_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/flash_htol_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/flash_htol_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_btc_only_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_btc_only_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_testsuit_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_testsuit_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_wifi_only_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/freertos_wifi_only_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/gen_all_key.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/gen_all_key.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_app_iot_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_app_iot_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_bgle_all_asic_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_bgle_all_asic_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_bgle_all_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_bgle_all_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_btc_only_asic_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_btc_only_asic_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_hilink_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_hilink_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_mfg_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_mfg_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_mfg_bin_factory_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_mfg_bin_factory_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_perf_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_perf_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_testsuite_radar_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_testsuite_radar_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_xts_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/liteos_xts_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/loaderboot_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/loaderboot_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/param_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/param_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/params_and_bin_sign.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/params_and_bin_sign.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/params_and_bin_sign.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/params_and_bin_sign.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/root_pubk.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/root_pubk.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/sparklyzer_btc_only_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/sparklyzer_btc_only_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/ssb_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/ssb_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/testsuit_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/testsuit_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/tool_security b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_config/tool_security old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/Readme.txt b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/Readme.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/build_ota_img.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/build_ota_img.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/build_ota_pkt.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/build_ota_pkt.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/ota/fota_format_st.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/ota/fota_format_st.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/ota/fota_template.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/ota/fota_template.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/encry_config.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/encry_config.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/flash_backup_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/flash_backup_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/flash_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/flash_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/liteos_app_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/liteos_app_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/liteos_app_bin_ecc_ota.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/liteos_app_bin_ecc_ota.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/liteos_mfg_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/liteos_mfg_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/loaderboot_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/loaderboot_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/ota_sign.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/ota_sign.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/param_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/param_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/root_pubk.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/root_pubk.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/ssb_bin_ecc.cfg b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/config/sign/ssb_bin_ecc.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/efuse_cfg_gen.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/efuse_cfg_gen.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/encryptandsign.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/encryptandsign.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/gen_all_key.sh b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/gen_all_key.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/lzma_tool b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/lzma_tool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/packet_allinone.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/packet_allinone.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/packet_create.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/packet_create.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/sign_tool_pltuni b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/sign_tool_pltuni old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/tool_security b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/sign_encry/tool_security old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/target_config.py b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/target_config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/ws63.json b/IOT/29924_team_smart_home_gateway/code/build/config/target_config/ws63/ws63.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/build_nvbin.py b/IOT/29924_team_smart_home_gateway/code/build/script/build_nvbin.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/build_upg_pkg.py b/IOT/29924_team_smart_home_gateway/code/build/script/build_upg_pkg.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/check_api_format.py b/IOT/29924_team_smart_home_gateway/code/build/script/check_api_format.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/cmake_builder.py b/IOT/29924_team_smart_home_gateway/code/build/script/cmake_builder.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/codesize_statistic.py b/IOT/29924_team_smart_home_gateway/code/build/script/codesize_statistic.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/codesize_statistic/codesize_statistic_config.json b/IOT/29924_team_smart_home_gateway/code/build/script/codesize_statistic/codesize_statistic_config.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/concat_bin.py b/IOT/29924_team_smart_home_gateway/code/build/script/concat_bin.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/conf_parser.py b/IOT/29924_team_smart_home_gateway/code/build/script/conf_parser.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/custom_cmd.py b/IOT/29924_team_smart_home_gateway/code/build/script/custom_cmd.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/enviroment.py b/IOT/29924_team_smart_home_gateway/code/build/script/enviroment.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/bt_status_to_hso_prim_xml.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/bt_status_to_hso_prim_xml.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/database_create.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/database_create.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/hso_prim_xml_merge.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/hso_prim_xml_merge.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/mk_hso_prim_xml.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/mk_hso_prim_xml.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/mk_hso_prim_xml_dsp.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/mk_hso_prim_xml_dsp.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/ota_msg_to_hso_prim_xml.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/ota_msg_to_hso_prim_xml.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/process_pregenerated_xml.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml/process_pregenerated_xml.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageRules_acore.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageRules_acore.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageRules_protocol_core.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageRules_protocol_core.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageXmlGen.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageXmlGen.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageXmlGen_acore.cfg b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageXmlGen_acore.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageXmlGen_protocol_core.cfg b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/MessageXmlGen_protocol_core.cfg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/Messages.xsd b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/Messages.xsd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/merge_messages.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/merge_messages.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/messagexmlgen.cmake b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/MessageXmlGen/messagexmlgen.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/app_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/app_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/extern_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/extern_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/mac_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/mac_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/msg_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/msg_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/os_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/os_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/phy_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/phy_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/pseudo_cmd_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/pseudo_cmd_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/sys_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/diag/sys_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_cmd_db.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_cmd_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_layout_db.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_layout_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_nvi_db.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_nvi_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_prim_db.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_prim_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_subsystem_db.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/hdbcfg/mss_subsystem_db.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/base_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/base_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/extern_datatype_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/extern_datatype_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/nv_app_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/nv_app_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/nv_protocol_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/nv_protocol_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/nv_security_struct_def.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/cco/system/nv/nv_security_struct_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/database_ver.txt b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database/database_ver.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database_create.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/database_create.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/mss_prim_db_old.xml b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/database_create/mss_prim_db_old.xml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/parse/parse_msgdefs.py b/IOT/29924_team_smart_home_gateway/code/build/script/hdbxml_custom/parse/parse_msgdefs.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/image_analysis/build_data_analyzer_allinone.py b/IOT/29924_team_smart_home_gateway/code/build/script/image_analysis/build_data_analyzer_allinone.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/image_analysis/common_utils.py b/IOT/29924_team_smart_home_gateway/code/build/script/image_analysis/common_utils.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/make_upg_res_pack.py b/IOT/29924_team_smart_home_gateway/code/build/script/make_upg_res_pack.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/nv/build_utils.py b/IOT/29924_team_smart_home_gateway/code/build/script/nv/build_utils.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/nv/conf_parser.py b/IOT/29924_team_smart_home_gateway/code/build/script/nv/conf_parser.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/nv/generate_data_stream.py b/IOT/29924_team_smart_home_gateway/code/build/script/nv/generate_data_stream.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/nv/generate_utils.py b/IOT/29924_team_smart_home_gateway/code/build/script/nv/generate_utils.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/nv/nv_binary.py b/IOT/29924_team_smart_home_gateway/code/build/script/nv/nv_binary.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/nv/parse_msgdefs.py b/IOT/29924_team_smart_home_gateway/code/build/script/nv/parse_msgdefs.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/pack_tool.py b/IOT/29924_team_smart_home_gateway/code/build/script/pack_tool.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/param_packet.py b/IOT/29924_team_smart_home_gateway/code/build/script/param_packet.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_mconfig_doxygen.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_mconfig_doxygen.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/config.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_basic.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_basic.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_elf.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_elf.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_freertos.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_freertos.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_liteos.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_liteos.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_freertos_phase2.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_freertos_phase2.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_liteos206_phase2.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_liteos206_phase2.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_liteos207_phase2.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_liteos207_phase2.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_liteos208_phase2.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_liteos208_phase2.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_phase1.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_main_phase1.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_module_diag.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_module_diag.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_print_global_var.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/parse_print_global_var.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/xml_main.py b/IOT/29924_team_smart_home_gateway/code/build/script/parse_tool/xml_main.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/patch/patch_riscv.py b/IOT/29924_team_smart_home_gateway/code/build/script/patch/patch_riscv.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/rom_ram_callback/gen_rom_ram_callback.py b/IOT/29924_team_smart_home_gateway/code/build/script/rom_ram_callback/gen_rom_ram_callback.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/rom_ram_callback/gen_rom_ram_callback_v1.py b/IOT/29924_team_smart_home_gateway/code/build/script/rom_ram_callback/gen_rom_ram_callback_v1.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/rom_ram_callback/strip_undef_symbols.py b/IOT/29924_team_smart_home_gateway/code/build/script/rom_ram_callback/strip_undef_symbols.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/project_generator.py b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/project_generator.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_generator.py b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_generator.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/component_template.make b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/component_template.make old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/template.mk b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/template.mk old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/third_party_template.make b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/third_party_template.make old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/toolchain.make b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/makefile/toolchain.make old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/template.mk b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/sdk_template/template.mk old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/target_config_genarator.py b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/target_config_genarator.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/xml_parser.py b/IOT/29924_team_smart_home_gateway/code/build/script/sdk_generator/xml_parser.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/usr_config.py b/IOT/29924_team_smart_home_gateway/code/build/script/usr_config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/utils/build_utils.py b/IOT/29924_team_smart_home_gateway/code/build/script/utils/build_utils.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/utils/create_hex.py b/IOT/29924_team_smart_home_gateway/code/build/script/utils/create_hex.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/utils/elftodu.py b/IOT/29924_team_smart_home_gateway/code/build/script/utils/elftodu.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/utils/mem_stats.py b/IOT/29924_team_smart_home_gateway/code/build/script/utils/mem_stats.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/utils/parse_map_size_info.py b/IOT/29924_team_smart_home_gateway/code/build/script/utils/parse_map_size_info.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/script/utils/targets_compare.py b/IOT/29924_team_smart_home_gateway/code/build/script/utils/targets_compare.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/toolchains/riscv32_musl_105.cmake b/IOT/29924_team_smart_home_gateway/code/build/toolchains/riscv32_musl_105.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/build/toolchains/riscv32_musl_105_fp.cmake b/IOT/29924_team_smart_home_gateway/code/build/toolchains/riscv32_musl_105_fp.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/config.in b/IOT/29924_team_smart_home_gateway/code/config.in old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/docs/image/bearpi_pico_h3863.png b/IOT/29924_team_smart_home_gateway/code/docs/image/bearpi_pico_h3863.png old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/docs/image/image.png b/IOT/29924_team_smart_home_gateway/code/docs/image/image.png old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/README.md b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_gpio.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_gpio.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_i2c.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_i2c.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_pwm.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_pwm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_sfc.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_sfc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_uart.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_watchdog.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/iot_watchdog.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/lowpower.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/lowpower.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/reset.c b/IOT/29924_team_smart_home_gateway/code/drivers/adapter/ohos_3.2/reset.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/boards/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/board_config/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/board_config/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/board_config/board_evb.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/board_config/board_evb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/board_config/boards.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/board_config/boards.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/flashboot_linker/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/flashboot_linker/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/flashboot_linker/linker.prelds b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/flashboot_linker/linker.prelds old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/flashboot_linker/memory_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/flashboot_linker/memory_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/loaderboot_linker/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/loaderboot_linker/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/loaderboot_linker/linker.prelds b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/loaderboot_linker/linker.prelds old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/loaderboot_linker/memory_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/loaderboot_linker/memory_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/function.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/linker.prelds b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/linker.prelds old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/memory_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_app_linker/memory_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/function.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/linker.prelds b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/linker.prelds old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/memory_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/linker/ws63_liteos_xts_linker/memory_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/memory_config_common.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/memory_config_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/product/product.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/product/product.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/product/product_fpga_standard.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/product/product_fpga_standard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/share_mem_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/share_mem_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/ssb_config_common.h b/IOT/29924_team_smart_home_gateway/code/drivers/boards/ws63/evb/memory_config/include/ssb_config_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/include/interrupt_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/include/interrupt_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/arch_encoding.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/arch_encoding.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/flash_patch.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/flash_patch.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/flash_patch.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/flash_patch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/interrupt.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/interrupt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/interrupt_handler.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/interrupt_handler.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/interrupt_handler.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/interrupt_handler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/oam_trace.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/oam_trace.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/oam_trace.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/oam_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/vectors.s b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv31/vectors.s old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv_common/arch_barrier.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/arch/riscv/riscv_common/arch_barrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_config/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_config/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_config/boot_init.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_config/boot_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/delay/delay.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/delay/delay.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/efuse_wrap/efuse_wrap.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/efuse_wrap/efuse_wrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/malloc/boot_malloc.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/malloc/boot_malloc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/reset/reset_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/reset/reset_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/reset/reset_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/reset/reset_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/serial/serial.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/serial/serial.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/watchdog/boot_watchdog.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/boot/boot_porting/watchdog/boot_watchdog.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/dyn_mem/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/dyn_mem/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/dyn_mem/dyn_mem.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/dyn_mem/dyn_mem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/dyn_mem/dyn_mem.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/dyn_mem/dyn_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/chip_core_definition.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/chip_core_definition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/chip_core_irq.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/chip_core_irq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/core.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/core.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/patch_section.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/patch_section.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/platform_core.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/platform_core.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/platform_core_rom.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/include/platform_core_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/interrupt/interrupt_adapter.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/interrupt/interrupt_adapter.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/interrupt/interrupt_os_adapter.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/interrupt/interrupt_os_adapter.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/adc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/adc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/adc/adc_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/adc/adc_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/adc/adc_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/adc/adc_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/arch_port.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/arch_port.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/arch_trace.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/arch_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/pmp_cfg.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/pmp_cfg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/pmp_cfg.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/arch/riscv/pmp_cfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/dma/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/dma/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/dma/dma_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/dma/dma_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/dma/dma_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/dma/dma_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/efuse/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/efuse/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/efuse/efuse_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/efuse/efuse_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/efuse/efuse_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/efuse/efuse_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/gpio/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/gpio/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/gpio/gpio_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/gpio/gpio_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/gpio/gpio_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/gpio/gpio_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/i2c/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/i2c/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/i2c/i2c_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/i2c/i2c_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/i2c/i2c_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/i2c/i2c_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/idle_config.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/idle_config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/idle_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/idle_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/print_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/print_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/tick_timer.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/tick_timer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/tick_timer.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/liteos/riscv31/tick_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/mem/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/mem/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/mem/malloc_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/mem/malloc_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/mem/malloc_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/mem/malloc_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/patch/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/patch/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/patch/ws63-liteos-app/libplat_patch.a b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/patch/ws63-liteos-app/libplat_patch.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/patch/ws63-liteos-xts/libplat_patch.a b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/patch/ws63-liteos-xts/libplat_patch.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pinctrl/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pinctrl/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pinctrl/pinctrl_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pinctrl/pinctrl_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pinctrl/pinctrl_porting_ws63.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pinctrl/pinctrl_porting_ws63.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pm/pm_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pm/pm_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pm/pm_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pm/pm_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pmp/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pmp/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pmp/pmp_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pmp/pmp_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pmp/pmp_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pmp/pmp_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pwm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pwm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pwm/pwm_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pwm/pwm_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pwm/pwm_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/pwm/pwm_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/reboot/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/reboot/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/reboot/reboot_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/reboot/reboot_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/reboot/reboot_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/reboot/reboot_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/rtc_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/rtc_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/rtc_unified/rtc_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/rtc_unified/rtc_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/rtc_unified/rtc_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/rtc_unified/rtc_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/security_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/security_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/security_unified/security_unified_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/security_unified/security_unified_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/driver/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/driver/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/driver/sfc.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/driver/sfc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/flash_config/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/flash_config/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/flash_config/flash_config_info.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/flash_config/flash_config_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/flash_config_info.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/flash_config_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/sfc_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/sfc_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/sfc_protect.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/sfc_protect.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/sfc_protect_gd25q32.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/porting/sfc_protect_gd25q32.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/sfc_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/sfc_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/sfc_protect.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/sfc_protect.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/sfc_protect_gd25q32.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sfc/sfc_protect_gd25q32.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sio/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sio/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sio/sio_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sio/sio_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sio/sio_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/sio/sio_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/soc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/soc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/soc/soc_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/soc/soc_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/soc/soc_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/soc/soc_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/spi/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/spi/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/spi/spi_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/spi/spi_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/spi/spi_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/spi/spi_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick_ws63.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick_ws63.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick_ws63.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/hal_systick_ws63.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/systick_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/systick_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/systick_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/systick/systick_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tcxo/tcxo_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tcxo/tcxo_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tcxo/tcxo_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tcxo/tcxo_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/timer/timer_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/timer/timer_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/timer/timer_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/timer/timer_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tsensor/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tsensor/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tsensor/tsensor_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tsensor/tsensor_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tsensor/tsensor_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/tsensor/tsensor_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/uart/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/uart/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/uart/uart_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/uart/uart_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/uart/uart_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/uart/uart_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/version/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/version/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/version/version_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/version/version_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/version/version_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/version/version_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/watchdog/watchdog_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/watchdog/watchdog_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/watchdog/watchdog_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/watchdog/watchdog_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/xo_trim/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/xo_trim/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/xo_trim/xo_trim_porting.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/xo_trim/xo_trim_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/xo_trim/xo_trim_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/porting/xo_trim/xo_trim_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/pinctrl/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/pinctrl/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/pinctrl/pinctrl_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/pinctrl/pinctrl_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/hal_systick.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/hal_systick.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/hal_systick_ws63.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/hal_systick_ws63.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/systick_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/systick/systick_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/tcxo/tcxo_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/tcxo/tcxo_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/timer/timer_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/timer/timer_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/version/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/version/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/version/version.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/version/version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/watchdog/watchdog_porting.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/chips/ws63/porting/watchdog/watchdog_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/pinmux/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/pinmux/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/sfc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/sfc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/sfc/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/sfc/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/systick/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/systick/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/timer/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/timer/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/watchdog/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/driver/watchdog/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/pinmux/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/pinmux/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/pinmux/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/pinmux/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/sfc/hal_sfc_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/hal_drv_timer.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/hal_drv_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/v150/hal_timer_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/v150/hal_timer_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/hal_watchdog.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/hal_watchdog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/input.inl b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/input.inl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/output.inl b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/output.inl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/secinput.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/secinput.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/securecutil.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/securecutil.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/secureprintoutput.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/open_source/libboundscheck/src/secureprintoutput.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/input.inl b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/input.inl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/output.inl b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/output.inl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/securecutil.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/securecutil.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/secureprintoutput.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom/rom_boot/open_source/libboundscheck/src/secureprintoutput.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom_config/acore/acore.sym b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/rom_config/acore/acore.sym old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/vectors/vectors.c b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/vectors/vectors.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/vectors/vectors.h b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/vectors/vectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/ws63-liteos-app/librom_callback.a b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/ws63-liteos-app/librom_callback.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/ws63-liteos-xts/librom_callback.a b/IOT/29924_team_smart_home_gateway/code/drivers/chips/ws63/ws63-liteos-xts/librom_callback.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/adc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/adc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/adc/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/adc/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/adc/adc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/adc/adc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/dma/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/dma/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/dma/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/dma/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/dma/dma.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/dma/dma.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/efuse/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/efuse/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/efuse/efuse.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/efuse/efuse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/gpio/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/gpio/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/gpio/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/gpio/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/gpio/gpio.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/gpio/gpio.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2c/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2c/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2c/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2c/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2c/i2c.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2c/i2c.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2s/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2s/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2s/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2s/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2s/i2s.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/i2s/i2s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/lpm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/lpm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/lpm/lpm_dev_ops.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/lpm/lpm_dev_ops.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/lpm/lpm_dev_ops.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/lpm/lpm_dev_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pinmux/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pinmux/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pinmux/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pinmux/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pinmux/pinctrl.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pinmux/pinctrl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pmp/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pmp/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pmp/pmp.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pmp/pmp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pwm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pwm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pwm/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pwm/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pwm/pwm.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/pwm/pwm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/rtc_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/rtc_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/rtc_unified/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/rtc_unified/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/rtc_unified/rtc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/rtc_unified/rtc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/drv_hash.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/drv_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/sha256.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security/hash/sha256.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/crypto_drv_common.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/crypto_drv_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/crypto_drv_common.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/crypto_drv_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/crypto_osal_adapt.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/crypto_osal_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_hash.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_inner.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_pbkdf2_hard.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_pbkdf2_hard.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_symc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_symc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_symc_mac_hard.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_symc_mac_hard.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_trng.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/drv_trng.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/fmea/fmea.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_code/fmea/fmea.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_common.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_fapc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_fapc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_flashboot_cipher.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_flashboot_cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_hash.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_keyslot.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_keyslot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_klad.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_klad.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_pke.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_pke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_pke_cal.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_pke_cal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_pke_inner.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_pke_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_rom_cipher.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_rom_cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_symc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_symc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_trng.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_include/drv_trng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_cal.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_cal.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecc_cal.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecc_cal.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecc_ecdh.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecc_ecdh.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecc_gen_key.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecc_gen_key.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecdsa.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_ecdsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_rsa.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/drv_pke_rsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/ecc/drv_pke_ecc_sign.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/ecc/drv_pke_ecc_sign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/ecc/drv_pke_ecc_verify.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/ecc/drv_pke_ecc_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/sm2/drv_pke_sm2_dsa_hash.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/sm2/drv_pke_sm2_dsa_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/sm2/drv_pke_sm2_verify.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_cipher/drv_pke_v5/sm2/drv_pke_sm2_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_fapc/drv_fapc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_fapc/drv_fapc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_flashboot_cipher.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_flashboot_cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_flashboot_symc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_flashboot_symc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_km/drv_keyslot.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_km/drv_keyslot.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_km/drv_klad.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_km/drv_klad.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_pke_weak_func.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_pke_weak_func.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_rom_cipher.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/drv_rom_cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/boot/crypto_drv_init.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/boot/crypto_drv_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/crypto_curve_param.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/crypto_curve_param.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/crypto_curve_param.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/crypto_curve_param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_init.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_init.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_irq.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_irq.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_irq.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/os/crypto_drv_irq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/ut/crypto_drv_init.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/init/cfbb/ut/crypto_drv_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_hash.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_inner.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_km.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_km.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_pke.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_pke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_pke_cal.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_pke_cal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_symc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_symc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_trng.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/include/kapi_trng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_hash.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_hash_simple.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_hash_simple.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_init.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_km.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_km.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_pke.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_pke.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_pke_ecc_cal.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_pke_ecc_cal.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_symc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_symc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_trng.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/kapi/source/kapi_trng.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/aes_harden_impl.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/aes_harden_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/aes_harden_impl_long_term.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/aes_harden_impl_long_term.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/ecp_harden_impl.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/ecp_harden_impl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/ecp_harden_impl.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/ecp_harden_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/hash_harden_impl.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/hash_harden_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/hash_harden_impl_long_term.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/hash_harden_impl_long_term.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/config-ws-iot.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/config-ws-iot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/aes_alt.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/aes_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/bignum_harden.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/bignum_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/mbedtls_alt_utils.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/mbedtls_alt_utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/mbedtls_harden_adapt_api.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/mbedtls_harden_adapt_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/mbedtls_harden_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/mbedtls_harden_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/sha1_alt.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/sha1_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/sha256_alt.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/sha256_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/sha512_alt.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/include/sha512_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/lwip_adapt.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/lwip_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/mbedtls_platform_hardware_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_alt/mbedtls_platform_hardware_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_harden_adapt.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/mbedtls_harden_adapt/mbedtls_harden_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/rom_drv_api/drv_rom_table.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/rom_drv_api/drv_rom_table.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/rom_drv_api/hal_rom_table.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/rom_drv_api/hal_rom_table.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/rom_drv_api/security_rom_table.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/rom_drv_api/security_rom_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/romable/hash_romable.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/romable/hash_romable.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/romable/hash_romable.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/romable/hash_romable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/cipher.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/km.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/km.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/pke.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/pke.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/security_init.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/security_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/security_sha256.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/security_sha256.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/sl_common.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/sl_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/sl_common.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/sl_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/trng.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/security_unified/service_layer/trng.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/spi/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/spi/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/spi/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/spi/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/spi/spi.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/spi/spi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/systick/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/systick/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/systick/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/systick/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/systick/systick.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/systick/systick.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tcxo/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tcxo/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tcxo/tcxo.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tcxo/tcxo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/timer/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/timer/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/timer/timer.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/timer/timer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tsensor/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tsensor/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tsensor/tsensor.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/tsensor/tsensor.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/uart/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/uart/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/uart/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/uart/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/uart/uart.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/uart/uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/watchdog/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/watchdog/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/watchdog/watchdog.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/driver/watchdog/watchdog.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/hal_adc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/hal_adc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/hal_adc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/hal_adc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/adc/v154/hal_adc_v154_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/cpu_core/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/cpu_core/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/cpu_core/hal_cpu_core.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/cpu_core/hal_cpu_core.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/cpu_core/hal_cpu_core.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/cpu_core/hal_cpu_core.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma_mem.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma_mem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma_mem.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/hal_dma_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/dma/v151/hal_dmac_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/hal_efuse.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/hal_efuse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/hal_efuse.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/hal_efuse.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151_reg_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151_reg_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151_reg_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151_reg_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151_reg_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/efuse/v151/hal_efuse_v151_reg_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/hal_gpio.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/hal_gpio.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/hal_gpio.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/hal_gpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_comm.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_comm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_comm.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_comm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_comm_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_comm_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/gpio/v150/hal_gpio_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/hal_i2c.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/hal_i2c.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/hal_i2c.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/hal_i2c.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_comm.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_comm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_comm.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_comm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_master.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_master.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_master.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_master.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/i2c/v150/hal_i2c_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/mips/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/mips/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/mips/hal_mips.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/mips/hal_mips.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/mips/hal_mips.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/mips/hal_mips.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/common/hal_pinctrl_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/ws63/hal_pinctrl_ws63.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/ws63/hal_pinctrl_ws63.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/ws63/hal_pinctrl_ws63.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pinmux/ws63/hal_pinctrl_ws63.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/hal_pmp.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/hal_pmp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/hal_pmp.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/hal_pmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pmp/v31/hal_pmp_riscv31_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/hal_pwm.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/hal_pwm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/hal_pwm.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/hal_pwm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/pwm/v151/hal_pwm_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reboot/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reboot/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reboot/hal_reboot.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reboot/hal_reboot.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reboot/hal_reboot.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reboot/hal_reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reg_config/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reg_config/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reg_config/hal_reg_config.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reg_config/hal_reg_config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reg_config/hal_reg_config.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/reg_config/hal_reg_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/hal_rtc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/hal_rtc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/hal_rtc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/hal_rtc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/rtc_unified/v100/hal_rtc_v100_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/boot/crypto_osal_lib.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/boot/crypto_osal_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/boot/crypto_osal_lib.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/boot/crypto_osal_lib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/crypto_security.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/crypto_security.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/os/crypto_osal_lib.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/os/crypto_osal_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/os/crypto_osal_lib.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/crypto_osal/cfbb/os/crypto_osal_lib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_common_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_common_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_common_macro.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_common_macro.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_common_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_common_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_ecc_curve.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_ecc_curve.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_errno.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_hash_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_hash_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_kdf_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_kdf_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_km_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_km_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_pke_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_pke_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_security.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_security.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_symc_struct.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_symc_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_type.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/common_include/crypto_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_cipher_trng.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_cipher_trng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_common.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_fapc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_fapc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_hash.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_keyslot.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_keyslot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_klad.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_klad.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_pke.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_pke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_rkp.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_rkp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_symc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/include/hal_include/hal_symc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/curve_ec_fp.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/curve_ec_fp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/curve_ec_fp.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/curve_ec_fp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/drv_common_pke.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/drv_common_pke.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/drv_common_pke.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/drv_common_pke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_sign.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_sign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_sign_common.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_sign_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_sign_verify_common.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_sign_verify_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_verify.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_verify_common.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ecc_ec_fp_verify_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ed_ec_fp.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/ed_ec_fp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/rsa.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/rsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/rsa.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/rsa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/sm2_ec_fp_sign_verify.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/alg/sm2_ec_fp_sign_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/curve_data_ram_addr.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/curve_data_ram_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/ecc_data_ram_addr.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/ecc_data_ram_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/rom_lib.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/rom_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/rsa_data_ram_addr.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/arch/rsa_data_ram_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/hal_pke.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/hal_pke.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/hal_pke_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/hal_pke_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/rom_lib.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/pke/rom_lib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/spacc/hal_hash.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/spacc/hal_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/spacc/hal_spacc_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/spacc/hal_spacc_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/spacc/hal_symc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/spacc/hal_symc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/trng/hal_trng.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/trng/hal_trng.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/trng/hal_trng_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_cipher/trng/hal_trng_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_fapc/hal_fapc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_fapc/hal_fapc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_fapc/hal_fapc_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_fapc/hal_fapc_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_keyslot.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_keyslot.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_keyslot_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_keyslot_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_klad.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_klad.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_klad_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_klad_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_rkp.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_rkp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_rkp_reg.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/security_unified/hal_km/hal_rkp_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sfc/hal_sfc_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v150/hal_sio_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/sio/hal_sio_v151/hal_sio_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/hal_spi.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/hal_spi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/hal_spi.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/hal_spi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/spi/v151/hal_spi_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tcxo/hal_tcxo_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/hal_drv_timer.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/hal_drv_timer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/hal_drv_timer.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/hal_drv_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/timer/v150/hal_timer_v150_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/hal_tsensor.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/hal_tsensor.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/hal_tsensor.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/hal_tsensor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/tsensor/v151/hal_tsensor_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/hal_uart.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/hal_uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/hal_uart.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/hal_uart.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151_regs_op.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151_regs_op.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/uart/v151/hal_uart_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/Kconfig b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/hal_watchdog.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/hal_watchdog.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/hal_watchdog.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/hal_watchdog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151.c b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_def.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_op.h b/IOT/29924_team_smart_home_gateway/code/drivers/drivers/hal/watchdog/v151/hal_watchdog_v151_regs_op.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/cfbb_version.h b/IOT/29924_team_smart_home_gateway/code/include/cfbb_version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/common_def.h b/IOT/29924_team_smart_home_gateway/code/include/common_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/driver/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/adc.h b/IOT/29924_team_smart_home_gateway/code/include/driver/adc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/dma.h b/IOT/29924_team_smart_home_gateway/code/include/driver/dma.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/driver_backup/hash.h b/IOT/29924_team_smart_home_gateway/code/include/driver/driver_backup/hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/driver_backup/mpu.h b/IOT/29924_team_smart_home_gateway/code/include/driver/driver_backup/mpu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/driver_backup/trng.h b/IOT/29924_team_smart_home_gateway/code/include/driver/driver_backup/trng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/drv_pmp.h b/IOT/29924_team_smart_home_gateway/code/include/driver/drv_pmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/efuse.h b/IOT/29924_team_smart_home_gateway/code/include/driver/efuse.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/efuse_user.h b/IOT/29924_team_smart_home_gateway/code/include/driver/efuse_user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_common_config.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_common_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_config_info.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_config_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_dosilicon_config.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_dosilicon_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_gigadevice_config.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_gigadevice_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_mxic_config.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_mxic_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_others_config.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_others_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_winbond_config.h b/IOT/29924_team_smart_home_gateway/code/include/driver/flash/flash_winbond_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/gpio.h b/IOT/29924_team_smart_home_gateway/code/include/driver/gpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/i2c.h b/IOT/29924_team_smart_home_gateway/code/include/driver/i2c.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/i2s.h b/IOT/29924_team_smart_home_gateway/code/include/driver/i2s.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/mem_monitor.h b/IOT/29924_team_smart_home_gateway/code/include/driver/mem_monitor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/pinctrl.h b/IOT/29924_team_smart_home_gateway/code/include/driver/pinctrl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/pm_clock.h b/IOT/29924_team_smart_home_gateway/code/include/driver/pm_clock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/pm_pmu.h b/IOT/29924_team_smart_home_gateway/code/include/driver/pm_pmu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/pwm.h b/IOT/29924_team_smart_home_gateway/code/include/driver/pwm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/rtc.h b/IOT/29924_team_smart_home_gateway/code/include/driver/rtc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/sdio/sdio_slave.h b/IOT/29924_team_smart_home_gateway/code/include/driver/sdio/sdio_slave.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/cipher.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/cipher_aead.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/cipher_aead.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/cipher_mac.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/cipher_mac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/km.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/km.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/mbedtls_harden_adapt.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/mbedtls_harden_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/security_init.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/security_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/security_sha256.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/security_sha256.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/trng.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/trng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/unified_cipher_pke.h b/IOT/29924_team_smart_home_gateway/code/include/driver/security_unified/unified_cipher_pke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/sfc.h b/IOT/29924_team_smart_home_gateway/code/include/driver/sfc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/spi.h b/IOT/29924_team_smart_home_gateway/code/include/driver/spi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/ssi.h b/IOT/29924_team_smart_home_gateway/code/include/driver/ssi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/systick.h b/IOT/29924_team_smart_home_gateway/code/include/driver/systick.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/tcxo.h b/IOT/29924_team_smart_home_gateway/code/include/driver/tcxo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/timer.h b/IOT/29924_team_smart_home_gateway/code/include/driver/timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/tsensor.h b/IOT/29924_team_smart_home_gateway/code/include/driver/tsensor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/uart.h b/IOT/29924_team_smart_home_gateway/code/include/driver/uart.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/driver/watchdog.h b/IOT/29924_team_smart_home_gateway/code/include/driver/watchdog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/errcode.h b/IOT/29924_team_smart_home_gateway/code/include/errcode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/middleware/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_factory.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_factory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_gatt_client.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_gatt_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_gatt_server.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_gatt_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_gatt_stru.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_gatt_stru.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_le_gap.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/ble/bts_le_gap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bt_audio.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bt_audio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bt_audio_hal_interface.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bt_audio_hal_interface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_a2dp_source.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_a2dp_source.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_avrcp_controller.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_avrcp_controller.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_avrcp_target.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_avrcp_target.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_br_gap.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_br_gap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_hfp_ag.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_hfp_ag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_hfp_hf.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_hfp_hf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_pan.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_pan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_pbap.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_pbap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_spp.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/br/bts_spp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/common/bts_def.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/common/bts_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_common.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_connection_manager.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_connection_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_device_discovery.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_device_discovery.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_errcode.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_errcode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_factory_manager.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_factory_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_glp_manager.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_glp_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_hadm_manager.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_hadm_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_low_latency.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_low_latency.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ota.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ssap_client.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ssap_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ssap_server.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ssap_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ssap_stru.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_ssap_stru.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_transmition_manager.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/bts/sle/sle_transmition_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/radar/radar_service.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/radar/radar_service.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/slp/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/slp/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/slp/slp.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/slp/slp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/slp/slp_errcode.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/slp/slp_errcode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/plat_device.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/plat_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/station_info.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/station_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_alg.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_alg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_device.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_device_config.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_device_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_event.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_hotspot.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_hotspot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_hotspot_config.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_hotspot_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_linked_info.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_linked_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_p2p.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_p2p.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_p2p_config.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_p2p_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_scan_info.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/services/wifi/wifi_scan_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/at.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/at.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/diag.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/diag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/diag_log.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/diag_log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/nv.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/nv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/partition.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/sdk_version.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/sdk_version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/uapi_crc.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/uapi_crc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/upg.h b/IOT/29924_team_smart_home_gateway/code/include/middleware/utils/upg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/.config b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/Makefile b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/common.mk b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/common.mk old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/mmu/include/arch/mmu.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/mmu/include/arch/mmu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/mmu/include/pagetable_manager.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/common/mmu/include/pagetable_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/aslr.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/aslr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/barrier.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/barrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/cache.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/cache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/canary.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/canary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/cpu.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/cpu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/dynload.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/dynload.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/exception.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/fpb.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/fpb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/generator.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/generator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/interrupt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/interrupt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/intrinsics.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/intrinsics.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/perf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/perf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/pmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/pmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/pmu.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/pmu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/regs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/regs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/spinlock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/stack_ops.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/stack_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/task.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/include/arch/task.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/dispatch.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/dispatch.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/exception.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/exception.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/linx131/custom.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/linx131/custom.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/linx131/runstop.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/linx131/runstop.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/linx131/trap.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/arch/riscv/src/linx131/trap.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/LiteOSConfig.cmake.in b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/LiteOSConfig.cmake.in old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/aslr.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/aslr.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/build_install.sh b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/build_install.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_clang_common.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_clang_common.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_gcc_common.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_gcc_common.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_gcc_cpu.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_gcc_cpu.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_xcc_common.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_xcc_common.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_xcc_cpu.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/compiler/compiler_xcc_cpu.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/config.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/config.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/dynload.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/dynload.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/function.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/function.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/get_env.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/get_env.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/kmodule.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/kmodule.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/liteos_install_package.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/liteos_install_package.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/liteos_tables_ldflags.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/liteos_tables_ldflags.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/los_config.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/los_config.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/module.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/module.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/module_libc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/module_libc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/multi_binaries.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/multi_binaries.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/superbuild/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/superbuild/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/superbuild/ascend.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/superbuild/ascend.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/superbuild/kirin.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/superbuild/kirin.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/umodule.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/umodule.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/wow_scatter.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/cmake/wow_scatter.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/Makefile.kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/Makefile.kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/README.md b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/config.in b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/config.in old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/kconfig.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/kconfig.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/usr_config.py b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/build/menuconfig/usr_config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/Makefile b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/cmsis_os.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/cmsis/cmsis_os.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/barrier.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/barrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/bitops.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/bitops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/bug.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/bug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/cacheflush.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/cacheflush.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/delay.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/delay.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/device.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/div64.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/div64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/dma-mapping.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/dma-mapping.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/fb.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/fb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/int-ll64.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/int-ll64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/irq.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/irq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/linkage.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/linkage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/memory.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/module.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/module.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/mutex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/outercache.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/outercache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/page.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/page.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/semaphore.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/serial.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/serial.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/signal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/spinlock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/stat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/statfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/system.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/system.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/timex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/uaccess.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/asm/uaccess.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/checksum.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/checksum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/bitops.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/bitops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/bug.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/bug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/cdev.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/cdev.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/compat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/compiler.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/completion.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/completion.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/crc32.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/crc32.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ctype.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/delay.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/delay.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/device.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/dma-direction.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/dma-direction.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/dma-mapping.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/dma-mapping.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/err.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/fb.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/fb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/fcntl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/file.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/filter.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/filter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/hardirq.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/hardirq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/hrtimer.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/hrtimer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/i2c.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/i2c.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/icmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/init.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/interrupt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/interrupt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ioctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ioport.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ioport.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/irq.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/irq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/jiffies.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/jiffies.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/kallsyms.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/kallsyms.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/kernel.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/kernel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/kmod.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/kmod.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/linkage.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/linkage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/linux_logo.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/linux_logo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/list.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/major.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/major.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/memory.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/miscdevice.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/miscdevice.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/module.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/module.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/moduleparam.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/moduleparam.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mtd/compatmac.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mtd/compatmac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mtd/mtd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mtd/mtd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mtd/mtd_list.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mtd/mtd_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mutex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/notifier.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/notifier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/pagemap.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/pagemap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/platform_device.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/platform_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/pm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/pm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/pm_runtime.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/pm_runtime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/poll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ppp_defs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/ppp_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/proc_fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/proc_fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/reboot.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/resource.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/rtc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/rtc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/rwsem.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/rwsem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/scatterlist.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/scatterlist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/sched.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/sched/clock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/sched/clock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/semaphore.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/seq_file.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/seq_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/serial.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/serial.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/signal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/slab.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/slab.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/spinlock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/spinlock_types.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/spinlock_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/stat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/statfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/string.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/stringify.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/stringify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/suspend.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/suspend.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/syscalls.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/syscalls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/time.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/timer.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/timex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/tty.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/tty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/types.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/uaccess.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/uaccess.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/version.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/vfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/vmalloc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/vmalloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/vt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/wait.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/wakelock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/wakelock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/watchdog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/watchdog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/workqueue.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/workqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/zutil.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/linux/zutil.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/mach/hardware.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/mach/hardware.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/memory.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/mntent.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/mtd/mtd-abi.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/mtd/mtd-abi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/uapi/linux/mtd-abi.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/uapi/linux/mtd-abi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/uapi/linux/rtc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/include/uapi/linux/rtc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/src/common/pendlist.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/linux/src/common/pendlist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/debug.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/mount/mount.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/mount/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/arch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/cancelpt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/cancelpt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/compiler.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/drivers/drivers.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/drivers/drivers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/fs/dirent.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/fs/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/fs/fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/fs/fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/fs/ioctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/fs/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/inode/inode.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/inode/inode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/irq.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/irq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/kmalloc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/kmalloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/mtd/mtd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/mtd/mtd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/arp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/net.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/net.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/netconfig.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/netconfig.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/netdev.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net/netdev.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net_config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/net_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/sched.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/semaphore.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/cdc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/cdc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/cdcacm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/cdcacm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/composite.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/composite.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/dfu.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/dfu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/pl2303.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/pl2303.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/rndis.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/rndis.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/usbdev.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/usbdev.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/usbdev_trace.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/usbdev_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/usbmsc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/usb/usbmsc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/vfs_oflags.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/vfs_oflags.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/wdog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/wdog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/wqueue.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/compat/nuttx/include/nuttx/wqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/include/los_driverbase.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/include/los_driverbase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/include/los_driverbase_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/base/include/los_driverbase_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/gic_common.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/gic_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/gic_v2.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/gic_v2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/gic_v3.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/gic_v3.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/hal_hwi.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/hal_hwi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/linglong_ic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/linglong_ic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/mono_vic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/mono_vic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/nvic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/nvic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/riscv_interrupt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/interrupt/include/riscv_interrupt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/timer/include/hal_timer.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/timer/include/hal_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/usb/adapt_liteos/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/usb/adapt_liteos/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/usb/adapt_liteos/implementation/usb_api_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/usb/adapt_liteos/implementation/usb_api_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/usb/adapt_liteos/usb_os_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/drivers/usb/adapt_liteos/usb_os_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/compat/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/compat/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/compat/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/compat/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/compat/Makefile b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/compat/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/disk.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/disk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/los_fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/los_fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/mtd_partition.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/mtd_partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/proc_fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/proc_fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/vfs_config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/vfs_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/vfs_extend.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/include/vfs_extend.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/bcache/bcache.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/bcache/bcache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/bcache/bcache_proc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/bcache/bcache_proc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/bch/bch_private.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/bch/bch_private.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/disk/disk_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/disk/disk_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/driver/driver.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/driver/driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/operation/fs_other.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/operation/fs_other.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/operation/fs_poll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/operation/fs_poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/operation/operation.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/operation/operation.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/utrim/utrim.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/include/utrim/utrim.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/multi_partition/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/fs/vfs/multi_partition/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_binarytree_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_binarytree_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_event_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_event_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_exc_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_exc_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_hwi_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_hwi_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_init_level.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_init_level.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_init_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_init_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_lockdep_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_lockdep_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_membox_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_membox_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_memory_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_memory_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_memstat_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_memstat_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_misc_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_misc_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_mp_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_mp_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_multipledlinkhead_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_multipledlinkhead_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_mux_debug_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_mux_debug_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_mux_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_mux_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_percpu_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_percpu_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_printf_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_printf_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_priqueue_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_priqueue_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_queue_debug_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_queue_debug_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_queue_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_queue_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_rwsem_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_rwsem_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sched_debug_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sched_debug_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sched_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sched_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sem_debug_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sem_debug_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sem_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sem_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_slab_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_slab_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sortlink_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_sortlink_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_spinlock_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_spinlock_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_stackinfo_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_stackinfo_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_swtmr_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_swtmr_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_task_base.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_task_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_task_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_task_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_tick_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/los_tick_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/pthread_mux_debug_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/include/pthread_mux_debug_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/mem/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/mem/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/mem/bestfit/los_memory_internal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/mem/bestfit/los_memory_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/mem/bestfit_little/los_memory_internal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/base/mem/bestfit_little/los_memory_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/console/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/console/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/cpup/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/cpup/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/console_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/console_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_cppsupport_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_cppsupport_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_cpup_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_cpup_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_lms_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_lms_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_perf_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_perf_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_rpqueue_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_rpqueue_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_scatter_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_scatter_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_trace_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/los_trace_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_deepsleep_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_deepsleep_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_lowpower_debug_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_lowpower_debug_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_lowpower_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_lowpower_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_runstop_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_runstop_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_tickless_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/include/lowpower/los_tickless_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/perf/Makefile b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/perf/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/perf/perf_output_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/perf/perf_output_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/perf/perf_pmu_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/extended/perf/perf_pmu_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/arch_generic/atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/arch_generic/atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/arch_generic/io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/arch_generic/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/console.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/console.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_base.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_bitmap.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_bitmap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_builddef.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_builddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_cppsupport.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_cppsupport.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_cpup.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_cpup.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_dynshm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_dynshm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_err.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_event.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_exc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_exc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_hw.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_hw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_hwi.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_hwi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_init.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_ld_elflib.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_ld_elflib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_list.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_lms.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_lms.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_lockdep.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_lockdep.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_lowpower.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_lowpower.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_membox.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_membox.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_memory.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_mux.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_mux.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_perf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_perf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_printf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_printf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_queue.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_ringbuf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_ringbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_rpqueue.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_rpqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_runstop.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_runstop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_rwsem.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_rwsem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_scatter.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_scatter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_sem.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_slab.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_slab.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_spinlock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_swtmr.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_swtmr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_sys.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_sys.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_tables.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_tables.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_task.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_task.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_tick.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_tick.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_toolchain.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_toolchain.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_trace.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_typedef.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/los_typedef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/virtual_serial.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/include/virtual_serial.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/init/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/kernel/init/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/Makefile b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/libc_src.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/libc_src.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/libc_src.mk b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libc/libc_src.mk old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libm/Makefile b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/libm/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/memcpy.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/memcpy.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/memset.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/memset.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/setjmp.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/setjmp.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/strcmp.S b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/arch/riscv32/strcmp.S old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/bits/pthread_types.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/bits/pthread_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/pthread_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/pthread_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/semaphore_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/semaphore_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/sys/cdefs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/sys/cdefs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/time64.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/time64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/tzdst.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/include/tzdst.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/init/libc_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/init/libc_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/locale/locale_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/locale/locale_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/lock/libc_lock_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/lock/libc_lock_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/mq/mqueue_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/mq/mqueue_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/pthread/pprivate.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/pthread/pprivate.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/time/time_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/time/time_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/tzdst/tzdst_pri.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/lib/liteos_libc/tzdst/tzdst_pri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cachel1_armv7.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cachel1_armv7.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_armcc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_armcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_armclang.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_armclang.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_armclang_ltm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_armclang_ltm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_compiler.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_gcc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_gcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_iccarm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_iccarm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_version.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/cmsis_version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_armv81mml.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_armv81mml.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_armv8mbl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_armv8mbl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_armv8mml.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_armv8mml.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm0.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm0.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm0plus.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm0plus.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm1.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm23.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm23.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm3.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm3.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm33.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm33.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm35p.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm35p.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm4.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm55.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm55.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm7.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm7.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm85.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_cm85.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_sc000.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_sc000.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_sc300.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_sc300.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_starmc1.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/core_starmc1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/mpu_armv7.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/mpu_armv7.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/mpu_armv8.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/mpu_armv8.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/pac_armv81.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/pac_armv81.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/pmu_armv8.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/pmu_armv8.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/tz_context.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/Core/Include/tz_context.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/RTOS/LiteOS/INC/cmsis_os1.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/RTOS/LiteOS/INC/cmsis_os1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/RTOS2/Include/cmsis_os2.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/RTOS2/Include/cmsis_os2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/RTOS2/Include/os_tick.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/CMSIS/CMSIS/RTOS2/Include/os_tick.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/compiler.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/debug.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/automount.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/automount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/dirent_fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/dirent_fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/file.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/fs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/fs/fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/inode/inode.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/inode/inode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/net/net.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/net/net.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/syslog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/vfs/driver/driver.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/incubator-nuttx/liteos/fs/vfs/driver/driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/link.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/fp_arch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/generic/fp_arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/atomic_arch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/atomic_arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/endian.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/float.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/user.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/crt_arch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/crt_arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/kstat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/kstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/pthread_arch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/pthread_arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/reloc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/reloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/syscall_arch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/arch/riscv32/syscall_arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/aio.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/alloca.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ar.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/assert.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/complex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/cpio.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/crypt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ctype.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/dirent.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/elf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/endian.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/err.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/features.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fenv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/float.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ftw.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/getopt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/glob.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/grp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/iconv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/libgen.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/libintl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/limits.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/link.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/locale.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/malloc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/math.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/memory.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/mntent.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/monetary.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/if.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/route.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netdb.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/paths.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/poll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/pthread.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/pty.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/pwd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/regex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/resolv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sched.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/search.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/shadow.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/signal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/spawn.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/string.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/strings.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stropts.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/syscall.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/syslog.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/tar.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/termios.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/threads.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/time.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/uchar.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/unistd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/utime.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/utmp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/values.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wait.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wchar.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wctype.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/crypt/crypt_des.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/crypt/crypt_des.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/alpha.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/alpha.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/casemap.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/casemap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/nonspacing.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/nonspacing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/punct.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/punct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/wide.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ctype/wide.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/dirent/__dirent.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/dirent/__dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/errno/__strerror.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/errno/__strerror.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/crypt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/features.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/pthread.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/resolv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/signal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/string.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/time.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/unistd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/wchar.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/aio_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/aio_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/complex_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/complex_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/dynlink.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/dynlink.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/fdpic_crt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/fdpic_crt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/floatscan.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/floatscan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/fork_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/fork_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/futex.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/futex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/intscan.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/intscan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/ksigaction.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/ksigaction.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/libc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/libc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/libm.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/libm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/locale_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/locale_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/lock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/lock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/pthread_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/pthread_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/shgetc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/shgetc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/stdio_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/stdio_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/syscall.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/internal/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ipc/ipc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/ipc/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/big5.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/big5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/codepages.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/codepages.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/gb18030.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/gb18030.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/hkscs.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/hkscs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/jis0208.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/jis0208.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/ksc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/ksc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/legacychars.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/legacychars.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/pleval.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/pleval.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/revjis.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/locale/revjis.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/__invtrigl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/__invtrigl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/exp2f_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/exp2f_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/exp_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/exp_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/log2_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/log2_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/log2f_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/log2f_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/log_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/log_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/logf_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/logf_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/pow_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/pow_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/powf_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/powf_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/sqrt_data.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/math/sqrt_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/multibyte/internal.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/multibyte/internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/network/lookup.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/network/lookup.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/network/netlink.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/network/netlink.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/passwd/nscd.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/passwd/nscd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/passwd/pwf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/passwd/pwf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/prng/rand48.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/prng/rand48.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/process/fdop.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/process/fdop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/regex/tre.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/regex/tre.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/search/tsearch.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/search/tsearch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/stdio/getc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/stdio/getc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/stdio/putc.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/stdio/putc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/time/time_impl.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/open_source/musl/src/time/time_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/platform/libsec/include/securec.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/platform/libsec/include/securec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/platform/libsec/include/securectype.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/platform/libsec/include/securectype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/shell/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/shell/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/shell/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/shell/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/shell/api_inc.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/shell/api_inc.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.aiot b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.aiot old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.ascend b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.ascend old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.hq b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.hq old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.shc b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/Kconfig.shc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/aiot/family.cmake b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/aiot/family.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/interrupt_config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/interrupt_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/memmap_config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/memmap_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/platform.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/platform.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/register_config.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/asm/register_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/board_ws63.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/board_ws63.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/los_iperf.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/los_iperf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/soc/clock.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/soc/clock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/soc/uart.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/include/soc/uart.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/nmi_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/targets/ws63/nmi_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/tools/build/config/ws63.config b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/tools/build/config/ws63.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/tools/build/config/ws63_xts.config b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Huawei_LiteOS/tools/build/config/ws63_xts.config old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/show_menuconfig.py b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/show_menuconfig.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libbase.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libbase.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libc.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libcmsis.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libcmsis.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libcpup.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libcpup.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libcsysdeps.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libcsysdeps.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libdriverbase.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libdriverbase.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libinit.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libinit.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libinterrupt.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libinterrupt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/liblinux.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/liblinux.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libm.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libriscv.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libriscv.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libtargets.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-app/libtargets.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libbase.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libbase.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libc.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcmsis.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcmsis.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcompat.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcompat.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libconsole.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libconsole.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcpup.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcpup.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcsysdeps.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libcsysdeps.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libdriverbase.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libdriverbase.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libinit.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libinit.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libinterrupt.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libinterrupt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/liblinux.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/liblinux.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libm.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libposix.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libposix.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libriscv.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libriscv.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libtargets.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libtargets.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libvfs.a b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/liteos_v208.5.0/ws63-liteos-xts/libvfs.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/ohos_adapt/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/ohos_adapt/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/ohos_adapt/src/cmsis_adapt.c b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/ohos_adapt/src/cmsis_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/printf_adapt/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/printf_adapt/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/liteos/printf_adapt/printf_adapt.c b/IOT/29924_team_smart_home_gateway/code/kernel/liteos/printf_adapt/printf_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/irmalloc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/irmalloc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/irmalloc/chip_mem/chip_mem.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/irmalloc/chip_mem/chip_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/irmalloc/common/irmalloc.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/irmalloc/common/irmalloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/dbg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/dbg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/dbg/dbg_hash_tab.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/dbg/dbg_hash_tab.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/dbg/dbg_heap_memory.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/dbg/dbg_heap_memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/malloc.c b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/malloc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/malloc.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/malloc/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_nmi.c b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_nmi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_nmi.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_nmi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_utils.c b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_utils.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_utils.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/non_os_utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/osal_inner.h b/IOT/29924_team_smart_home_gateway/code/kernel/non_os/non_os/osal_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/osal/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/Kconfig b/IOT/29924_team_smart_home_gateway/code/kernel/osal/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/include/osal_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/include/osal_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/liteos/oal_onetrack.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/liteos/oal_onetrack.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/liteos/osal_cpp_adapt.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/liteos/osal_cpp_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/liteos/osal_debug_adapt.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/adapt/liteos/osal_debug_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/atomic/osal_atomic.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/atomic/osal_atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/debug/osal_debug.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/debug/osal_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/device/osal_device.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/device/osal_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/drvbox/osal_drvbox.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/drvbox/osal_drvbox.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/event/osal_event.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/event/osal_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/fileops/osal_fileops.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/fileops/osal_fileops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/interrupt/osal_interrupt.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/interrupt/osal_interrupt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/lock/osal_mutex.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/lock/osal_mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/lock/osal_rwlock.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/lock/osal_rwlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/lock/osal_spinlock.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/lock/osal_spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/math/osal_bitmap.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/math/osal_bitmap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/math/osal_math.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/math/osal_math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/memory/osal_addr.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/memory/osal_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/memory/osal_barrier.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/memory/osal_barrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/memory/osal_cache.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/memory/osal_cache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/msgqueue/osal_msgqueue.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/msgqueue/osal_msgqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_def.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_errno.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_ioctl.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_list.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/osal_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/proc/osal_proc.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/proc/osal_proc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_completion.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_completion.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_delaywork.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_delaywork.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_task.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_task.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_wait.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_workqueue.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/schedule/osal_workqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/semaphore/osal_semaphore.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/semaphore/osal_semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/soc_osal.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/soc_osal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/string/osal_string.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/string/osal_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/time/osal_timer.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/include/time/osal_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_addr.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_atomic.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_atomic.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_barrier.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_barrier.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_cache.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_cache.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_completion.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_completion.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_debug.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_drvbox.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_drvbox.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_event.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_event.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_fileops.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_fileops.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_inner.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_interrupt.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_interrupt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_math.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_math.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_msgqueue.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_msgqueue.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_mutex.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_mutex.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_semaphore.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_semaphore.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_spinlock.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_spinlock.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_string.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_string.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_task.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_task.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_timer.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_timer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_wait.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_wait.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_workqueue.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/liteos/osal_workqueue.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_atomic.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_atomic.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_debug.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_inner.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_interrupt.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_interrupt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_mutex.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_mutex.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_semaphore.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_semaphore.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_spinlock.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_spinlock.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_task.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_task.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_wait.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal/src/nonos/osal_wait.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/inc/osal_adapt.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/inc/osal_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/inc/osal_adapt_debug.h b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/inc/osal_adapt_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_atomic.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_atomic.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_debug.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_event.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_event.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_string.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_string.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_task.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_task.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_timer.c b/IOT/29924_team_smart_home_gateway/code/kernel/osal_adapt/src/osal_adapt_timer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/libs_url/ws63/cmake/ohos.cmake b/IOT/29924_team_smart_home_gateway/code/libs_url/ws63/cmake/ohos.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/chips/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_channel.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_channel.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_channel.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_system_init.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_system_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_system_init.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/dfx_system_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_cmd_mem.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_cmd_mem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_cmd_mem.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_cmd_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_psd.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_psd.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_psd.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_psd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_sdt.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_sdt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_sdt.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_adapt_sdt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_sample_data.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_sample_data.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_sample_data.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/diag_sample_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/at_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/at_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/dfx_adapt_layer.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/dfx_adapt_layer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/dfx_feature_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/dfx_feature_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/dfx_resource_id.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/dfx_resource_id.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/diag_adapt_layer.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/diag_adapt_layer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/diag_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/diag_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_bt.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_bt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_dsp.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_dsp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_pf.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_pf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_wifi.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_def_wifi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_uart_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/log_uart_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_cmd_id.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_cmd_id.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_log.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_msg_id.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_msg_id.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_msg_id_diag.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_msg_id_diag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_util.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_wdk.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_diag_wdk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_log_uart_instance.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_log_uart_instance.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_zdiag.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/include/soc_zdiag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/last_dump_adapt.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/last_dump_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/last_dump_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/last_dump_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/sample_data_adapt.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/sample_data_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/sample_data_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/dfx/sample_data_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/exception.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/exception_riscv.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/exception_riscv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/exception_riscv.s b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/exception/exception_riscv.s old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/factory/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/factory/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/factory/factory.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/factory/factory.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/factory/factory.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/factory/factory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/littlefs_adapt.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/littlefs_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/littlefs_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/littlefs_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/littlefs_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/littlefs/littlefs_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/mac_addr/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/mac_addr/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/mac_addr/mac_addr.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/mac_addr/mac_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/mac_addr/mac_addr.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/mac_addr/mac_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/include/nv_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/include/nv_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/include/nv_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/include/nv_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/acore/app.json b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/acore/app.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/acore/perf.json b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/acore/perf.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/nv_target.json b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/nv_target.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/nv_target_perf.json b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/cfg/nv_target_perf.json old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/include/key_id.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/include/key_id.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/include/nv_common_cfg.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_config/include/nv_common_cfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_porting/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_porting/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_porting/nv_flash.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_porting/nv_flash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_zdiag/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_zdiag/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_zdiag/nv_adapt_zdiag.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_zdiag/nv_adapt_zdiag.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_zdiag/nv_adapt_zdiag.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/nv/nv_zdiag/nv_adapt_zdiag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/include/partition_resource_id.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/include/partition_resource_id.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/partition_porting.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/partition_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/partition_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/partition/partition_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/ab_upg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/ab_upg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/ab_upg/upg_ab.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/ab_upg/upg_ab.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/common/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/common/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/common/upg_common_porting.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/common/upg_common_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_ab.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_ab.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_common_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_common_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_debug.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_definitions_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_definitions_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_encry_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_encry_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_porting.h b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/include/upg_porting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/local_update/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/local_update/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/local_update/upg_encry_porting.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/local_update/upg_encry_porting.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/storage/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/storage/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/storage/upg_backup.c b/IOT/29924_team_smart_home_gateway/code/middleware/chips/ws63/update/storage/upg_backup.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/services/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/services/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/SConscript b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/SConscript old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/hostapd_ctrl_iface_rtos.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/hostapd_ctrl_iface_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/hostapd_if.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/hostapd_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/hostapd_main_rtos.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/hostapd/liteos_hostapd_src/hostapd_main_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/Makefile_liteos b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/Makefile_liteos old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/service_event.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/service_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/service_wifi_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/service_wifi_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/soc_wifi_service_api.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/service/soc_wifi_service_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_at.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_at.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_common.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_ioctl.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_ioctl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_ioctl.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/driver_soc/driver_soc_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/SConscript b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/SConscript old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wapi_api.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wapi_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wapi_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wapi_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wifi_api.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wifi_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wifi_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wifi_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wifi_softap_api.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wifi_softap_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wpa_log.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/liteos_wpa_api/wpa_log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/ltos_src/eloop_ltos.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/ltos_src/eloop_ltos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/ltos_src/eloop_ltos.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/ltos_src/eloop_ltos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/osdep/osdep_osal.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/osdep/osdep_osal.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/osdep/wifi_osdep.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/osdep/wifi_osdep.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/scan_list_adapt/scan_list_adapt.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/scan_list_adapt/scan_list_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/scan_list_adapt/scan_list_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/scan_list_adapt/scan_list_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_crypto.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_crypto.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_crypto_mbedtls.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_crypto_mbedtls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_rxtx.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_rxtx.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_rxtx.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_rxtx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_sm.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_sm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_sm.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wai_sm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wapi.c b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wapi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wapi.h b/IOT/29924_team_smart_home_gateway/code/middleware/services/wifi_service/wpa/wapi/wapi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/utils/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/crc/uapi_crc16.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/crc/uapi_crc16.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/crc/uapi_crc32.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/crc/uapi_crc32.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_hash.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_hash.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_public.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_public.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_public.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_public.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_public_inner.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_public_inner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_rawlist.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_rawlist.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_rawlist.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/cstl/cstl_rawlist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sec_random/sec_random.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sec_random/sec_random.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sec_random/sec_random.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sec_random/sec_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sha256/sha256.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sha256/sha256.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sha256/sha256.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/sha256/sha256.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/srp/public/srp.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/algorithm/srp/public/srp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/app_init/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/app_init/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/app_init/app_init.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/app_init/app_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/app_init/app_init.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/app_init/app_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/include/at_product.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/include/at_product.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/include/at_zdiag.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/include/at_zdiag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_base.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_base.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_base.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_channel.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_channel.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_channel.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_cmd.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_cmd.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_cmd.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_cmd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_msg.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_msg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_msg.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_notify.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_notify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_notify.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_notify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_parse.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_parse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_parse.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_parse.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_process.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_process.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_process.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_process.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_report.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_report.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_zdiag.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at/src/at_zdiag.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt_cmd_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt_cmd_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt_productline.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt_productline.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt_productline_cmd_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/at/at_bt_productline_cmd_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/src/at_bt_cmd_register.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/src/at_bt_cmd_register.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/ws63-liteos-app/libbt_at.a b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/ws63-liteos-app/libbt_at.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/ws63-liteos-xts/libbt_at.a b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_bt_cmd/ws63-liteos-xts/libbt_at.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/at/at_plt.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/at/at_plt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/at/at_plt.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/at/at_plt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/at/at_plt_cmd_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/at/at_plt_cmd_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/src/at_plt_cmd_register.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/src/at_plt_cmd_register.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/src/at_plt_cmd_register.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_plt_cmd/src/at_plt_cmd_register.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/at/at_radar.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/at/at_radar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/at/at_radar_cmd_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/at/at_radar_cmd_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/src/at_radar_cmd_register.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/src/at_radar_cmd_register.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/ws63-liteos-app/libradar_at.a b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/ws63-liteos-app/libradar_at.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/ws63-liteos-xts/libradar_at.a b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_radar_cmd/ws63-liteos-xts/libradar_at.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_ccpriv.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_ccpriv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_ccpriv.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_ccpriv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_ccpriv_register.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_ccpriv_register.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_mfg.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_mfg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_register.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_register.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_register.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_register.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_sendtest.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_sendtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_sendtest.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_sendtest.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_utils.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_utils.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_utils.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_ccpriv_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_ccpriv_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_cmd_register_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_cmd_register_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_cmd_table.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_cmd_table.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_mfg_cmd_talbe.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/at/at_wifi_mfg_cmd_talbe.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/src/at_cmd_register.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/src/at_cmd_register.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/src/at_cmd_register.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/at/at_wifi_cmd/src/at_cmd_register.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/chip_definitions.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/chip_definitions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/chip_io.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/chip_io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/debug_print.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/debug_print.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_dpu_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_dpu_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_dpu_type.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_dpu_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_gfx_type.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_gfx_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_gmmu_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_gmmu_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_jpeg_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_jpeg_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_vau_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_vau_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_vau_type.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/drivers/gpu/soc_vau_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/error_types.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/error_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/list.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/log_types.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/log_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/soc_errno.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/soc_errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/soc_module.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/soc_module.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/td_base.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/td_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/td_base_sdk.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/td_base_sdk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/td_type.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/native/td_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/oal_interface.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/oal_interface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/osal/osal_types.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/osal/osal_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/platform.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/platform.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/platform_driver.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/platform_driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/platform_types.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/platform_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/std_def.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/common_headers/std_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/dfx_include/dfx_os_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/dfx_include/dfx_os_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_cpup.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_cpup.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_mem.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_res.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_res.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_task.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_task.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_trace.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/include/dfx_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_cpup.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_cpup.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_mem.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_mem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_res.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_res.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_task.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_task.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_trace.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_os/liteos_v1/dfx_trace.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_print/dfx_print.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_print/dfx_print.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_print/dfx_print.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_print/dfx_print.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/cpu_utils/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/cpu_utils/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/cpu_utils/private/cpu_utils.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/cpu_utils/private/cpu_utils.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/cpu_utils/public/cpu_utils.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/cpu_utils/public/cpu_utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/reboot/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/reboot/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/reboot/shared/non_os_reboot.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/reboot/shared/non_os_reboot.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/reboot/shared/non_os_reboot.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/dfx_reboot/reboot/shared/non_os_reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_dump/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_dump/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_dump/include/zdiag_audio_dump.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_dump/include/zdiag_audio_dump.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_probe/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_probe/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_probe/include/zdiag_audio_probe.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_probe/include/zdiag_audio_probe.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_proc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_proc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_proc/include/zdiag_audio_proc.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_proc/include/zdiag_audio_proc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/include/circ_buf.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/include/circ_buf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/include/diag_audio_sample_data.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/include/diag_audio_sample_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/include/zdiag_audio_hook.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_audio_sample_data/include/zdiag_audio_hook.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_charger/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_charger/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_charger/include/zdiag_charger.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_charger/include/zdiag_charger.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_dfx_cmd_init.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_dfx_cmd_init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_dfx_cmd_init.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_dfx_cmd_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_gpu_proc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_gpu_proc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_gpu_proc/include/diag_gpu_proc.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_gpu_proc/include/diag_gpu_proc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_logfile/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_logfile/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_logfile/include/diag_cmd_logflash_test.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_logfile/include/diag_cmd_logflash_test.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_nv/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_nv/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_nv/include/zdiag_nv.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_nv/include/zdiag_nv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_update/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_update/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_update/include/diag_update.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/diag_dfx_cmd/diag_update/include/diag_update.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_common.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_module_id.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_module_id.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_num.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_num.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_dscr_cb.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_dscr_cb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_logger.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_logger.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_mem_query.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_mem_query.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_msg.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_ota.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_ota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_pcm.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_pcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_reg_query.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_reg_query.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_status.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oam_status.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oml_exception.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oml_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oml_ota_rom.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_oml_ota_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_panic.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_panic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_printf.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_printf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_printf_rom.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_printf_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_reg_dump.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_reg_dump.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_system_messages.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_system_messages.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_trigger.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/include/log_trigger.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_dscr_cb.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_dscr_cb.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_logger.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_logger.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_mem_query.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_mem_query.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_msg.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_msg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_ota.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_ota.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_pcm.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_pcm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_reg_query.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_reg_query.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_status.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oam_status.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oml_exception.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oml_exception.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oml_ota_rom.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_oml_ota_rom.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_printf.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_printf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_printf_rom.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_printf_rom.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_reg_dump.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_reg_dump.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_trigger.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log/log_trigger.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/audio_user_error.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/audio_user_error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/audio_user_event.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/audio_user_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer_common.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer_reader.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer_reader.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer_reader.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_buffer_reader.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_definitions.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_definitions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_region.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_region.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_region.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_region.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_section.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_section.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_section.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_buffer/log_memory_section.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/include/log_file.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/include/log_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_common.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_file.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_file.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_file.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_flash.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_flash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_flash.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_file/log_file_flash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_reader/include/log_uart.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_reader/include/log_uart.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_reader/log_uart.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/log_reader/log_uart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/private/panic.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/private/panic.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/private/panic_private.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/private/panic_private.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/private/panic_rom.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/private/panic_rom.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/public/panic.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/public/panic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/public/panic_rom.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/panic/public/panic_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/private/crash_data.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/private/crash_data.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/private/preserve.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/private/preserve.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/public/crash_data.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/public/crash_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/public/preserve.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/preserve/public/preserve.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/include/soc_log.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/include/soc_log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/include/soc_log_impl_str.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/include/soc_log_impl_str.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/include/soc_log_strategy.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/include/soc_log_strategy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/soc_log.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/soc_log.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/soc_log_uart_instance.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/soc_log/soc_log_uart_instance.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/write_interface/include/dfx_write_interface.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/write_interface/include/dfx_write_interface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/dfx_include/zdiag_dfx_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/dfx_include/zdiag_dfx_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_channel_item.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_channel_item.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_pkt.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_pkt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_beat_heart_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_beat_heart_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_connect_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_connect_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_filter_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_filter_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_mem_read_write_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_mem_read_write_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_password_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_cmd_password_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_sample_data_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/diag_sample_data_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/last_dump_st.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/dfx_include/last_dump_st.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_bt_sample_data.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_bt_sample_data.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_beat_heart.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_beat_heart.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_connect.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_connect.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_filter.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_filter.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_cpup.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_cpup.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_init_info.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_init_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_mem_info.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_mem_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_res_info.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_res_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_task_info.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_get_task_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_log_level.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_log_level.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_mem_read_write.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_mem_read_write.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_offline_log.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_offline_log.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_password.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_password.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_stat.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_stat.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_trace_info.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_cmd_trace_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_mocked_shell.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/diag_mocked_shell.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_bt_sample_data.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_bt_sample_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_beat_heart.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_beat_heart.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_connect.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_connect.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_filter.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_filter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_cpup.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_cpup.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_init_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_init_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_mem_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_mem_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_res_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_res_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_task_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_get_task_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_log_level.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_log_level.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_mem_read_write.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_mem_read_write.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_offline_log.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_offline_log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_password.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_password.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_stat.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_trace_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_trace_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_ver.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_cmd_ver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_mocked_shell.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/diag_mocked_shell.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/last_dump.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/include/last_dump.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/last_dump.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/diag_system_cmd/last_dump.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_channel.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_common.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_dfx.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_dfx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_filter.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_filter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_ind_src.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_ind_src.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_msg.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_oam_log.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_oam_log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_rom_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_rom_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_stat.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/include/diag_stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/romable/diag_oam_log.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/romable/diag_oam_log.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/romable/diag_rom_api.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/romable/diag_rom_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_channel.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_channel.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_dst.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_dst.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_dst.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_dst.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_src.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_src.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_src.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_cmd_src.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_debug.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_debug.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_dfx.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_dfx.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_filter.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_filter.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_ind_dst.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_ind_dst.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_ind_dst.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_ind_dst.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_ind_src.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_ind_src.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_mem.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_mem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_mem.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_msg.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_msg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_pkt.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_pkt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_pkt_router.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_pkt_router.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_pkt_router.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_pkt_router.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_rx_api.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_rx_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_rx_api.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_rx_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_stat.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_stat.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_tx.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_tx.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_tx.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/dfx/zdiag/zdiag_tx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/error_code/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/error_code/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/error_code/private/error_code.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/error_code/private/error_code.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/error_code/public/error_code.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/error_code/public/error_code.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/fs/adapter/xts/littlefs_xts_adapt.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/fs/adapter/xts/littlefs_xts_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/cfg/hcc_cfg.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/cfg/hcc_cfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/cfg/hcc_cfg_comm.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/cfg/hcc_cfg_comm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_adapt_sdio.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_adapt_sdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_bus.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_bus.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_bus_types.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_bus_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_channel.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_flow_ctrl.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_flow_ctrl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_ipc_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_ipc_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_list.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_queue.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_rom_callback.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_rom_callback.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_service.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/comm/hcc_service.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_comm.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_comm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_dfx.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_dfx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_if.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_test.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_test.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_types.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/hcc/inc/hcc_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/mips/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/mips/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/mips/private/mips.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/mips/private/mips.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/mips/public/mips.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/mips/public/mips.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/nv_storage.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/nv_storage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/nv_storage_handle.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/nv_storage_handle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/soc_nv_storage.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/soc_nv_storage.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/soc_nv_storage_handle.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_app/soc_nv_storage_handle.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_async_store.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_async_store.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_async_store.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_async_store.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_debug.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_debug.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_key.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_key.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_key.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_key.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_notify.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_notify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_notify.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_notify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_nvregion.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_nvregion.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_nvregion.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_nvregion.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_page.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_page.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_page.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_page.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_reset.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_reset.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_reset.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_reset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_rpc.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_rpc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_rpc.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_rpc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_store.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_store.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_store.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_store.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_task_adapt.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_task_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_update.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_update.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_update.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_update.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_upg.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_upg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_upg.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/nv/nv_storage_lib/nv_upg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/partition/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/partition/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/partition/partition.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/partition/partition.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/partition/partition_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/partition/partition_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/Kconfig b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/adapter/xts/upg_xts_adapt.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/adapter/xts/upg_xts_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/upg_alloc.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/upg_alloc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/upg_common.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/upg_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/upg_verify.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/common/upg_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/rom_public_key.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/rom_public_key.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_alloc.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_alloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_common.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_default_config.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_default_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_definitions.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_definitions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_encry.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_encry.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_lzmadec.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_lzmadec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_otp_reg.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_otp_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_patch.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_patch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_patch_info.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_patch_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_verify.h b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/inner_include/upg_verify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_encry.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_encry.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_lzmadec.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_lzmadec.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_patch.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_patch.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_process.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_process.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_resource.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_resource.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_upgrade.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/local_update/upg_upgrade.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/storage/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/storage/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/storage/upg_storage.c b/IOT/29924_team_smart_home_gateway/code/middleware/utils/update/storage/upg_storage.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7z.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7z.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zAlloc.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zAlloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zBuf.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zBuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zCrc.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zCrc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zFile.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zFile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zTypes.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zTypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zVersion.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/7zVersion.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Aes.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Aes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Alloc.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Alloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Bcj2.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Bcj2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Bra.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Bra.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Compiler.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/CpuArch.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/CpuArch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Delta.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Delta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/DllSecur.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/DllSecur.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzFind.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzFind.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzFindMt.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzFindMt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzHash.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzHash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma2Dec.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma2Dec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma2DecMt.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma2DecMt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma2Enc.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma2Enc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma86.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Lzma86.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaDec.c b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaDec.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaDec.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaDec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaEnc.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaEnc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaLib.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/LzmaLib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/MtCoder.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/MtCoder.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/MtDec.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/MtDec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Ppmd.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Ppmd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Ppmd7.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Ppmd7.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Precomp.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Precomp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/RotateDefs.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/RotateDefs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Sha256.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Sha256.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Sort.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Sort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Threads.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/7z/Precomp.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/7z/Precomp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/7z/makefile b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/7z/makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/Lzma/makefile b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/Lzma/makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/LzmaLib/makefile b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/LzmaLib/makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/SfxSetup/Precomp.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/SfxSetup/Precomp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/SfxSetup/makefile b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/SfxSetup/makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/SfxSetup/makefile_con b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Util/SfxSetup/makefile_con old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Xz.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/Xz.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/XzCrc64.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/XzCrc64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/XzEnc.h b/IOT/29924_team_smart_home_gateway/code/open_source/7-zip-lzma-sdk/lzma_22.00/C/XzEnc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/LICENSE b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/LICENSE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/ca/Ant Financial Certification Authority S1.pem b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/ca/Ant Financial Certification Authority S1.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/ca/TJCA.pem b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/ca/TJCA.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/ca/Taier CA.pem b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/ca/Taier CA.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/crl/Civil Servant ROOT.crl b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/crl/Civil Servant ROOT.crl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/crl/Device ROOT.crl b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/crl/Device ROOT.crl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/crl/ROOTCA.crl b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/crl/ROOTCA.crl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/rootca/Civil Servant ROOT.pem b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/rootca/Civil Servant ROOT.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/rootca/Device ROOT.pem b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/rootca/Device ROOT.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/rootca/ROOTCA.pem b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/certs/rootca/ROOTCA.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/cademo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/cademo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/certdemo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/certdemo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/cmsdemo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/cmsdemo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/pbkdf2demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/pbkdf2demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/reqdemo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/reqdemo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_encrypt_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_encrypt_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_keygen_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_keygen_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_private_key_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_private_key_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_private_key_parse_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_private_key_parse_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_public_key_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_public_key_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_sign_ctx_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_sign_ctx_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_sign_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2_sign_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2keyparse.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2/sm2keyparse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm2demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/sm3_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/sm3_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/sm3_hmac_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/sm3_hmac_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/sm3_kdf_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3/sm3_kdf_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm3demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_decrypt_update_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_decrypt_update_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_encrypt_update_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_encrypt_update_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_padding_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_cbc_padding_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_ctr_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_ctr_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_ctr_encrypt_update_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_ctr_encrypt_update_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_gcm_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4/sm4_gcm_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm4demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/sm9_encrypt_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/sm9_encrypt_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/sm9_keygen_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/sm9_keygen_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/sm9_sign_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9/sm9_sign_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/sm9demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/tlcp_get.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/tlcp_get.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/tlcp_post.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/tlcp_post.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/url_parser.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/url_parser.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/url_parser.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp/url_parser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp_client.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp_client.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp_server.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcp_server.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcpdemo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tlcpdemo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tls12demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tls12demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tls13demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/tls13demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/zuc/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/zuc/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/zuc/zuc_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/zuc/zuc_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/zucdemo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/demos/zucdemo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/aes.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/aes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/asn1.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/asn1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/base64.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/base64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/block_cipher.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/block_cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/chacha20.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/chacha20.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/cms.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/cms.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/des.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/des.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/digest.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/digest.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/ec.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/ec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/endian.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/error.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/gcm.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/gcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/gf128.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/gf128.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hash_drbg.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hash_drbg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hex.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hkdf.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hkdf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hmac.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/hmac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/md5.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/md5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/mem.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/oid.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/oid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/pbkdf2.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/pbkdf2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/pem.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/pem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/pkcs8.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/pkcs8.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/rand.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/rand.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/rc4.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/rc4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/rsa.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/rsa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sdf.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sdf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sha1.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sha1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sha2.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sha2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sha3.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sha3.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/skf.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/skf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm2.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm3.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm3.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm4.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm9.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/sm9.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/tls.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/tls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/version.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_alg.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_alg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_crl.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_crl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_ext.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_oid.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_oid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_req.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_req.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_str.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/x509_str.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/zuc.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/include/gmssl/zuc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/aes.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/aes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/aes_modes.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/aes_modes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/asn1.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/asn1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/base64.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/base64.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/block_cipher.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/block_cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/chacha20.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/chacha20.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/cms.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/cms.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/debug.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/des.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/des.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/digest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/digest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/ec.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/ec.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/gcm.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/gcm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/gf128.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/gf128.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hash_drbg.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hash_drbg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hex.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hex.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hkdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hkdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hmac.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/hmac.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/md5.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/md5.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/pbkdf2.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/pbkdf2.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/pem.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/pem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/pkcs8.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/pkcs8.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rand.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rand.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rc4.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rc4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rdrand.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rdrand.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rsa.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/rsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_dummy.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_dummy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_ext.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_ext.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_ext.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_int.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_int.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_lib.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_meth.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_meth.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_sansec.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_sansec.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_sansec.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sdf/sdf_sansec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sgd.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sgd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sha1.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sha1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sha256.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sha256.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sha512.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sha512.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_dummy.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_dummy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_ext.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_ext.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_ext.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_int.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_int.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_lib.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_meth.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_meth.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_prn.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_prn.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_wisec.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_wisec.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_wisec.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/skf/skf_wisec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm2_alg.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm2_alg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm2_key.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm2_key.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm2_lib.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm2_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm3.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm3.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm3_hmac.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm3_hmac.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm3_kdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm3_kdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_enc.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_enc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_lcl.h b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_lcl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_modes.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_modes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_setkey.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm4_setkey.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm9_alg.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm9_alg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm9_key.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm9_key.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm9_lib.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/sm9_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tlcp.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tlcp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls12.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls12.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls13.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls13.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls_ext.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls_ext.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls_trace.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/tls_trace.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/version.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/version.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_alg.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_alg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_cer.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_cer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_crl.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_crl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_ext.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_ext.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_oid.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_oid.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_req.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_req.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_str.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/x509_str.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/zuc.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/zuc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/zuc_modes.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/src/zuc_modes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/aestest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/aestest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/asn1test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/asn1test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/base64test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/base64test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/block_ciphertest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/block_ciphertest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/chacha20test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/chacha20test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/cmstest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/cmstest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/destest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/destest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/digesttest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/digesttest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/ectest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/ectest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/gcmtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/gcmtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/gf128test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/gf128test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hash_drbgtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hash_drbgtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hextest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hextest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hkdftest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hkdftest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hmactest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/hmactest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/md5test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/md5test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/pbkdf2test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/pbkdf2test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/pemtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/pemtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/pkcs8test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/pkcs8test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/rc4test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/rc4test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha1test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha1test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha224test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha224test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha256test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha256test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha384test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha384test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha512test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sha512test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm2test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm2test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm3test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm3test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm4test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm4test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm9test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/sm9test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/tls13test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/tls13test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/tlstest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/tlstest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_algtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_algtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_crltest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_crltest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_exttest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_exttest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_oidtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_oidtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_reqtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_reqtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_strtest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509_strtest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509test.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/x509test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/zuctest.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tests/zuctest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/certgen.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/certgen.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/certparse.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/certparse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/certverify.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/certverify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsdecrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsdecrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsencrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsencrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsparse.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsparse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmssign.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmssign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsverify.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/cmsverify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/copyright.sh b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/copyright.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/crlparse.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/crlparse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/crlverify.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/crlverify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/gmssl.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/gmssl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/pbkdf2.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/pbkdf2.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/rand.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/rand.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/reqgen.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/reqgen.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/reqparse.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/reqparse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/reqsign.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/reqsign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sdfutil.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sdfutil.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/skfutil.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/skfutil.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2decrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2decrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2encrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2encrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2keygen.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2keygen.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2sign.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2sign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2verify.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm2verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm3.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm3.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm3hmac.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm3hmac.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm4.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9decrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9decrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9encrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9encrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9keygen.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9keygen.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9setup.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9setup.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9sign.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9sign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9verify.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/sm9verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tlcp_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tlcp_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tlcp_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tlcp_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls12_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls12_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls12_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls12_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls13_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls13_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls13_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/tls13_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/version.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/version.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/zuc.c b/IOT/29924_team_smart_home_gateway/code/open_source/GmSSL3.0/tools/zuc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/LICENSE b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/LICENSE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON.c b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON_Utils.c b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON_Utils.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON_Utils.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/cJSON_Utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test1 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test10 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test10 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test11 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test11 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test2 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test2 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test3 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test3 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test4 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test4 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test5 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test5 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test6 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test6 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test7 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test7 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test8 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test8 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test9 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/fuzzing/inputs/test9 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/common.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test1 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test10 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test10 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test11 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test11 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test2 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test2 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test3 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test3 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test4 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test4 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test5 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test5 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test6 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test6 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test7 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test7 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test8 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test8 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test9 b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/inputs/test9 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_1/makefile b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_1/makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_1/src/ProductionCode.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_1/src/ProductionCode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_1/src/ProductionCode2.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_1/src/ProductionCode2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_2/makefile b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_2/makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_2/src/ProductionCode.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_2/src/ProductionCode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_2/src/ProductionCode2.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_2/src/ProductionCode2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_3/helper/UnityHelper.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_3/helper/UnityHelper.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_3/src/ProductionCode.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_3/src/ProductionCode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_3/src/ProductionCode2.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/example_3/src/ProductionCode2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/unity_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/examples/unity_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/src/unity_fixture.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/src/unity_fixture.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/src/unity_fixture_internals.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/src/unity_fixture_internals.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/src/unity_fixture_malloc_overrides.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/src/unity_fixture_malloc_overrides.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/test/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/test/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/test/unity_output_Spy.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/extras/fixture/test/unity_output_Spy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/src/unity.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/src/unity.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/src/unity_internals.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/src/unity_internals.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/expectdata/testsample_head1.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/expectdata/testsample_head1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/expectdata/testsample_mock_head1.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/expectdata/testsample_mock_head1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/rakefile b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/rakefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/CException.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/CException.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/Defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/Defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/cmock.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/cmock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/mockMock.h b/IOT/29924_team_smart_home_gateway/code/open_source/cjson/cjson/tests/unity/test/testdata/mockMock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/include/securec.h b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/include/securec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/include/securectype.h b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/include/securectype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/input.inl b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/input.inl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/memcpy_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/memcpy_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/memmove_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/memmove_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/memset_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/memset_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/output.inl b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/output.inl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secinput.h b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secinput.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/securecutil.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/securecutil.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/securecutil.h b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/securecutil.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secureinput_a.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secureinput_a.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secureprintoutput.h b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secureprintoutput.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secureprintoutput_a.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/secureprintoutput_a.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/snprintf_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/snprintf_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/sprintf_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/sprintf_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/sscanf_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/sscanf_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strcat_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strcat_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strcpy_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strcpy_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strncat_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strncat_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strncpy_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strncpy_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strtok_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/strtok_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/vsnprintf_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/vsnprintf_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/vsprintf_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/vsprintf_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/vsscanf_s.c b/IOT/29924_team_smart_home_gateway/code/open_source/libboundscheck/src/vsscanf_s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/AUTHORS b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/AUTHORS old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/BUILDING b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/BUILDING old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/CONTRIBUTE b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/CONTRIBUTE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/COPYING b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/COPYING old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/ChangeLog b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/ChangeLog old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/Dockerfile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/Dockerfile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/LICENSE b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/LICENSE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/NEWS b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/NEWS old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/README b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/TODO b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/TODO old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/build-env/imagename b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/build-env/imagename old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/doc/module_api_wrap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/doc/module_api_wrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/coap_list.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/coap_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/README b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/coap_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/coap_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/project-conf.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/contiki/project-conf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/README b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/client-coap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/client-coap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/config/coap_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/config/coap_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/config/lwipopts.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/config/lwipopts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/config/lwippools.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/config/lwippools.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/server-coap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/lwip/server-coap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/README b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_client/Kconfig b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_client/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_client/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_client/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_client/client-coap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_client/client-coap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_server/Kconfig b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_server/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_server/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_server/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_server/server-coap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/examples_libcoap_server/server-coap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/pkg_libcoap/Kconfig b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/pkg_libcoap/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/pkg_libcoap/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/examples/riot/pkg_libcoap/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_address.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_address.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_asn1_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_asn1_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_async.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_async.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_async_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_async_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_block.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_block.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_block_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_block_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_cache.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_cache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_cache_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_cache_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_crypto_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_crypto_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_debug.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_debug_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_debug_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_dtls.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_dtls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_dtls_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_dtls_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_encode.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_encode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_event.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_forward_decls.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_forward_decls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_hashkey_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_hashkey_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_io.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_io_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_io_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_layers_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_layers_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_mem.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_mutex_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_mutex_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_net.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_net.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_net_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_net_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_netif_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_netif_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_option.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_option.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_oscore.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_oscore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_oscore_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_oscore_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_pdu.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_pdu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_pdu_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_pdu_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_prng.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_prng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_resource.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_resource_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_resource_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_riot.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_riot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_session.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_session.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_session_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_session_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_str.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_str.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_subscribe.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_subscribe.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_subscribe_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_subscribe_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_tcp_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_tcp_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_time.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_uri.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_uri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_uri_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_uri_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_uthash_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_uthash_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_utlist_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_utlist_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_ws.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_ws.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_ws_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/coap_ws_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/libcoap.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/coap3/libcoap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_cbor.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_cbor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_context.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_context.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_cose.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_cose.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_crypto.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/include/oscore/oscore_crypto.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_address.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_address.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_async.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_async.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_block.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_block.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_cache.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_cache.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_debug.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_dtls.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_dtls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_encode.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_encode.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_hashkey.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_hashkey.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_io.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_io.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_io_lwip.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_io_lwip.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_layers.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_layers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_net.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_net.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_netif.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_netif.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_notls.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_notls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_option.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_option.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_pdu.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_pdu.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_resource.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_resource.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_session.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_session.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_str.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_str.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_subscribe.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_subscribe.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_tcp.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_tcp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_uri.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_uri.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_ws.c b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/src/coap_ws.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_encode.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_encode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_error_response.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_error_response.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_options.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_options.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_oscore.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_oscore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_pdu.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_pdu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_sendqueue.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_sendqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_session.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_session.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_tls.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_tls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_uri.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_uri.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_wellknown.h b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/test_wellknown.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/valgrind_suppression b/IOT/29924_team_smart_home_gateway/code/open_source/libcoap/libcoap/tests/valgrind_suppression old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/bd/lfs_emubd.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/bd/lfs_emubd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/bd/lfs_filebd.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/bd/lfs_filebd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/bd/lfs_rambd.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/bd/lfs_rambd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs.c b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs_util.c b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs_util.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs_util.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/lfs_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/runners/bench_runner.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/runners/bench_runner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/runners/test_runner.h b/IOT/29924_team_smart_home_gateway/code/open_source/littlefs/v2.5.0/runners/test_runner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/arch/sys_arch.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/arch/sys_arch.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/arch/cc.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/arch/cc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/arch/sys_arch.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/arch/sys_arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/fs/fs.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/fs/fs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/lwip/lwipopts_default.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/lwip/lwipopts_default.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/lwipopts.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_adapter/liteos_207/src/include/lwipopts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/api_lib.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/api_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/api_msg.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/api_msg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/err.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/err.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/ethtool.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/ethtool.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/if_api.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/if_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/l3event.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/l3event.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nat64_api.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nat64_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/netbuf.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/netbuf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/netdb.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/netdb.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/netifapi.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/netifapi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/ifconfig.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/ifconfig.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/misc.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/misc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/netstat.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/netstat.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/ping.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/ping.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/utility.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/nettool/utility.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/sockets.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/sockets.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/tcpip.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/api/tcpip.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/altcp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/altcp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/altcp_alloc.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/altcp_alloc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/altcp_tcp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/altcp_tcp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/debug.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/def.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/def.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/dns.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/dns.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/filter.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/filter.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/inet_chksum.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/inet_chksum.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/init.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/init.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ip.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ip.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ip6in4.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ip6in4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ip_addr.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ip_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/autoip.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/autoip.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/dhcp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/dhcp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/dhcps.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/dhcps.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/etharp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/etharp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/icmp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/icmp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/igmp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/igmp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/ip4.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/ip4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/ip4_addr.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/ip4_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/ip4_frag.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv4/ip4_frag.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/dhcp6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/dhcp6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ethip6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ethip6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/icmp6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/icmp6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/inet6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/inet6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ip6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ip6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ip6_addr.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ip6_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ip6_frag.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/ip6_frag.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/mld6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/mld6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/nd6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/ipv6/nd6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/lowpower.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/lowpower.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/mdns.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/mdns.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/mem.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/mem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/memp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/memp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64_addr.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64_addr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64_dns64.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64_dns64.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64_v4_dhcpc.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/nat64/nat64_v4_dhcpc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/netif.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/netif.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/pbuf.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/pbuf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/raw.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/raw.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/sntp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/sntp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/stats.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/stats.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/sys.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/sys.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp_in.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp_in.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp_out.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp_out.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp_sack.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tcp_sack.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tftpc.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/tftpc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/timeouts.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/timeouts.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/udp.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/core/udp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/net/if.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/netdb.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/posix/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/stdc/errno.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/compat/stdc/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/altcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/altcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/altcp_tcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/altcp_tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/altcp_tls.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/altcp_tls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/api.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/arch.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/arch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/autoip.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/autoip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/debug.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/def.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dhcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dhcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dhcp6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dhcp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dhcps.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dhcps.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dns.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/dns.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/err.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/errno.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/etharp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/etharp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ethip6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ethip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ethtool.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ethtool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/filter.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/filter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/icmp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/icmp6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/if_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/if_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/igmp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/inet.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/inet_chksum.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/inet_chksum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/init.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip4.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip4_addr.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip4_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip4_frag.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip4_frag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6_addr.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6_frag.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6_frag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6_zone.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6_zone.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6in4.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6in4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6in4_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip6in4_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip_addr.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/ip_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/l3event.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/l3event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/link_quality.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/link_quality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/lowpower.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/lowpower.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/lwip_rpl.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/lwip_rpl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mdns.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mdns.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mdns_opts.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mdns_opts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mdns_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mdns_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mem.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/memp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/memp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mld6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/mld6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_addr.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_dns64.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_dns64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_v4_dhcpc.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nat64_v4_dhcpc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nd6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nd6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netbuf.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netdb.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netif.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netif.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netifapi.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/netifapi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/arp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/diagnose.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/diagnose.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/ifconfig.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/ifconfig.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/mcast6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/mcast6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/misc.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/misc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/netstat.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/netstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/ping.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/ping.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/ripple_shell.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/ripple_shell.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/utility.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/nettool/utility.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/opt.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/opt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/pbuf.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/pbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/altcp_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/altcp_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/api_msg.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/api_msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/mem_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/mem_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/memp_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/memp_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/memp_std.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/memp_std.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/nd6_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/nd6_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/raw_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/raw_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/sockets_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/sockets_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/tcp_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/tcp_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/tcpip_priv.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/priv/tcpip_priv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/autoip.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/autoip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/dhcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/dhcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/dhcp6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/dhcp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/dns.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/dns.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/etharp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/etharp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ethernet.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/iana.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/iana.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/icmp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/icmp6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ieee.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ieee.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/igmp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ip.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ip4.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ip4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ip6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/mld6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/mld6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/nd6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/nd6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/tcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/udp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/prot/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/raw.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/raw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sio.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/snmp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/snmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sntp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sntp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sntp_opts.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sntp_opts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sockets.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sockets.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/static_route.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/static_route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/stats.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/stats.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sys.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/sys.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcp_info.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcp_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcp_sack.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcp_sack.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcpbase.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcpbase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcpip.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tcpip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tftpc.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/tftpc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/timeouts.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/timeouts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/udp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/lwip/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/driverif.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/driverif.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/etharp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/etharp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ethernet.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ieee802154.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ieee802154.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/lowpan6.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/lowpan6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/lowpan6_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/lowpan6_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/lowpan6_opts.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/lowpan6_opts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ccp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ccp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/chap-md5.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/chap-md5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/chap-new.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/chap-new.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/chap_ms.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/chap_ms.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/eap.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/eap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ecp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ecp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/eui64.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/eui64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/fsm.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/fsm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ipcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ipcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ipv6cp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ipv6cp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/lcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/lcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/magic.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/magic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/mppe.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/mppe.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/arc4.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/arc4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/des.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/des.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/md4.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/md4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/md5.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/md5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/sha1.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/polarssl/sha1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ppp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ppp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ppp_impl.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ppp_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ppp_opts.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/ppp_opts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppapi.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppapi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppcrypt.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppcrypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppdebug.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppdebug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppoe.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppoe.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppol2tp.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppol2tp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppos.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/pppos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/upap.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/upap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/vj.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/ppp/vj.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/slipif.h b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/include/netif/slipif.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/driverif.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/driverif.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/ethernet.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/ethernet.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/ifaddrs.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/ifaddrs.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/lowpan6.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/lowpan6.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/lowpan6_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/lwip/lwip_v2.1.3/src/netif/lowpan6_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.globalrc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.globalrc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.mypy.ini b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.mypy.ini old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.pylintrc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.pylintrc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.travis.yml b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/.travis.yml old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/Makefile.inc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/Makefile.inc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/Makefile.inc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/Makefile.inc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/Hacl_Curve25519.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/Hacl_Curve25519.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/everest.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/everest.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlib.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlib/FStar_UInt128.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlib/FStar_UInt128.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/c_endianness.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/c_endianness.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/builtin.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/builtin.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/callconv.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/callconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/compat.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/debug.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/target.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/target.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/types.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/wasmsupport.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/kremlin/internal/wasmsupport.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/vs2010/Hacl_Curve25519.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/vs2010/Hacl_Curve25519.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/vs2010/inttypes.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/vs2010/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/vs2010/stdbool.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/vs2010/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/x25519.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/include/everest/x25519.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/Hacl_Curve25519.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/Hacl_Curve25519.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/Hacl_Curve25519_joined.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/Hacl_Curve25519_joined.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/everest.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/everest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/kremlib/FStar_UInt128_extracted.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/kremlib/FStar_UInt128_extracted.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/kremlib/FStar_UInt64_FStar_UInt32_FStar_UInt16_FStar_UInt8.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/legacy/Hacl_Curve25519.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/legacy/Hacl_Curve25519.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/x25519.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/3rdparty/everest/library/x25519.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/BRANCHES.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/BRANCHES.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/BUGS.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/BUGS.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/CONTRIBUTING.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/CONTRIBUTING.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/00README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/00README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/cookie_parsing_bug.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/cookie_parsing_bug.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/fix-in-cid-buffer-size.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/fix-in-cid-buffer-size.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/rsa-fix-priviliged-side-channel.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/ChangeLog.d/rsa-fix-priviliged-side-channel.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/DartConfiguration.tcl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/DartConfiguration.tcl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/LICENSE b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/LICENSE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/SECURITY.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/SECURITY.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/SUPPORT.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/SUPPORT.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/cmake/MbedTLSConfig.cmake.in b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/cmake/MbedTLSConfig.cmake.in old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/README.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/README.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-ccm-psk-tls1_2.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-ccm-psk-tls1_2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-no-entropy.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-no-entropy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-suite-b.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-suite-b.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-symmetric-only.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-symmetric-only.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-thread.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/config-thread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.ai b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.ai old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.ont b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.ont old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.tools b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.tools old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.x86 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/Makefile.x86 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-hilink.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-hilink.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-hitool.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-hitool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-ontmini.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-ontmini.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-onttool.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-onttool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-suite-b-ai.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-suite-b-ai.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-ws-iot.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/configs/vendor/config-ws-iot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/dco.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/dco.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/3.0-migration-guide.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/3.0-migration-guide.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/alternative-implementations.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/alternative-implementations.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/mbed-crypto-storage-specification.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/mbed-crypto-storage-specification.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/psa-crypto-implementation-structure.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/psa-crypto-implementation-structure.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/driver-interface-test-strategy.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/driver-interface-test-strategy.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/invasive-testing.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/invasive-testing.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/psa-storage-format-testing.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/psa-storage-format-testing.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/test-framework.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/testing/test-framework.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/tls13-support.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/architecture/tls13-support.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/getting_started.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/getting_started.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/README b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-conditional-inclusion-c.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-conditional-inclusion-c.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-driver-developer-guide.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-driver-developer-guide.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-driver-integration-guide.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-driver-integration-guide.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-driver-interface.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/proposed/psa-driver-interface.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/use-psa-crypto.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/docs/use-psa-crypto.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_encdec.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_encdec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_hashing.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_hashing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_mainpage.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_mainpage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_rng.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_rng.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_ssltls.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_ssltls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_tcpip.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_tcpip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_x509.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/input/doc_x509.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/mbedtls.doxyfile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/doxygen/mbedtls.doxyfile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/build/conncet/mbedtls.cmake b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/build/conncet/mbedtls.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/build/vision/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/build/vision/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/cipher_adapt_include/crypto_cipher_common_struct.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/cipher_adapt_include/crypto_cipher_common_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/cipher_adapt_include/mbedtls_harden_struct.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/cipher_adapt_include/mbedtls_harden_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/connect/mbedtls_crypto_type.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/connect/mbedtls_crypto_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/connect/mbedtls_platform_hardware_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/connect/mbedtls_platform_hardware_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/vision/mbedtls_crypto_type.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/vision/mbedtls_crypto_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/vision/mbedtls_platform_hardware_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/vision/mbedtls_platform_hardware_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/wearable/mbedtls_crypto_type.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/wearable/mbedtls_crypto_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/wearable/mbedtls_platform_hardware_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/platform/wearable/mbedtls_platform_hardware_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/aes_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/aes_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/bignum_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/bignum_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ccm_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ccm_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/cipher_adapt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/cipher_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/cipher_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/cipher_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/cmac_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/cmac_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/aes.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/aes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/aes_harden_adapt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/aes_harden_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/ecp.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/ecp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/ecp_harden_adapt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/ecp_harden_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/hash_harden_adapt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/hash_harden_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/mbedtls_harden_adapt_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/mbedtls_harden_adapt_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/rsa.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/rsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/rsa_harden_adapt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/rsa_harden_adapt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/sha1.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/sha1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/sha256.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/sha256.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/sha512.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/connect_src/sha512.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/dfx.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/dfx.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecc_genkey_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecc_genkey_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecc_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecc_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecc_harden_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecc_harden_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecdh_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecdh_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecdsa_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/ecdsa_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/entropy_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/entropy_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/gcm_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/gcm_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/hash_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/hash_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/hash_harden_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/hash_harden_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/hkdf_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/hkdf_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/aes_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/aes_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/aes_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/aes_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/bignum_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/bignum_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ccm_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ccm_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ccm_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ccm_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cipher_adapt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cipher_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cipher_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cipher_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cmac_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cmac_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cmac_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/cmac_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/dfx.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/dfx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecc_genkey_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecc_genkey_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecc_harden_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecc_harden_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecdh_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecdh_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecdsa_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/ecdsa_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/gcm_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/gcm_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/gcm_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/gcm_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/hash_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/hash_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/hash_harden_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/hash_harden_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/hkdf_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/hkdf_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/pbkdf2_hmac_harden.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/pbkdf2_hmac_harden.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/rsa_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/rsa_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/sha1_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/sha1_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/sha256_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/sha256_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/sha512_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/internal_include/sha512_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/pbkdf2_hmac_harden.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/harden/src/pbkdf2_hmac_harden.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/aes.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/aes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/aria.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/aria.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/asn1.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/asn1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/asn1write.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/asn1write.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/base64.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/base64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/bignum.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/bignum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/blowfish.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/blowfish.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/build_info.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/build_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/camellia.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/camellia.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ccm.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ccm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/chacha20.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/chacha20.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/chachapoly.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/chachapoly.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/check_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/check_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/cipher.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/cmac.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/cmac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/compat-2.x.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/compat-2.x.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/config_psa.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/config_psa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/constant_time.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/constant_time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/crypto_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/crypto_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ctr_drbg.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ctr_drbg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/debug.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/des.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/des.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/dhm.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/dhm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecdh.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecdh.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecdsa.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecdsa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecjpake.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecjpake.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecp.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ecp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/entropy.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/entropy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/error.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/gcm.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/gcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hkdf.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hkdf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hmac_drbg.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hmac_drbg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_mbedtls_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_mbedtls_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_polarssl_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_polarssl_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_redefine_tee_api.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_redefine_tee_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_tee_tag.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_tee_tag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_tee_wrapper.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/hw_tee_wrapper.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/mbedtls_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/mbedtls_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md2.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md4.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md5.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/md5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/memory_buffer_alloc.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/memory_buffer_alloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/net_sockets.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/net_sockets.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/nist_kw.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/nist_kw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/oid.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/oid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pem.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pk.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pkcs12.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pkcs12.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pkcs5.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/pkcs5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/platform.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/platform.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/platform_time.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/platform_time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/platform_util.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/platform_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/poly1305.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/poly1305.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/private_access.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/private_access.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/psa_util.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/psa_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ripemd160.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ripemd160.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/rsa.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/rsa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/sha1.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/sha1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/sha256.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/sha256.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/sha512.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/sha512.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_cache.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_cache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_ciphersuites.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_ciphersuites.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_cookie.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_cookie.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_ticket.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/ssl_ticket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/threading.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/threading.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/timing.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/timing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/version.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509_crl.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509_crl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509_crt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509_crt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509_csr.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/mbedtls/x509_csr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_builtin_composites.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_builtin_composites.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_builtin_primitives.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_builtin_primitives.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_compat.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_driver_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_driver_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_driver_contexts_composites.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_driver_contexts_composites.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_driver_contexts_primitives.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_driver_contexts_primitives.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_extra.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_extra.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_platform.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_platform.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_se_driver.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_se_driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_sizes.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_sizes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_struct.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_types.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_values.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/include/psa/crypto_values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aes.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aesni.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aesni.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aesni.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aesni.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aria.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/aria.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/asn1parse.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/asn1parse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/asn1write.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/asn1write.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/base64.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/base64.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/bignum.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/bignum.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/bignum_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/bignum_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/blowfish.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/blowfish.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/bn_mul.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/bn_mul.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/camellia.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/camellia.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ccm.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ccm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/chacha20.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/chacha20.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/chachapoly.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/chachapoly.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/check_crypto_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/check_crypto_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cipher.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cipher_wrap.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cipher_wrap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cipher_wrap.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cipher_wrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cmac.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/cmac.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/constant_time.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/constant_time.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/constant_time_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/constant_time_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/constant_time_invasive.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/constant_time_invasive.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ctr_drbg.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ctr_drbg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/debug.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/des.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/des.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/dhm.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/dhm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecdh.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecdh.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecdh_misc.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecdh_misc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecdsa.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecdsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecjpake.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecjpake.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp_curves.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp_curves.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp_internal_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp_internal_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp_invasive.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ecp_invasive.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/entropy.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/entropy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/entropy_poll.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/entropy_poll.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/entropy_poll.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/entropy_poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/error.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/error.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/gcm.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/gcm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hkdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hkdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hmac_drbg.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hmac_drbg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_aescrypt2.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_aescrypt2.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_mbedtls_config.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_mbedtls_config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_polarssl_api.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_polarssl_api.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_tee_wrapper.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/hw_tee_wrapper.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md2.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md2.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md4.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md5.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md5.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md_wrap.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/md_wrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/memory_buffer_alloc.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/memory_buffer_alloc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_error.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_reader.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_reader.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_reader.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_reader.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_trace.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_trace.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_trace.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/mps_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/net_sockets.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/net_sockets.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/nist_kw.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/nist_kw.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/oid.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/oid.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/padlock.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/padlock.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/padlock.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/padlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pem.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pem.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pk.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pk.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pk_wrap.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pk_wrap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pk_wrap.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pk_wrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkcs12.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkcs12.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkcs5.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkcs5.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkparse.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkparse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkwrite.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/pkwrite.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/platform.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/platform.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/platform_util.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/platform_util.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/poly1305.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/poly1305.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_aead.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_aead.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_aead.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_aead.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_cipher.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_cipher.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_core.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_core.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_driver_wrappers.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_driver_wrappers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_driver_wrappers.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_driver_wrappers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_ecp.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_ecp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_ecp.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_ecp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_hash.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_hash.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_invasive.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_invasive.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_its.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_its.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_mac.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_mac.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_mac.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_mac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_random_impl.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_random_impl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_rsa.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_rsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_rsa.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_rsa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_se.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_se.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_se.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_se.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_slot_management.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_slot_management.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_slot_management.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_slot_management.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_storage.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_storage.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_storage.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_crypto_storage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_its_file.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/psa_its_file.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ripemd160.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ripemd160.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/rsa.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/rsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/rsa_alt_helpers.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/rsa_alt_helpers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/rsa_alt_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/rsa_alt_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/sha1.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/sha1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/sha256.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/sha256.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/sha512.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/sha512.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_cache.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_cache.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_ciphersuites.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_ciphersuites.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_cli.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_cli.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_cookie.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_cookie.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_debug_helpers_generated.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_debug_helpers_generated.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_debug_helpers_generated.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_debug_helpers_generated.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_misc.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_misc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_msg.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_msg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_srv.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_srv.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_ticket.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_ticket.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_generic.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_generic.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_keys.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_keys.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_keys.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_keys.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/ssl_tls13_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/threading.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/threading.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/timing.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/timing.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/version.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/version.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/version_features.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/version_features.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_create.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_create.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_crl.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_crl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_crt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_crt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_csr.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509_csr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509write_crt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509write_crt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509write_csr.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/library/x509write_csr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/aes/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/aes/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/aes/crypt_and_hash.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/aes/crypt_and_hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/common.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/common.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/client b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/client old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/dtlsclient b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/dtlsclient old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/dtlsserver b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/dtlsserver old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/server b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/corpuses/server old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_client.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_client.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsclient.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsclient.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsclient.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsclient.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsserver.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsserver.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsserver.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_dtlsserver.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_privkey.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_privkey.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_privkey.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_privkey.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_pubkey.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_pubkey.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_pubkey.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_pubkey.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_server.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_server.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crl.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crl.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crl.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crl.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crt.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509crt.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509csr.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509csr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509csr.options b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/fuzz_x509csr.options old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/onefile.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/fuzz/onefile.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/hash/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/hash/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/hash/generic_sum.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/hash/generic_sum.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/hash/hello.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/hash/hello.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_genprime.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_genprime.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_prime.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_prime.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/dh_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/ecdh_curve25519.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/ecdh_curve25519.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/ecdsa.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/ecdsa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/gen_key.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/gen_key.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/key_app.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/key_app.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/key_app_writer.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/key_app_writer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/mpi_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/mpi_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_decrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_decrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_encrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_encrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_sign.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_sign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_verify.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/pk_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_decrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_decrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_encrypt.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_encrypt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_genkey.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_genkey.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_priv.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_priv.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_pub.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_pub.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_sign.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_sign.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_sign_pss.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_sign_pss.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_verify.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_verify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_verify_pss.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/pkey/rsa_verify_pss.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/crypto_examples.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/crypto_examples.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/key_ladder_demo.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/key_ladder_demo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/key_ladder_demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/key_ladder_demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/psa_constant_names.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/psa_constant_names.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/psa_constant_names_generated.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/psa/psa_constant_names_generated.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/random/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/random/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/random/gen_entropy.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/random/gen_entropy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/random/gen_random_ctr_drbg.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/random/gen_random_ctr_drbg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/dtls_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/dtls_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/dtls_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/dtls_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/mini_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/mini_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_client1.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_client1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_client2.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_client2.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_context_info.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_context_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_fork_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_fork_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_mail_client.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_mail_client.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_pthread_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_pthread_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_server2.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_server2.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_test_common_source.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_test_common_source.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_test_lib.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_test_lib.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_test_lib.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/ssl/ssl_test_lib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/benchmark.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/benchmark.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package/cmake_package.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package/cmake_package.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package_install/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package_install/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package_install/cmake_package_install.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_package_install/cmake_package_install.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_subproject/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_subproject/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_subproject/cmake_subproject.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/cmake_subproject/cmake_subproject.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/dlopen.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/dlopen.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/dlopen_demo.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/dlopen_demo.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/generate_cpp_dummy_build.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/generate_cpp_dummy_build.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/query_compile_time_config.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/query_compile_time_config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/query_config.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/query_config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/query_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/query_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/selftest.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/selftest.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/udp_proxy.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/udp_proxy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/udp_proxy_wrapper.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/udp_proxy_wrapper.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/zeroize.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/test/zeroize.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/util/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/util/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/util/pem2der.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/util/pem2der.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/util/strerror.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/util/strerror.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/wince_main.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/wince_main.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/cert_app.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/cert_app.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/cert_req.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/cert_req.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/cert_write.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/cert_write.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/crl_app.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/crl_app.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/load_roots.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/load_roots.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/req_app.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/programs/x509/req_app.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/abi_check.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/abi_check.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/apidoc_full.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/apidoc_full.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/assemble_changelog.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/assemble_changelog.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/basic.requirements.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/basic.requirements.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/bump_version.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/bump_version.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/ci.requirements.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/ci.requirements.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/code_size_compare.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/code_size_compare.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/config.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/config.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/config.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/config.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/error.fmt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/error.fmt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/query_config.fmt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/query_config.fmt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/version_features.fmt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/version_features.fmt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs2010-app-template.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs2010-app-template.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs2010-main-template.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs2010-main-template.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs2010-sln-template.sln b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs2010-sln-template.sln old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs6-app-template.dsp b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs6-app-template.dsp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs6-main-template.dsp b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs6-main-template.dsp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs6-workspace-template.dsw b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/data_files/vs6-workspace-template.dsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/driver.requirements.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/driver.requirements.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/ecc-heap.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/ecc-heap.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/ecp_comb_table.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/ecp_comb_table.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/find-mem-leak.cocci b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/find-mem-leak.cocci old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/footprint.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/footprint.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_errors.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_errors.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_features.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_features.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_psa_constants.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_psa_constants.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_query_config.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_query_config.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_ssl_debug_helpers.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_ssl_debug_helpers.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_visualc_files.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/generate_visualc_files.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/maintainer.requirements.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/maintainer.requirements.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/make_generated_files.bat b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/make_generated_files.bat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/massif_max.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/massif_max.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/asymmetric_key_data.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/asymmetric_key_data.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/build_tree.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/build_tree.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/c_build_helper.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/c_build_helper.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/crypto_knowledge.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/crypto_knowledge.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/macro_collector.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/macro_collector.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/psa_storage.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/psa_storage.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/test_case.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/test_case.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/typing_util.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/mbedtls_dev/typing_util.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/memory.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/memory.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/min_requirements.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/min_requirements.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/output_env.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/output_env.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/rm-calloc-cast.cocci b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/rm-calloc-cast.cocci old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/tmp_ignore_makefiles.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/tmp_ignore_makefiles.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/windows_msbuild.bat b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/scripts/windows_msbuild.bat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/sizecheck.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/sizecheck.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/.jenkins/Jenkinsfile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/.jenkins/Jenkinsfile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/Descriptions.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/Descriptions.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/compat-in-docker.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/compat-in-docker.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/compat.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/compat.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/configs/config-wrapper-malloc-0-null.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/configs/config-wrapper-malloc-0-null.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/configs/user-config-for-test.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/configs/user-config-for-test.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/context-info.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/context-info.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/Readme-x509.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/Readme-x509.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_cid.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_cid.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_ciphersuite.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_ciphersuite.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_def.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_min_cfg.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_min_cfg.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_alpn.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_alpn.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_keep_cert.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_keep_cert.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_mfl.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_mfl.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_packing.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/cli_no_packing.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_ff.bin b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_ff.bin old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_too_big_1.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_too_big_1.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_too_big_2.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_too_big_2.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_too_big_3.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_b64_too_big_3.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_bad_b64.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/def_bad_b64.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/empty.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/empty.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/mfl_1024.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/mfl_1024.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/mtu_10000.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/mtu_10000.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_cid.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_cid.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_ciphersuite.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_ciphersuite.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_def.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_def.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_min_cfg.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_min_cfg.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_alpn.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_alpn.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_keep_cert.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_keep_cert.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_mfl.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_mfl.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_packing.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/srv_no_packing.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/v2.19.1.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/base64/v2.19.1.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/bitstring-in-dn.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/bitstring-in-dn.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_example_multi.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_example_multi.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_example_multi_nocn.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_example_multi_nocn.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_example_wildcard.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_example_wildcard.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_md5.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_md5.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_md5.csr b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_md5.csr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha224.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha224.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha256.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha256.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha384.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha384.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha512.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_sha512.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_v1_with_ext.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cert_v1_with_ext.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256-badalg.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256-badalg.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa-sha256.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli-rsa.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli.opensslconf b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli.opensslconf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/cli2.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha1.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha1.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-ec-sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-future.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-future.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-futureRevocationDate.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-futureRevocationDate.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-idp.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-idp.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-idpnc.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-idpnc.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-malformed-trailing-spaces.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-malformed-trailing-spaces.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha1-badsign.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha1-badsign.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha1.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha1.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl-rsa-pss-sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_ec-rsa.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_ec-rsa.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_ecfut-rsa.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_ecfut-rsa.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_rsa-ec.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_rsa-ec.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_rsabadpem-ec.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_cat_rsabadpem-ec.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_expired.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_expired.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_md5.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_md5.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha1.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha1.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crl_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crt_cat_rsaexp-ec.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/crt_cat_rsaexp-ec.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.1000.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.1000.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.998.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.998.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.999.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.999.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.optlen.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dh.optlen.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dhparams.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dhparams.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/00.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/00.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/00.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/00.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/01.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/01.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/01.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/01.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/02.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/02.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/02.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/02.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/03.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/03.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/03.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/03.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/04.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/04.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/04.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/04.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/05.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/05.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/05.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/05.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/06.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/06.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/06.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/06.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/07.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/07.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/07.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/07.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/08.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/08.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/08.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/08.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/09.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/09.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/09.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/09.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/10.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/10.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/10.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/10.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/11.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/11.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/11.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/11.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/12.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/12.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/12.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/12.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/13.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/13.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/13.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/13.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/14.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/14.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/14.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/14.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/15.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/15.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/15.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/15.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/16.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/16.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/16.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/16.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/17.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/17.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/17.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/17.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/18.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/18.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/18.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/18.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/19.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/19.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/19.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/19.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/20.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/20.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/20.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/20.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/Readme.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/Readme.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c00.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c00.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c01.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c01.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c02.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c02.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c03.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c03.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c04.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c04.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c05.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c05.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c06.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c06.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c07.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c07.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c08.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c08.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c09.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c09.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c10.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c10.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c11.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c11.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c12.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c12.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c13.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c13.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c14.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c14.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c15.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c15.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c16.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c16.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c17.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c17.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c18.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c18.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c19.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c19.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c20.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/c20.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/int.opensslconf b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/int.opensslconf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/long.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir-maxpath/long.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir1/test-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir1/test-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir2/test-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir2/test-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir2/test-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir2/test-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir3/Readme b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir3/Readme old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir3/test-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir3/test-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir3/test-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir3/test-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/Readme b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/Readme old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert11.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert11.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert12.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert12.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert13.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert13.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert14.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert14.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert21.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert21.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert22.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert22.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert23.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert23.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert31.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert31.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert32.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert32.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert33.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert33.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert34.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert34.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert41.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert41.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert42.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert42.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert43.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert43.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert44.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert44.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert45.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert45.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert51.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert51.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert52.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert52.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert53.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert53.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert54.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert54.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert61.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert61.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert62.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert62.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert63.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert63.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert71.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert71.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert72.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert72.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert73.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert73.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert74.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert74.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert81.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert81.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert82.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert82.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert83.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert83.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert91.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert91.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert92.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/dir4/cert92.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_224_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_224_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_224_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_224_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_256_long_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_256_long_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_256_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_256_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_256_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_256_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_384_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_384_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_384_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_384_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_521_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_521_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_521_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_521_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_521_short_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_521_short_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp256_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp256_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp256_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp256_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp384_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp384_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp384_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp384_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp512_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp512_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp512_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_bp512_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.pw.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.pw.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.pw.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8.pw.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopub.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopub.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopubparam.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopubparam.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopubparam.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8nopubparam.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8param.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8param.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8param.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.pk8param.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.sec1.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.sec1.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.sec1.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.sec1.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.sec1.pw.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.sec1.pw.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.specdom.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_prv.specdom.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_pub.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_pub.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ec_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp256r1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp256r1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp256r1.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp256r1.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp384r1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp384r1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp384r1.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp384r1.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp521r1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp521r1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp521r1.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/ecdsa_secp521r1.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/enco-ca-prstr.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/enco-ca-prstr.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/enco-cert-utf8str.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/enco-cert-utf8str.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_gen.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_gen.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_gen.pub b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_gen.pub old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_pkcs12.fmt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_pkcs12.fmt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_rsa.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/format_rsa.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_1 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_2 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_2 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_3 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_3 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_4 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_4 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_5 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/hash_file_5 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/keyUsage.decipherOnly.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/keyUsage.decipherOnly.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/mpi_10 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/mpi_10 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/mpi_too_big b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/mpi_too_big old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/multiple_san.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/multiple_san.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/non-ascii-string-in-issuer.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/non-ascii-string-in-issuer.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/passwd.psk b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/passwd.psk old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/print_c.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/print_c.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa4096_prv.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa4096_prv.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa4096_pub.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa4096_pub.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa512.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa512.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa521.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa521.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa522.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa522.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa528.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa528.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_aes128.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_aes128.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_aes192.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_aes192.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_aes256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_aes256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_clear.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_clear.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_1024_des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_aes128.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_aes128.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_aes192.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_aes192.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_aes256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_aes256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_clear.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_clear.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_public.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_public.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_public.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_2048_public.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_aes128.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_aes128.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_aes192.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_aes192.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_aes256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_aes256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_clear.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_clear.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs1_4096_des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_1024_public.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_1024_public.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_2048_public.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_2048_public.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_2048_public.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_2048_public.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_2des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_2des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_2des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_2des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_3des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_3des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_1024_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_2des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_2des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_2des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_2des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_3des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_3des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_2048_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_2des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_2des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_2des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_2des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_3des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_3des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbe_sha1_4096_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1-ms.req.sha256 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1-ms.req.sha256 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1-nospace.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1-nospace.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1-v1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1-v1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ca.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ca.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ca_noauthid.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ca_noauthid.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.cert_type.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.cert_type.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.cert_type.crt.openssl.v3_ext b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.cert_type.crt.openssl.v3_ext old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.cert_type_noauthid.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.cert_type_noauthid.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.crt.openssl.v3_ext b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.crt.openssl.v3_ext old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.csr b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.csr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ext_ku.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.ext_ku.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key_usage.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key_usage.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key_usage.crt.openssl.v3_ext b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key_usage.crt.openssl.v3_ext old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key_usage_noauthid.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.key_usage_noauthid.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.noauthid.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.noauthid.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.pubkey b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.pubkey old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.cert_type b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.cert_type old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.cert_type_empty b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.cert_type_empty old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.key_usage b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.key_usage old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.key_usage_empty b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.key_usage_empty old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.ku-ct b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.ku-ct old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.md5 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.md5 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha1 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha224 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha224 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha256 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha256 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha384 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha384 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha512 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.req.sha512 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.v1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1.v1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10-badsign.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10-badsign.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10-bs_int3.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10-bs_int3.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3-bs.pem b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3-bs.pem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3_int-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3_int-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3_int-ca2_ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3_int-ca2_ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3_spurious_int-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server10_int3_spurious_int-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_csr.opensslconf b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_csr.opensslconf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_pathlen_int_max-1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_pathlen_int_max-1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_pathlen_int_max.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server1_pathlen_int_max.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-badsign.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-badsign.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-sha256.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-sha256.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-sha256.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-sha256.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-v1-chain.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-v1-chain.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-v1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2-v1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.key.enc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.key.enc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ds.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ds.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ds_ke.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ds_ke.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ka.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ka.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ke.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server2.ku-ke.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server3.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server3.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server3.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server3.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server4.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server4.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server4.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server4.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-badsign.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-badsign.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der0.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der0.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der1a.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der1a.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der1b.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der1b.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der4.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der4.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der8.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der8.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der9.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-der9.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-expired.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-expired.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-fan.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-fan.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-future.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-future.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-othername.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-othername.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-selfsigned.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-selfsigned.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha224.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha224.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha384.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha384.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha512.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-sha512.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-ss-expired.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-ss-expired.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-ss-forgeca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-ss-forgeca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-tricky-ip-san.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-tricky-ip-san.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-unsupported_othername.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5-unsupported_othername.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-cli.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-cli.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-cs.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-cs.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-cs_any.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-cs_any.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-srv.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-srv.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-srv_cli.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.eku-srv_cli.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.key.enc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.key.enc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.ku-ds.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.ku-ds.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.ku-ka.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.ku-ka.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.ku-ke.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.ku-ke.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.ku.sha1 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.ku.sha1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha1 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha224 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha224 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha256 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha256 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha384 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha384 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha512 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server5.req.sha512 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server6-ss-child.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server6-ss-child.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server6.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server6.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server6.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server6.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7-badsign.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7-badsign.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7-expired.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7-expired.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7-future.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7-future.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_all_space.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_all_space.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_int-ca-exp.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_int-ca-exp.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_int-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_int-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_int-ca_ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_int-ca_ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_pem_space.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_pem_space.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_spurious_int-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_spurious_int-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_trailing_space.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server7_trailing_space.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server8.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server8.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server8.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server8.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server8_int-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server8_int-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-bad-mgfhash.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-bad-mgfhash.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-bad-saltlen.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-bad-saltlen.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-badsign.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-badsign.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-defaults.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-defaults.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha224.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha224.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha256.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha256.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha384.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha384.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha512.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-sha512.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-with-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9-with-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha1 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha224 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha224 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha256 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha256 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha384 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha384 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha512 b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/server9.req.sha512 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt-good.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt-good.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt.csr b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt.csr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-alt.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy_ec.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy_ec.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy_with_qualifier.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy_with_qualifier.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy_with_qualifier_ec.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-any_policy_with_qualifier_ec.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-good-alt.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-good-alt.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-multi_policy.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-multi_policy.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-multi_policy_ec.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-multi_policy_ec.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha1.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha1.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha256.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha256.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha256.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-sha256.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-unsupported_policy.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-unsupported_policy.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-unsupported_policy_ec.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-unsupported_policy_ec.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-v1.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca-v1.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.opensslconf b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.opensslconf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.db b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.db old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.future-crl.db b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.future-crl.db old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.future-crl.opensslconf b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.future-crl.opensslconf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.opensslconf b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca.server1.opensslconf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2-expired.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2-expired.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.crt.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.crt.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.key.der b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.key.der old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.key.enc b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.key.enc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-crl.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-crl.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-crt.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-crt.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-crt_crl.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-crt_crl.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-ds.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2.ku-ds.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-future-invalid.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-future-invalid.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-future-present.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-future-present.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-past-invalid.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-past-invalid.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-past-present.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-past-present.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-present-future.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-present-future.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-present-past.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca2_cat-present-past.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_cat12.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_cat12.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_cat21.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_cat21.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_printable.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_printable.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_uppercase.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_uppercase.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_utf8.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-ca_utf8.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca-exp.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca-exp.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca2.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca2.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca2.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca2.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca3-badsign.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca3-badsign.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca3.crt b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca3.crt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca3.key b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/data_files/test-int-ca3.key old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/docker/bionic/Dockerfile b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/docker/bionic/Dockerfile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/git-scripts/README.md b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/git-scripts/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/git-scripts/pre-push.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/git-scripts/pre-push.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/aes_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/aes_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/aria_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/aria_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/camellia_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/camellia_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ccm_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ccm_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/chacha20_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/chacha20_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/chachapoly_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/chachapoly_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/cmac_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/cmac_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/des_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/des_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/dhm_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/dhm_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ecjpake_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ecjpake_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ecp_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ecp_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/gcm_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/gcm_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/md5_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/md5_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/nist_kw_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/nist_kw_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/platform_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/platform_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/poly1305_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/poly1305_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ripemd160_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/ripemd160_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/rsa_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/rsa_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/sha1_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/sha1_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/sha256_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/sha256_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/sha512_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/sha512_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/threading_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/threading_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/timing_alt.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/alt-dummy/timing_alt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/spe/crypto_spe.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/spe/crypto_spe.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/asn1_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/asn1_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/certs.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/certs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/constant_flow.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/constant_flow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/aead.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/aead.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/cipher.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/cipher.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/config_test_driver.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/config_test_driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/crypto_config_test_driver_extension.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/crypto_config_test_driver_extension.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/hash.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/key_management.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/key_management.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/mac.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/mac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/signature.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/signature.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/test_driver.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/drivers/test_driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/fake_external_rng_for_test.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/fake_external_rng_for_test.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/macros.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/macros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/psa_crypto_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/psa_crypto_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/psa_exercise_key.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/psa_exercise_key.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/psa_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/psa_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/random.h b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/include/test/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/make-in-docker.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/make-in-docker.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/opt-testcases/tls13-compat.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/opt-testcases/tls13-compat.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/all-in-docker.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/all-in-docker.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/all.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/all.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/analyze_outcomes.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/analyze_outcomes.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/basic-build-test.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/basic-build-test.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/basic-in-docker.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/basic-in-docker.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check-doxy-blocks.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check-doxy-blocks.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check-generated-files.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check-generated-files.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check-python-files.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check-python-files.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check_files.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check_files.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check_names.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check_names.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check_test_cases.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/check_test_cases.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/curves.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/curves.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/depends-hashes.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/depends-hashes.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/depends-pkalgs.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/depends-pkalgs.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/docker_env.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/docker_env.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/doxygen.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/doxygen.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_ctr_drbg.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_ctr_drbg.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_gcm_decrypt.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_gcm_decrypt.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_gcm_encrypt.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_gcm_encrypt.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_pkcs1_v21_sign_verify.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/gen_pkcs1_v21_sign_verify.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate-afl-tests.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate-afl-tests.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate_psa_tests.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate_psa_tests.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate_test_code.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate_test_code.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate_tls13_compat_tests.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/generate_tls13_compat_tests.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/key-exchanges.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/key-exchanges.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/list-identifiers.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/list-identifiers.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/list_internal_identifiers.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/list_internal_identifiers.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/psa_collect_statuses.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/psa_collect_statuses.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/recursion.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/recursion.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/run-test-suites.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/run-test-suites.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/scripts_path.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/scripts_path.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/set_psa_test_dependencies.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/set_psa_test_dependencies.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/tcp_client.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/tcp_client.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test-ref-configs.pl b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test-ref-configs.pl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_config_script.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_config_script.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_generate_test_code.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_generate_test_code.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_psa_compliance.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_psa_compliance.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_psa_constant_names.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_psa_constant_names.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_zeroize.gdb b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/test_zeroize.gdb old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/translate_ciphers.py b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/translate_ciphers.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/travis-log-failure.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/scripts/travis-log-failure.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/asn1_helpers.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/asn1_helpers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/certs.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/certs.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/hash.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/hash.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/platform_builtin_keys.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/platform_builtin_keys.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_aead.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_aead.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_cipher.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_cipher.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_key_management.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_key_management.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_mac.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_mac.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_signature.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/drivers/test_driver_signature.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/fake_external_rng_for_test.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/fake_external_rng_for_test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/helpers.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/helpers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/psa_crypto_helpers.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/psa_crypto_helpers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/psa_exercise_key.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/psa_exercise_key.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/random.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/random.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/threading_helpers.c b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/src/threading_helpers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/ssl-opt-in-docker.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/ssl-opt-in-docker.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/ssl-opt.sh b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/ssl-opt.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/helpers.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/helpers.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/host_test.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/host_test.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/main_test.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/main_test.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.cbc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.cbc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.cfb.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.cfb.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.ecb.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.ecb.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.ofb.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.ofb.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.rest.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.rest.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.xts.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aes.xts.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aria.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aria.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aria.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_aria.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1parse.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1parse.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1parse.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1parse.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1write.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1write.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1write.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_asn1write.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_base64.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_base64.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_base64.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_base64.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_camellia.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_camellia.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_camellia.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_camellia.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ccm.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ccm.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ccm.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ccm.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chacha20.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chacha20.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chacha20.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chacha20.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chachapoly.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chachapoly.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chachapoly.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_chachapoly.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.aes.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.aes.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.aria.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.aria.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.camellia.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.camellia.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.ccm.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.ccm.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.chacha20.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.chacha20.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.chachapoly.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.chachapoly.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.des.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.des.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.gcm.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.gcm.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.misc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.misc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.nist_kw.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.nist_kw.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.null.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.null.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.padding.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cipher.padding.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cmac.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cmac.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cmac.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_cmac.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ctr_drbg.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ctr_drbg.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ctr_drbg.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ctr_drbg.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_debug.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_debug.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_debug.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_debug.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_des.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_des.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_des.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_des.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_dhm.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_dhm.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_dhm.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_dhm.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdh.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdh.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdh.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdh.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdsa.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdsa.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdsa.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecdsa.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecjpake.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecjpake.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecjpake.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecjpake.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecp.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecp.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecp.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ecp.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_entropy.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_entropy.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_entropy.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_entropy.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_error.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_error.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_error.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_error.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes128_de.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes128_de.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes128_en.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes128_en.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes192_de.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes192_de.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes192_en.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes192_en.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes256_de.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes256_de.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes256_en.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.aes256_en.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.camellia.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.camellia.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.misc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_gcm.misc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hkdf.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hkdf.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hkdf.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hkdf.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.misc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.misc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.no_reseed.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.no_reseed.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.nopr.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.nopr.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.pr.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_hmac_drbg.pr.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_md.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_md.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_md.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_md.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mdx.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mdx.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mdx.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mdx.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_memory_buffer_alloc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_memory_buffer_alloc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_memory_buffer_alloc.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_memory_buffer_alloc.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mpi.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mpi.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mpi.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mpi.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mps.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mps.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mps.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_mps.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_net.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_net.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_net.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_net.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_nist_kw.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_nist_kw.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_nist_kw.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_nist_kw.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_oid.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_oid.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_oid.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_oid.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pem.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pem.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pem.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pem.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pk.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pk.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pk.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pk.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs12.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs12.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs12.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs12.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v15.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v15.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v15.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v15.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v21.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v21.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v21.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs1_v21.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs5.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs5.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs5.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkcs5.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkparse.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkparse.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkparse.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkparse.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkwrite.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkwrite.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkwrite.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_pkwrite.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_poly1305.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_poly1305.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_poly1305.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_poly1305.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_attributes.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_attributes.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_attributes.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_attributes.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_driver_wrappers.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_driver_wrappers.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_driver_wrappers.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_driver_wrappers.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_entropy.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_entropy.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_entropy.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_entropy.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_generate_key.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_generate_key.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_generate_key.generated.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_generate_key.generated.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_hash.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_hash.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_hash.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_hash.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_init.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_init.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_init.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_init.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_metadata.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_metadata.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_metadata.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_metadata.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_not_supported.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_not_supported.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_not_supported.generated.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_not_supported.generated.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_not_supported.misc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_not_supported.misc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_persistent_key.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_persistent_key.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_persistent_key.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_persistent_key.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal_mocks.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal_mocks.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal_mocks.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_se_driver_hal_mocks.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_slot_management.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_slot_management.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_slot_management.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_slot_management.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.current.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.current.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.misc.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.misc.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.v0.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_crypto_storage_format.v0.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_its.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_its.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_its.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_psa_its.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_random.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_random.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_random.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_random.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_rsa.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_rsa.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_rsa.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_rsa.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_shax.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_shax.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_shax.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_shax.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ssl.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ssl.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ssl.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_ssl.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_timing.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_timing.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_timing.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_timing.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_version.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_version.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_version.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_version.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509parse.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509parse.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509parse.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509parse.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509write.data b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509write.data old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509write.function b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/tests/suites/test_suite_x509write.function old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/benchmark.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/benchmark.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/cert_app.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/cert_app.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/cert_req.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/cert_req.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/cert_write.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/cert_write.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/crl_app.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/crl_app.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/crypt_and_hash.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/crypt_and_hash.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/crypto_examples.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/crypto_examples.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dh_client.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dh_client.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dh_genprime.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dh_genprime.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dh_server.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dh_server.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dtls_client.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dtls_client.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dtls_server.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/dtls_server.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ecdh_curve25519.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ecdh_curve25519.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ecdsa.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ecdsa.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/gen_entropy.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/gen_entropy.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/gen_key.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/gen_key.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/gen_random_ctr_drbg.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/gen_random_ctr_drbg.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/generic_sum.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/generic_sum.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/hello.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/hello.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/key_app.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/key_app.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/key_app_writer.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/key_app_writer.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/key_ladder_demo.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/key_ladder_demo.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/load_roots.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/load_roots.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mbedTLS.sln b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mbedTLS.sln old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mbedTLS.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mbedTLS.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mini_client.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mini_client.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mpi_demo.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/mpi_demo.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pem2der.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pem2der.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_decrypt.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_decrypt.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_encrypt.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_encrypt.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_sign.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_sign.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_verify.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/pk_verify.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/psa_constant_names.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/psa_constant_names.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/query_compile_time_config.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/query_compile_time_config.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/req_app.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/req_app.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_decrypt.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_decrypt.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_encrypt.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_encrypt.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_genkey.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_genkey.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_sign.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_sign.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_sign_pss.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_sign_pss.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_verify.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_verify.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_verify_pss.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/rsa_verify_pss.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/selftest.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/selftest.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_client1.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_client1.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_client2.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_client2.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_context_info.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_context_info.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_fork_server.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_fork_server.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_mail_client.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_mail_client.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_server.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_server.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_server2.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/ssl_server2.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/strerror.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/strerror.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/udp_proxy.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/udp_proxy.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/zeroize.vcxproj b/IOT/29924_team_smart_home_gateway/code/open_source/mbedtls/mbedtls_v3.1.0/visualc/VS2010/zeroize.vcxproj old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Base64.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Base64.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Base64.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Base64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Clients.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Clients.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Clients.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Clients.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Heap.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Heap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Heap.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Heap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Keysight_ws_add b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Keysight_ws_add old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/LinkedList.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/LinkedList.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/LinkedList.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/LinkedList.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Log.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Log.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Log.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Log.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTAsync.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTAsync.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTAsyncUtils.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTAsyncUtils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTClient.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTClient.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTClient.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTClient.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTClientPersistence.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTClientPersistence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTExportDeclarations.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTExportDeclarations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacket.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacket.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacket.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacketOut.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacketOut.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacketOut.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPacketOut.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistence.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistence.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistence.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistenceDefault.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistenceDefault.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistenceDefault.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTPersistenceDefault.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProperties.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProperties.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProperties.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProperties.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocol.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocol.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolClient.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolClient.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolClient.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolClient.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolOut.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolOut.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolOut.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTProtocolOut.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTReasonCodes.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTReasonCodes.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTReasonCodes.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTReasonCodes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTSubscribeOpts.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTSubscribeOpts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTTime.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTTime.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTTime.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/MQTTTime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Messages.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Messages.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Messages.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Messages.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/OsWrapper.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/OsWrapper.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/OsWrapper.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/OsWrapper.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Proxy.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Proxy.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Proxy.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Proxy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SHA1.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SHA1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SHA1.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SHA1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SSLSocket.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SSLSocket.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SSLSocket.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SSLSocket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SSLSocket_mbedtls.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SSLSocket_mbedtls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Socket.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Socket.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Socket.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SocketBuffer.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SocketBuffer.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SocketBuffer.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/SocketBuffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/StackTrace.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/StackTrace.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/StackTrace.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/StackTrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Thread.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Thread.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Thread.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Thread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Tree.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Tree.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Tree.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/Tree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/VersionInfo.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/VersionInfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/WebSocket.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/WebSocket.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/WebSocket.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/WebSocket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/mutex_type.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/mutex_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/samples/pubsub_opts.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/samples/pubsub_opts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/utf-8.c b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/utf-8.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/utf-8.h b/IOT/29924_team_smart_home_gateway/code/open_source/mqtt/paho.mqtt.c/src/utf-8.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/CONTRIBUTIONS b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/CONTRIBUTIONS old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/COPYING b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/COPYING old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/HUAWEI-RELEASE b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/HUAWEI-RELEASE old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/README b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/hs20/client/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/hs20/client/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/hs20/client/osu_client.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/hs20/client/osu_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/SConscript b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/SConscript old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/crypto_mbedtls.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/crypto_mbedtls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/crypto_mbedtls.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/crypto_mbedtls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/ctrl_iface_rtos.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/ctrl_iface_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/eloop_rtos.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/eloop_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/l2_packet_rtos.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/l2_packet_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/main_rtos.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/main_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/os_rtos.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/os_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/tls_mbedtls.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/tls_mbedtls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/wpa_cli_rtos.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/wpa_cli_rtos.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/wpa_cli_rtos.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/wpa_cli_rtos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/wpa_supplicant_if.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/liteos_wpa_src/wpa_supplicant_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/accounting.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/accounting.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/acs.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/acs.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/acs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/acs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/airtime_policy.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/airtime_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_config.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_drv_ops.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_drv_ops.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_drv_ops.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_drv_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_list.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_mlme.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_mlme.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_mlme.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ap_mlme.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/authsrv.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/authsrv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/beacon.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/beacon.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/beacon.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/beacon.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/bss_load.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/bss_load.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/bss_load.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/bss_load.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ctrl_iface_ap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ctrl_iface_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/dfs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/dfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/dhcp_snoop.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/dhcp_snoop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/dpp_hostapd.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/dpp_hostapd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/drv_callbacks.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/drv_callbacks.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/eap_user_db.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/eap_user_db.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/eth_p_oui.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/eth_p_oui.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/fils_hlp.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/fils_hlp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/gas_query_ap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/gas_query_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/gas_serv.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/gas_serv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hostapd.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hostapd.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hostapd.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hostapd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hs20.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hs20.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hw_features.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hw_features.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hw_features.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/hw_features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_auth.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_auth.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_he.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_he.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_ht.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_ht.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_shared.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_11_shared.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_1x.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_1x.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_1x.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ieee802_1x.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/mbo_ap.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/mbo_ap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/mbo_ap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/mbo_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ndisc_snoop.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/ndisc_snoop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/neighbor_db.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/neighbor_db.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/p2p_hostapd.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/p2p_hostapd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/pmksa_cache_auth.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/pmksa_cache_auth.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/pmksa_cache_auth.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/pmksa_cache_auth.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/preauth_auth.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/preauth_auth.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/rrm.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/rrm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/sta_info.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/sta_info.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/sta_info.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/sta_info.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/taxonomy.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/taxonomy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/tkip_countermeasures.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/tkip_countermeasures.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/utils.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/utils.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/vlan.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/vlan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/vlan_init.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/vlan_init.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/vlan_util.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/vlan_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wmm.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wmm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wnm_ap.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wnm_ap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wnm_ap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wnm_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_glue.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_glue.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_glue.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_glue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_ie.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_ie.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_ie.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_ie.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_kay.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wpa_auth_kay.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wps_hostapd.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wps_hostapd.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wps_hostapd.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/wps_hostapd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/x_snoop.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/ap/x_snoop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/brcm_vendor.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/brcm_vendor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/cli.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/cli.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ctrl_iface_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ctrl_iface_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dhcp.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dhcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dpp.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dpp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dpp_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dpp_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dragonfly.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dragonfly.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dragonfly.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/dragonfly.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/eapol_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/eapol_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/gas.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/gas.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/gas_server.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/gas_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/hw_features_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/hw_features_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/hw_features_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/hw_features_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_11_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_11_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_11_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_11_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_11_defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_11_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_1x_defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ieee802_1x_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/linux_bridge.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/linux_bridge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/linux_vlan.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/linux_vlan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ocv.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ocv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/privsep_commands.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/privsep_commands.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ptksa_cache.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/ptksa_cache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/qca-vendor-attr.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/qca-vendor-attr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/qca-vendor.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/qca-vendor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/sae.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/sae.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/sae.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/sae.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/tnc.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/tnc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/version.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_ctrl.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_ctrl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/common/wpa_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-internal.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-internal.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-omac1.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-omac1.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-unwrap.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-unwrap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-wrap.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes-wrap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes_siv.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes_siv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes_wrap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/aes_wrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/crypto.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/crypto.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/crypto_internal-modexp.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/crypto_internal-modexp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/des_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/des_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/dh_group5.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/dh_group5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/dh_groups.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/dh_groups.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/dh_groups.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/dh_groups.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/md5.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/md5.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/md5.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/md5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/md5_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/md5_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/milenage.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/milenage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/ms_funcs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/ms_funcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/random.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/random.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/random.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/rc4.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/rc4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha1-prf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha1-prf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha1.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha1_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha1_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256-kdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256-kdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256-prf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256-prf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha256_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384-kdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384-kdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384-prf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384-prf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha384_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512-kdf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512-kdf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512-prf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512-prf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/sha512_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/tls.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/tls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/tls_openssl.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/crypto/tls_openssl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/android_drv.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/android_drv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_hostap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_hostap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_ndis.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_ndis.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_nl80211.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_nl80211.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_wext.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_wext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_wired_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/driver_wired_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/drivers.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/drivers.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/linux_defines.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/linux_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/linux_ioctl.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/linux_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/linux_wext.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/linux_wext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/netlink.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/netlink.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/nl80211_copy.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/nl80211_copy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/priv_netlink.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/priv_netlink.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/rfkill.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/drivers/rfkill.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/chap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/chap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_eke_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_eke_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_fast_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_fast_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_gpsk_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_gpsk_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_ikev2_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_ikev2_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_pax_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_pax_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_peap_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_peap_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_psk_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_psk_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_pwd_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_pwd_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_sake_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_sake_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_sim_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_sim_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_teap_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_teap_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_tlv_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_tlv_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_ttls.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_ttls.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_wsc_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_wsc_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_wsc_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/eap_wsc_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/ikev2_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_common/ikev2_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_fast_pac.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_fast_pac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_methods.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_methods.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_methods.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_methods.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_proxy.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_proxy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_teap_pac.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_teap_pac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_tls.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_tls.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_tls_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_tls_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_tls_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_tls_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_wsc.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/eap_wsc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/ikev2.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/ikev2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/mschapv2.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/mschapv2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/tncc.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_peer/tncc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_methods.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_methods.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server_identity.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server_identity.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server_methods.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server_methods.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server_wsc.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_server_wsc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_sim_db.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_sim_db.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_tls_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/eap_tls_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/ikev2.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/ikev2.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/tncs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eap_server/tncs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/eapol_auth_sm.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/eapol_auth_sm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/eapol_auth_sm.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/eapol_auth_sm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/eapol_auth_sm_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_auth/eapol_auth_sm_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_supp/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_supp/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_supp/eapol_supp_sm.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_supp/eapol_supp_sm.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_supp/eapol_supp_sm.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/eapol_supp/eapol_supp_sm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_ctrl_aux.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_ctrl_aux.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_ctrl_defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_ctrl_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_ctrl_iface.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_ctrl_iface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_group.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_group.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_iface.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_iface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_internal.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_internal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_session.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/fst/fst_session.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/l2_packet/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/l2_packet/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/l2_packet/l2_packet.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/l2_packet/l2_packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/p2p/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/p2p/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/p2p/p2p.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/p2p/p2p.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/p2p/p2p_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/p2p/p2p_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_cp.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_cp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_kay.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_kay.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_kay_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_kay_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_key.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_key.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_secy_ops.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/pae/ieee802_1x_secy_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius_client.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius_das.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius_das.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius_server.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/radius/radius_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/pmksa_cache.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/pmksa_cache.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/pmksa_cache.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/pmksa_cache.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/preauth.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/preauth.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_ft.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_ft.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_ie.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_ie.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_ie.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/rsn_supp/wpa_ie.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/asn1.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/asn1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/bignum.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/bignum.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/bignum.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/bignum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/libtommath.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/libtommath.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/pkcs1.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/pkcs1.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/pkcs5.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/pkcs5.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/pkcs8.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/pkcs8.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/rsa.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/rsa.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_client.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_client_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_client_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_cred.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_cred.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_record.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_record.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_server.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_server_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/tlsv1_server_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/x509v3.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/tls/x509v3.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/base64.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/base64.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/base64.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/base64.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/bitfield.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/bitfield.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/browser.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/browser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/build_config.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/build_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/config.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/const_time.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/const_time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/crc32.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/crc32.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/crc32.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/crc32.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/edit.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/edit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/eloop.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/eloop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/ext_password.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/ext_password.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/ext_password_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/ext_password_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/http-utils.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/http-utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/includes.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/includes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/ip_addr.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/ip_addr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/json.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/json.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/list.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/module_tests.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/module_tests.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/os.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/os.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/pcsc_funcs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/pcsc_funcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/platform.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/platform.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/radiotap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/radiotap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/radiotap_iter.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/radiotap_iter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/state_machine.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/state_machine.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/trace.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/uuid.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/uuid.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/uuid.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/uuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpa_debug.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpa_debug.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpa_debug.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpa_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpabuf.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpabuf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpabuf.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/wpabuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/xml-utils.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/utils/xml-utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/http.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/http.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/http_client.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/http_client.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/http_server.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/http_server.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/httpread.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/httpread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/upnp_xml.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/upnp_xml.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_build.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_build.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_parse.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_parse.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_parse.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_parse.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_process.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_attr_process.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_common.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_common.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_defs.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_defs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_dev_attr.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_dev_attr.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_dev_attr.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_dev_attr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_enrollee.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_enrollee.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_er.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_er.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_registrar.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_registrar.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_upnp.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_upnp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_upnp_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/src/wps/wps_upnp_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ChangeLog b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ChangeLog old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-DPP b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-DPP old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-HS20 b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-HS20 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-P2P b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-P2P old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-WPS b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/README-WPS old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ap.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ap.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/autoscan.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/autoscan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bgscan.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bgscan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder_constants.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder_manager.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/binder_manager.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/iface.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/iface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/supplicant.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/binder/supplicant.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bss.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bss.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bss.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bss.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bssid_ignore.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/bssid_ignore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/config.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/config.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/config.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/config_ssid.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/config_ssid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ctrl_iface.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ctrl_iface.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ctrl_iface.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ctrl_iface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_common.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_common_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_common_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_dict_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_dict_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new_handlers.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new_handlers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new_handlers_p2p.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new_handlers_p2p.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new_helpers.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dbus/dbus_new_helpers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/defconfig b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/defconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/doc/docbook/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/doc/docbook/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dpp_supplicant.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/dpp_supplicant.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/driver_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/driver_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/eap_register.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/eap_register.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/events.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/events.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/examples/60_wpa_supplicant b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/examples/60_wpa_supplicant old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/examples/wps-ap-cli b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/examples/wps-ap-cli old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/gas_query.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/gas_query.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/hs20_supplicant.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/hs20_supplicant.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ibss_rsn.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/ibss_rsn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/interworking.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/interworking.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mbo.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mbo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mesh.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mesh.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mesh_mpm.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mesh_mpm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mesh_rsn.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/mesh_rsn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/notify.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/notify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/notify.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/notify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/offchannel.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/offchannel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/p2p_supplicant.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/p2p_supplicant.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/scan.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/scan.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/scan.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/scan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/sme.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/sme.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/sme.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/sme.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wifi_display.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wifi_display.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wmm_ac.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wmm_ac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wnm_sta.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wnm_sta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wnm_sta.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wnm_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/addinterface.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/addinterface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/eventhistory.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/eventhistory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons/Makefile b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons/Makefile old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons/README b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/icons/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/networkconfig.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/networkconfig.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/peers.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/peers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresults.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresultsitem.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/scanresultsitem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/signalbar.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/signalbar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/stringquery.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/stringquery.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/userdatarequest.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/userdatarequest.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/wpagui.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/wpagui.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/wpamsg.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_gui-qt4/wpamsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_supplicant.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_supplicant.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_supplicant_i.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpa_supplicant_i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpas_glue.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpas_glue.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpas_glue.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpas_glue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpas_kay.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wpas_kay.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wps_supplicant.c b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wps_supplicant.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wps_supplicant.h b/IOT/29924_team_smart_home_gateway/code/open_source/wpa_supplicant/wpa_supplicant/wps_supplicant.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/Kconfig b/IOT/29924_team_smart_home_gateway/code/protocol/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/Kconfig b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-app/libbgtp.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-app/libbgtp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-app/libbgtp_rom_data.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-app/libbgtp_rom_data.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-xts/libbgtp.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-xts/libbgtp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-xts/libbgtp_rom_data.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63-liteos-xts/libbgtp_rom_data.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/bgtp/ws63.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/achba.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/achba.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/sle_chba_user.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/sle_chba_user.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/sle_netdev.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/sle_netdev.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/ws63-liteos-app/libsle_chba_user.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/ws63-liteos-app/libsle_chba_user.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/ws63-liteos-app/libsle_netdev.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/controller/chba/ws63-liteos-app/libsle_netdev.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/Kconfig b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/KconfigAdapter.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/KconfigAdapter.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bg_common/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bg_common/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bg_common/ws63-liteos-app/libbg_common.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bg_common/ws63-liteos-app/libbg_common.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bg_common/ws63-liteos-xts/libbg_common.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bg_common/ws63-liteos-xts/libbg_common.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ahi/ahi_b/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ahi/ahi_b/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ahi/ahi_b/ahi_b.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ahi/ahi_b/ahi_b.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/bt_app.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/bt_app.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/bt_host.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/bt_host.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/sdk/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/sdk/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/sdk/ws63-liteos-app/libbth_sdk.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/sdk/ws63-liteos-app/libbth_sdk.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/sdk/ws63-liteos-xts/libbth_sdk.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/sdk/ws63-liteos-xts/libbth_sdk.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-app/libbt_app.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-app/libbt_app.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-app/libbt_host.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-app/libbt_host.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-xts/libbt_app.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-xts/libbt_app.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-xts/libbt_host.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/bt/ws63-liteos-xts/libbt_host.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/Kconfig b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/bth_gle.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/bth_gle.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/ws63-liteos-app/libbth_gle.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/ws63-liteos-app/libbth_gle.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/ws63-liteos-xts/libbth_gle.a b/IOT/29924_team_smart_home_gateway/code/protocol/bt/host/gle/ws63-liteos-xts/libbth_gle.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/alg_ai/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/radar/alg_ai/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/alg_ai/build/ws63/radar_ai_entry.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/radar/alg_ai/build/ws63/radar_ai_entry.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/alg_ai/ws63-liteos-app/libradar_ai.a b/IOT/29924_team_smart_home_gateway/code/protocol/radar/alg_ai/ws63-liteos-app/libradar_ai.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/Kconfig b/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/Kconfig old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/build/ws63/radar_entry.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/build/ws63/radar_entry.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/ws63-liteos-app/libradar_sensing.a b/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/ws63-liteos-app/libradar_sensing.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/ws63-liteos-xts/libradar_sensing.a b/IOT/29924_team_smart_home_gateway/code/protocol/radar/plat/ws63-liteos-xts/libradar_sensing.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/master/basic.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/master/basic.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/master/wifi_alg_device.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/master/wifi_alg_device.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/master/wifi_device.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/master/wifi_device.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/romrepo/basic.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/romrepo/basic.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/romrepo/wifi_alg_device.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/romrepo/wifi_alg_device.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/romrepo/wifi_device.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/romrepo/wifi_device.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/wifi_alg_host.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/wifi_alg_host.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/wifi_entry.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/wifi_entry.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/wifi_host.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/build/ws63/wifi_host.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/sample/ws63/oal_mem_pool.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/sample/ws63/oal_mem_pool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/function_alg.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/function_alg.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/alg_ar.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/alg_ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/alg_dmac_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/alg_dmac_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_aggr_probe_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_aggr_probe_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_aggr_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_aggr_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_anti_interference_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_anti_interference_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_autorate_basic_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_autorate_basic_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_autorate_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_autorate_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_autorate_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_autorate_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_compatibility_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_compatibility_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_chba_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_chba_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_gc_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_gc_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_softap_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_softap_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_txrx_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_dbac_txrx_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_edca_opt_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_edca_opt_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_gla_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_gla_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_main_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_main_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_probe_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_probe_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_rts_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_rts_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_schedule_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_schedule_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_temp_protect_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_temp_protect_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_tpc_probe_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_tpc_probe_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_tpc_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_tpc_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_traffic_ctl_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_traffic_ctl_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_tx_tb_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_tx_tb_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_txbf_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/romable/alg_txbf_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg_radar_sensor/romable/alg_radar_fft.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/alg_radar_sensor/romable/alg_radar_fft.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_c_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_c_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_ipa_current_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_ipa_current_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_iq_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_iq_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_logen_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_logen_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_r_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_r_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_rc_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_rc_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_rx_dc_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_rx_dc_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_tx_dc_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_tx_dc_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_tx_pwr_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_comp/cali_tx_pwr_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_debug/cali_debug.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_debug/cali_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_debug/cali_debug_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_debug/cali_debug_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_debug/cali_iq_debug.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/cali_debug/cali_iq_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_accum_data.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_accum_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_channel.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_complex_num.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_complex_num.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_data.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_entry.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_entry.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_mask.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_mask.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_path.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_path.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_proc_dmac_msg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_proc_dmac_msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_rf_temp_code.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/common_utils/cali_rf_temp_code.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_c.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_c.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_cap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_cap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_ipa_current.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_ipa_current.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_iq.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_iq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_iq_tone_alg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_iq_tone_alg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_logen.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_logen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_r.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_r.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_rc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_rc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_rx_dc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_rx_dc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_tx_dc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_tx_dc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_tx_pwr.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/offline_cali/cali_tx_pwr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_online.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_online.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_online_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_online_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_online_tx_pwr.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_online_tx_pwr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_tx_complete.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/cali_tx_complete.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/fe_log_calc_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/online_cali/fe_log_calc_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/outer_if/cali_outer_hal_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/outer_if/cali_outer_hal_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/outer_if/cali_outer_os_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/outer_if/cali_outer_os_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/pub_if/cali_base_def.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/calibrate/pub_if/cali_base_def.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/equipment/fe_equipment.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/equipment/fe_equipment.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_extern/fe_extern_if_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_extern/fe_extern_if_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_extern/fe_extern_if_host.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_extern/fe_extern_if_host.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/ate/hal_ate_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/ate/hal_ate_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/ate/ws63/hal_ate_spec.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/ate/ws63/hal_ate_spec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_daq.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_daq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_if_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_if_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_if_host.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_hal_phy_if_host.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_power_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_power_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_power_host.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/fe_power_host.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/ws63/fe_hal_phy_reg_if_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/ws63/fe_hal_phy_reg_if_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/ws63/fe_hal_phy_reg_if_host.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/ws63/fe_hal_phy_reg_if_host.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/ws63/fe_hal_phy_reg_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/phy/ws63/fe_hal_phy_reg_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_equipment.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_equipment.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_gp_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_gp_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_rf_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_rf_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_rf_if_temperate.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/fe_hal_rf_if_temperate.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/abb_config.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/abb_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/abb_spi_reg_rw.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/abb_spi_reg_rw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/channel.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/fe_hal_rf_reg_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/fe_hal_rf_reg_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/mpw0_poweron.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/mpw0_poweron.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/mpw_ssi_reg_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/mpw/mpw_ssi_reg_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/abb_config.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/abb_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/channel.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/channel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_abb_reg_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_abb_reg_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_pll_reg_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_pll_reg_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_reg_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_reg_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_reg_if_pktmem.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_reg_if_pktmem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_reg_if_temperate.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/fe_hal_rf_reg_if_temperate.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/rf_reg_soc_offset.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/fe_hal/rf/ws63/rf_reg_soc_offset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_init_pow.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_init_pow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_rate_pow_lut.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_rate_pow_lut.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_tpc_rate_pow.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_tpc_rate_pow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_update_pow.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/power_ctrl/fe_update_pow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_power.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_power.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_power_cali.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_power_cali.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_rssi_comp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_rssi_comp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_rx_insert_loss.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_customize/fe_rf_customize_rx_insert_loss.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_res_manage/fe_rf_dev.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_res_manage/fe_rf_dev.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_res_manage/fe_rf_dev_attach.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/rf_res_manage/fe_rf_dev_attach.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_comp_cfg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_comp_cfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_data_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_data_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_offline_cali_cfg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_offline_cali_cfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_spec.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/cali_spec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/power_ctrl_spec.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/power_ctrl_spec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/power_ppa_ctrl_spec.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/common/wifi_fe/spec/ws63/power_ppa_ctrl_spec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/forward/romable/dmac_pkt_debug_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/forward/romable/dmac_pkt_debug_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/frw_rom_cb_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/frw_rom_cb_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_mem_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_mem_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_net_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_net_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_pkt_netbuf_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_pkt_netbuf_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_wlan_util_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/frw/romable/oal_wlan_util_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_alg_rts_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_alg_rts_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_alg_txbf_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_alg_txbf_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_ampdu_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_ampdu_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_ant_sel_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_ant_sel_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_bcn_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_bcn_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_chan_mgmt_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_chan_mgmt_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_chip_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_chip_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_coex_reg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_coex_reg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_csi_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_csi_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_device_fsm_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_device_fsm_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_device_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_device_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_dscr_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_dscr_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_event_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_event_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_ftm_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_ftm_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_gcl_slp_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_gcl_slp_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_gp_reg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_gp_reg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_irq_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_irq_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_mac_err_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_mac_err_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_mac_reg_field.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_mac_reg_field.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_mac_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_mac_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_omi_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_omi_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_one_pkt_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_one_pkt_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_p2p_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_p2p_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_phy_reg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_phy_reg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_phy_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_phy_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_pm_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_pm_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_power_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_power_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_psd_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_psd_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_radar_sensor_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_radar_sensor_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_reset_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_reset_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_rx_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_rx_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_soc_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_soc_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_tb_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_tb_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_tbtt_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_tbtt_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_tx_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_tx_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_vap_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/hal_vap_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/wlan_custom_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/romable/wlan_custom_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_alg_rts.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_alg_rts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_chan_mgmt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_chan_mgmt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_chip.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_chip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_coex_reg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_coex_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_csi.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_csi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_device_fsm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_device_fsm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_gp_reg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_gp_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_mac.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_mac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_mfg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_mfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_phy.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_phy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_power.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_power.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_psd.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_psd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_reg_opt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_reg_opt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_reset.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_reset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_rf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/hal_rf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/wlan_spec.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/hal/hal_ws63/src/wlan_spec.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/dmac_ext_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/dmac_ext_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/dmac_misc_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/dmac_misc_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/frw_dmac_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/frw_dmac_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/frw_ext_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/frw_ext_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/frw_util_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/frw_util_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal/hal_ext_intf_det_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal/hal_ext_intf_det_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal/hal_power_save_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal/hal_power_save_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal_common_ops_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal_common_ops_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal_ext_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/hal_ext_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/oal_ext_if_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/oal_ext_if_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/wlan_mib_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/wlan_mib_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/wlan_types_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/inc/romable/wlan_types_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/mac/romable/mac_frame_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/mac/romable/mac_frame_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/main/main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/device/main/main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/common_dft.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/common_dft.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/dmac_ext_if_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/dmac_ext_if_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/dmac_ext_if_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/dmac_ext_if_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/frw_list.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/frw_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/frw_util_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/frw_util_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/gen_version.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/gen_version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/gpio_ext.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/gpio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/hal_common_ops_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/hal_common_ops_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/hal_ext_if_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/hal_ext_if_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/hal_ops_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/hal_ops_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/mac_frame_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/mac_frame_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/mac_user_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/mac_user_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/oal_types_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/oal_types_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/oam_wdk.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/oam_wdk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/pm_extern.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/pm_extern.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/alg/alg_autorate_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/alg/alg_autorate_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/alg/alg_common_macros_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/alg/alg_common_macros_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/alg/alg_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/alg/alg_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/common_dft_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/common_dft_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/common_error_code_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/common_error_code_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/common_log_dbg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/common_log_dbg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/dmac_ext_if_device_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/dmac_ext_if_device_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/hal_common_ops_device_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/hal_common_ops_device_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/hal_ext_if_device_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/hal_ext_if_device_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/oal_types_device_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/device_common/oal_types_device_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/diag_log_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/diag_log_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/dmac_common_inc_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/dmac_common_inc_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/dmac_ext_if_type_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/dmac_ext_if_type_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/eth_ip_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/eth_ip_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_ext_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_ext_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_hcc_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_hcc_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_list_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_list_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_msg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_msg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_util_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/frw_util_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hal_mac_reg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hal_mac_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hal_rf_reg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hal_rf_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hal_soc_reg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hal_soc_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hh503_phy_reg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/hh503_phy_reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/spec/wlan_spec_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal/ws63/spec/wlan_spec_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal_commom_ops_type_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal_commom_ops_type_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal_ops_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/hal_ops_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/mac_frame_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/mac_frame_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/mac_user_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/mac_user_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_alg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_alg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_ant_sel_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_ant_sel_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_apf_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_apf_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_arp_offload_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_arp_offload_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_ba_manage_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_ba_manage_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_blockack_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_blockack_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_btcoex_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_btcoex_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_device_manage_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_device_manage_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_dfr_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_dfr_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_dft_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_dft_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_dhcp_offload_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_dhcp_offload_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_latency_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_latency_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_p2p_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_p2p_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_protect_mode_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_protect_mode_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_psm_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_psm_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_rekey_offload_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_rekey_offload_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_sdp_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_sdp_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_slp_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_slp_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_smooth_phase_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_smooth_phase_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_twt_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_twt_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_user_manage_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_user_manage_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_vap_manage_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_vap_manage_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_wow_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/msg/msg_wow_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oal_fsm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oal_fsm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oal_net_pkt_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oal_net_pkt_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oal_netbuf_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oal_netbuf_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oam_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/oam_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_mib_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_mib_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_msg_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_msg_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_phy_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_phy_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_resource_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_resource_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_spec_hh503_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_spec_hh503_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_spec_type_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_spec_type_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_types.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_types_base_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_types_base_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_util_common_rom.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/romable/wlan_util_common_rom.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_msg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_phy_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_phy_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_resource_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_resource_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_ring.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_ring.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_spec_hh503.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_spec_hh503.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_spec_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_spec_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_thruput_debug.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_thruput_debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_types_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_types_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_util_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/rom_code/ws63/source/inc/wlan_util_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/function_alg.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/function_alg.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/CMakeLists.txt b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/CMakeLists.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_aggr.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_aggr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_anti_interference.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_anti_interference.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_autorate.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_autorate.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_cca_optimize.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_cca_optimize.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_dbac_hmac.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_dbac_hmac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_edca_opt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_edca_opt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_gla.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_gla.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_intf_det.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_intf_det.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_probe_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_probe_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_rts.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_rts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_schedule.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_schedule.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_schedule_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_schedule_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_temp_protect.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_temp_protect.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_tpc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_tpc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_traffic_ctl.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_traffic_ctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_transplant.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_transplant.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_tx_tb_hmac.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_tx_tb_hmac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_txbf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/alg/iot_alg/host/alg_txbf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/common/customize/soc_customize_wifi.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/common/customize/soc_customize_wifi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/common/customize/soc_customize_wifi_mpxx.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/common/customize/soc_customize_wifi_mpxx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/common/customize/soc_ini.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/common/customize/soc_ini.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11k.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11k.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11k.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11k.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11r.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11r.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11r.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11r.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11v.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11v.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11v.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_11v.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_ant_sel.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_ant_sel.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_ant_sel.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_ant_sel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_apf.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_apf.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_apf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_apf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_auto_adjust_freq.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_auto_adjust_freq.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_auto_adjust_freq.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_auto_adjust_freq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_blacklist.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_blacklist.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_blacklist.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_blacklist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_bsrp_nfrp.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_bsrp_nfrp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_bsrp_nfrp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_bsrp_nfrp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ba.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ba.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ba.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ba.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_btsta.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_btsta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_btsta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_btsta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_m2s.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_m2s.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_m2s.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_m2s.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_notify.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_notify.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_notify.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_notify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ps.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ps.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ps.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_btcoex_ps.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_ap.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_ap.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_ap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_sta.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_sta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csa_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csi.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csi.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_csi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_dnb_sta.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_dnb_sta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_dnb_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_dnb_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_frag.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_frag.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_frag.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_frag.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_latency_stat.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_latency_stat.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_latency_stat.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_latency_stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_m2u.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_m2u.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_m2u.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_m2u.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_mbo.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_mbo.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_mbo.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_mbo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_promisc.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_promisc.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_promisc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_promisc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_psd.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_psd.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_psd.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_psd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_radar_sensor.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_radar_sensor.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_radar_sensor.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_radar_sensor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_alg.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_alg.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_alg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_alg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_connect.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_connect.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_connect.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_connect.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_main.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_main.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_roam_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sdp.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sdp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sdp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sdp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sdp_test.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sdp_test.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_single_proxysta.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_single_proxysta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_single_proxysta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_single_proxysta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_slp.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_slp.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_slp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_slp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sr_sta.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sr_sta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sr_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_sr_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_twt.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_twt.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_twt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_twt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_tx_amsdu.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_tx_amsdu.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_tx_amsdu.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_tx_amsdu.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd_sta.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd_sta.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_uapsd_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_sms4.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_sms4.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_sms4.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_sms4.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_wpi.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_wpi.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_wpi.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wapi_wpi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wps.c b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wps.c old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wps.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/hmac_wps.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/interface/hmac_ccpriv.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/interface/hmac_ccpriv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/interface/hmac_feature_interface.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/feature/interface/hmac_feature_interface.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data_event.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data_feature.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data_feature.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data_filter.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_data_filter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_pk.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_rx_pk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_data.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_encap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_encap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_event.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_event.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_mpdu_adapt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_mpdu_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_mpdu_queue.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_mpdu_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_pk.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/hmac_tx_pk.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/linux/oal_netbuf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/linux/oal_netbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/linux/oal_skbuff.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/linux/oal_skbuff.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/liteOS/oal_netbuf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/liteOS/oal_netbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/liteOS/oal_skbuff.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/liteOS/oal_skbuff.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/oal_netbuf_data.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/forward/oal_netbuf_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/frw/frw_util_notifier.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/frw/frw_util_notifier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_11i.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_11i.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_11w.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_11w.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_achba.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_achba.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_al_tx_rx.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_al_tx_rx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_config.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_if_struct_define.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_if_struct_define.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_notify.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_alg_notify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_ampdu_config.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_ampdu_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_ant_switch.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_ant_switch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_arp_offload.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_arp_offload.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_beacon.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_beacon.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_blockack.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_blockack.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_bsle.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_bsle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_cali_mgmt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_cali_mgmt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_car.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_car.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_chan_meas.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_chan_meas.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_chan_mgmt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_chan_mgmt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_chr.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_chr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_config.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_crypto_tkip.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_crypto_tkip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_data_acq.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_data_acq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_device.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_device.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_dfs.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_dfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_dfx.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_dfx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_dhcp_offload.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_dhcp_offload.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_encap_frame.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_encap_frame.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_encap_frame_ap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_encap_frame_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_encap_frame_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_encap_frame_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_fcs.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_fcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_feature_dft.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_feature_dft.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_fsm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_fsm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_ftm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_ftm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_hook.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_hook.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_isolation.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_isolation.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_keep_alive.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_keep_alive.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_m2s.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_m2s.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mfg.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mfg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_ap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_bss_comm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_bss_comm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_classifier.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_classifier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_mgmt_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_obss_ap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_obss_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_obss_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_obss_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_opmode.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_opmode.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_p2p.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_p2p.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_power.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_power.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_protection.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_protection.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_proxy_arp.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_proxy_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_psm_ap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_psm_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_psm_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_psm_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_radar.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_radar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_rekey_offload.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_rekey_offload.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_reset.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_reset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_resource.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_roam_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_roam_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_rx_filter.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_rx_filter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sample_daq.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sample_daq.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sample_daq_phy.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sample_daq_phy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_scan.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_scan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sigma_traffic_stat.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sigma_traffic_stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sme_sta.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sme_sta.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_smps.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_smps.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sniffer.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sniffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sta_pm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_sta_pm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_stat.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_tcp_opt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_tcp_opt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_thruput_test.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_thruput_test.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_tid.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_tid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_traffic_classify.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_traffic_classify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_tx_mgmt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_tx_mgmt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_txopps.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_txopps.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_user.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_vap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_vap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wds.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wds.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wmm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wmm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wow.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wur_ap.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/hmac/hmac_wur_ap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/dmac_ext_if_hcm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/dmac_ext_if_hcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_hmac.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_hmac.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_hmac_adapt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_hmac_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_hmac_hcc_adapt.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_hmac_hcc_adapt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_osal.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_osal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_thread.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_thread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_timer.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_util.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/frw/frw_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_common_ops.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_common_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_anti_intf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_anti_intf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_tpc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_tpc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_txbf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_ext_txbf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_p2p.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_p2p.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_power_save.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hal/hal_power_save.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hcc_host_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hcc_host_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_dfr.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_dfr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_feature_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_feature_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_tcp_opt_struc.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/hmac_tcp_opt_struc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/linux/board.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/linux/board.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_any_api.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_any_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_api.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_driver_wpa_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_driver_wpa_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_mfg_test_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_mfg_test_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_p2p_api.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_p2p_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_sdp_api.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/liteOS/soc_wifi_sdp_api.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_apf.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_apf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_data.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_data.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_device_ext.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_device_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_frame.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_frame.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_ie.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_ie.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_regdomain.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_regdomain.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_resource_ext.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_resource_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_user_ext.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_user_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_vap_ext.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac/mac_vap_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac_chba_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/mac_chba_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_cfg80211.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_cfg80211.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_kernel_file.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_kernel_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_mm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_mm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_schedule.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_schedule.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_spinlock.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_time.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_timer.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_util.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/oal_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_cali.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_cali.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_exception_rst.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_exception_rst.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_firmware.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_firmware.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_pm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_pm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_pm_wlan.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/linux/pm/plat_pm_wlan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_mm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_mm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_schedule.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_schedule.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_spinlock.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_spinlock.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_time.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_timer.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_timer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_util.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/oal_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_cali.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_cali.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_exception_rst.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_exception_rst.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_firmware.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_firmware.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_pm_wlan.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/liteOS/pm/plat_pm_wlan.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_list.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_mem_hcm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_mem_hcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_net.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_net.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_net_cfg80211.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_net_cfg80211.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_netbuf_ext.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_netbuf_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_plat_type.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_plat_type.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_queue.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_schedule_hcm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_schedule_hcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_types.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_util_hcm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oal/oal_util_hcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oam_struct.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/oam_struct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/wal_ext_if.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/wal_ext_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/wifi_oneimage/wifi_oneimage.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/wifi_oneimage/wifi_oneimage.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/wlan_mib_hcm.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/inc/wlan_mib_hcm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/main/liteOS/wifi_main.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/main/liteOS/wifi_main.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/version/hmac_version.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/version/hmac_version.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/wal/common/wal_ccpriv_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/wal/common/wal_ccpriv_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/wal/common/wal_common.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/wal/common/wal_common.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/wal/common/wal_utils.h b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/source/host/wal/common/wal_utils.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/wifi_alg.cmake b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/wifi_alg.cmake old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_anti_interference.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_anti_interference.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_cca_opt.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_cca_opt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_edca_opt.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_edca_opt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_temp_protect.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_temp_protect.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_txbf.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_alg_txbf.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_driver_dmac.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_driver_dmac.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_driver_hmac.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_driver_hmac.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_driver_tcm.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_driver_tcm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_rom_data.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-app/libwifi_rom_data.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_anti_interference.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_anti_interference.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_cca_opt.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_cca_opt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_edca_opt.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_edca_opt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_temp_protect.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_temp_protect.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_txbf.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_alg_txbf.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_driver_dmac.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_driver_dmac.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_driver_hmac.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_driver_hmac.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_driver_tcm.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_driver_tcm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_rom_data.a b/IOT/29924_team_smart_home_gateway/code/protocol/wifi/ws63-liteos-xts/libwifi_rom_data.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/requirements.txt b/IOT/29924_team_smart_home_gateway/code/requirements.txt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-addr2line b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-addr2line old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-as b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-as old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-c++ b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-c++ old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-c++filt b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-c++filt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-cpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-cpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-elfedit b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-elfedit old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-g++ b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-g++ old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-7.3.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-7.3.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcc-ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcov b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcov old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcov-dump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcov-dump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcov-tool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gcov-tool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gdb b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gdb old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gdb-add-index b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gdb-add-index old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gprof b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-gprof old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ld b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ld old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ld.bfd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ld.bfd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-objcopy b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-objcopy old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-objdump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-objdump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-readelf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-readelf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-size b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-size old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-strings b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-strings old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-strip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/bin/riscv32-linux-musl-strip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/include/gdb/jit-reader.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/include/gdb/jit-reader.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/bfd-plugins/libdep.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/bfd-plugins/libdep.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano-nopic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano-nopic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-origin-noop.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-origin-noop.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/cc1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/cc1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/collect2 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/collect2 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/lto1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/libexec/gcc/riscv32-linux-musl/7.3.0/lto1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/as b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/as old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ld b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ld old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ld.bfd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ld.bfd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/objcopy b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/objcopy old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/objdump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/objdump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/readelf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/readelf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/strip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/bin/strip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/atomic b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/atomic old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/strstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/backward/strstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/move.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/move.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cassert b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cassert old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cerrno b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cerrno old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ciso646 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ciso646 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/clocale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/clocale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/codecvt b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/codecvt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/condition_variable b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/condition_variable old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/csetjmp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/csetjmp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/csignal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/csignal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdalign b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdalign old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstddef b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstddef old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstring b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cstring old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cuchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cuchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/debug/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/exception b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/exception old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/experimental/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 2616bd0ca1484f0a6d2a1d061e56d887e911ced2..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 74b6576c64e8027c7e9d4370404ebdd6fed22d24..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,53 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status)k; - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/rope b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/rope old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/slist b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/slist old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/fstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/fstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/future b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/future old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/initializer_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/initializer_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iomanip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iomanip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ios b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ios old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iosfwd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iosfwd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/istream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/istream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/limits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/limits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/locale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/locale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/new b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/new old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/profile/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/queue b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/queue old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/shared_mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/shared_mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/sstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/sstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/stack b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/stack old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/stdexcept b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/stdexcept old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/streambuf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/streambuf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/thread b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/thread old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/typeindex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/typeindex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/typeinfo b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/typeinfo old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/valarray b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/valarray old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/variant b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/variant old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/include/c++/7.3.0/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.so.1.2.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libatomic.so.1.2.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgcc_s.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgcc_s.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgcc_s.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgcc_s.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.so.1.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.so.1.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.spec b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libgomp.spec old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.so.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.so.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.so.0.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp.so.0.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp_nonshared.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp_nonshared.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp_nonshared.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libssp_nonshared.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so.6 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so.6 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so.6.0.24 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so.6.0.24 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++fs.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++fs.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++fs.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libstdc++fs.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libsupc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libsupc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libsupc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/lib/libsupc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/COPIED b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/COPIED old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/riscv32-linux-musl/sys-include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/Scrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/Scrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/crt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/crt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/ld-musl-riscv32-sf.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/ld-musl-riscv32-sf.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libc.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libc.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libcrypt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libcrypt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libdl.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libdl.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libm.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libpthread.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libpthread.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libresolv.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libresolv.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/librt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/librt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libutil.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libutil.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libxnet.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/libxnet.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/rcrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl/sysroot/usr/lib/rcrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-addr2line b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-addr2line old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-as b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-as old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-c++ b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-c++ old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-c++filt b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-c++filt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-cpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-cpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-elfedit b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-elfedit old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-g++ b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-g++ old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-7.3.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-7.3.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcc-ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcov b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcov old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcov-dump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcov-dump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcov-tool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gcov-tool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gdb b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gdb old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gdb-add-index b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gdb-add-index old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gprof b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-gprof old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ld b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ld old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ld.bfd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ld.bfd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-objcopy b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-objcopy old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-objdump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-objdump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-readelf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-readelf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-size b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-size old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-strings b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-strings old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-strip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/bin/riscv32-linux-musl-strip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/include/gdb/jit-reader.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/include/gdb/jit-reader.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/bfd-plugins/libdep.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/bfd-plugins/libdep.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/cc1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/cc1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/collect2 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/collect2 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.so.0.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/lto1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/libexec/gcc/riscv32-linux-musl/7.3.0/lto1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/as b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/as old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ld b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ld old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ld.bfd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ld.bfd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/objcopy b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/objcopy old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/objdump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/objdump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/readelf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/readelf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/strip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/bin/strip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/atomic b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/atomic old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/strstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/backward/strstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/move.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/move.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cassert b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cassert old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cerrno b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cerrno old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ciso646 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ciso646 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/clocale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/clocale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/codecvt b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/codecvt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/condition_variable b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/condition_variable old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/csetjmp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/csetjmp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/csignal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/csignal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdalign b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdalign old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstddef b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstddef old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstring b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cstring old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cuchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cuchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/debug/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/exception b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/exception old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/experimental/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 2616bd0ca1484f0a6d2a1d061e56d887e911ced2..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp deleted file mode 100755 index ebe262465b931dddcbecd9b436b7dbebcc857e5b..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +++ /dev/null @@ -1,56 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(const_reference r_val, size_type pos, true_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - p->m_hash = ranged_hash_fn_base::operator()((key_const_reference)(PB_DS_V2F(p->m_value))).second; - - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 74b6576c64e8027c7e9d4370404ebdd6fed22d24..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,53 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status)k; - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp deleted file mode 100755 index 12ef330e303899fd42d481108fa112f3e8e00c82..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +++ /dev/null @@ -1,54 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - true_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status); - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_hash = ranged_probe_fn_base::operator()(PB_DS_V2F(r_val)).second; - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp deleted file mode 100755 index ac028e2c1681d2bc3ada15284168f5a4647aedc3..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp +++ /dev/null @@ -1,152 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - * Contains an implementation class for left_child_next_sibling_heap_. - */ - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::node_allocator -PB_DS_CLASS_C_DEC::s_node_allocator; - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::no_throw_copies_t -PB_DS_CLASS_C_DEC::s_no_throw_copies_ind; - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap() : - m_p_root(0), - m_size(0) -{ - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap(const Cmp_Fn& r_cmp_fn) : - Cmp_Fn(r_cmp_fn), - m_p_root(0), - m_size(0) -{ - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other) -: Cmp_Fn(other), m_p_root(0), m_size(0) -{ - m_size = other.m_size; - PB_DS_ASSERT_VALID(other) - m_p_root = recursive_copy_node(other.m_p_root); - m_size = other.m_size; - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -swap(PB_DS_CLASS_C_DEC& other) -{ - PB_DS_ASSERT_VALID((*this)) - PB_DS_ASSERT_VALID(other) - value_swap(other); - std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other); - PB_DS_ASSERT_VALID((*this)) - PB_DS_ASSERT_VALID(other) -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -value_swap(PB_DS_CLASS_C_DEC& other) -{ - std::swap(m_p_root, other.m_p_root); - std::swap(m_size, other.m_size); -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -~left_child_next_sibling_heap() -{ - clear(); -} - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::node_pointer -PB_DS_CLASS_C_DEC:: -recursive_copy_node(node_const_pointer p_nd) -{ - if (p_nd == 0) - return (0); - - node_pointer p_ret = s_node_allocator.allocate(1); - - __try - { - new (p_ret) node(*p_nd); - } - __catch(...) - { - s_node_allocator.deallocate(p_ret, 1); - __throw_exception_again; - } - - p_ret->m_p_l_child = p_ret->m_p_next_sibling = - p_ret->m_p_prev_or_parent = 0; - - __try - { - p_ret->m_p_l_child = recursive_copy_node(p_nd->m_p_l_child); - p_ret->m_p_next_sibling = recursive_copy_node(p_nd->m_p_next_sibling); - } - __catch(...) - { - clear_imp(p_ret); - __throw_exception_again; - } - - if (p_ret->m_p_l_child != 0) - p_ret->m_p_l_child->m_p_prev_or_parent = p_ret; - - if (p_ret->m_p_next_sibling != 0) - p_ret->m_p_next_sibling->m_p_prev_or_parent = - p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd ? p_ret : 0; - - return p_ret; -} - diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp deleted file mode 100755 index fc4802d9741cd712b41855c4f4bedeb52a91e8b8..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp +++ /dev/null @@ -1,211 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_max_collision_check_resize_trigger_imp.hpp - * Contains a resize trigger implementation. - */ - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -cc_hash_max_collision_check_resize_trigger(float load) : - m_load(load), - m_size(0), - m_num_col(0), - m_max_col(0), - m_resize_needed(false) -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_start() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_collision() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_end() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_start() -{ m_num_col = 0; } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_collision() -{ ++m_num_col; } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_end() -{ calc_resize_needed(); } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_start() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_collision() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_end() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_inserted(size_type) -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erased(size_type) -{ m_resize_needed = true; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_cleared() -{ m_resize_needed = false; } - -PB_DS_CLASS_T_DEC -inline bool -PB_DS_CLASS_C_DEC:: -is_resize_needed() const -{ return m_resize_needed; } - -PB_DS_CLASS_T_DEC -inline bool -PB_DS_CLASS_C_DEC:: -is_grow_needed(size_type /*size*/, size_type /*num_used_e*/) const -{ return m_num_col >= m_max_col; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_resized(size_type new_size) -{ - m_size = new_size; - -#ifdef PB_DS_HT_MAP_RESIZE_TRACE_ - std::cerr << "chmccrt::notify_resized " - << static_cast(new_size) << std::endl; -#endif - - calc_max_num_coll(); - calc_resize_needed(); - m_num_col = 0; -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -calc_max_num_coll() -{ - // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) } - const double ln_arg = 2 * m_size * std::log(double(m_size)); - m_max_col = size_type(std::ceil(std::sqrt(2 * m_load * std::log(ln_arg)))); - -#ifdef PB_DS_HT_MAP_RESIZE_TRACE_ - std::cerr << "chmccrt::calc_max_num_coll " - << static_cast(m_size) << " " - << static_cast(m_max_col) << std::endl; -#endif -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_externally_resized(size_type new_size) -{ notify_resized(new_size); } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -swap(PB_DS_CLASS_C_DEC& other) -{ - std::swap(m_load, other.m_load); - std::swap(m_size, other.m_size); - std::swap(m_num_col, other.m_num_col); - std::swap(m_max_col, other.m_max_col); - std::swap(m_resize_needed, other.m_resize_needed); -} - -PB_DS_CLASS_T_DEC -inline float -PB_DS_CLASS_C_DEC:: -get_load() const -{ - PB_DS_STATIC_ASSERT(access, external_load_access); - return m_load; -} - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -calc_resize_needed() -{ m_resize_needed = m_resize_needed || m_num_col >= m_max_col; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -set_load(float load) -{ - PB_DS_STATIC_ASSERT(access, external_load_access); - m_load = load; - calc_max_num_coll(); - calc_resize_needed(); -} - diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/rope b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/rope old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/slist b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/slist old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/fstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/fstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/future b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/future old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/initializer_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/initializer_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iomanip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iomanip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ios b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ios old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iosfwd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iosfwd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/istream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/istream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/limits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/limits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/locale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/locale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/new b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/new old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/profile/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/queue b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/queue old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/shared_mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/shared_mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/sstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/sstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/stack b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/stack old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/stdexcept b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/stdexcept old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/streambuf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/streambuf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/thread b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/thread old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/typeindex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/typeindex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/typeinfo b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/typeinfo old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/valarray b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/valarray old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/variant b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/variant old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/include/c++/7.3.0/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.so.1.2.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libatomic.so.1.2.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgcc_s.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgcc_s.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgcc_s.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgcc_s.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.so.1.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.so.1.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.spec b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libgomp.spec old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.so.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.so.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.so.0.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp.so.0.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp_nonshared.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp_nonshared.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp_nonshared.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libssp_nonshared.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so.6 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so.6 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so.6.0.24 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so.6.0.24 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++fs.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++fs.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++fs.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libstdc++fs.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libsupc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libsupc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libsupc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/lib/libsupc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/COPIED b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/COPIED old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/riscv32-linux-musl/sys-include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/Scrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/Scrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/crt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/crt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/ld-musl-riscv32-sp.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/ld-musl-riscv32-sp.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libc.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libc.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libcrypt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libcrypt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libdl.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libdl.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libm.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libpthread.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libpthread.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libresolv.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libresolv.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/librt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/librt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libutil.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libutil.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libxnet.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/libxnet.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/rcrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp/sysroot/usr/lib/rcrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-addr2line.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-addr2line.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ar.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ar.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-as.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-as.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-c++.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-c++.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-c++filt.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-c++filt.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-cpp.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-cpp.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-elfedit.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-elfedit.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-g++.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-g++.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-7.3.0.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-7.3.0.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-ar.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-ar.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-nm.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-nm.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-ranlib.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc-ranlib.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcov-dump.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcov-dump.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcov-tool.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcov-tool.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcov.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcov.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gdb-add-index b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gdb-add-index old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gdb.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gdb.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gprof.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gprof.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ld.bfd.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ld.bfd.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ld.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ld.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-nm.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-nm.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-objcopy.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-objcopy.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-objdump.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-objdump.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ranlib.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-ranlib.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-readelf.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-readelf.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-size.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-size.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-strings.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-strings.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-strip.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-strip.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/include/gdb/jit-reader.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/include/gdb/jit-reader.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/bfd-plugins/libdep.dll b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/bfd-plugins/libdep.dll old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/collect2.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/collect2.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin-0.dll b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin-0.dll old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.dll.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.dll.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto1.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto1.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ar.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ar.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/as b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/as old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/as.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/as.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld.bfd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld.bfd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld.bfd.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld.bfd.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ld.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/nm.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/nm.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objcopy b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objcopy old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objcopy.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objcopy.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objdump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objdump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objdump.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/objdump.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ranlib.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/ranlib.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/readelf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/readelf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/readelf.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/readelf.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/strip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/strip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/strip.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/bin/strip.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/atomic b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/atomic old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/strstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/backward/strstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/move.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/move.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cassert b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cassert old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cerrno b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cerrno old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ciso646 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ciso646 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/clocale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/clocale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/codecvt b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/codecvt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/condition_variable b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/condition_variable old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/csetjmp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/csetjmp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/csignal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/csignal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdalign b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdalign old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstddef b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstddef old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstring b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cstring old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cuchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cuchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/debug/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/exception b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/exception old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/experimental/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 2616bd0ca1484f0a6d2a1d061e56d887e911ced2..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp deleted file mode 100755 index ebe262465b931dddcbecd9b436b7dbebcc857e5b..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +++ /dev/null @@ -1,56 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(const_reference r_val, size_type pos, true_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - p->m_hash = ranged_hash_fn_base::operator()((key_const_reference)(PB_DS_V2F(p->m_value))).second; - - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 74b6576c64e8027c7e9d4370404ebdd6fed22d24..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,53 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status)k; - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp deleted file mode 100755 index 12ef330e303899fd42d481108fa112f3e8e00c82..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +++ /dev/null @@ -1,54 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - true_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status); - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_hash = ranged_probe_fn_base::operator()(PB_DS_V2F(r_val)).second; - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp deleted file mode 100755 index ac028e2c1681d2bc3ada15284168f5a4647aedc3..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp +++ /dev/null @@ -1,152 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - * Contains an implementation class for left_child_next_sibling_heap_. - */ - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::node_allocator -PB_DS_CLASS_C_DEC::s_node_allocator; - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::no_throw_copies_t -PB_DS_CLASS_C_DEC::s_no_throw_copies_ind; - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap() : - m_p_root(0), - m_size(0) -{ - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap(const Cmp_Fn& r_cmp_fn) : - Cmp_Fn(r_cmp_fn), - m_p_root(0), - m_size(0) -{ - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other) -: Cmp_Fn(other), m_p_root(0), m_size(0) -{ - m_size = other.m_size; - PB_DS_ASSERT_VALID(other) - m_p_root = recursive_copy_node(other.m_p_root); - m_size = other.m_size; - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -swap(PB_DS_CLASS_C_DEC& other) -{ - PB_DS_ASSERT_VALID((*this)) - PB_DS_ASSERT_VALID(other) - value_swap(other); - std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other); - PB_DS_ASSERT_VALID((*this)) - PB_DS_ASSERT_VALID(other) -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -value_swap(PB_DS_CLASS_C_DEC& other) -{ - std::swap(m_p_root, other.m_p_root); - std::swap(m_size, other.m_size); -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -~left_child_next_sibling_heap() -{ - clear(); -} - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::node_pointer -PB_DS_CLASS_C_DEC:: -recursive_copy_node(node_const_pointer p_nd) -{ - if (p_nd == 0) - return (0); - - node_pointer p_ret = s_node_allocator.allocate(1); - - __try - { - new (p_ret) node(*p_nd); - } - __catch(...) - { - s_node_allocator.deallocate(p_ret, 1); - __throw_exception_again; - } - - p_ret->m_p_l_child = p_ret->m_p_next_sibling = - p_ret->m_p_prev_or_parent = 0; - - __try - { - p_ret->m_p_l_child = recursive_copy_node(p_nd->m_p_l_child); - p_ret->m_p_next_sibling = recursive_copy_node(p_nd->m_p_next_sibling); - } - __catch(...) - { - clear_imp(p_ret); - __throw_exception_again; - } - - if (p_ret->m_p_l_child != 0) - p_ret->m_p_l_child->m_p_prev_or_parent = p_ret; - - if (p_ret->m_p_next_sibling != 0) - p_ret->m_p_next_sibling->m_p_prev_or_parent = - p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd ? p_ret : 0; - - return p_ret; -} - diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp deleted file mode 100755 index 76a5726533873b1ddb8ab5d10939d3828d416ad3..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp +++ /dev/null @@ -1,286 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp - * Contains an implementation class for a basic heap. - */ - -#ifndef PB_DS_LEFT_CHILD_NEXT_SIBLING_HEAP_HPP -#define PB_DS_LEFT_CHILD_NEXT_SIBLING_HEAP_HPP - -/* - * Based on CLRS. - */ - -#include -#include -#include -#include -#include -#include -#ifdef PB_DS_LC_NS_HEAP_TRACE_ -#include -#endif -#include - -namespace __gnu_pbds -{ - namespace detail - { -#ifdef _GLIBCXX_DEBUG -#define PB_DS_CLASS_T_DEC \ - template - -#define PB_DS_CLASS_C_DEC \ - left_child_next_sibling_heap -#else -#define PB_DS_CLASS_T_DEC \ - template - -#define PB_DS_CLASS_C_DEC \ - left_child_next_sibling_heap -#endif - - /// Base class for a basic heap. - template -#else - > -#endif - class left_child_next_sibling_heap : public Cmp_Fn - { - protected: - typedef - typename _Alloc::template rebind< - left_child_next_sibling_heap_node_ >::other - node_allocator; - - typedef typename node_allocator::value_type node; - typedef typename node_allocator::pointer node_pointer; - typedef typename node_allocator::const_pointer node_const_pointer; - typedef Node_Metadata node_metadata; - typedef std::pair< node_pointer, node_pointer> node_pointer_pair; - - private: - typedef cond_dealtor< node, _Alloc> cond_dealtor_t; - - enum - { - simple_value = is_simple::value - }; - - typedef integral_constant no_throw_copies_t; - typedef typename _Alloc::template rebind __rebind_v; - - public: - typedef typename _Alloc::size_type size_type; - typedef typename _Alloc::difference_type difference_type; - typedef Value_Type value_type; - - typedef typename __rebind_v::other::pointer pointer; - typedef typename __rebind_v::other::const_pointer const_pointer; - typedef typename __rebind_v::other::reference reference; - typedef typename __rebind_v::other::const_reference const_reference; - - typedef left_child_next_sibling_heap_node_point_const_iterator_ - point_const_iterator; - - typedef point_const_iterator point_iterator; - - typedef left_child_next_sibling_heap_const_iterator_ - const_iterator; - - typedef const_iterator iterator; - typedef Cmp_Fn cmp_fn; - typedef _Alloc allocator_type; - - left_child_next_sibling_heap(); - left_child_next_sibling_heap(const Cmp_Fn&); - left_child_next_sibling_heap(const left_child_next_sibling_heap&); - - void - swap(PB_DS_CLASS_C_DEC&); - - ~left_child_next_sibling_heap(); - - inline bool - empty() const; - - inline size_type - size() const; - - inline size_type - max_size() const; - - Cmp_Fn& - get_cmp_fn(); - - const Cmp_Fn& - get_cmp_fn() const; - - inline iterator - begin(); - - inline const_iterator - begin() const; - - inline iterator - end(); - - inline const_iterator - end() const; - - void - clear(); - -#ifdef PB_DS_LC_NS_HEAP_TRACE_ - void - trace() const; -#endif - - protected: - inline node_pointer - get_new_node_for_insert(const_reference); - - inline static void - make_child_of(node_pointer, node_pointer); - - void - value_swap(left_child_next_sibling_heap&); - - inline static node_pointer - parent(node_pointer); - - inline void - swap_with_parent(node_pointer, node_pointer); - - void - bubble_to_top(node_pointer); - - inline void - actual_erase_node(node_pointer); - - void - clear_imp(node_pointer); - - void - to_linked_list(); - - template - node_pointer - prune(Pred); - -#ifdef _GLIBCXX_DEBUG - void - assert_valid(const char*, int) const; - - void - assert_node_consistent(node_const_pointer, bool, const char*, int) const; - - static size_type - size_under_node(node_const_pointer); - - static size_type - degree(node_const_pointer); -#endif - -#ifdef PB_DS_LC_NS_HEAP_TRACE_ - static void - trace_node(node_const_pointer, size_type); -#endif - - private: -#ifdef _GLIBCXX_DEBUG - void - assert_iterators(const char*, int) const; - - void - assert_size(const char*, int) const; - - static size_type - size_from_node(node_const_pointer); -#endif - - node_pointer - recursive_copy_node(node_const_pointer); - - inline node_pointer - get_new_node_for_insert(const_reference, false_type); - - inline node_pointer - get_new_node_for_insert(const_reference, true_type); - -#ifdef PB_DS_LC_NS_HEAP_TRACE_ - template - static void - trace_node_metadata(node_const_pointer, type_to_type); - - static void - trace_node_metadata(node_const_pointer, type_to_type); -#endif - - static node_allocator s_node_allocator; - static no_throw_copies_t s_no_throw_copies_ind; - - protected: - node_pointer m_p_root; - size_type m_size; - }; - -#include -#include -#include -#include -#include -#include -#include -#include - -#undef PB_DS_CLASS_C_DEC -#undef PB_DS_CLASS_T_DEC - - } // namespace detail -} // namespace __gnu_pbds - -#endif diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp deleted file mode 100755 index fc4802d9741cd712b41855c4f4bedeb52a91e8b8..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp +++ /dev/null @@ -1,211 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_max_collision_check_resize_trigger_imp.hpp - * Contains a resize trigger implementation. - */ - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -cc_hash_max_collision_check_resize_trigger(float load) : - m_load(load), - m_size(0), - m_num_col(0), - m_max_col(0), - m_resize_needed(false) -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_start() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_collision() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_end() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_start() -{ m_num_col = 0; } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_collision() -{ ++m_num_col; } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_end() -{ calc_resize_needed(); } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_start() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_collision() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_end() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_inserted(size_type) -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erased(size_type) -{ m_resize_needed = true; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_cleared() -{ m_resize_needed = false; } - -PB_DS_CLASS_T_DEC -inline bool -PB_DS_CLASS_C_DEC:: -is_resize_needed() const -{ return m_resize_needed; } - -PB_DS_CLASS_T_DEC -inline bool -PB_DS_CLASS_C_DEC:: -is_grow_needed(size_type /*size*/, size_type /*num_used_e*/) const -{ return m_num_col >= m_max_col; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_resized(size_type new_size) -{ - m_size = new_size; - -#ifdef PB_DS_HT_MAP_RESIZE_TRACE_ - std::cerr << "chmccrt::notify_resized " - << static_cast(new_size) << std::endl; -#endif - - calc_max_num_coll(); - calc_resize_needed(); - m_num_col = 0; -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -calc_max_num_coll() -{ - // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) } - const double ln_arg = 2 * m_size * std::log(double(m_size)); - m_max_col = size_type(std::ceil(std::sqrt(2 * m_load * std::log(ln_arg)))); - -#ifdef PB_DS_HT_MAP_RESIZE_TRACE_ - std::cerr << "chmccrt::calc_max_num_coll " - << static_cast(m_size) << " " - << static_cast(m_max_col) << std::endl; -#endif -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_externally_resized(size_type new_size) -{ notify_resized(new_size); } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -swap(PB_DS_CLASS_C_DEC& other) -{ - std::swap(m_load, other.m_load); - std::swap(m_size, other.m_size); - std::swap(m_num_col, other.m_num_col); - std::swap(m_max_col, other.m_max_col); - std::swap(m_resize_needed, other.m_resize_needed); -} - -PB_DS_CLASS_T_DEC -inline float -PB_DS_CLASS_C_DEC:: -get_load() const -{ - PB_DS_STATIC_ASSERT(access, external_load_access); - return m_load; -} - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -calc_resize_needed() -{ m_resize_needed = m_resize_needed || m_num_col >= m_max_col; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -set_load(float load) -{ - PB_DS_STATIC_ASSERT(access, external_load_access); - m_load = load; - calc_max_num_coll(); - calc_resize_needed(); -} - diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/rope b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/rope old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/slist b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/slist old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/fstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/fstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/future b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/future old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/initializer_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/initializer_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iomanip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iomanip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ios b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ios old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iosfwd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iosfwd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/istream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/istream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/limits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/limits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/locale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/locale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/new b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/new old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/profile/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/queue b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/queue old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/shared_mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/shared_mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/sstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/sstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/stack b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/stack old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/stdexcept b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/stdexcept old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/streambuf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/streambuf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/thread b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/thread old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/typeindex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/typeindex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/typeinfo b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/typeinfo old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/valarray b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/valarray old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/variant b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/variant old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/include/c++/7.3.0/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.so.1.2.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libatomic.so.1.2.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgcc_s.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgcc_s.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgcc_s.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgcc_s.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.so.1.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.so.1.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.spec b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libgomp.spec old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.so.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.so.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.so.0.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp.so.0.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp_nonshared.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp_nonshared.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp_nonshared.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libssp_nonshared.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so.6 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so.6 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++fs.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++fs.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++fs.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libstdc++fs.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libsupc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libsupc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libsupc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/lib/libsupc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/COPIED b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/COPIED old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/riscv32-linux-musl/sys-include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/Scrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/Scrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/crt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/crt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/ld-musl-riscv32-sp.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/ld-musl-riscv32-sp.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libc.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libc.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libcrypt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libcrypt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libdl.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libdl.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libm.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libpthread.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libpthread.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libresolv.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libresolv.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/librt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/librt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libutil.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libutil.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libxnet.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/libxnet.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/rcrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_fp_win/sysroot/usr/lib/rcrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-addr2line.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-addr2line.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ar.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ar.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-as.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-as.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-c++.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-c++.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-c++filt.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-c++filt.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-cpp.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-cpp.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-elfedit.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-elfedit.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-g++.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-g++.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-7.3.0.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-7.3.0.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-ar.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-ar.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-nm.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-nm.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-ranlib.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc-ranlib.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcov-dump.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcov-dump.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcov-tool.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcov-tool.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcov.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcov.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gdb-add-index b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gdb-add-index old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gdb.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gdb.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gprof.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-gprof.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ld.bfd.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ld.bfd.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ld.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ld.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-nm.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-nm.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-objcopy.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-objcopy.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-objdump.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-objdump.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ranlib.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-ranlib.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-readelf.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-readelf.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-size.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-size.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-strings.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-strings.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-strip.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/bin/riscv32-linux-musl-strip.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/include/gdb/jit-reader.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/include/gdb/jit-reader.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/bfd-plugins/libdep.dll b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/bfd-plugins/libdep.dll old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbegin.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtbeginT.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtend.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtendS.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include-fixed/syslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/gcov.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/omp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/openacc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/riscv_intrinsic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/ssp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/ssp/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdatomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdfix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint-gcc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/unwind.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/include/varargs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/gsyslimits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/README old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/macro_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders.conf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano-nopic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano-nopic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nano.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-nopic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-origin-noop.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc-origin-noop.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcc_eh.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/lib/gcc/riscv32-linux-musl/7.3.0/libgcov.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/cc1plus.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/collect2.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/collect2.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixinc.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/fixincl.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkheaders old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/install-tools/mkinstalldirs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin-0.dll b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin-0.dll old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.dll.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.dll.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/liblto_plugin.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto-wrapper.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto1.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/libexec/gcc/riscv32-linux-musl/7.3.0/lto1.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ar.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ar.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/as b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/as old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/as.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/as.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld.bfd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld.bfd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld.bfd.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld.bfd.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ld.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/nm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/nm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/nm.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/nm.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objcopy b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objcopy old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objcopy.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objcopy.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objdump b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objdump old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objdump.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/objdump.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ranlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ranlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ranlib.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/ranlib.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/readelf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/readelf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/readelf.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/readelf.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/strip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/strip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/strip.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/bin/strip.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/atomic b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/atomic old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/auto_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/backward_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/binders.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_fun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/strstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/backward/strstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocated_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_futex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/atomic_lockfree_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_ios.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/basic_string.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/boost_concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++0x_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/c++14_warning.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/codecvt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/concept_check.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/cpp_type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_forced.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/cxxabi_init_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/deque.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/enable_special_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/exception_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/forward_list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/fstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/functexcept.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/gslice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/hash_bytes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/indirect_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/invoke.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ios_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/istream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/list.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_classes.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_conv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/locale_facets_nonio.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/localefwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/mask_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/memoryfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/move.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/move.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/nested_exception.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/node_handle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ostream_insert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/parse_numbers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/postypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/predefined_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/ptr_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/quoted_string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/range_access.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/refwrap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_automaton.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_compiler.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_error.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_executor.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/regex_scanner.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_atomic.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/shared_ptr_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/slice_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/specfun.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/sstream.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_abs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/std_mutex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_bvector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_construct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_deque.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_function.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_heap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_funcs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_iterator_base_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_numeric.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_pair.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_raw_storage_iter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_relops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_stack.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tempbuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_tree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_uninitialized.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stl_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stream_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/streambuf_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/stringfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/uniform_int_dist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/unique_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/uses_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_after.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_array.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/valarray_before.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bits/vector.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cassert b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cassert old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cerrno b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cerrno old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ciso646 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ciso646 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/clocale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/clocale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/codecvt b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/codecvt old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/condition_variable b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/condition_variable old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/csetjmp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/csetjmp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/csignal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/csignal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdalign b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdalign old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstddef b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstddef old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstring b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cstring old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cuchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cuchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/cxxabi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/assertions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/debug.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/formatter.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/helper_functions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/macros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_local_iterator.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_sequence.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/safe_unordered_container.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/stl_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/debug/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/decimal/decimal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/exception b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/exception old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/any b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/any old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/erase_if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_ops.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/fs_path.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/lfts_config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/bits/string_view.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/chrono old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/filesystem old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/memory_resource old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/propagate_const old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/source_location old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/experimental/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/aligned_buffer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/alloc_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/array_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/atomicity.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/bitmap_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/cast.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/codecvt_specializations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/concurrence.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/debug_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/enc_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/extptr_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/hash_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/malloc_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/mt_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/new_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/numeric_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/assoc_container.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/bin_search_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/point_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/bin_search_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_cmp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/entry_pred.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binary_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/binomial_heap_base_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/binomial_heap_base_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/branch_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/null_node_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/branch_policy/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cc_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cmp_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 2616bd0ca1484f0a6d2a1d061e56d887e911ced2..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,55 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp deleted file mode 100755 index ebe262465b931dddcbecd9b436b7dbebcc857e5b..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +++ /dev/null @@ -1,56 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - * Contains implementations of cc_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(const_reference r_val, size_type pos, true_type) -{ - // Following lines might throw an exception. - entry_pointer p = get_entry(r_val, traits_base::s_no_throw_copies_indicator); - - // At this point no exceptions can be thrown. - p->m_p_next = m_entries[pos]; - p->m_hash = ranged_hash_fn_base::operator()((key_const_reference)(PB_DS_V2F(p->m_value))).second; - - m_entries[pos] = p; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(r_key);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/entry_list_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/size_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cc_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/cond_dealtor.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/container_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/debug_map_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/eq_by_less.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/eq_fn/hash_eq_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp deleted file mode 100755 index 74b6576c64e8027c7e9d4370404ebdd6fed22d24..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp +++ /dev/null @@ -1,53 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - false_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status)k; - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp deleted file mode 100755 index 12ef330e303899fd42d481108fa112f3e8e00c82..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp +++ /dev/null @@ -1,54 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp - * Contains implementations of gp_ht_map_'s constructors, destructor, - * and related functions. - */ - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -constructor_insert_new_imp(mapped_const_reference r_val, size_type pos, - true_type) -{ - _GLIBCXX_DEBUG_ASSERT(m_entries[pos].m_stat != valid_entry_status); - entry* const p_e = m_entries + pos; - new (&p_e->m_value) mapped_value_type(r_val); - p_e->m_hash = ranged_probe_fn_base::operator()(PB_DS_V2F(r_val)).second; - p_e->m_stat = valid_entry_status; - _GLIBCXX_DEBUG_ONLY(debug_base::insert_new(p_e->m_value.first);) -} diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/gp_ht_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/iterator_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/gp_hash_table_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mask_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/direct_mod_range_hashing_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/linear_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mask_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/mod_based_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/probe_fn_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/quadratic_probe_fn_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_range_hashing.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_hash_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/hash_fn/sample_ranged_probe_fn.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp deleted file mode 100755 index ac028e2c1681d2bc3ada15284168f5a4647aedc3..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp +++ /dev/null @@ -1,152 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp - * Contains an implementation class for left_child_next_sibling_heap_. - */ - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::node_allocator -PB_DS_CLASS_C_DEC::s_node_allocator; - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::no_throw_copies_t -PB_DS_CLASS_C_DEC::s_no_throw_copies_ind; - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap() : - m_p_root(0), - m_size(0) -{ - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap(const Cmp_Fn& r_cmp_fn) : - Cmp_Fn(r_cmp_fn), - m_p_root(0), - m_size(0) -{ - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -left_child_next_sibling_heap(const PB_DS_CLASS_C_DEC& other) -: Cmp_Fn(other), m_p_root(0), m_size(0) -{ - m_size = other.m_size; - PB_DS_ASSERT_VALID(other) - m_p_root = recursive_copy_node(other.m_p_root); - m_size = other.m_size; - PB_DS_ASSERT_VALID((*this)) -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -swap(PB_DS_CLASS_C_DEC& other) -{ - PB_DS_ASSERT_VALID((*this)) - PB_DS_ASSERT_VALID(other) - value_swap(other); - std::swap((Cmp_Fn& )(*this), (Cmp_Fn& )other); - PB_DS_ASSERT_VALID((*this)) - PB_DS_ASSERT_VALID(other) -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -value_swap(PB_DS_CLASS_C_DEC& other) -{ - std::swap(m_p_root, other.m_p_root); - std::swap(m_size, other.m_size); -} - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -~left_child_next_sibling_heap() -{ - clear(); -} - -PB_DS_CLASS_T_DEC -typename PB_DS_CLASS_C_DEC::node_pointer -PB_DS_CLASS_C_DEC:: -recursive_copy_node(node_const_pointer p_nd) -{ - if (p_nd == 0) - return (0); - - node_pointer p_ret = s_node_allocator.allocate(1); - - __try - { - new (p_ret) node(*p_nd); - } - __catch(...) - { - s_node_allocator.deallocate(p_ret, 1); - __throw_exception_again; - } - - p_ret->m_p_l_child = p_ret->m_p_next_sibling = - p_ret->m_p_prev_or_parent = 0; - - __try - { - p_ret->m_p_l_child = recursive_copy_node(p_nd->m_p_l_child); - p_ret->m_p_next_sibling = recursive_copy_node(p_nd->m_p_next_sibling); - } - __catch(...) - { - clear_imp(p_ret); - __throw_exception_again; - } - - if (p_ret->m_p_l_child != 0) - p_ret->m_p_l_child->m_p_prev_or_parent = p_ret; - - if (p_ret->m_p_next_sibling != 0) - p_ret->m_p_next_sibling->m_p_prev_or_parent = - p_nd->m_p_next_sibling->m_p_prev_or_parent == p_nd ? p_ret : 0; - - return p_ret; -} - diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp deleted file mode 100755 index 76a5726533873b1ddb8ab5d10939d3828d416ad3..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp +++ /dev/null @@ -1,286 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp - * Contains an implementation class for a basic heap. - */ - -#ifndef PB_DS_LEFT_CHILD_NEXT_SIBLING_HEAP_HPP -#define PB_DS_LEFT_CHILD_NEXT_SIBLING_HEAP_HPP - -/* - * Based on CLRS. - */ - -#include -#include -#include -#include -#include -#include -#ifdef PB_DS_LC_NS_HEAP_TRACE_ -#include -#endif -#include - -namespace __gnu_pbds -{ - namespace detail - { -#ifdef _GLIBCXX_DEBUG -#define PB_DS_CLASS_T_DEC \ - template - -#define PB_DS_CLASS_C_DEC \ - left_child_next_sibling_heap -#else -#define PB_DS_CLASS_T_DEC \ - template - -#define PB_DS_CLASS_C_DEC \ - left_child_next_sibling_heap -#endif - - /// Base class for a basic heap. - template -#else - > -#endif - class left_child_next_sibling_heap : public Cmp_Fn - { - protected: - typedef - typename _Alloc::template rebind< - left_child_next_sibling_heap_node_ >::other - node_allocator; - - typedef typename node_allocator::value_type node; - typedef typename node_allocator::pointer node_pointer; - typedef typename node_allocator::const_pointer node_const_pointer; - typedef Node_Metadata node_metadata; - typedef std::pair< node_pointer, node_pointer> node_pointer_pair; - - private: - typedef cond_dealtor< node, _Alloc> cond_dealtor_t; - - enum - { - simple_value = is_simple::value - }; - - typedef integral_constant no_throw_copies_t; - typedef typename _Alloc::template rebind __rebind_v; - - public: - typedef typename _Alloc::size_type size_type; - typedef typename _Alloc::difference_type difference_type; - typedef Value_Type value_type; - - typedef typename __rebind_v::other::pointer pointer; - typedef typename __rebind_v::other::const_pointer const_pointer; - typedef typename __rebind_v::other::reference reference; - typedef typename __rebind_v::other::const_reference const_reference; - - typedef left_child_next_sibling_heap_node_point_const_iterator_ - point_const_iterator; - - typedef point_const_iterator point_iterator; - - typedef left_child_next_sibling_heap_const_iterator_ - const_iterator; - - typedef const_iterator iterator; - typedef Cmp_Fn cmp_fn; - typedef _Alloc allocator_type; - - left_child_next_sibling_heap(); - left_child_next_sibling_heap(const Cmp_Fn&); - left_child_next_sibling_heap(const left_child_next_sibling_heap&); - - void - swap(PB_DS_CLASS_C_DEC&); - - ~left_child_next_sibling_heap(); - - inline bool - empty() const; - - inline size_type - size() const; - - inline size_type - max_size() const; - - Cmp_Fn& - get_cmp_fn(); - - const Cmp_Fn& - get_cmp_fn() const; - - inline iterator - begin(); - - inline const_iterator - begin() const; - - inline iterator - end(); - - inline const_iterator - end() const; - - void - clear(); - -#ifdef PB_DS_LC_NS_HEAP_TRACE_ - void - trace() const; -#endif - - protected: - inline node_pointer - get_new_node_for_insert(const_reference); - - inline static void - make_child_of(node_pointer, node_pointer); - - void - value_swap(left_child_next_sibling_heap&); - - inline static node_pointer - parent(node_pointer); - - inline void - swap_with_parent(node_pointer, node_pointer); - - void - bubble_to_top(node_pointer); - - inline void - actual_erase_node(node_pointer); - - void - clear_imp(node_pointer); - - void - to_linked_list(); - - template - node_pointer - prune(Pred); - -#ifdef _GLIBCXX_DEBUG - void - assert_valid(const char*, int) const; - - void - assert_node_consistent(node_const_pointer, bool, const char*, int) const; - - static size_type - size_under_node(node_const_pointer); - - static size_type - degree(node_const_pointer); -#endif - -#ifdef PB_DS_LC_NS_HEAP_TRACE_ - static void - trace_node(node_const_pointer, size_type); -#endif - - private: -#ifdef _GLIBCXX_DEBUG - void - assert_iterators(const char*, int) const; - - void - assert_size(const char*, int) const; - - static size_type - size_from_node(node_const_pointer); -#endif - - node_pointer - recursive_copy_node(node_const_pointer); - - inline node_pointer - get_new_node_for_insert(const_reference, false_type); - - inline node_pointer - get_new_node_for_insert(const_reference, true_type); - -#ifdef PB_DS_LC_NS_HEAP_TRACE_ - template - static void - trace_node_metadata(node_const_pointer, type_to_type); - - static void - trace_node_metadata(node_const_pointer, type_to_type); -#endif - - static node_allocator s_node_allocator; - static no_throw_copies_t s_no_throw_copies_ind; - - protected: - node_pointer m_p_root; - size_type m_size; - }; - -#include -#include -#include -#include -#include -#include -#include -#include - -#undef PB_DS_CLASS_C_DEC -#undef PB_DS_CLASS_T_DEC - - } // namespace detail -} // namespace __gnu_pbds - -#endif diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/constructor_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/entry_metadata_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/lu_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_map_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/lu_counter_metadata.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/list_update_policy/sample_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/node_iterators.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/ov_tree_map_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/ov_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/pairing_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pairing_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/insert_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/iterators_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/pat_trie_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/policy_access_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/r_erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/rotate_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/split_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/synth_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/pat_trie_/update_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/priority_queue_base_dispatch.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/rb_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rb_tree_map_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/rc_binomial_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/rc_binomial_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp deleted file mode 100755 index fc4802d9741cd712b41855c4f4bedeb52a91e8b8..0000000000000000000000000000000000000000 --- a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp +++ /dev/null @@ -1,211 +0,0 @@ -// -*- C++ -*- - -// Copyright (C) 2005-2017 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the terms -// of the GNU General Public License as published by the Free Software -// Foundation; either version 3, or (at your option) any later -// version. - -// This library is distributed in the hope that it will be useful, but -// WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// General Public License for more details. - -// Under Section 7 of GPL version 3, you are granted additional -// permissions described in the GCC Runtime Library Exception, version -// 3.1, as published by the Free Software Foundation. - -// You should have received a copy of the GNU General Public License and -// a copy of the GCC Runtime Library Exception along with this program; -// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -// . - -// Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL. - -// Permission to use, copy, modify, sell, and distribute this software -// is hereby granted without fee, provided that the above copyright -// notice appears in all copies, and that both that copyright notice -// and this permission notice appear in supporting documentation. None -// of the above authors, nor IBM Haifa Research Laboratories, make any -// representation about the suitability of this software for any -// purpose. It is provided "as is" without express or implied -// warranty. - -/** - * @file cc_hash_max_collision_check_resize_trigger_imp.hpp - * Contains a resize trigger implementation. - */ - -PB_DS_CLASS_T_DEC -PB_DS_CLASS_C_DEC:: -cc_hash_max_collision_check_resize_trigger(float load) : - m_load(load), - m_size(0), - m_num_col(0), - m_max_col(0), - m_resize_needed(false) -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_start() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_collision() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_find_search_end() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_start() -{ m_num_col = 0; } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_collision() -{ ++m_num_col; } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_insert_search_end() -{ calc_resize_needed(); } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_start() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_collision() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erase_search_end() -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_inserted(size_type) -{ } - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -notify_erased(size_type) -{ m_resize_needed = true; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_cleared() -{ m_resize_needed = false; } - -PB_DS_CLASS_T_DEC -inline bool -PB_DS_CLASS_C_DEC:: -is_resize_needed() const -{ return m_resize_needed; } - -PB_DS_CLASS_T_DEC -inline bool -PB_DS_CLASS_C_DEC:: -is_grow_needed(size_type /*size*/, size_type /*num_used_e*/) const -{ return m_num_col >= m_max_col; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_resized(size_type new_size) -{ - m_size = new_size; - -#ifdef PB_DS_HT_MAP_RESIZE_TRACE_ - std::cerr << "chmccrt::notify_resized " - << static_cast(new_size) << std::endl; -#endif - - calc_max_num_coll(); - calc_resize_needed(); - m_num_col = 0; -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -calc_max_num_coll() -{ - // max_col <-- \sqrt{2 load \ln( 2 m \ln( m ) ) } - const double ln_arg = 2 * m_size * std::log(double(m_size)); - m_max_col = size_type(std::ceil(std::sqrt(2 * m_load * std::log(ln_arg)))); - -#ifdef PB_DS_HT_MAP_RESIZE_TRACE_ - std::cerr << "chmccrt::calc_max_num_coll " - << static_cast(m_size) << " " - << static_cast(m_max_col) << std::endl; -#endif -} - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -notify_externally_resized(size_type new_size) -{ notify_resized(new_size); } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -swap(PB_DS_CLASS_C_DEC& other) -{ - std::swap(m_load, other.m_load); - std::swap(m_size, other.m_size); - std::swap(m_num_col, other.m_num_col); - std::swap(m_max_col, other.m_max_col); - std::swap(m_resize_needed, other.m_resize_needed); -} - -PB_DS_CLASS_T_DEC -inline float -PB_DS_CLASS_C_DEC:: -get_load() const -{ - PB_DS_STATIC_ASSERT(access, external_load_access); - return m_load; -} - -PB_DS_CLASS_T_DEC -inline void -PB_DS_CLASS_C_DEC:: -calc_resize_needed() -{ m_resize_needed = m_resize_needed || m_num_col >= m_max_col; } - -PB_DS_CLASS_T_DEC -void -PB_DS_CLASS_C_DEC:: -set_load(float load) -{ - PB_DS_STATIC_ASSERT(access, external_load_access); - m_load = load; - calc_max_num_coll(); - calc_resize_needed(); -} - diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_exponential_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_prime_size_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/hash_standard_resize_policy_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_resize_trigger.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/resize_policy/sample_size_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/info_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/node.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/splay_tree_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/splay_tree_/traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/standard_policies.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/constructors_destructor_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/debug_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/erase_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/find_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/insert_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/split_join_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/thin_heap_.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/thin_heap_/trace_fn_imps.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_policy/sample_tree_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/tree_trace_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/node_metadata_selector.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/order_statistics_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/prefix_search_node_update_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_access_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/sample_trie_node_update.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_policy_base.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/trie_policy/trie_string_access_traits_imp.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/type_utils.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/types_traits.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_const_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/detail/unordered_iterator/point_iterator.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/exception.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/hash_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/list_update_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/priority_queue.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tag_and_trait.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/tree_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pb_ds/trie_policy.hpp old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pod_char_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pointer.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/pool_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/rb_tree old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/rc_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/rope b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/rope old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/ropeimpl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/slist b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/slist old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/sso_string_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/stdio_sync_filebuf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/string_conversions.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/throw_allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/type_traits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/typelist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_fwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ext/vstring_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/fstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/fstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/future b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/future old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/initializer_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/initializer_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iomanip b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iomanip old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ios b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ios old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iosfwd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iosfwd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/istream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/istream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iterator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/iterator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/limits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/limits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/locale b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/locale old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/new b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/new old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/optional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/optional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ostream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ostream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algobase.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithm old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/algorithmfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/balanced_quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/basic_iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/checkers.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compatibility.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/compiletime_settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/equally_split.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/find_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/for_each_selectors.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/iterator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/list_partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/losertree.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiseq_selection.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_merge.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/multiway_mergesort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numeric old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/numericfwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/omp_loop_static.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/par_loop.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/parallel.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partial_sum.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/partition.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/queue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/quicksort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_number.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/random_shuffle.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/set_operations.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/settings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/sort.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/tags.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/unique_copy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/parallel/workstealing.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/deque b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/deque old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/forward_list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_algos.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_container_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hash_func.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_hashtable_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_slist.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_list_to_vector.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_map_to_unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_node.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_state.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_trace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_size.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/impl/profiler_vector_to_list.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/iterator_tracker.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/list b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/list old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/multimap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/multiset.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/ordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/profile/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/queue b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/queue old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/atomic_word.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/basic_file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++allocator.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++config.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/c++locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cpu_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_base.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/ctype_inline.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/cxxabi_tweaks.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/error_constants.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/extc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-default.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr-single.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/gthr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/messages_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/os_defines.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdc++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/stdtr1c++.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/bits/time_members.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/riscv32-linux-musl/ext/opt_random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/scoped_allocator old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/shared_mutex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/shared_mutex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/sstream b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/sstream old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/stack b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/stack old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/stdexcept b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/stdexcept old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/streambuf b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/streambuf old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/string b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/string old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/string_view b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/string_view old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/system_error b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/system_error old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/thread b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/thread old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/array b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/array old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/bessel_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/beta_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ccomplex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfenv old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cfloat old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cinttypes old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/climits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/climits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdarg old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdbool old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdint old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cstdlib old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctgmath old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctime old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwchar old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/cwctype old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/ell_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/exp_integral.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/functional_hash.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/gamma.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hashtable_policy.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/hypergeometric.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/legendre_function.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/memory b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/memory old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/modified_bessel_func.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_hermite.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/poly_laguerre.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/random.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/regex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/regex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/riemann_zeta.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/shared_ptr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/special_function_util.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_map.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/unordered_set.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr1/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/bool_set.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/dynamic_bitset.tcc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/ratio old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tr2/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tuple b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/tuple old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/type_traits b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/type_traits old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/typeindex b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/typeindex old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/typeinfo b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/typeinfo old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/unordered_map b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/unordered_map old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/unordered_set b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/unordered_set old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/utility b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/utility old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/valarray b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/valarray old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/variant b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/variant old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/vector b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/include/c++/7.3.0/vector old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32briscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf32lriscv_ilp32f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64briscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.x old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xbn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xd old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xde old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xdwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xn old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xr old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xs old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsc old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsce old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xse old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xsw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xswe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xu old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xw old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/ldscripts/elf64lriscv_lp64f.xwe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.so.1.2.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libatomic.so.1.2.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgcc_s.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgcc_s.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgcc_s.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgcc_s.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.so.1.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.so.1.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.spec b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libgomp.spec old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.so.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.so.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.so.0.0.0 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp.so.0.0.0 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp_nonshared.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp_nonshared.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp_nonshared.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libssp_nonshared.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so.6 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so.6 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++.so.6.0.24-gdb.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++fs.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++fs.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++fs.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libstdc++fs.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libsupc++.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libsupc++.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libsupc++.la b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/lib/libsupc++.la old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/COPIED b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/COPIED old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/riscv32-linux-musl/sys-include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/aio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/aio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/alloca.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/alloca.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/ftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/ftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/inet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/inet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/nameser.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/nameser.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/nameser_compat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/nameser_compat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/telnet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/telnet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/tftp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/arpa/tftp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/assert.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/assert.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/alltypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/alltypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/hwcap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/hwcap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ioctl_fix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ioctl_fix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ipcstat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ipcstat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/posix.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/posix.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/bits/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/byteswap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/byteswap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/complex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/complex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/cpio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/cpio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/crypt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/crypt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/dirent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/dirent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/dlfcn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/dlfcn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/elf.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/elf.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/endian.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/endian.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/err.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/err.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/features.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/features.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fenv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fenv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/float.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/float.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fmtmsg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fmtmsg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fnmatch.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/fnmatch.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ftw.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ftw.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/getopt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/getopt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/glob.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/glob.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/grp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/grp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/iconv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/iconv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ifaddrs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ifaddrs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/inttypes.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/inttypes.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/iso646.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/iso646.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/langinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/langinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/lastlog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/lastlog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/libgen.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/libgen.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/libintl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/libintl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/limits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/limits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/link.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/link.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/locale.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/locale.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/malloc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/malloc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/math.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/math.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/memory.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/memory.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/mntent.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/mntent.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/monetary.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/monetary.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/mqueue.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/mqueue.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/ethernet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/ethernet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/if.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/if.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/if_arp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/if_arp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/route.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/net/route.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netdb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netdb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/icmp6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/icmp6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/if_ether.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/if_ether.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/igmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/igmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/in.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/in.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/in_systm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/in_systm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ip.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ip.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ip6.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ip6.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ip_icmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/ip_icmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/tcp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/tcp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/udp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netinet/udp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netpacket/packet.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/netpacket/packet.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/nl_types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/nl_types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/paths.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/paths.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/pthread.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/pthread.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/pty.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/pty.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/pwd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/pwd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/regex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/regex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/resolv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/resolv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sched.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sched.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/scsi/scsi.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/scsi/scsi.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/scsi/scsi_ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/scsi/scsi_ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/scsi/sg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/scsi/sg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/search.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/search.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/semaphore.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/semaphore.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/setjmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/setjmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/shadow.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/shadow.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/spawn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/spawn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdalign.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdalign.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdarg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdarg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdbool.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdbool.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdc-predef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdc-predef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stddef.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stddef.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdint.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdint.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdio_ext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdio_ext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdlib.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdlib.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdnoreturn.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stdnoreturn.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/string.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/string.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/strings.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/strings.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/acct.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/acct.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/auxv.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/auxv.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/cachectl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/cachectl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/dir.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/dir.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/epoll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/epoll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/errno.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/errno.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/eventfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/eventfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/fanotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/fanotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/fcntl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/fcntl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/file.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/file.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/fsuid.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/fsuid.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/inotify.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/inotify.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/io.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/io.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ioctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ioctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ipc.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ipc.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/kd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/kd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/klog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/klog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/membarrier.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/membarrier.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/mman.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/mman.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/mount.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/mount.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/msg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/msg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/mtio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/mtio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/param.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/param.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/personality.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/personality.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/poll.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/poll.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/prctl.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/prctl.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/procfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/procfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ptrace.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ptrace.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/quota.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/quota.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/random.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/random.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/reboot.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/reboot.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/reg.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/reg.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/resource.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/resource.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/select.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/select.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sem.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sem.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sendfile.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sendfile.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/shm.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/shm.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/signal.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/signal.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/signalfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/signalfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/socket.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/socket.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/soundcard.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/soundcard.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/stat.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/stat.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/statfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/statfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/statvfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/statvfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/stropts.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/stropts.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/swap.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/swap.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sysinfo.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sysinfo.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sysmacros.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/sysmacros.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/timeb.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/timeb.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/timerfd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/timerfd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/times.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/times.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/timex.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/timex.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ttydefaults.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ttydefaults.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/types.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/types.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/uio.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/uio.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/un.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/un.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/user.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/user.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/utsname.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/utsname.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/vfs.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/vfs.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/vt.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/vt.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/xattr.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sys/xattr.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/syscall.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/syscall.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sysexits.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/sysexits.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/syslog.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/syslog.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/tar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/tar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/termios.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/termios.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/tgmath.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/tgmath.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/threads.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/threads.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/time.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/time.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/uchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/uchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ucontext.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ucontext.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ulimit.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/ulimit.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/unistd.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/unistd.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/utime.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/utime.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/utmp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/utmp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/utmpx.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/utmpx.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/values.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/values.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wait.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wait.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wchar.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wchar.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wctype.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wctype.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wordexp.h b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/include/wordexp.h old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/Scrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/Scrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/crt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/crt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/crti.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/crti.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/crtn.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/crtn.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/ld-musl-riscv32-sf.so.1 b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/ld-musl-riscv32-sf.so.1 old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libc.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libc.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libc.so b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libc.so old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libcrypt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libcrypt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libdl.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libdl.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libm.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libm.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libpthread.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libpthread.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libresolv.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libresolv.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/librt.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/librt.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libutil.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libutil.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libxnet.a b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/libxnet.a old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/rcrt1.o b/IOT/29924_team_smart_home_gateway/code/tools/bin/compiler/riscv/cc_riscv32_musl_105/cc_riscv32_musl_win/sysroot/usr/lib/rcrt1.o old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/sign_tool/sign_tool_pltuni b/IOT/29924_team_smart_home_gateway/code/tools/bin/sign_tool/sign_tool_pltuni old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/bin/sign_tool/sign_tool_pltuni.exe b/IOT/29924_team_smart_home_gateway/code/tools/bin/sign_tool/sign_tool_pltuni.exe old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/build_gateway_node_separate.sh b/IOT/29924_team_smart_home_gateway/code/tools/build_gateway_node_separate.sh old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/pkg/README.md b/IOT/29924_team_smart_home_gateway/code/tools/pkg/README.md old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/pkg/chip_packet/ws63/packet.py b/IOT/29924_team_smart_home_gateway/code/tools/pkg/chip_packet/ws63/packet.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/pkg/packet.py b/IOT/29924_team_smart_home_gateway/code/tools/pkg/packet.py old mode 100755 new mode 100644 diff --git a/IOT/29924_team_smart_home_gateway/code/tools/pkg/packet_create.py b/IOT/29924_team_smart_home_gateway/code/tools/pkg/packet_create.py old mode 100755 new mode 100644