This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC3220SF: Device not able to find in scanner with AP mode

Part Number: CC3220SF
Other Parts Discussed in Thread: CC3200,

Dear Team,

I am fetching strange issue with CC3220 working device, suddenly i observed that my device is not able to find in the scanner or PC wi-fi list in AP mode. 

Initially device boot-up with the STA mode, to connect the router. and if profile is exists in the device list, it will try to connect with the existing stored profile, other wise device will come to the default state as AP mode and then I can load the SSID and password from the Web-browser using the inbuild html page, 

But as I see device has the profile but it was not connecting the router so i removed the stored profile using the sl_WlanProfileDel function, it successfully execute but after the device reset it will check the above process and come's to the AP mode, but I was not able to find it out.

  • Hi,

    You need to provide more techincal details from your debugging (logs, results from your JTAG debugging, etc.). Without such technical information nobody will be able help you.

    Jan

  • Dear Jan D,

    Where should put my breakpoint ? because if any API goes fail then i can fix it with that, but there no error founded when i entered in AP mode, using following code,

    static int32_t ConfigureSimpleLinkToDefaultState(void)
    {
        uint8_t ucConfigOpt;
        uint8_t ucPower;
        int32_t RetVal = -1;
        int32_t mode = -1;
        uint32_t IfBitmap = 0;
    
        SlWlanScanParamCommand_t ScanDefault = { 0 };
    
        SlWlanRxFilterOperationCommandBuff_t RxFilterIdMask = { { 0 } };
    
        //start the CC3220 network layer
    
        /* For changes to take affect, we restart the NWP */
        RetVal = sl_Stop(SL_STOP_TIMEOUT);
    
        ASSERT_ON_ERROR(RetVal, "sl_Stop() failed");
    
        mode = sl_Start(NULL, NULL, NULL);
    
        if (mode != ROLE_AP)
        {
            /* Set NWP role as STA */
            //let's set aa a STA mode
            mode = sl_WlanSetMode(ROLE_AP);
    
            /* For changes to take affect, we restart the NWP */
            RetVal = sl_Stop(SL_STOP_TIMEOUT);
    
            //restart the CC3220 network layer to get the STA mode
            mode = sl_Start(NULL, NULL, NULL);
    
        }
    
        if (mode != ROLE_AP)
        {
            ASSERT_ON_ERROR(-1, "sl_Start() failed");
        }
    
        //get the mac address
        get_device_mac_address();
    
        _i8 country[3];
        _u16 len = 3;
        _u16 config_opt = SL_WLAN_GENERAL_PARAM_OPT_COUNTRY_CODE;
        RetVal = sl_WlanGet(SL_WLAN_CFG_GENERAL_PARAM_ID, &config_opt, &len, (_u8*) country);
        ASSERT_ON_ERROR(RetVal, "sl_WlanGet() failed");
    
        WMLogInfo(GEN_LOG, "country code %d %d %d", country[0], country[1], country[2]);
    
        _i8 channel;
        len = 1;
        config_opt = SL_WLAN_AP_OPT_CHANNEL;
        RetVal = sl_WlanGet(SL_WLAN_CFG_AP_ID, &config_opt, &len, (_u8*) &channel);
        ASSERT_ON_ERROR(RetVal, "sl_WlanGet() failed");
    
        WMLogInfo(GEN_LOG, "wlan channel %d", channel);
    
    
        /* Delete existing profiles */
        RetVal = sl_WlanProfileDel(0xFF);
        ASSERT_ON_ERROR(RetVal, "sl_WlanProfileDel() failed");
    
        /* Set policy to auto only */
        /* fast connection*/
    
        RetVal = sl_WlanPolicySet(SL_WLAN_POLICY_CONNECTION, SL_WLAN_CONNECTION_POLICY(1, 1, 0, 1), NULL, 0);
    
        ASSERT_ON_ERROR(RetVal, "sl_WlanPolicySet() failed");
    
        /* Disable Auto Provisioning */
        RetVal = sl_WlanProvisioning(SL_WLAN_PROVISIONING_CMD_STOP, 0xFF, 0, NULL, 0x0);
        ASSERT_ON_ERROR(RetVal, "sl_WlanProvisioning() failed");
    
        /* enable DHCP client */
        RetVal = sl_NetCfgSet(SL_NETCFG_IPV4_STA_ADDR_MODE, SL_NETCFG_ADDR_DHCP, 0, 0);
    
        ASSERT_ON_ERROR(RetVal, "sl_NetCfgSet() failed");
    
        /* Disable ipv6 */
        IfBitmap = !(SL_NETCFG_IF_IPV6_STA_LOCAL | SL_NETCFG_IF_IPV6_STA_GLOBAL);
        RetVal = sl_NetCfgSet(SL_NETCFG_IF, SL_NETCFG_IF_STATE, sizeof(IfBitmap), (const unsigned char*) &IfBitmap);
    
        ASSERT_ON_ERROR(RetVal, "sl_NetCfgSet() failed");
    
        /* Configure scan parameters to default */
        ScanDefault.ChannelsMask = CHANNEL_MASK_ALL;
        ScanDefault.RssiThreshold = RSSI_TH_MAX;
    
        RetVal = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID,
                            SL_WLAN_GENERAL_PARAM_OPT_SCAN_PARAMS,
                            sizeof(ScanDefault), (uint8_t*) &ScanDefault);
    
        ASSERT_ON_ERROR(RetVal, "sl_WlanSet() failed");
    
        /* Disable scans */
        ucConfigOpt = SL_WLAN_SCAN_POLICY(0, 0);
        RetVal = sl_WlanPolicySet(SL_WLAN_POLICY_SCAN, ucConfigOpt, NULL, 0);
    
        ASSERT_ON_ERROR(RetVal, "sl_WlanPolicySet() failed");
    
        /* Set TX power lvl to max */
        ucPower = 0;
        RetVal = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID,
                            SL_WLAN_GENERAL_PARAM_OPT_STA_TX_POWER,
                            1, (uint8_t*) &ucPower);
    
        ASSERT_ON_ERROR(RetVal, "sl_WlanSet() failed");
    
        /* Set NWP Power policy to 'normal' */
        RetVal = sl_WlanPolicySet(SL_WLAN_POLICY_PM, SL_WLAN_NORMAL_POLICY, NULL, 0);
    
        ASSERT_ON_ERROR(RetVal, "sl_WlanPolicySet() failed");
    
        /* Unregister mDNS services */
        RetVal = sl_NetAppMDNSUnRegisterService(0, 0, 0);
    
        ASSERT_ON_ERROR(RetVal, "sl_NetAppMDNSUnRegisterService() failed");
    
        /*stop the internal HTTP Server*/
        RetVal = sl_NetAppStop(SL_NETAPP_HTTP_SERVER_ID);
    
        ASSERT_ON_ERROR(RetVal, "sl_NetAppStop() failed");
    
        /*Start the internal HTTP Server*/
        RetVal = sl_NetAppStart(SL_NETAPP_HTTP_SERVER_ID);
    
        ASSERT_ON_ERROR(RetVal, "sl_NetAppStart() failed");
    
        /* Remove all 64 RX filters (8*8) */
        memset(RxFilterIdMask.FilterBitmap, 0xFF, 8);
    
        RetVal = sl_WlanSet(SL_WLAN_RX_FILTERS_ID, SL_WLAN_RX_FILTER_REMOVE, sizeof(SlWlanRxFilterOperationCommandBuff_t),
                            (uint8_t*) &RxFilterIdMask);
    
        ASSERT_ON_ERROR(RetVal, "sl_WlanSet() failed");
    
        /* For changes to take affect, we restart the NWP */
        RetVal = sl_Stop(SL_STOP_TIMEOUT);
    
        ASSERT_ON_ERROR(RetVal, "sl_Stop() failed");
    
        RetVal = sl_Start(0, 0, 0);
    
        ASSERT_ON_ERROR(RetVal, "sl_Start() failed");
    
        WMLogInfo(GEN_LOG, "WIFI device has been started in the default state");
    
        return RetVal;
    }
    

  • Hi,

    I am sorry I am not able say what exactly you need to search. I am not developer of your code and from this reason I cannot know this. You should check how looks your state machine of your code and determine exact places where put breakpoint. Log from your code may to allow understand what is going on indie your code.

    btw... what SDK version and ServicePack do you use? Code above looks like something coming from previous generation SDK (CC3200).

    Jan

  • Dear Jan, 

    I am using sdk_4_20_00_07 and sp_3.16.0.1_2.0.0.0_2.2.0.7.bin service pack. 

    Is there any option to check actually device has entered on AP mode or not ?

  • Hi,

    Mode is returned from sl_Start() API and API sl_WlanGet() with option SL_WLAN_CFG_GENERAL_PARAM_ID.

    Jan

  • Dear Jan D,

    I checked Mode is "ROLE_AP" when sl_start() return,

    Jan D,

    It's working framework only, I didn't changed anything for the AP mode, but suddenly when i deleted profile to come to the AP mode, i couldn't see any default SSID by manufacture in PC wi-fi list, 

     

  • Hi,

    Who knows what is going on at your case.

    • do you see anything suspicious inside your log (e.g. error events)?
    • make sure that parameters for AP mode are correct (e.g. IP address, TX power, channel and country code, SSID name)
    • do you read results from wlan scan at your AP mode? how often?

    Jan

  • Dear Jan,

    1. I didn't see any API failure and nothing suspicious happen

    2. I am setting up TX power to Max level, and country code I am getting is (0x455500) and SSID which I am not setting anything because once nothing is there it is showing mysimplelink-xxxx(mac address last byte) so that's not a problem for me.

    3. wlan scan result I don't know how to read it. 

    Jan,

    is anything i have to do with antenna setting ? 

    Here am not able to get the NWP log because PIN_62 I think used somewhere else so may it will not work. is there any other method to get it ?

  • Hi,

    Country code is a text string like a US, EU, JP. Let say you set US country code and 13 channel for AP mode. Because usage of channel 13 is prohibited in use, device will not transmit at this channel.

    If you call API sl_WlanGetNetworkList() too often, SSID at AP mode may not be shown properly.

    At this moment I don't talk about NWP log but about text log at UART as is implemented at examples.

    If your device is able connect at client mode, it is unlikely that your issue is related to antenna. It is likely that you have some issue inside your application state machine or AP mode is misconfigured.

    Jan

  • Dear Jan,

    Ok noted for the country code, i need to check for it .

    @sl_WlanGetNetworkList not using this API in my code anywhere. 

    I tried to configure the profile manually when it's in station mode but not able to connect it with configured the profile, 

  • Hi,

    Configuration of connection profiles should not have any affect to AP mode. At first step you should check if you not see any error event inside your UART log. It may signalise issue with parameters settings for AP mode. You may to try to update ServicePack just for sure.

    Jan

  • Dear Jan,

    Yes I update the service pack also, i am suspecting an issue with the TX power strength, but not so sure.

    please see the My UART log, this is same log with working device.

    GEN:Log UART Initialize successfully <\r><\n>
    GEN:reset cause reason is <9><9> = PRCM_POWER_ON 0<\r><\n>
    GEN:Timer 1 initialization done successfully<\r><\n>
    GEN:GPIO Core driver initialization done<\r><\n>
    GEN:watch dog timer initialization done<\r><\n>
    GEN:SPI driver initialization done successfully<\r><\n>
    GEN:Initializing the network socket layer task<\r><\n>
    GEN:network socket layer task initialization done with priority 9<\r><\n>
    GEN:main application task initialization done with priority <9>8<\r><\n>
    GEN:Initializing the main application thread<\r><\n>
    GEN:network thread has been initialized with priority = 6<\r><\n>
    GEN:PMS thread has been initialized with priority = 5<\r><\n>
    GEN:MODBUS thread has been initialized with priority = 4<\r><\n>
    GEN:OTA TASK Thread task initialization done with priority <9>1<\r><\n>
    GEN:initAppVariables() Initialization Done<\r><\n>
    GEN:-----------------------------<\r><\n>
    GEN:COMPANY NAME = WIMERA SYSTEMS PVT LTD BENGALURU<\r><\n>
    GEN:PROJECT NAME = ReMon-WIFI On-Premises <\r><\n>
    GEN:framework installed date = 16:35:36 Dec 28 2021 <\r><\n>
    GEN:current framework version = 01.01.00 <\r><\n>
    GEN:current framework build v = 01.01.00.00.00 <\r><\n>
    GEN:-----------------------------<\r><\n>
    GEN:waiting for the PMS thread sync up<\r><\n>
    GEN:waiting for the MODBUS thread sync up<\r><\n>
    GEN:waiting for the OTA thread sync up<\r><\n>
    GEN:[NETAPP EVENT] IP set to: IPv4 = 10.123.45.1 , Gateway = 10.123.45.1<\r><\n>
    GEN:Device started as STATION<\r><\n>
    GEN:CHIP 822083609<\r><\n>
    MAC 31.2.7.0.0<\r><\n>
    PHY 2.2.0.7<\r><\n>
    NWP 3.21.0.1<\r><\n>
    ROM 0<\r><\n>
    HOST 3.0.1.65<\r><\n>
    GEN:MSD DEVICE MAC address: 4C:24:98:43:78:C7<\r><\n>
    GEN:Connection Policy is already set to AUTO + FAST<\r><\n>
    GEN:Index:0, No Profile Stored<\r><\n>
    GEN:Index:1, No Profile Stored<\r><\n>
    GEN:Index:2, No Profile Stored<\r><\n>
    GEN:Index:3, No Profile Stored<\r><\n>
    GEN:Index:4, No Profile Stored<\r><\n>
    GEN:Index:5, No Profile Stored<\r><\n>
    GEN:Index:6, No Profile Stored<\r><\n>
    GEN:starting Provisioning since there are No Profiles stored<\r><\n>
    GEN:[NETAPP EVENT] IP set to: IPv4 = 10.123.45.1 , Gateway = 10.123.45.1<\r><\n>
    GEN:CHIP 822083609<\r><\n>
    MAC 31.2.7.0.0<\r><\n>
    PHY 2.2.0.7<\r><\n>
    NWP 3.21.0.1<\r><\n>
    ROM 0<\r><\n>
    HOST 3.0.1.65<\r><\n>
    GEN:MSD DEVICE MAC address: 4C:24:98:43:78:C7<\r><\n>
    GEN:country code 69 85 0<\r><\n>
    GEN:wlan channel 1<\r><\n>
    GEN:[NETAPP EVENT] IP set to: IPv4 = 10.123.45.1 , Gateway = 10.123.45.1<\r><\n>
    GEN:WIFI device has been started in the default state<\r><\n>            ---> AP mode here 
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>
    GEN:please send connection profiles from browser!!<\r><\n>

    -----------------here i am expecting device to come to the scanner so i can re-configure with new profile

  • Hi,

    There are missing events after switching into AP mode. It is unlikely that you will have configured same IP address for AP and STA mode (I think your last [NETAPP EVENT] event is not for AP mode). This log show something wrong inside your state machine.

    Jan

  • Dear Jan,

    First [NETAPP EVENT] event happen when I entered into the STA mode using the below function.

    static int set_device_to_station_mode(void)
    {
        int32_t retVal = -1;
    
        retVal = sl_Start(NULL, NULL, NULL);
    
        if (retVal < 0)
        {
            retVal = sl_Stop(SL_STOP_TIMEOUT);
    
            ASSERT_ON_ERROR(retVal, "sl_Start() failed");
        }
    
        /* if device is not SET to STATION mode*/
        if (retVal != ROLE_STA)
        {
            retVal = sl_WlanSetMode(ROLE_STA);
    
            retVal = sl_Stop(SL_STOP_TIMEOUT);
    
            retVal = sl_Start(NULL, NULL, NULL);
    
            if (retVal < 0 || (retVal != ROLE_STA))
            {
                retVal = sl_Stop(SL_STOP_TIMEOUT);
    
                ASSERT_ON_ERROR(retVal, "setting device to STATION Mode failed ");
            }
    
            WMLogInfo(GEN_LOG, "Device started as STATION");
        }
    
        //get the MAC address
        get_device_mac_address();
    
        return retVal;
    }

    The second [NETAPP EVENT] event happen when I entered the AP mode so at beginning of it i'm doing the sl_stop() and sl_start() so again event happen,

    then i am setting all the AP mode parameter which i already share with second ya third reply, 

    To make the necessary change's of the parameter at last again i'm doing the sl_stop() and sl_start() so Third [NETAPP EVENT] event happen

  • Hi,

    I am sorry, but I am not able say what is wrong inside your code. Maybe you should to start decompose of your code to functional blocks.

    If you want you can capture NWP log (see. SWRU455 chapter 20). List of possible NWP log pins is here. Be aware that you will need to wait for TI employees for analysing of NWP log. Because I don't have tool for analysing of NWP log.

    Jan

  • Hi Jan D,

    Noted, i will update the thread once will get the NWP log.

  • Hi,

    We will wait for the NWP log but just another comment: you mentioned that the country code you are getting is (0x455500) which is 'EU' in string but then in the log I can see "GEN:country code 69 85 0<\r><\n>" which is garbage and doesn't indicate any country code. 

    What I would do is try to read some AP parameters such as: SL_WLAN_GENERAL_PARAM_OPT_AP_TX_POWER, SL_WLAN_GENERAL_PARAM_OPT_COUNTRY_CODE, SL_WLAN_AP_OPT_CHANNEL and SL_WLAN_AP_OPT_HIDDEN_SSID. You have the APIs in wlan.h header file in the SDK.

    The purpose is to make sure these parameters are read as expected and that the AP configuration file is not corrupted.

    Regards,

    Shlomi

  • Dear Shlomi,

    GEN:country code 69 85 0<\r><\n> is in decimal format, i got only two byte valid data last byte is zero so i thought may be zero default as "EU" is two character.

    country code and AP channel is already read, please check the next line of the log where you founded country code.

    and the rest of the parameter will update soon once got,

  • OK thanks, I thought it is in HEX format as usual but if it is decimal then the country code is OK.

    Let me know when you have the other parameters.

  • Dear Shlomi,

    here the rest of the parameter you asked,

    GEN:country code                       45 55 00<\r><\n>   (i changed print format to hex here)
    GEN:wlan channel                       1<\r><\n>
    GEN:wlan hidden ssid param      0<\r><\n>                  
    GEN:wlan tx power param           0<\r>

  • Thanks,

    It means that probably the AP configuration file is not corrupted which is good.

    BTW, if you have issues with fetching out NWP log, you can try by fetching MAC firmware log that can also help me.

    The procedure is the same as NWP log but the pin is different (PIN_60).

    So it should like: MAP_PinTypeUART(PIN_60, PIN_MODE_1);

    Regards,

    Shlomi

  • Dear Shlomi,

    I tried with the PIN_60 but not getting anything in log file. i have to initialize the uart0 again in my application ? and CC3220SF_LAUNCHXL.c file i have configure the different pin for the RX and TX of the uart0.

    Does it work directory with PIN_60? or i have to do with the pin UARTCC32XX_PIN_03_UART0_TX 

    const UARTCC32XX_HWAttrsV1 uartCC3220SHWAttrs[CC3220SF_LAUNCHXL_UARTCOUNT] = {
        {
            .baseAddr = UARTA0_BASE,
            .intNum = INT_UARTA0,
            .intPriority = (~0),
            .flowControl = UARTCC32XX_FLOWCTRL_NONE,
            .ringBufPtr  = uartCC3220SRingBuffer[CC3220SF_LAUNCHXL_UART0],
            .ringBufSize = sizeof(uartCC3220SRingBuffer[CC3220SF_LAUNCHXL_UART0]),
            .rxPin = UARTCC32XX_PIN_04_UART0_RX,
            .txPin = UARTCC32XX_PIN_03_UART0_TX,
            .ctsPin = UARTCC32XX_PIN_UNASSIGNED,
            .rtsPin = UARTCC32XX_PIN_UNASSIGNED,
            .errorFxn = NULL
        },
        {
            .baseAddr = UARTA1_BASE,
            .intNum = INT_UARTA1,
            .intPriority = (~0),
            .flowControl = UARTCC32XX_FLOWCTRL_NONE,
            .ringBufPtr  = uartCC3220SRingBuffer[CC3220SF_LAUNCHXL_UART1],
            .ringBufSize = sizeof(uartCC3220SRingBuffer[CC3220SF_LAUNCHXL_UART1]),
            .rxPin = UARTCC32XX_PIN_57_UART1_RX,
            .txPin = UARTCC32XX_PIN_55_UART1_TX,
            .ctsPin = UARTCC32XX_PIN_UNASSIGNED,
            .rtsPin = UARTCC32XX_PIN_UNASSIGNED,
            .errorFxn = NULL
        }
    };
    

  • You should not touch the platform UART at all.

    It uses a different UART from the MAC firmware itself.

    All you need is to connect directly to pin #60 (also ground is required) and add the following code to your example:

    Just above your mainThread(), add:

    #include <ti/devices/cc32xx/driverlib/rom_map.h>

    #define PIN_60 0x0000003B
    #define PIN_MODE_1 0x00000001

    Then inside mainThread() after SPI_Init(), add:

    /* NWP log */
    MAP_PinTypeUART(PIN_60, PIN_MODE_1);

    Rest of the procedure is as described in the doc.

    please note that it is very important to capture the binary stream in 921600bps and in binary mode.

    Shlomi

  • Dear Shlomi,

    Please find it 

    I am doing the same thing you can see the my code here.

    #include <ti/devices/cc32xx/inc/hw_types.h>
    #include <ti/devices/cc32xx/driverlib/rom_map.h>
    #include <ti/devices/cc32xx/driverlib/pin.h>
    #include <ti/devices/cc32xx/driverlib/prcm.h>
    
    void Board_Initialization(void)
    {
        static const char *resetCauseBuf[] = { "PRCM_POWER_ON", "PRCM_LPDS_EXIT", "", "PRCM_CORE_RESET", "PRCM_MCU_RESET",
                                               "PRCM_WDT_RESET", "PRCM_SOC_RESET", "PRCM_HIB_EXIT", };
    
    
        //Initialize systems SPI routine service
        //This is required for the internal flash memory
        //If SPI didn't initialize then this could be cause the problem
        SPI_init();
    
        // If your application already has UART0 configured, no need for this line
        MAP_PRCMPeripheralClkEnable(PRCM_UARTA0, PRCM_RUN_MODE_CLK);
    
        // Mux Pin 62 to mode 1 for outputting NWP logs
        MAP_PinTypeUART(PIN_60, PIN_MODE_1);    //GPIO30
    
        //initialization the required board driver initialization
        //initialize the UART for the Print the log
        InitTerm();
    

  • And nothing goes out on the pin even when you reset the platform and let it initialize the firmware?

    Is this pin exposed in your platform? not taken for other purposes?

    Are you using a level shifter on this pin?

    please elaborate your setup.

  • Dear Shlomi,

    Yes I think it's used by other purposes, 

    As i know i configure the GPIO_05 pin for my external interrupt. here have a look the GPIO table,

        //PMS1
        GPIOCC32XX_GPIO_05 | GPIO_CFG_INPUT | GPIO_CFG_IN_INT_BOTH_EDGES,
    

    If I got the header file of the GPIO_05 is equivalent to the PIN 60, please have a look to the GPIO.h header file

    #define GPIOCC32XX_GPIO_05    0x0020    /*!< PIN 60 */

  • Yes, this is the reason it is not working.

    Is it possible just for the test to remove this setting and probably also to fix it in hardware so we can fetch out logs?

    I guess this also applies for PIN_62 of the NWP.

  • Dear Shlomi,

    I thought the same thing, let me discuss with my hardware designers. So PIN_60 as GPIO_05 I'll make it free. 

    Yes PIN_62 also used for the other purpose. 

    So which one is most useful for us that pin will make it free.

  • Actually both are vital.

    PIN_62 would tell me if the commands are arriving the network processor and whether it behaves as expected.

    PIN_60 is of lower levels and there I can see if the firmware is transmitting AP beacons.

  • Hi,

    Alternative pins for NWP log are:

    MAP_PinTypeUART(PIN_53, PIN_MODE_5);//GPIO30
    MAP_PinTypeUART(PIN_18, PIN_MODE_3);//GPIO28
    MAP_PinTypeUART(PIN_60, PIN_MODE_3);//GPIO5
    MAP_PinTypeUART(PIN_62, PIN_MODE_1);//GPIO7

    Jan

  • Dear Shlomi,

    That pin already connected with the external interrupt so that's difficult to make it free, 

    can we fetch log with different PIN"S ? or make it with Alternative PIN?

  • Dear Jan,

    I think I can use the MAP_PinTypeUART(PIN_18, PIN_MODE_3);//GPIO28, we can use this pin for the NWP, 

    give me some time to setup my hardware,

    If am not wrong PIN_18 should be connected with the TX pin of the external USB convector right ? 

  • Hi,

    This depends on used convention at you USB convertor. But generally it should be RX pin.

    Jan

  • Dear,

    We found something on PIN_62, please have a look into the file.

    
    � -�-1{�(	��	��
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� P��8F��	�d*��$L�C�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���'	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�X��
    ^��b�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �
    '�/tmp/crashminidump.bin
    ��+�2���2���
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�ޓ
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��	
    
    �
    � 
    f�	
    
    g��	
    
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    �����.���	
    �
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �-�	]����
    ����PPPPPP P@P�PS�
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�C��	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    ���.����
    ���
    �!
    '�/sys/sign.bin
    �4s��Fe(
    ���.������
    � �6.
    6�
    ��
    �
    6*@$-{
    ���-{
    -{
    �	6�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    <.`
    �!
    '�/sys/p2p.cfg
    �=�
    h
    �o��Fe(
    >V�
    �!
    '�/sys/ap.cfg
    �%�-�%�
    �-�%�4-�%�4�-�	%�
    ���S"d�!+
    '�/tmp/phy.cal
    �]��-�+-�+-�+-�]��
    �-�]���-�	]�������	.�	q
    �!
    '�/sys/date_time.cfg
    �
    >(�Fe(3aT"EUU"mysi0U"mpleU"linkU"-439U"3E217.2�3.'L$....?4....
    -.
    !#���."�0"�0"�0.
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini9",>�=
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��Dr##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    
     
    
    *"B�*"*")	��
    
    �!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� P��8F��	�d*��$L�C�
    �*� x�B�1��
    �	��
    "
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�c��
    i��m�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�8�
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�C��	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "l 
    �
    ��	"
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B����P�:.C
    '.`
    �!
    '�/sys/p2p.cfg
    �o�
    �'�
    g�	.�	(
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3a.0
    (17QR==�(�
    .2�"āBB��,3.'L$"āBB��,.'L$.."āBB��,..:..'..?4*, de�*, ���.*, ,-�*, ���.
    ,...r2`aaA
    s)W$e�xV.
    �\��6)	
    -.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��D
    �!
    '�/tmp/fcon.frm
    �����Fe(R\S�1"
    {
    2A
    ")	f�
    6f)	f
     
    
    **"*")	3�
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�C��63)	3)	��
    J#
    �#6�)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� P��8F��	�d*��$L�C�
    �*� x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�b��
    h��m�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�n
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�C��	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "l 
    �
    ��	"
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B����P�:.C
    '.`
    �!
    '�/sys/p2p.cfg
    �o�
    �'�
    g�	.�	(
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3a.0
    (17QR==�(�
    .2�"āBB��,3.'L$"āBB��,.'L$.."āBB��,..:..'..?4*, de�*, ���.*, ,-�*, ���.
    ,...r2`aaA
    s)W$e�xV.
    �\��6)	
    -.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��D
    �!
    '�/tmp/fcon.frm
    �����Fe(R\S�1"
    {
    2A
    ")	��
    
    �!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� P��8F��	�d*��$L�C�
    �*� x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�W��
    \��a�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�?�
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�C��	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "*@$-{
    ���-{
    -{
    �	"�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    (.`
    �!
    '�/sys/p2p.cfg
    �(�
    g�	.�	)
    �!
    '�/sys/date_time.cfg
    �o��Fe(
    �
    >(�Fe(3a
    ).0V�
    �!
    '�/sys/ap.cfg
    �%�17.2�-�%�
    �-�%�4-�%�4�3-�	%�
    ���S"dT"EUU"mysiU"mpleU"linkU"-439U"3E2.'L$....?4.......
    -
    !#���"�0"�0"�0
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini
    �TU9",>�=-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��Dr##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    *"
     "B�
    
    **")	��
    V�4"	E6�)	�)	��V�4"6�	)	�)	��V�4"6�	)	�)	��6�)	�)	���!
    �"
    �
    '�/sys/pref.net
    ��-�+-,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    '
    �	6�)	�)	��
    J#
    �#
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    �	6�)	�)	��!6�)	�)	2�.e$�G aWaV.e$mVyVyV�!
    '�/sys/ipcfg.ini
    ���-p
    -���
    �-���4-���4�-�	��
    ��62)	2)	2�e$e$�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	���!
    '�/sys/stacfg.ini
    �TU--�TU
    �-�TU4-�TU4t-�	TU
    ��6�)	�)	��*L�
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    C6�)	�)	���!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	��
    
    	6�)	�)	4�T!4�
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\��!
    '�/sys/mdns.cfg
    �[\-0,-�[\
    �-�[\4-�[\4�-�	[\�
    *%��B�3D.017.2�3�
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�3D.017.2�3���P�:64)	4)	a�T!a�
    �0@
    P0@
    P,�����,�����
    ���!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6a)	a)	
    �T!
    �
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P�P�:�!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6
    )	
    )	��3D.017.2�36�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� P��8F��	�d*��$L�C�
    �*� x�B�1��
    �	��
    #
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�d��
    j��o�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*� 
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�C��	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "*@$-{
    ���-{
    -{
    �	"�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    (.`
    �!
    '�/sys/p2p.cfg
    �(�
    g�	.�	)
    �!
    '�/sys/date_time.cfg
    �o��Fe(
    �
    >(�Fe(3a
    ).0V�
    �!
    '�/sys/ap.cfg
    �%�17.2�-�%�
    �-�%�4-�%�4�3-�	%�
    ���S"dT"EUU"mysiU"mpleU"linkU"-439U"3E2.'L$....?4.......
    -
    !#���"�0"�0"�0
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini
    �TU9",>�=-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��Dr##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    *"
     "B�
    
    **"��
    A"	��@
    �!
    '�/sys/smartconfigkeys.cfg
    ��W'�Fe(�!
    
    �!
    '�/sys/smartconfigkeys.cfg
    ��W'�Fe(�
    
    �	�
    7D��
    ED��!.6�()	�r
    )",,
    �D��
    E>�=.D��.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$DNXTr
    )"++./����0#DNXT>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$Ventr
    )"++./����0#Vent>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$Demar
    )"++./����0#Dema>�=.$Blizr
    )"++./����0#Bliz>�=r
    )",,
    �D��
    E>�=.D��.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=71�\���8�rZ`(\�8	v"Zw"]
    x"
    y"
    �
    �"c�@@
    �"
    �"c"bt
    �!
    �!
    �!�!�W�A
    ���.�
    
    &('#B�&72��.$Demar
    )"++./����0#Dema>�=.$Blizr
    )"++./����0#Bliz>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$The r
    )"++./����0#The >�=.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$Nextr
    )"++./����0#Next>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$DNXTr
    )"++./����0#DNXT>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$SigTr
    )"++./����0#SigT>�=.$Demar
    )"++./����0#Dema>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Demar
    )"++./����0#Dema>�=.$Lilar
    )"++./����0#Lila>�=r
    )",,
    �D��
    E>�=.D��.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=r
    )",,
    �D��
    E>�=.D��.$Ganar
    )"++./����0#Gana>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$Demar
    )"++./����0#Dema>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$DNXTr
    )"++./����0#DNXT>�=.$The r
    )"++./����0#The >�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$SigTr
    )"++./����0#SigT>�=71��A��8�rZ`(\�8	v"�w"�
    x"
    y"
    �
    
    �"d@
    �"
    �"c"b�
    �!
    �!
    �!�!�W�A
    ���.�
    
    &('#B�&72��r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$r
    )"++./����0#>�=.$Ganar
    )"++./����0#Gana>�=.$Ganar
    )"++./����0#Gana>�=.$Ganar
    )"++./����0#Gana>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$Demar
    )"++./����0#Dema>�=.$Blizr
    )"++./����0#Bliz>�=.$Nextr
    )"++./����0#Next>�=.$Nextr
    )"++./����0#Next>�=.$Nextr
    )"++./����0#Next>�=r
    )",,
    �D��
    E>�=.D��.$r
    )"++./����0#��>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$Crysr
    )"++./����0#Crys>�=.$Ganar
    )"++./����0#Gana>�=.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$Nextr
    )"++./����0#Next>�=.$DNXTr
    )"++./����0#DNXT>�=.$Nextr
    )"++./����0#Next>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$The r
    )"++./����0#The >�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$The r
    )"++./����0#The >�=.$r
    )"++./����0#��>�=r
    )",,
    �D��
    E>�=.D��.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$r
    )"++./����0#��>�=r
    )",,
    �D��
    E>�=.D��.$blizr
    )"++./����0#bliz>�=.$Ganar
    )"++./����0#Gana>�=.$Ganar
    )"++./����0#Gana>�=.$r
    )"++./����0#��>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$r
    )"++./����0#��>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$Nextr
    )"++./����0#Next>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$DNXTr
    )"++./����0#DNXT>�=.$Blizr
    )"++./����0#Bliz>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$r
    )"++./����0#>�=71�����8�rZ`(\�8	v"tw"u
    x"
    y"
    �
    
    �"d@
    �"
    �"c"b
    �!
    �!
    �!�!�W�A
    ���.�
    $
    &('#B�&72��.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Nextr
    )"++./����0#Next>�=.$The r
    )"++./����0#The >�=.$Blizr
    )"++./����0#Bliz>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$Demar
    )"++./����0#Dema>�=.$DNXTr
    )"++./����0#DNXT>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$Wimer
    )"++./����0#Wime>�=.$Nextr
    )"++./����0#Next>�=.$DNXTr
    )"++./����0#DNXT>�=r
    )",,
    �D��
    E>�=.D��.$Crysr
    )"++./����0#Crys>�=.$Ganar
    )"++./����0#Gana>�=.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$Nextr
    )"++./����0#Next>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$DNXTr
    )"++./����0#DNXT>�=r
    )",,
    �D��
    E>�=.D��r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$r
    )"++./����0#>�=.$Blizr
    )"++./����0#Bliz>�=.$r
    )"++./����0#��>�=r
    )",,
    �D��
    E>�=.D��.$The r
    )"++./����0#The >�=.$Nextr
    )"++./����0#Next>�=r
    )",,
    �D��
    E>�=.D��.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=r
    )",,
    �D��
    E>�=.D��.$Wimer
    )"++./����0#Wime>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Ventr
    )"++./����0#Vent>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$Nextr
    )"++./����0#Next>�=.$DNXTr
    )"++./����0#DNXT>�=71�'���8�rZ`(\�8	v"ow"q
    x"
    y"
    �
    
    �"d@
    �"
    �"c"bA
    �!
    �!
    �!�!�W�A
    ���.�
    .
    &('#B�&72��.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$Demar
    )"++./����0#Dema>�=.$Nextr
    )"++./����0#Next>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$The r
    )"++./����0#The >�=.$Demar
    )"++./����0#Dema>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$DNXTr
    )"++./����0#DNXT>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$Demar
    )"++./����0#Dema>�=.$Ganar
    )"++./����0#Gana>�=.$Nextr
    )"++./����0#Next>�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$Demar
    )"++./����0#Dema>�=.$Wimer
    )"++./����0#Wime>�=.$Nextr
    )"++./����0#Next>�=.$Blizr
    )"++./����0#Bliz>�=.$DNXTr
    )"++./����0#DNXT>�=r
    )",,
    �D��
    E>�=.D��.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$Blizr
    )"++./����0#Bliz>�=.$Lilar
    )"++./����0#Lila>�=.$Nextr
    )"++./����0#Next>�=r
    )",,
    �D��
    E>�=.D��.$Crysr
    )"++./����0#Crys>�=.$Wimer
    )"++./����0#Wime>�=.$Blizr
    )"++./����0#Bliz>�=.$Nextr
    )"++./����0#Next>�=r
    )",,
    �D��
    E>�=.D��.$Ganar
    )"++./����0#Gana>�=.$Nextr
    )"++./����0#Next>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Ventr
    )"++./����0#Vent>�=.$SigTr
    )"++./����0#SigT>�=.$DNXTr
    )"++./����0#DNXT>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �D��
    E>�=.D��.$SigTr
    )"++./����0#SigT>�=.$DNXTr
    )"++./����0#DNXT>�=.$Nextr
    )"++./����0#Next>�=.$Nextr
    )"++./����0#Next>�=.$Nextr
    )"++./����0#Next>�=

  • yes, it is decodable.

    Can you please remove the auto provisioning and retest?

    instead of:

    RetVal = sl_WlanPolicySet(SL_WLAN_POLICY_CONNECTION, SL_WLAN_CONNECTION_POLICY(1, 1, 0, 1), NULL, 0);

    use:

    RetVal = sl_WlanPolicySet(SL_WLAN_POLICY_CONNECTION, SL_WLAN_CONNECTION_POLICY(1, 1, 0, 0), NULL, 0);

    Shlomi

  • Dear Shlomi,

    Yes tried it as you said, but no luck yet

  • Dear Shlomi,

    Please find the working board NWP load with the same framework which is i used for the not working board.

    please verify anything is wrong with two board as per the framework. 

    This log also has auto provisioning set option, but with this am able to see the device in the scanner with working board.

    
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
    (
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�h��
    n��s�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�L}/
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �".
    "�
    ��
    �
    "*@$-{
    ���-{
    -{
    �	"�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    (.`
    �!
    '�/sys/p2p.cfg
    �)�
    g�	.�	)
    �!
    '�/sys/date_time.cfg
    �o��Fe(
    �
    >(�Fe(3a
    *.0V�
    �!
    '�/sys/ap.cfg
    �%�17.2�-�%�
    �-�%�4-�%�4�3-�	%�
    ���S"dT"EUU"mysiU"mpleU"linkU"-440U"96A.'L$....?4.......
    -
    !#���"�0"�0"�0
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini
    �TU9",>�=-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��Dr##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    *"
     "B�
    
    **")	��
    
    �!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�_��
    e��i�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*�—/
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "l 
    �
    ��	"
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B����P�:.C
    '.`
    �!
    '�/sys/p2p.cfg
    �o�
    �'�
    g�	.�	(
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3a.0
    (17QR==�(�
    .2�"āBB��,3.'L$"āBB��,.'L$.."āBB��,..:..'..?4*, de�*, ���.*, ,-�*, ���.
    ,...r2`aaA
    s)W$e�xV.
    �\��6)	.p
    -
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��D
    �!
    '�/tmp/fcon.frm
    �����Fe(R\S�1"
    {
    2A
    ")	f�
    6f)	f
     
    
    **"*")	3�
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j63)	3)	��
    J#
    �#6�)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	��6��)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
    $
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�e��
    j��o�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*��+1
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "l 
    �
    ��	"
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B����P�:.C
    '.`
    �!
    '�/sys/p2p.cfg
    �o�
    �'�
    g�	.�	(
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3a.0
    (17QR==�(�
    .2�"āBB��,3.'L$"āBB��,.'L$.."āBB��,..:..'..?4*, de�*, ���.*, ,-�*, ���.
    ,...r2`aaA
    s)W$e�xV.
    �\��6)	
    -.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��D
    �!
    '�/tmp/fcon.frm
    �����Fe(R\S�1"
    {
    2A
    ")	��
    
    �!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�Z��
    `��e�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*��D1
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "*@$-{
    ���-{
    -{
    �	"�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    (.`
    �!
    '�/sys/p2p.cfg
    �(�
    g�	.�	)
    �!
    '�/sys/date_time.cfg
    �o��Fe(
    �
    >(�Fe(3a
    ).0V�
    �!
    '�/sys/ap.cfg
    �%�17.2�-�%�
    �-�%�4-�%�4�3-�	%�
    ���S"dT"EUU"mysiU"mpleU"linkU"-440U"96A.'L$....?4.......
    -
    !#���"�0"�0"�0
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini
    �TU9",>�=-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��Dr##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    *"
     "B�
    
    **")	��
    V�4"	E6�)	�)	��V�4"6�	)	�)	��V�4"6�	)	�)	��6�)	�)	���!
    �"
    �
    '�/sys/pref.net
    ��-,- ,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    '
    �	6�)	�)	��
    J#
    �#
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    �	6�)	�)	��!6�)	�)	2�.e$�G aWaV.e$mVyVyV�!
    '�/sys/ipcfg.ini
    ���-p
    -���
    �-���4-���4�-�	��
    ��62)	2)	2�e$e$�!
    '�/sys/ipcfg.ini
    ���-`
    -���
    �-���4-���4�-�	��
    ��62)	2)	���!
    '�/sys/stacfg.ini
    �TU--�TU
    �-�TU4-�TU4t-�	TU
    ��6�)	�)	��*L�
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    C6�)	�)	���!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	��
    
    	6�)	�)	4�T!4�
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\��!
    '�/sys/mdns.cfg
    �[\-@,-�[\
    �-�[\4-�[\4�-�	[\�
    *%��B�3D.017.2�3�
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�3D.017.2�3���P�:64)	4)	a�T!a�
    �0@
    P0@
    P,�����,�����
    ���!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6a)	a)	
    �T!
    �
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P�P�:�!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6
    )	
    )	��3D.017.2�36�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�R��
    X��]�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b*���1
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "*@$-{
    ���-{
    -{
    �	"�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    (.`
    �!
    '�/sys/p2p.cfg
    �(�
    g�	.�	)
    �!
    '�/sys/date_time.cfg
    �o��Fe(
    �
    >(�Fe(3a
    ).0V�
    �!
    '�/sys/ap.cfg
    �%�17.2�-�%�
    �-�%�4-�%�4�3-�	%�
    ���S"dT"EUU"mysiU"mpleU"linkU"-440U"96A.'L$....?4.......
    -
    !#���"�0"�0"�0
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini
    �TU9",>�=-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��Dr##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    *"
     "B�
    
    **"��
    A"	��@
    �!
    '�/sys/smartconfigkeys.cfg
    ��W'�Fe(�!
    
    �!
    '�/sys/smartconfigkeys.cfg
    ��W'�Fe(�
    
    �	�
    7D��
    ED��!.6�()	�.$Blizr
    )"++./����0#Bliz>�=.$Ganar
    )"++./����0#Gana>�=.$Wimer
    )"++./����0#Wime>�=.$LMW-r
    )"++./����0#LMW->�=r
    )",,
    �D��
    E>�=.D��.$Blizr
    )"++./����0#Bliz>�=9"0r##
    )"--��j�ѝ��
    3
    �
    �>�=���ѝ
    !#�jj"�0"�0.;r
    )",,
    �>�=9"0r##
    )"-->�=9"^r##
    )"--
    !#.�jj"ā!�0"ā!�0>�=9"@r##
    )"--�@��	*L�
    C>�=.h� �/$"j��ѩj6.�H)	.
    C	�38.%�jj�.j�.0(
    �
    /""-{
    j��ѩj�Q6,)	,2�`-{
    -{
    �@2� -{
    2�@-{
    2�`-{
    -{
    2�`-{
    -{
    (
    �
    2� -{
    2�`-{
    -{
    -{
    71��j��8�rZ`(\�8	v"ww"~
    x"
    y"
    �
    �"c�@@
    �"
    �"
    c"a7
    �!
    �!
    �!�!�W�A
    ���.�
    1
    &('#B�&72��2� -{
    0@$�`,�,���� �	�0@$�`,�,�$�`,�,�
    �
    
    �
    '�/www/index.html
    �)C���e(
    �
    '�www/index.html
    �vi��e(
    �
    '�/www/safe/index.html
    �����e(
    �
    '�www/safe/index.html
    �.v���e(
    �
    �V�4"V�4"
    ."mysi."mple."link."V�4"
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@�bV�4"V�4"
    ."mysi."mple."link."V�4"V�4"V�4"V�4"V�4"�b�b�b
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@V�4"V�4"V�4"V�4"V�4"V�4"V�4"4_�P.�-{
    ^���4_�P.�-{
    ^���4_�P.�-{
    ^���4_�P.�-{
    /����0@$�`,�,��0@$�`,�,�
    P��� �	�
    �
    
    �
    '�/www/user.js
    ��(���e(
    �
    '�www/user.js
    �
    �v��e(
    �
    '�/www/safe/user.js
    �'{<��e(
    �
    '�www/safe/user.js
    ��E���e(
    �
    �
    �
    �
    �
    �
    
    �s
    �
    0
    �
    �
    �
    ���6x+)	x)	x�
    !6�()	�-T!x����
    �
    ��0@�0@
    P0@$�`,�,���� �	�
    �
    
    �
    '�/www/favicon.ico
    �aAT��e(
    �
    '�www/favicon.ico
    ���o��e(
    �
    '�/www/safe/favicon.ico
    �m���e(
    �
    '�www/safe/favicon.ico
    �k��e(
    �
    �
    �
    �
    �
    �
    
    �s
    �
    @
    �
    �
    �
    ���36x?)	x)	x�-T!x����
    �
    ��0@�0@
    P71�	���8�rZ`(\�8	v"�w"�
    x"
    y"
    �
    
    �"d@
    �"�"�c"a�
    �!
    �!
    �!�!�W�A
    ���. �
    ;
    &('#B�&72��0@$�`,�,���� �	�
    �
    
    � ND� N
    E.
    D� N
    �
    ��.$HP-Pr
    )"++./����0#HP-P>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=.$Wimer
    )"++./����0#Wime>�=0@�0@
    P.$Demar
    )"++./����0#Dema>�=.$Wimer
    )"++./����0#Wime>�=.$DNXTr
    )"++./����0#DNXT>�=.$DNXTr
    )"++./����0#DNXT>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=.$LMW-r
    )"++./����0#LMW->�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=.$Demar
    )"++./����0#Dema>�=r
    )",,
    �>�=0@$�`,�,���� �	�
    �
    
    �
    '�/www/netlist.txt
    �����e(
    �
    '�www/netlist.txt
    �RmE��e(
    �
    '�/www/safe/netlist.txt
    ����e(
    �
    '�www/safe/netlist.txt
    ����e(
    �
    ��0@�0@
    P2� -{
    2� -{
    71�Y���8�rZ`(\�8	v"|w"|
    x"
    y"
    �
    
    �"d@
    �"
    �"c"bK
    �!
    �!
    �!�!�W�A
    ���. �
    	
    &('#B�&72��0@$�`,�,���� �	�0@$�`,�,�$�`,�,�
    �
    602)	0�!
    �"
    �
    '�/sys/pref.net
    ��-�+-,-��
    �-��4�0�-��4�0��0��@-�	��@��D
    4
    �	
    ��0@$�`,�,��0@$�`,�,�
    P��� �	�
    �
    
    �
    '�/www/index.html
    �)C���e(
    �
    '�www/index.html
    �vi��e(
    �
    '�/www/safe/index.html
    �����e(
    �
    '�www/safe/index.html
    �.v���e(
    �
    �V�4"V�4"
    ."mysi."mple."link."V�4"
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@�bV�4"V�4"
    ."mysi."mple."link."V�4"V�4"V�4"V�4"V�4"�b�b�b
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@V�4"V�4"V�4"V�4"V�4"V�4"V�4"�0@�0@
    P0@$�`,�,���� �	�
    �
    
    �
    '�/www/user.js
    ��(���e(
    �
    '�www/user.js
    �
    �v��e(
    �
    '�/www/safe/user.js
    �'{<��e(
    �
    '�www/safe/user.js
    ��E���e(
    �
    �
    �
    �
    �
    �
    
    �s
    �
    
    �
    �
    �
    ��!
    ��6x)	x)	x�-T!x�!��!�
    �
    ��0@�0@
    P0@$�`,�,���� �	�
    �
    
    �
    '�/www/netlist.txt
    �����e(
    �
    '�www/netlist.txt
    �RmE��e(
    �
    '�/www/safe/netlist.txt
    ����e(
    �
    '�www/safe/netlist.txt
    ����e(
    �
    ��0@�0@
    P71��,��8�rZ`(\�8	v"�w"�
    x"
    y"
    �
    
    �"d@
    �"
    �"c"^�
    �!
    �!
    �!�!�W�A
    ���3)�
    
    &('#B�&72��0@$�`,�,���� �	�
    �
    
    �
    ��0@�0@
    P
    E.
    D� N.$Wimer
    )"++./����0#Wime>�=
    � -�-1{�(	��	��
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
     
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���'	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�Z��
    `��d�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �
    '�/tmp/crashminidump.bin
    ��+�2���2���
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�ޓ
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��	
    
    �
    � 
    f�	
    
    g��	
    
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    �����.���	
    �
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �-�	]����
    ����PPPPPP P@P�PS�
    ��
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    ���.����
    ���
    �!
    '�/sys/sign.bin
    �4s��Fe(
    ���.������
    � �6.
    6�
    ��
    �
    6*@$-{
    ���-{
    -{
    �	6�
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    
    �!
    '�/sys/dhcpsrv.cfg
    �V�-�V�
    �-�V�4-�V�4-�	V�
    �@+�"-{
    �-{
    -{
    ���
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B�����P�:.C
    <.`
    �!
    '�/sys/p2p.cfg
    �<�
    h
    �o��Fe(
    =V�
    �!
    '�/sys/ap.cfg
    �%�-�%�
    �-�%�4-�%�4�-�	%�
    ���S"d�!+
    '�/tmp/phy.cal
    �]��-�+-�+-�+-�]��
    �-�]���-�	]�������	.�	{
    �!
    '�/sys/date_time.cfg
    �
    >(�Fe(3aT"EUU"mysi0U"mpleU"linkU"-440U"96A17.2�3.'L$....?4.....
    -.
    !#���."�0"�0"�0
    �!
    '�/sys/infoele.cfg
    �����Fe(..........=.^
    .W.1...M.:..)
    �!
    '�/sys/stacfg.ini9",>�=
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��D
    Y#Wime
    �"Wime
    �r##
    )"--2`a3333aA
    s63)	)W$e�xV.
    �\���6%)	%1"
    ".2
    
     
    
    *"B�*"*")	��
    
    �!
    '�/sys/mode.cfg
    ���I-�
    -���I
    �-���I4-���I4P-�	��I
    ��6�)	�)	s�6s)	s�!��!6s)	s!
    � -�-1{�(	��	��
    �
    
    
    �
    �	-�-1{�( LS
    �
    �
    �
    ���
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J-��J�-�	�J����
    �*��1
    �
    �	�
    �*� 
    @��8<�}	@*�D$Lj	D�
    �*� �x�B�1��
    �	��
    
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �
    �
    �
    ���&	�-���`�(,��,�,�
    �*�� *�� �*�� �*�	 +*��/	 
    �
    �
    �-���`-���`x-���`p
    �
    �
    �-���`��,A�S��
    Y��^�-�	��`-�$
    ��
    ��)��`aaA
    �-�-1{�(
    �!
    '�/sys/certstore.lst
    ��J
    �
    
    �
    -��J
    �-��J�-�	�J��
    �
    '�@@.tmp
    �l�U��e(
    �
    '�/tmp/fcon.ssid
    �>��e(��e(`aaA
    	
    �!
    '�/sys/mdmpcfg.ini
    ��I��Fe(
    �!
    '�/sys/pmcfg.ini
    �I��Fe(
    \
    a"<b�1�
    �
    �
    '�/sys/servicepack.ucf
    ���`
    �
    - $ B
    �!
    '�/sys/ucf_signatures.bin
    ��Ql-��Ql
    �-��Ql4-��Ql4�-�	�Ql
    ��
    �
    �!
    '�/sys/servicepack.ucf
    ���`
    �
    -���`!
    �-���`-���`x-���`p
    �
    �
    �
    �
    �
    �
    �
    �-���`�#�*�1
    �!
    '�/sys/ipcfg.ini
    ���-���
    �-���4-���4�-�	��
    ��
    �!
    '�/sys/mode.cfg
    ���I-���I
    �-���I4-���I4P-�	��I
    ��
    Q
    �
    �7�`  7�` $ @M7�``q H7�`�� l7�`� @q7�`T � 7�`�'  7w@  �&
    2�`��		
    �
    � 
    f�		
    g��		
    �!
    '�/sys/devname.cfg
    ��c-��c
    �-��c4-��c4b-�	�c
    ��
    	
    
    
    
    �����.���	�
    �
    �
    �!
    '�/tmp/phy.cal
    �]��-�]��
    �
    ����PPPPPP P@P�PS�
    
    ��
    
    
    �.�1
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j	
    �
    �!
    '�antselcfg
    �֦	�Fe(-���`|
    �-���`��,#-���`�,#
    �
    �-���`�#��,#�-���`�#�\-���`�#\��.�\�-���`(
    ��-���`$(�
    �
    �-�	��`-�$
    �-�]����.����-�]������
    �!
    '�/sys/sign.bin
    �4s��Fe(-�]���-�	]����
    ���.�������
    � �!.
    "�
    ��
    �
    "l 
    �
    ��	"
    �
    '�/sys/rxfltr.ini
    ������e(��e(
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A
    �
    '�/sys/rxfltr.ini
    ������e(��e(�A�A"�A�A�A�A�A�A�B�B	
    
    �!
    '�/sys/httpsrv.cfg
    �F�-�F�
    �-�F�4-�F�4�-�	F���
    ��� ���� �	
    �
    �P
    
    �!
    '�/sys/mdns.cfg
    �[\-�[\
    �-�[\4-�[\4�-�	[\�B�B��B��A�A�A�B����P�:.C
    '.`
    �!
    '�/sys/p2p.cfg
    �o�
    �'�
    g�	.�	(
    �!
    '�/sys/date_time.cfg�Fe(
    �
    >(�Fe(3a.0
    (17QR==�(�
    .2�"āBB��,3.'L$"āBB��,.'L$.."āBB��,..:..'..?4*, de�*, ���.*, ,-�*, ���.
    ,...r2`aaA
    s)W$e�xV.
    �\��6)	
    -.p
    �!
    '�/sys/stacfg.ini
    �TU-�TU
    �-�TU4-�TU4t-�	TU
    ��
    K
    J#
    �#
    �!
    '�/sys/pref.net
    ��-��
    �-��4-��4-�	��D
    Y#Wime
    �"Wime
    �
    �!
    '�/tmp/fcon.frm
    �����Fe(R\
    `
    Y#Wime
    �"Wime
    �x�P'�`9
    "
    T��.W
    ")	f�
    
    3A6f)	f
     
    
    **"*")	3�
    �!
    '�/sys/macadd.bin
    ��q
    �Fe(5VL$2$�D	j63)	3)	��
    J#
    �#6�)	�.$DNXTr
    )"++./����0#DNXT>�=.$SigTr
    )"++./����0#SigT>�=.$Wimer
    )"++./����0#Wime>�=.$Wime
    H
    
    �"Wime
    �+.$WebWr
    )"++./
    ����0#WebW>�=r&&
    )"004'�
    "�+>�=�.� 
    8#Wime
    �L$WimeM4'�
    "�+"Ł$�""Ł$q"9)'�`9q
     �
    
    �
    ��	��>�= $.��.��1"r
    *]"<*�"
    Z") #�
    Tr
    )",,
    �>�=�	"ā��0"Ł���*"ā��0�"ā1�0.E��!."$pOWBVX.#����.....?"qr""
    )"7>�=.=.=).0.1 �!r!!>�=r  >�=r>�=,r
    )">�=9)'�`9*, eg|��*, -.|��"Ł$�!'�`9"Ł	�-
     #ypOW-��$ y"ā�0"Ł$"*?"�r""
    )""Ł$�!"Ł�	�-"Ł$�-
     #cpOW-��$ c"ā�0"ā#.>�="āBB��,	'�`9"ā#."āBB��,�*>�=5	�	�A"�"VX��Wime6�L)	�
    �L$WimeM"�`�2��0"� K� 2�@�� ˀ2��N��b'�`9	*, ��*, gh��*, .4��*, ��*, hi��*, 4.��"Ł$"r���.	"�!p
    �!
    '�/tmp/fcon.frm
    �����Fe(!�!.
    �"
    �
    '�/tmp/fcon.frm
    ����
    �
    �)��-G$WimeH$ra1_I$2.4GJ$pOWBKVX�.F..-�!�-P,
    N$�
    '
    �
    �.$Wime.
    (
    
    N$
    -`,��.$Wime -����
    �-����4�0�-����4��0��0��-�	�����-`,��!
    �"
    �
    '�/tmp/fcon.ssid
    �>
    �
    �!�-p,-�,
    
    	��0-�>
    �-�>4�0�-�>4p�0��0���-�	>���-�,
    ��
    '��)	K�
    �
    �!�6K$0)	K$*]"<*�"
    Z"d"ƀ�
    N$�
    �2�`��g��2�@��2�`w��g��2�@w��
    
    	
    (
    �!
    *w��*�$g���������
    �$��g"�`� ,!2�`���6%g)	%2��0"� K�!
    '�/sys/dhcp.bin
    �y
    
    �
    �!�-�,./"�02�@��@82�b��OpXVBW�
    '�!
    '�/tmp/table.arp-�,�� 
    +
    �l�%
    �
    �!�-�,
    +-�,
    +
    +
    +��0-�l�%
    �-�l�%4-�l�%4�-�	l�%��2��V2� w��-�y
    
    �-�y
    4-�y
    4��
    �-�	y
    ��2���2����g��2��XVBW���� 2�������2������	��O
    �
    "�A.3�.2�"B�*]"<*�"
    Z"d
    
    	)	 �-T! �www.wime6 )	 *{���
    �*]"<*�"
    Z"d*{��*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d*]"<*�"
    Z"d*|�� 6 )	 )	!�-T!!���6!)	!��
    	�
    �*]"<*�"Z"d
    
    	
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d��
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d
    	71�{|���Z`(\�8	
    v"
    2
    w"?1�h
    x"0
    y"
    �
    �"d�"	
    �"$c"�
    �!ML
    �!23
    �!^z�!^�zW�A��
    �F��,~7�
    
    '('#B�&72�2΀XVBW�
    �*]"<*�"
    Z"d���
    �*]"<*�"
    Z"d
    �*]"<*�"
    Z"d�
    �*]"<*�"
    Z"d
    	
    �*]"<*�"
    Z"d

  • Hi,

    The two logs are similar so currently it is most likely related to the specific board, maybe hardware.

    If you cannot fetch the MAC firmware logger, the only step left is to reprogram the board and see if it helps.

    This is a disruptive step but at least we would be able to know whether it is a hardware issue (if it is still failing after reprogram) OR whether it is after all related to software/firmware (if it starts working). If it starts working, the only reason I can think of is if  the calibration file got corrupted/sub optimal.

    Regards,

    Shlomi

  • Dear Shlomi,

    I can get you the MAC firmware logger, that's with PIN_60 right ?

  • Dear Shlomi,

    Please find the MAC firmware log file's for working and not working board with same framework

    Both file named as per the working board and not working board.

    ������)a	
    m
    m�	]�	�#?ɜ	��8x�
    ���	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	�`���ÎLV�}k
    2(���	k�	F�k�	F��}k
    C�@���}k
    }�U��v
    0��k
    �}k
    ?���u�v
    3xy�	�v
    0�y�	�v
    1[|��	�v
    2�}��	��v
    3^~y�	�v
    '.]	]	�}k
    ��}k
    ���}k
    % :��/
    
    
    ��/
    �}k
    ?4���}k
    ?�����}k
    ?��F��}k
    ?����}k
    ?����}k
    ?�i��}k
    ��}k
    ���}k
    ��}k
     ��y
    �}k
     nj�}k
    ���}k
    ʎ�}k
    }��}k
    E��}k
    5�U��}k
    ���}k
    h��y
    �}k
    =� � I����v
    v��v
    ���}k
    1S��v
    ���v
    ���v
    ��v
    ��}k
    :dȞ�}k
    .�p��v
    )-��v
    9Y	g�	��	'Ӎ	d�	L$��	�UvUv@��	�b���	����	��O �
    �1��v
    2W��	
    {-Y
    ��!$��1������a	�H�H�	]�	�#?ɜ	��8x�
    ���	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	(���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@�b@}k
    �cU��v
    �d�k
    p}k
    ?���f�v
    3hiy�	�v
    0�j�	�v
    1�k��	�v
    2gp��	��v
    3"qy�	�v
    '�q]	]	�v
    'r]	]	p}k
    .� +sp}k
     �s`}k
    :�tp}k
     )u�y
    p}k
    ' �u`}k
    �v@}k
    ?4Vwp}k
     ��wp}k
    ��xp}k
    �=yp}k
    �y�v
    V{�v
    }�	C������a	�H�H�	]�	�#?ɜ	��8x�
    ���	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	)���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@�b@}k
    �cU��v
    �d�k
    p}k
    ?���f�v
    3hiy�	�v
    0�j�	�v
    1�k��	�v
    2gp��	��v
    3"qy�	�v
    '�q]	]	�v
    'r]	]	p}k
    .� +sp}k
     �s`}k
    :�tp}k
     )u�y
    p}k
    ' �u`}k
    �v@}k
    ?4Vwp}k
     ��wp}k
    ��xp}k
    �=yp}k
    �y�v
    V{�v
    `}�	C������a	�H�H�	]�	�#?ɜ	��8x�
    ���	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	(���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@zg@}k
    MhU��v
    �h�k
    p}k
    ?���k�v
    32ny�	�v
    0�o�	�v
    1�p��	�v
    2gr��	��v
    3$sy�	�v
    '2u]	]	@}k
    ;w@}k
    �wp}k
    % �x�/
    
    
    ��/
    @}k
    ?4@yp}k
    ?���yp}k
    ?���zp}k
    ?��^{p}k
    ?��{p}k
    ?��|@}k
    2~@}k
    �~`}k
    f�p}k
     ?��y
    p}k
     �p}k
    �p}k
    Æp}k
    ��p}k
    r�@}k
    P�U�P}k
    Ŋ`}k
    ��y
    p}k
    =� �� I����v
    !��v
    R�@}k
    1���v
    $��v
    R��v
    ���v
    ��`}k
    :dX�`}k
    .����v
    )���v
    9Y	g�	��	'Ӎ	d�	L$��	�UvUv���	�����	�����	��O �
    �1��v
    2���	
    {-Y
    ��!&�U)Y
    ��!; 	�Y
    ��!1��Y
    ��!=@�Y
    ��!(�ߕY
    ��!5`	�Y
    ��!9�
    ��Y
    ��!3��Y
    ��!<��Y
    ��!,��Y
    ��!10���v
    7�Y
    ��!4���Y
    ��!+P�Y
    ��!=��Y
    ��!8p�Y
    ��!+��v
    3p�y�	�v
    02��	�v
    1k���	�v
    2����	��v
    3ڡy�	�v
    3��y�	�v
    0m��	�v
    1����	�v
    2*���	��v
    3
    �y�	Y
    ��!7��Y
    ��!8 ��v
    3��y�	�v
    0E��	�v
    1���	�v
    2
    ���	��v
    3�y�	������a	�H�H�	]�	�#?ɜ	��8x�
    ���	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	)���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@n@}k
    �nU��v
    �o�k
    p}k
    ?��Sr�v
    3�ty�	�v
    0qv�	�v
    1uw��	�v
    2
    y��	��v
    3�yy�	�v
    '�{]	]	@}k
    �}@}k
    �~p}k
    % *�/
    
    
    ��/
    @}k
    ?4�p}k
    ?����p}k
    ?��)�p}k
    ?���p}k
    ?���p}k
    ?�g�@}k
    ؄@}k
    u�`}k
    
    �p}k
     ��y
    p}k
     ��p}k
    ��p}k
    j�p}k
    B�p}k
    �@}k
    �U�P}k
    s�`}k
    ���y
    p}k
    =� k� I����v
    ϕ�v
    �@}k
    1���v
    ޘ�v
    
    ��v
    >��v
    m�`}k
    :d�`}k
    .��v
    )~��v
    9Y	g�	��	'Ӎ	d�	L$��	�UvUv���	����	0|���	��O �
    �1��v
    2f��	
    {-Y
    ��!6�*0Y
    ��!: ��Y
    ��!+��Y
    ��!8@�Y
    ��!9���Y
    ��!-`	�Y
    ��!6�
    ��Y
    ��!3��Y
    ��!,�Y
    ��!+��Y
    ��!<0�Y
    ��!6��Y
    ��!6P�Y
    ��!-��Y
    ��!+p�Y
    ��!;�Y
    ��!5��Y
    ��!+ �Y
    ��!,����v
    7�W�X�v
    �Y�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!?@��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!(� ݏ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+`"���	P�	Y
    �%�Y T�Y T��	�MVMV2MV,MV2MV,MV2MV,MV"MV"MVMV*MV$��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�$Q�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!,�%��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!}D'E��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!2�(�[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    5k)�v
    �m)�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!90*���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�+ϳ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!*P-
    l�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!=�.��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�0���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!@2h��	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!*�3ޏ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    14�v
    �34�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MVMV
    MVMV
    ��	��	+[Y
    ��!< 5��	P�	Y
    �%�Y T�Y T��	�MV(��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�6���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6@8
    H�	P�	Y
    �%�Y T�Y T��	�MV
    (MV
    (MV
    (MV&MVMV&MV��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�Y:i�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+`;u�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!�=o��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!?�>�a�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    }E?�v
    H?�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!8@��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5�A��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV0MV0MV0MV0MV&��	���	��	+[Y
    ��!�C���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!r�D{:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!0PF�~�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!,�G��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!.�I����(
    ��I�v
    �I�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!<KC�	P�	Y
    �%�Y T�Y T��	��[	c	q	��/0�	��	���	��	+[Y
    ��!;�L��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV2MV2��	���	��	+[Y
    ��!w^N0��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!<�O�Q�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�qQB��	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!*�R�^�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!��Tr���(
    �T�v
    ��T�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV"MV"��	���	��	+[Y
    ��!�V<��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!.�W2m�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV,MV&MVMVMV7?3U,7��MV&��	���	��	+[Y
    ��!�%Y���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-�Z1z�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!20\���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!w�]8��	P�	Y
    �%�Y T�Y T��	�MV6MV2MV*MV$��	���	��	+[�	��(
    ��^�v
    g_�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV*MV&MV,MV,��	��	+[Y
    ��!3�_���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+�`�A�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!,pb��	P�	Y
    �%�Y T�Y T��	�MV*MV$MV2MV2MV
    4MV"MV"��	���	��	+[Y
    ��!@d	��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!9�e��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!�Ng���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!*�hGa�	P�	Y
    �%�Y T�Y T��	�MVMV3;3U3.�?3U43��~�/3U43�/��	���	��	+[�	��(
    �ui�v
    xi�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV,��	��	+[Y
    ��!3@j���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!*�k��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!wm��	P�	Y
    �%�Y T�Y T��	�MV'MV?3U.'� �MV(;3U.'�MV(;3U.'	�MV(;3U.'�MV(;3U.'�MV(?3U'���MV?3U'��"MV��	���	��	+[Y
    ��!;�ny�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	��	��	���	��	+[Y
    ��!C�p���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5r��	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!?�s���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    u�t�v
    �t�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!40u��	P�	Y
    �%�Y T�Y T��	�MV.MV.��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!pw0��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5Px�K�	P�	Y
    �%�Y T�Y T��	�MV2MV,MV*MV$MV*MV$��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�ez��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+p{T
    �	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!�*}���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!2�~he�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    �Q�v
    #T�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!9 ����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV&MVMV&��	���	��	+[Y
    ��!:�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!<Є�,�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!1h���	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!<����	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV6MV6MV4MV4MV6MV6��	���	��	+[�	��(
    !�Y
    ��!4����v
    ����J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV*��	���	��	+[Y
    ��!5����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!����	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV
    4MV&MVMV5MV.MV(MV&MV&MV&MV&"MV
    5"MV
    5MV&"MV5MV&"MV
    5��	���	��	+[Y
    ��!40�I�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!E����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!*P��U�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!3����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    ����v
    ,���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!������	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!:�1f�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!=�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�[	c	q	��/0�	�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!> ����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!>@���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!?���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    ����v
    /ž�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!`�ɏ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�8�x��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!,���G�	P�	Y
    �%�Y T�Y T��	�MV.MV(MV
    (MV
    (MVMVMVMVMVMVMVMVMVMVMVMVMVMVMVMV��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+��b�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!�^�h��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!2���a�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    L���v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!+P���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!D��
    ��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+p��q�	P�	Y
    �%�Y T�Y T��	�MV.MV.MV4MV"MV"MV"MV"��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!o_�8��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!2���0�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!m$�/��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!?K��&��(
    �K��v
    )N��J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!|ٵ2��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    H�!5��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!9`����	P�	Y
    �%�Y T�Y T��	�MV&MVMV&MV&MV&MVMV*MV$MV"MV"��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4u���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!:���
    �	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!:�׹�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!+��f�	P�	Y
    �%�Y T�Y T��	�MVMVMV��	���	��	+[�	��(
    �`��v
    Wc��J
    �J
    �W��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!40����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5P�iv�	P�	Y
    �%�Y T�Y T��	�MV"MVMV2MV2MV"MVMV&MV��	���	��	+[Y
    ��!8�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!;p����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!p�)��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MVMV��	���	��	+[�	Y
    ��!+'��&��(
    q'��v
    *��J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV MV MV MV ��	��	+[Y
    H�!- ����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!\��$��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4@��O�	P�	Y
    �%�Y T�Y T��	�MVMV(MV8MVMV��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!x�8��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!9`��\�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!4����	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!�������(
    Y���v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!7�/o�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV.MV.MV
    (MV2MV2MV8MV"MV
    MV"MV"��	���	��	+[Y
    ��!\B���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5���}�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!3P���	�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!��ŏ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    S��v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV"MV"��	��	+[Y
    ��!������	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4�jE�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!������	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5 �ZR�	P�	Y
    �%�Y T�Y T��	��[	c	q	��/0�	��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!=@����	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!+����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    ���v
    ����J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!~��G��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!:���o�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!\����	P�	Y
    �%�Y T�Y T��	�MV2MV
    (��	���	��	+[Y
    ��!<��|�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��7��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!,����	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!8��A�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    ����v
    ����J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!+P���	P�	Y
    �%�Y T�Y T��	�MV(MV(��	���	��	+[Y
    ��!5�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!q��0��	P�	Y
    �%�Y T�Y T��	�MV2MV,MV2MV,��	���	��	+[Y
    ��!7��X�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!8 ���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!���d��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    �v
    �
    �J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!3��'�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!rm3��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!0����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!]�!��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!�[���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!A�	?D�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    ��
    �v
    N�
    �J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!70��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��y��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!*PbT�	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV2MV
    (MVMVMV3MV-?3U23��"MV
    (-?3U23�	�"MV
    (-?3U.3�	�?3U23���?3U23���?3U23� ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4pYa�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!-��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!��a�ų(
    ���v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�:@�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!8�u�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV2MV(MV2MV,MV8MV8MVMV
    (MV
    (MV
    (MV
    (MV
    (MV"��	���	��	+[Y
    ��!ԛ���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!3�T4�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�`���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!t9~��	P�	Y
    �%�Y T�Y T��	�MV(MV(��	���	��	+[�	ų(
    �s�v
    }v�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!I ���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    L�!+!���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!?�"��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV"MVMV.MV(MV
    (MV
    (MV2MV
    (��	���	��	+[Y
    ��!�a$���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!.�%G^�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�t'���	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!8�(Ek�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!��*��ų(
    T�*�v
    �*�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV(��	���	��	+[Y
    ��!?,;��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!;�-�y�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV"MV2MV
    (MV
    (MVMV
    (��	���	��	+[Y
    ��!�w/;��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��0m:�[	c	q	��/0�	�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��2���	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!=�3�E�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    �O5�v
    ,R5�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV*MV&��	��	+[Y
    ��!�5��	P�	Y
    �%�Y T�Y T��	�MV*MV&��	���	��	+[Y
    ��!k*7Y:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!<�8�U�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV6MV"MV"MV7MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV1?3U07� �MV*?3U27��"MV
    (1��	���	��	+[Y
    ��!�=:M��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!;�;�b�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!50=��	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!6�>��	P�	Y
    �%�Y T�Y T��	�MV,MV,��	���	��	+[�	ų(
    �@�v
    +@�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!��@���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4�A**�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�zC���	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV2MV
    (MV
    (MV
    (MV
    (MV
    (MV2MV"MVMV2MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV2MV
    (MV
    (MV
    (MV
    (MV
    (MV2MV
    (MV2MV
    (MV2MV
    (��	���	��	+[Y
    ��!6E>��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6�F��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		��	��	���	��	+[Y
    ��!�fHw��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!>�IxI�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    ��J�v
    �J�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!:@K��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-�L��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!ՐN���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!>�O]_�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��Q���	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!:S4l�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV.��	���	��	+[�	Y
    ��!�TΦų(
    p�T�v
    ��T�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!OEV/��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!9�W�z�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV"MV"MV.MV.MV2MV2��	���	��	+[Y
    ��!�Y9��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�Zz:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��\���	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!9^�F�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!��_x�ų(
    �_�v
    ��_�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!3�aj��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��b_:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!3@d�Y�	P�	Y
    �%�Y T�Y T��	�MV1MV""MV1MV""MV1��	���	��	+[Y
    ��!6�e���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!k�g)��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!8�h�m�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!,�j��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    �k�v
    ��k�J
    �J
    �W��	P�	Y
    �%�Y T�Y T��	�MV MV MV MV ��	��	+[Y
    ��!v"l>��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!8�m�}�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!>0o���	P�	Y
    �%�Y T�Y T��	�MV*MV$MV*MV$MV.MV/MV/��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!C\q�+�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    L�!?Pr���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!5!t���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!<pu�N�	P�	Y
    �%�Y T�Y T��	�MV*MV$MV*MV$MV*MV$MV*MV$��	���	��	+[�	ų(
    Hv�v
    �Jv�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!-w��	P�	Y
    �%�Y T�Y T��	�MV(��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!1y��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�Izw:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!7�{wf�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	��[	c	q	��/0�	��	���	��	+[Y
    ��!�\}���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!9�~bs�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!-`���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    $\��v
    �^��J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!���U��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!@�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!<���	P�	Y
    �%�Y T�Y T��	�MV"MVMV"MV"MVMV&��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!x6�0&�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    L�!>0����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!w��-��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!*P��T�	P�	Y
    �%�Y T�Y T��	�MV0MV0MV0MV0��	���	��	+[�	ų(
    #"��v
    �$��J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!-����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��ߺ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-�	e�	P�	Y
    �%�Y T�Y T��	�MV8MV8��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!X�� ��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!- ��#�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!x�?��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!8@��0�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    ��v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!4��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!1�����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6��@�	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV2MV2MV2MV
    (MV
    (MV
    (MV"MV"MV"MV"MV"MV"MV2MV
    (MV
    (MV
    (MV2MV
    (MV"MV"��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��A �	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    L�!-����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!�՟N��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!>0��Z�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    A���v
    ����J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!9����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!Pu���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!2��j�	P�	Y
    �%�Y T�Y T��	�MV2MV2MV2MV2MV1MV1MV4?3U21� �MV
    (MV1?3U&1���"MV1;3U21�"MV
    (1��	���	��	+[Y
    ��!=p����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�Ҡ�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!, ���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    8¬�v
    �Ĭ�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!<����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6@���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+�	P�	Y
    �%�Y T�Y TMV,��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��Y�	�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!���K��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!=��`�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    Gַ�v
    �ط�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV"MV"��	��	+[Y
    ��!;����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!HO���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-���p�	P�	Y
    �%�Y T�Y T��	�MV&MVMV&MV��	���	��	+[Y
    ��!>P���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-p���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!,���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	ų(
    $���v
    ����J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MVMVMVMVMVMVMVMVMVMV��	��	+[Y
    ��!4�����	P�	Y
    �%�Y T�Y T��	�MV(MV(��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!Hd���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!,���K�	P�	Y
    �%�Y T�Y T��	�

    ������a	�g�g�	]�	�#?ɜ	��8�x�
    ����	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	1���ÎLVp}k
    2(�u�	k�	F�k�	F�p}k
    C�@��@}k
    ̉U��v
    ��k
    p}k
    ?�����v
    3m�y�	�v
    0���	�v
    1����	�v
    2j���	��v
    3%�y�	�v
    'Ǘ]	]	�v
    '��]	]	p}k
    .� /�p}k
     �`}k
    :��p}k
     -��y
    p}k
    ' ��`}k
    ��@}k
    ?4Y�p}k
     ���p}k
    ���p}k
    �:�p}k
    ۟�v
    ��v
    S��	C������a	�H�H�	]�	�#?ɜ	��8�x�
    ����	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	4���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@�i@}k
    �jU��v
    �k�k
    p}k
    ?���m�v
    3rpy�	�v
    0�q�	�v
    1�r��	�v
    2ow��	��v
    3*xy�	�v
    '�x]	]	�v
    '�y]	]	p}k
    .� 3zp}k
     �z`}k
    :�{p}k
     1|�y
    p}k
    ' }`}k
    �}@}k
    ?4]~p}k
     ��~p}k
    ��p}k
    �>�p}k
    ߀�v
    ��v
    W��	C������a	�H�H�	]�	�#?ɜ	��8�x�
    ����	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	8���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@wn@}k
    JoU��v
    �o�k
    p}k
    ?���r�v
    35uy�	�v
    0�v�	�v
    1�w��	�v
    2qy��	��v
    3.zy�	�v
    '�{]	]	@}k
    �}@}k
    r~p}k
    % 3�/
    
    
    ��/
    @}k
    ?4�p}k
    ?����p}k
    ?��0�p}k
    ?��Ёp}k
    ?�v�p}k
    ?��@}k
    �@}k
    ��`}k
    =�p}k
     ��y
    p}k
     �p}k
    Ìp}k
    ��p}k
    q�p}k
    I�@}k
    -�U�P}k
    ��`}k
    ��y
    p}k
    =� �� I����v
    ��v
    8�@}k
    1��v
    ��v
    J��v
    z��v
    ��`}k
    :dU�`}k
    .����v
    )���v
    9Y	g�	��	'Ӎ	d�	L$��	�UvUv���	J����	P|���	��O �
    �1��v
    2o��	
    {-Y
    ��!3�b0Y
    ��!- �Y
    ��!5���Y
    ��!9@��Y
    ��!<����v
    ��Y
    ��!,`	�Y
    ��!,�
    ��v
    3y�	�v
    0��	�v
    1���	�v
    2�	��	��v
    3h
    y�	�v
    3�y�	�v
    0e�	�v
    1���	�v
    2(��	��v
    3
    y�	Y
    ��!Ʉ��Y
    ��!8c��v
    3��y�	�v
    0���	�v
    1����	�v
    2r���	��v
    3Z�y�	������a	�H�H�	]�	�#?ɜ	��8�x�
    ����	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	8���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@wn@}k
    JoU��v
    �o�k
    p}k
    ?���r�v
    35uy�	�v
    0�v�	�v
    1�w��	�v
    2qy��	��v
    3.zy�	�v
    '�{]	]	@}k
    �}@}k
    r~p}k
    % 3�/
    
    
    ��/
    @}k
    ?4�p}k
    ?����p}k
    ?��0�p}k
    ?��Ёp}k
    ?�v�p}k
    ?��@}k
    �@}k
    ��`}k
    =�p}k
     ��y
    p}k
     �p}k
    Ìp}k
    ��p}k
    q�p}k
    I�@}k
    -�U�P}k
    ��`}k
    ��y
    p}k
    =� �� I����v
    ��v
    7�@}k
    1��v
    ��v
    J��v
    z��v
    ��`}k
    :dU�`}k
    .����v
    )���v
    9Y	g�	��	'Ӎ	d�	L$��	�UvUv���	K����	Q|���	��O �
    �1��v
    2p��	
    {-Y
    ��!4�d0Y
    ��!, �Y
    ��!*��Y
    ��!8@�Y
    ��!8��Y
    ��!9`	��Y
    ��!)�
    �Y
    ��!4���Y
    ��!*�Y
    ��!;��Y
    ��!00�Y
    ��!-��Y
    ��!5P��Y
    ��!8���Y
    ��!9p��Y
    ��!+�Y
    ��!+��Y
    ��!> �Y
    ��!,���v
    7NU�X�v
    lW�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!?@��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!0� ��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV7MV-?3U27�	�?3U(-��?3U.	7� �?3U.	7� �MV(?3U.	7��MV(?3U&7�	�?3U-�����	���	��	+[Y
    ��!��"P$�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    H�!3�#���	P�	Y
    �%�Y T�Y T��	�MV5��	���	��	+[Y
    ��!<�%���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!+'��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV*MV$��	���	��	+[�	Y
    ��!�)�
    ��(
    ')�v
    �)�J
    �J
    ��	P�	MV�1�Y
    �%�Y T�Y T��	�MV3��	��	+[Y
    ��!*0*>�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!>�+��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!=P-��	P�	Y
    �%�Y T�Y T��	�MV#MV?3U.#����	���	��	+[Y
    ��!3�.��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�y0B��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!<2���	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!*�3��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    x{4�v
    ~4�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV4��	��	+[Y
    ��!9 5��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!d�6��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+@8�K�	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV.MV(MV"MV"MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV
    (MV"MV"MV2MV
    (MV.MV(MV.MV(��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�U:O�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+`;�
    �	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!n=7��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!=�>�e�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    A?�v
    �C?�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!*@��	P�	Y
    �%�Y T�Y T��	�MV(MV"MV(MV"��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!8B��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!*0C�'�	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV
    (MV
    (MV2MV
    (MV2MV
    (MV2MV
    (MV
    (MV
    (MV*MV$MV"MV"MV2MV
    (MV
    (MV
    (MV
    (MV
    (��	���	��	+[Y
    ��!6�D��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!?�F���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-�G�.�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!6vI���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    ��J�v
    *�J�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!�PK���	P�	Y
    �%�Y T�Y T��	��[	c	q	��/0�	MV(MV(MV(MV(��	���	��	+[Y
    ��!3�L+?�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�N�!�	P�	Y
    �%�Y T�Y T��	�MV2MV
    (MV2MV
    (MV2MV
    (MV2MV2MV
    (MV2MV
    (MV2MV
    (��	���	��	+[Y
    ��!��Ox:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-@Q�S�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!��R���	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!9`Ti`�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	Y
    ��!�V����(
    EV�v
    �V�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV(��	���	��	+[Y
    ��!V�Wb��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6Y� �	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV#MV?3U.#� �MV("MV
    ("MV
    ("MV
    (;3U7#���U�"MV1"MV
    (1/3U&7�#/3U&7�#"MV1/3U.	7�#MV(/3U27�#/3U27�#��	���	��	+[Y
    ��!�P[U@�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    H�!�<\L��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!8�]<��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!)P_��	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV(��	���	��	+[�	Y
    ��!�(aT���(
    �(a�v
    y+a�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV*MV
    &MV(��	���	��	+[Y
    ��!�cb��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    H�!7d2��	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV2MV2MV2MV2MV2MV2MV2MV2MV2MV'MVMV"?3U"'�����	���	��	+[Y
    ��!"f��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�Rgt:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!5�h�]�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!>@j���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV,MV,��	���	��	+[�	Y
    ��!E>l����(
    �>l�v
    .Al�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!@`m�!�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�o���	P�	Y
    �%�Y T�Y T��	��	��	���	��	+[Y
    ��!;�pBy�	P�	Y
    �%�Y T�Y T��	�MV2MV&MVMV2MV2MV2MV2MV2MV2MV&MVMV&MV��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�r���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!,�s+��	P�	Y
    �%�Y T�Y T��	�MV8��	���	��	+[�	P�	Y
    �%�Y T�Y T��		�MV	8��	���	��	+[Y
    ��!5}u���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!+�v�B�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    �w�v
    o�w�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!,Px���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!7�y���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV2MV2MV2MV2MV2MV2MV.MV(MV.MV.MV2MV2��	���	��	+[Y
    ��!s�{/�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�/}x:�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!+�~(`�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��		���	���	��	+[Y
    ��!: ���	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[�	P�	Y
    �%�Y T�Y T��	�MV.��	���	��	+[�	Y
    ��!������(
    ��v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!3@�_$�	P�	Y
    �%�Y T�Y T��	�MV(MV(��	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!B?���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!?`�� �	P�	Y
    �%�Y T�Y T��	�MV"MV
    ��	���	��	+[Y
    ��!+���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�ډ���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!3�+5�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!
    ��̏�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    Dڍ�v
    �܍�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	�MV,��	��	+[Y
    ��!�z����	P�	Y
    �%�Y T�Y T��	�MV"��	���	��	+[Y
    ��!9���E�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!ɍ����	P�	Y
    �%�Y T�Y T��	�MV2��	���	��	+[Y
    ��!8�bR�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!ꠔ���	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!7�A_�	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!2����	P�	Y
    �%�Y T�Y T��	��[	c	q	��/0�	��	���	��	+[�	��(
    X���v
    碘�J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!�@�w��	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!6��to�	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!�S����	P�	Y
    �%�Y T�Y T��	�MV*MV*MV2MV2MV2MV2MV2MV2MV
    (MV2MV2MV
    (MV2MV2MV2MV2MV2MV2MV2MV2MV2MV2MV2MV2MV
    (��	���	��	+[Y
    ��!7НV|�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!-`���	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!4����	P�	Y
    �%�Y T�Y T��		���	���	��	+[�	P�	Y
    �%�Y T�Y T��	
    ���	���	��	+[Y
    ��!-����	P�	Y
    �%�Y T�Y T��	���	���	��	+[�	��(
    m���v
    ���J
    �J
    ��	P�	Y
    �%�Y T�Y T��	���	��	+[Y
    ��!�T����	P�	Y
    �%�Y T�Y T��	���	���	��	+[Y
    ��!>��dK�v
    ����%S�	���	+[�	��(
    ����}k
    ;�jj���v
    ^���v
    8���WiW �
    �v
    %i���z�jjԝ��z�z�z�jjԝ�Uv�v��v
    ?���m�}k
    0����	Y
    ��!40��Y
    ��!A���Y
    ��!-P��Y
    ��!:��Y
    ��!-p��Y
    ��!:��Y
    ��!3���Y
    ��!. ��Y
    ��!3����Y
    ��!4@���Y
    ��!4ж�Y
    ��!/c��Y
    ��!1���Y
    ��!���Z�Y
    ��!3���Y
    ��!.���Y
    ��!+0��Y
    ��!-����Y
    ��!5W���Y
    ��!=����Y
    ��!�s���Y
    ��!��ؓY
    ��!:��x�Y
    ��!�&�|�Y
    ��!���؉Y
    ��!0@��Y
    ��!X���Y
    ��!-`�ɏY
    ��!-���Y
    ��!4����Y
    ��!��U�Y
    ��!@����Y
    ��!2���Y
    ��!3��'�Y
    ��!4P���Y
    ��!e��%�Y
    ��!.p���Y
    ��!-��Y
    ��!<���Y
    ��!8 ���[	c	q	��/0�	Y
    ��!8����	Y
    ��!5@��Y
    ��!?����Y
    ��!:`��Y
    ��!5���Y
    ��!:����Y
    ��!-��Y
    ��!����Y
    ��!+0�1�Y
    ��!6����Y
    ��!,P��Y
    ��!<���Y
    ��!�r�i�Y
    ��!-�p�Y
    ��!”���Y
    ��!5 �g�Y
    ��!I���Y
    ��!}F(�Y
    ��!��U�Y
    ��!"d8�Y
    ��!g�9�Y
    ��!��1�Y
    ��!a�Y
    ��!��	��Y
    ��!�0�Y
    ��!���Y
    ��!�Q�Y
    ��!/���Y
    ��!7p��Y
    ��!/�Y
    ��!:���Y
    ��!8 �Y
    ��!;���Y
    ��!=@��Y
    ��!,��Y
    ��!-`��Y
    ��!��v�Y
    ��!8�|�Y
    ��!�!��Y
    ��!/�"7�Y
    ��!40$��Y
    ��!��%��Y
    ��!8P'<�Y
    ��!7�(�Y
    ��!.p*�Y
    ��!?,�Y
    ��!7�-�Y
    ��!; /��Y
    ��!,�0��[	c	q	��/0�	Y
    ��!:@2�Y
    ��!:�3�Y
    ��!.`5�Y
    ��!9�6��Y
    ��!9�8�Y
    ��!7:�Y
    ��!5�;�Y
    ��!80=��Y
    ��!,�>�Y
    ��!,P@�Y
    ��!/�A��Y
    ��!;pC�Y
    ��!/E�Y
    ��!4�F��Y
    ��!< H���v
    �(I�J
    �J
    ��	
    �	Y
    �%��	���	��	Y
    ��!>�I��Y
    ��!>@K��	�	Y
    �%��	���	���	��	Y
    ��!:�L�Y
    ��!=`N���	�	Y
    �%��	���	���	��	Y
    ��!7�O�Y
    ��!6�Q��	�	Y
    �%��	���	���	��	Y
    ��!>S��Y
    ��!G�T���	�	Y
    �%��	���	���	��	Y
    ��!40V�Y
    ��!4�W��	�	Y
    �%��	���	���	��	Y
    ��!<PY��Y
    ��!��Z���	�	Y
    �%��	���	���	��	Y
    ��!6p\_�Y
    ��!.^��	�	Y
    �%��	���	���	��	Y
    ��!+�_��	�	Y
    �%��		���	���	��	Y
    ��!ea��Y
    ��!,�b	K�	�	Y
    �%��	
    ���	���	��	Y
    ��!$Md�Y
    ��!�e݊�	�	�	Y
    �%��	���	���	��	Y
    ��!7`g�Y
    ��!5�h��	�	Y
    �%��	���	���	��	Y
    ��!2�j�Y
    ��!4l���	�	Y
    �%��	
    ���	���	��	�	
    
    ų(
    
    N,mY
    ��!7�m��Y
    ��!+0o�Y
    ��!7�p�Y
    ��!7Pr�Y
    ��!9�s��Y
    ��!+pu�Y
    ��!5w��Y
    ��!,�x�Y
    ��!/ z��Y
    ��!7�{���[	c	q	��/0�	Y
    ��!.@}�Y
    ��!,�~�Y
    ��!6`���Y
    ��!>���Y
    ��!7���Y
    ��!,��Y
    ��!/����Y
    ��!80���Y
    ��!9����Y
    ��!7P��Y
    ��!.��Y
    ��!8p���Y
    ��!.��Y
    ��!;���Y
    ��!A ���Y
    ��!8���Y
    ��!A@���Y
    ��!5�Y
    ��!A`��Y
    ��!*�ݏY
    ��!<���Y
    ��!8��Y
    ��!:����Y
    ��!,0��Y
    ��!:���Y
    ��!5P��Y
    ��!>���Y
    ��!<p��Y
    ��!/��Y
    ��!?���Y
    ��!4 ��Y
    ��!-���Y
    ��!/@���Y
    ��!6�Y
    ��!9`���Y
    ��!5��Y
    ��!@����Y
    ��!8��Y
    ��!7���Y
    ��!70��Y
    ��!9����Y
    ��!8P��Y
    ��!/��Y
    ��!;p��Y
    ��!=���Y
    ��!7���Y
    ��!; ���Y
    ��!<���Y
    ��!6@���[	c	q	��/0�	Y
    ��!:����Y
    
    �
     ��"*�	�Y
    ��!?`���Y
    ��!=���Y
    ��!/���Y
    ��!-��Y
    ��!>���Y
    ��!90��Y
    ��!.���Y
    ��!5P���Y
    ��!:����Y
    ��!@p���Y
    ��!9��Y
    ��!-���Y
    ��!/ ���Y
    ��!=���Y
    ��!/@��Y
    ��!5����Y
    ��!5`��Y
    ��!;�����	Y
    ��!8���Y
    ��!<���Y
    ��!A����Y
    ��!-0��Y
    ��!/����Y
    ��!?P��Y
    ��!=���Y
    ��!:p��Y
    ��!5��Y
    ��!+���Y
    ��!5 ���Y
    ��!A���Y
    ��!@@��Y
    ��!-���Y
    ��!/`���Y
    ��!5����Y
    ��!/��Y
    ��!7��Y
    ��!.��Y
    ��!70��Y
    ��!/��Y
    ��!8P��Y
    ��!/�	�Y
    ��!Ap�Y
    ��!<
    �Y
    ��!8��Y
    ��!9 ��Y
    ��!,��Y
    ��!;@�Y
    ��!3���[	c	q	��.0�	 Y
    ��!9`��Y
    ��!6��Y
    ��!<���Y
    ��!+�Y
    ��!<��Y
    ��!70�Y
    ��!9���Y
    ��!-P!�Y
    ��!B�"
    �Y
    ��!3p$�Y
    ��!.&�Y
    ��!:�'�Y
    ��!. )�Y
    ��!>�*�Y
    ��!/@,�Y
    ��!@�-�Y
    ��!:`/�Y
    ��!.�0�Y
    ��!=�2�Y
    ��!54�������a	L\L\�	]�	�#?ɜ	��8�x�
     ����	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	w`���ÎLVp}k
    2(���	k�	F�k�	F�p}k
    C�@
    �@}k
    ��U��v
    ���k
    �}k
    ?���%�v
    3$(y�	�v
    0h)�	�v
    1�+��	�v
    2�-��	��v
    3R.y�	�v
    ''/]	]	�}k
    �/�}k
    �0�}k
    % A1�/
    
    
    ��/
    �}k
    ?42�}k
    ?���2�}k
    ?��B3�}k
    ?��4�}k
    ?��4�}k
    ?�e5�}k
    6�}k
    �6�}k
    	;�}k
     �;�y
    �}k
     �<�}k
    �=�}k
    �>�}k
    �?�}k
    M@�}k
    <AU��}k
    �B�}k
    rC�y
    �}k
    =� 
    D I����v
    tF�v
    �G�}k
    1QH�v
    �I�v
    �J�v
    �K�v
    M�}k
    :d�M�}k
    .�mN�v
    )*O�v
    9Y	g�	��	'Ӎ	d�	L$��	�UvUv���	�����	s3���	��O �
    �1��v
    2���	
    {-Y
    ��!$���������a	�H�H�	]�	�#?ɜ	��8�x�
     !����	��	�c�	�O �	Uv#"������2y��s(X����<�|
    �1.2.7.0.09�	��	�	7���ÎLVp}k
    2(�V�	k�	F�k�	F�p}k
    C�@�i@}k
    �jU��v
    �k�k
    p}k
    ?���m�v
    3qpy�	�v
    0�q�	�v
    1�r��	�v
    2nw��	��v
    3)xy�	�v
    '�x]	]	�v
    '�y]	]	p}k
    .� 3zp}k
     �z`}k
    :�{p}k
     1|�y
    p}k
    ' }`}k
    �}@}k
    ?4]~p}k
     ��~p}k
    ��p}k
    �=�p}k
    ߀�v
    ��v
    
    ��v
    5��v
    Ϡ�v
    �v
    ��Y
    	��	���	���	���	���	���		���	���	
    ���	���	���	���	
    ���	���	���(
      i9(		Y
    	��	��v
    9r�v
    
    �s��
    m�v
    )Du9Y	Uv�v
     v�}k
    �vU���	���(
    O�9(		Y
    �c
    ���	Y
    kp
     ���	���(
    ��ȅ'p
    �}k
    E���}k
    ީ�y
    �}k
     ���v
    ث�v
    ��v
    _��v
    ���}k
    = ~� I����}k
    = �� I����v
    )��9Y	Uv��	�Y
    �c
    ���	�m���	nf�ϙ��}k
    0�E�#"������2y���(X1�����}k
    1=��v
     ���(
    �����v
    !D��v
    *-��V	�Ic
    �{��I�	 ����Ix~
     ��5u�~���n�${�-{�${�
    	�y
    dϙ�,�	�Dys
    �I.{Ƚ
    	s
    �Dy�I#1{=�Ii3{��Ig5{��Ia{
    {��I�{	 �����n�Q{^Z{�,�I~Z{ f>#"�������2y���(3�����I\{�?�I�^{�B�I�`{�D�Ixb{`F�I|d{dH�I�e{�I�IQg{9K�I�h{�L�I(�{
    �	�IL�{	 4�	���n��{�{���I>�{ ��	�I��{G�	�I��{*�	�I��{�	�I&3{
    ��IJ3{	 �`�AA������n�q{"z{��IHz{ �]�I�{{�^�I'�{
    ���IK�{	 ��`�B�q����n�{$
    {��IJ
    { n��I'S{
    K6�IKS{	 o6`�B�%�����n��{$�{��IK�{ ,}�I'�{
    	��IK�{	 -��I<`{
     CuF`{d�L�|����nY_{�g{���I#h{�J���
    �I(s{
    �U�ILs{	 �Ud�9J������n��{%�{'R�IM�{ ���I'{
    ���IK{	 ��d�@��^	����n�A{�J{d��I�J{ �,�I'�{
    Eu�IK�{	 iud�B��
    ����n��{B�{���Ii�{"E��I��{׾�I��{���I�{���v
    	�{��	í	�G �	
    �	@H �	�O �v
    	�{��	í	�G #�	/�	C�	��	0��	pP �v
    !>{�v
    �{�v
    Y{�	�m�y{Y
    
    �
    ! ��"*�	�v
    �{�v
    �{�}k
    -Q	{�I(#{
    �IM#{	 (d�B�}����n�a{#j{���IIj{ �K�����1y��>(X�����a�	�I�k{�M�}k
     �l{�y
    �Io{�P�I�q{}S�Ivt{V�I�w{Y�I4y{�Z�I�z{9\�I
    |{�]�I�}{`_�Ig{a�I�{{b�I��{3d�I�{|e�Il�{g�Iӆ{lh�I��{Zj�I��{(l�I<�{�p�I��{+r�I8�{�s�I��{"u�Ie�{�v�I��{Ry�IT�{�z�I�{�|�I˜{d~�I�{���IS�{��I��{C��I>�{؄�I֤{p��II�{��I��{X��I��{��Iת{q��Iu�{��I׭{p��I�{��IѰ{k��Ip�{
    ��Iͳ{g��I��{���I��{'��I̷{e��IE�{ޚ�Ib�{
    ���I��{	  �d�AOZ
    ����n��{"�{��IH�{ ��������I��{G��I��{���I�{���IaA {
    �"�I�A {	 �"d�H�������n� {�� {���Iٰ { �������ID� {U��I� {��Ib�!{
    s��I��!{	 ��d�;��,����n�"{""{ri�II"{ �������I�"{���Iba#{
    8B�I�a#{	 \Bd�Bپ����n�#{��#{f��I��#{ B�������Iɭ#{]��I>�#{ҏ�Id�#{���I�#{���I��#{��I��#{>��Ia�${
    ���I��${	 �d�AU'L����n�1%{#:%{���II:%{ �������I�;%{K�I�>%{!�IvA%{�!�Ib�&{
    �a�I��&{	 �ad�A�������n��&{"�&{��IH�&{ Z�������I��&{���}k
    /H�&{kz�Ia({
    s� �I�({	 �� d�C��k����n�Q({#Z({��IIZ({ :!������I[({�:!�IO`({@!�Ic�Ia�){
    0�"�I��){	 T�"�v
    3S
    *{y�	�v
    2$*{��	��g�v
    l*{�	��*{�}k
     *{{��Iv*{
    2E�"u�*{�����d�K$5;����n}!*{ **{���IF**{�	#��Ui�	������s	�A�����A�I'+*{�
    #�I�,*{Q#�I.*{�
    #�I0*{�#�IO2*{�#�I4*{�#ų(
      �Z*{�}k
    )\*{U���(�1]*{��	�0+{�	�#Ic1+{
    nd�Ko�����n�q+{#z+{PCIIz+{ 	I�	��0y�A(�������� x_{+{��	$�,{�	�#I��,{
    r���n�-{
    -{�CI?
    -{ �
    WI�-{!WI-{WI�-{�wI�-{{wIs-{wI�-{CWI�-{JWI�-{�WI�-{KwIw-{WI"-{�"WI�#-{^$WI%-{�%wIF&-{�&wI�'-{!(WI�(-{�)WIo*-{�*wI,-{�,wI�--{,.WI�.-{~/WI70-{�0wI�1-{]2wI[3-{�3WI�4-{c5WI�?-{V@wI�A-{=BwIC-{�CWI�D-{UEWI�F-{HG��K:JI-{��	8�.{�	�#I��.{
    b���n��.{I�.{0�CIo�.{ ���Wv)�.{��	10{�	�#I�0{
    h���n�!0{*0{ЍCI?*0{ �
    ���x�*0{��	D�1{�	�#I��1{
    T���nIJ1{\�1{D�CI��1 ���Kw=�1{��	;?3{�	�#I�?3{
    ]CI�^3{
     �uA_3{���c�_3{��	�|4{�	���<��4{��	,�4{�	�#I��4{
    l���n�4{��4{?CI��4{ CWI
    �4{�wI��4{zWI�4{�wI|�4{�WI�5{Z1�	��\R,5{��	�@5{�	��}k
    �G5{U��v
    ]H5{��	�vH5{sI%T5{7sI�U5{�sI�V5{�}k
    tB6{{���s	�B�}k
    �N6{{���s	�B�I�_6{
    ��I�_6{	 ����n�a6{j6{}��I>j6{ 
    )�I�k6{�*�v
    j17{�	��17{ų(
      Dp7{�}k
    �q7{U���/q�r7{��	>�7{�	�#I��7{
    Z���n��7{�7{�CI>�7{ �
    ���x��7{��	9{�	���xT.9{��	�*9{�	��}k
    d+9{{���s	�B���D�.9{��	09{�	�#I�9{
    h#I�9{	 ����n��9{.�9{�CIU�9{��
    WI��9{�}��'^V�9{��	+;{�	�#I�;{
    l#I�;{	 ����n�;{0;{�CIV;{��
    ų(
    @@�Y;{�}k
    	�Z;{U��v
    \[;{��	�v[;{�v
    ՞;{�	��;{ų(
      ��;{�}k
    
    �;{U�������;{��	�<{�	�#I��<{
    x#IƟ<{	 �CI��<{
     �uA�<{���c��<{��	'�<{�	�cI��<{`sI@�<{sI��<{ssI�<{���&8n�<{��	1/>{�	�#I�/>{
    g#I�/>{	 ����n2>{�:>{� CI�:>{ IWI�=>{MWI?>{�wI�@>{&wIZB>{�WI#D>{�WI�E>{`WI�G>{WI�I>{(WI�J>{mWI�L>{WI�M>{qwI;O>{�wI�P>{!WI�Q>{l"wI�S>{$wIU>{�%WI`V>{�&WIX>{�(WI�Y>{*WI�Z>{s+wI�\>{ -WIh^>{�.wI�_>{a0WIba>{�1wIc>{�3���O�c>{��	I�?{�	�#I��?{
    O#Iǿ?{	 s���n��?{�?{u�CI>�?{ �
    ���x��?{��	��@{�	������@{��	>OA{�	�#I�OA{
    Y#I�OA{	 }���n�QA{ZA{�CI?ZA{ �
    WI�]A{$WIJ_A{����q�aA{��	9�B{�	�#I��B{
    b#I��B{	 ����n��B{�B{�CI?�B{ �
    ���x��B{��	.oD{�	�#I�oD{
    j#I�oD{	 ����n�qD{zD{�CI>zD{ �
    WI3{D{�WI�}D{WI9D{�WI€D{GWIT�D{���bp#�D{��	#�E{�	�#I��E{
    u#I��E{	 ����n�F{s
    F{[�CI�
    F{ )WI�F{S���v�F{��	9�G{�	�#I��G{
    b#IɏG{	 �CI��G{
     �uE�G{���c��G{��	@VH{�	��}k
    �VH{{���s	�B��C�SZH{��	*I{�	�#I�I{
    m���n�!I{*I{�CI>*I{ �
    WI.+I{�WI~-I{wI/I{���hr1I{��	'�J{�	�#I��J{
    q���n��J{�J{�CI>�J{ �
    WI8�J{�WI��J{
    wIٽJ{dWI"�J{���7qE�J{��	?L{�	�#I�?L{
    x���n�AL{JL{�CI?JL{ �
    WI2KL{�WIzLL{
    WI�NL{WI�OL{oWI�QL{,wIWSL{�wI�TL{\WIhVL{�WIXL{�wI�YL{YWI^[L{�wI]L{�wI�^L{NWIm`L{!WI�aL{["WI9dL{�$���^eL{��	3�M{�	�#I��M{
    f���n��M{�M{�CI.�M{ �
    0y�(������WI�M{�WIp�M{�WI��M{wIF�M{�WI��M{1wI�M{�WI@�M{�wI��M{;WIU�M{�wI�M{�WIG�M{�wI�M{����c��M{��	d_O{�	�#I�_O{
    f���n�aO{jO{�CI?jO{ �
    0y�B(��������]x)kO{��	@�P{�	�#I��P{
    VCI�Q{
     �u@Q{���c�Q{��	4R{�	�#I�R{
    b���n��R{�R{ CIA�R{ �
    ���x�R{��	HT{�	���c[	c	q	��/0�	!!!#I�T{
    O���n�T{T{�CI?T{ �
    ���x�T{��	t�T{�	�����	�T{��	��T{�	��}k
    +�T{{���s	�B������T{��	:�U{�	�#I��U{
    \#IşU{	 ����n��U{�U{�CI>�U{ �
    WI8�U{�wIB�U{�
    wI��U{&WI�U{YwIG�U{�wIóU{6��nz�U{��	5/W{�	�#I�/W{
    b#I�/W{	 ����n�1W{:W{�CI?:W{ �
    ���x�:W{��	��W{�	������W{��	J�X{�	�#I��X{
    L#IſX{	 p���n��X{�X{�CIE�X{��
    WI��X{�U���q��X{��	COZ{�	�#I�OZ{
    S#I�OZ{	 w���n�QZ{ZZ{�CI?ZZ{ �
    ���x�ZZ{��	�l[{�	����\w[{��	8�[{�	�#I��[{
    b#I��[{	 �CI��[{
     �uD�[{���c��[{��	Jo]{�	�#I�o]{
    L#I�o]{	 p���n�q]{z]{ CI>z]{ �
    ���x�z]{��	D�^{�	�#I��^{
    S#I��^{	 w���n�_{�_{z�CI�_{ '��wn_{��	�=_{�	����0�R_{��	6�`{�	�#I��`{
    b#IƏ`{	 ����n��`{�`{��CI>�`{ �
    WI��`{r��,wT�`{��	/b{�	�#I�b{
    h#I�b{	 ����n�!b{*b{�CIC*b{ �
    ���x�*b{��	�c{�	�����c{��	B�c{�	�#I��c{
    T#Iůc{	 x���n��c{N�c{6�CIt�c{ �
    WIռc{C
    ��Wv/�c{��	  d{�	��}k
    � d{{���s	�B���$d{��	8?e{�	�#I�?e{
    bCI�^e{
     �uD_e{���c�_e{��	L�f{�	�#I��f{
    J���n��f{�f{�CI>�f{ �
    ���x��f{��	G_h{�	�#I�_h{
    P���n�ah{
    jh{�CI2jh{ �
    ���x�jh{��	?�i{�	�#I��i{
    X���n��i{�i{�CI?�i{ �
    WI1�i{�wI��i{	
    wI��i{rWIj{�WIij{�wI�j{AwI6j{�WI�j{.���k�j{��	6k{�	�#I�k{
    b���n�k{��k{��CIǎk{ CWI�k{]wI�k{lWI��k{/WI�k{nWI<�k{�WI�k{]WIԠk{O!wIR�k{�"��L`B�k{��	+m{�	�#I�m{
    l���n�m{m{y�CIAm{ �
    ���x�m{��	@�n{�	�#I��n{
    WCI��n{
     �uA�n{���c��n{��	5/p{�	�#I�/p{
    b���n�1p{:p{ CI?:p{ �
    WIw;p{�WIC@p{����p�Bp{��	.�q{�	�#I��q{
    i���n��q{�q{�CI>�q{ �
    WI��q{wI�q{���s��q{��	p=s{�	��}k
    �Ds{{���s	�BCI�Os{
    'CI�Os{	 J���n�Qs{Zs{�CI?Zs{ ����x�Zs{��	9�t{�	�#I��t{
    ]#I��t{	 ����n��t{0�t{�CIY�t{ ���no�t{��	^au{�	������iu{��	Lov{�	�#I�ov{
    K#I�ov{	 o���n�qv{.zv{�CITzv{��
    WI�{v{�d���Tݞv{��	C�w{�	�#I��w{
    S#I��w{	 w���nx{�x{��CI�x{ L���r�x{��	p2y{�	����97Jy{��	;�y{�	�#I��y{
    \#IƏy{	 ����n��y{�y{b�CI>�y{ �
    WIx�y{�WI\�y{����r��y{��	1{{�	�#I�{{
    f#I�{{	 ����n<#{{�+{{��CI�+{{ }���v�,{{��	)�|{�	�#I��|{
    m#Iů|{	 ����n��|{��|{��CI��|{ >��&um�|{��	�}{�	�����}{��	=?~{�	�#I�?~{
    Y#I�?~{	 }���n�I~{#R~{��CIJR~{ �WIU~{t��n\U~{��	3�{�	�#I��{
    d#I��{	 ����n��{o�{L�CI��{ ��JrL�{��	nՀ{�	���pi;�{��	*_�{�	�#I�_�{
    m#I�_�{	 ����nFe�{�m�{o�CIn�{ �WIso�{�WI�r�{d��Cp:s�{��	<��{�	��}k
    Ȃ�{{���s	�B��h]R��{��	=�{�	�#I��{
    [���n��{5��{@�CI[��{��Q.
    ����
    5�>�{��	4�{�	�#I��{
    b���n���{K��{&�CIq��{��WI~��{��ų(
    @@�J�{�}k
    	��{U��v
    ��{��	���{�v
    ��{�	���{ų(
      �L�{�}k
    ;N�{U����O�{��	.�{�	�#I��{
    i���n��{�{ԉCIA�{ �
    ���x��{��	@��{�	�#I���{
    W���n���{��{�CI?��{ ����i���{��	:/�{�	�#I�/�{
    ]���n59�{�A�{��CI�A�{ ]���p�B�{��	M��{�	�#I���{
    J���n�Ȋ{�ъ{ÏCI�ъ{ 
    ��qcҊ{��	%O�{�	�#I�O�{
    r���n�T�{G]�{ƋCIn]�{ �
    ��cu$^�{��	8ߍ{�	�#I�ߍ{
    b���n��{�{ŒCI?�{ �
    WI��{WwI�{xWI��{WI��{e���m���{��	2o�{�	�#I�o�{
    f���n�r�{/{�{'�CIX{�{ ����w|�{��	D��{�	�#I���{
    S���n��{
    �{َCI.
    �{ �
    WI��{�wI�
    �{�
    ���s��{��	
    ��{�	�����̦�{��	e��{�	��}k
    첑{{���s	�B��)�r��{��	9��{�	�#I���{
    ]#Iŏ�{	 ����n���{��{�CI.��{ �
    ���xᚒ{��	2�{�	�#I��{
    f#I��{	 ����n�!�{*�{�CIE*�{��
    ��hr$1�{��	G��{�	�#I���{
    O#Iů�{	 s���n,��{�ĕ{��CI�ĕ{ DWI�ƕ{Y���i�ɕ{��	??�{�	�#I�?�{
    X#I�?�{	 |���n�A�{J�{T�CI?J�{ �
    ���x�J�{��	"��{�	�����
    ė{��	0Ϙ{�	�#I�Ϙ{
    h#I�Ϙ{	 ����n�ј{ژ{�CI>ژ{ �
    WI�ۘ{xWI�ߘ{��7qX�{��	I_�{�	�#I�_�{
    N#I�_�{	 r���n�a�{j�{�CI>j�{ �
    ���x�j�{��	?�{�	�#I��{
    X#I��{	 |���n��{o��{W�CI���{ ��KwJ��{��	7�{�	�#I��{
    b#I��{	 ����n
    ��{���{6�CI̔�{ E��n���{��	/�{�	�#I��{
    h#I��{	 ����n��{$�{�CIJ�{ �WI��{.��>sP �{��	?��{�	��[	c	q	��/0�	!!!#I���{
    X#IƟ�{	 |���n4��{δ�{��CI��{ eWI��{����h���{��	��{�	��}k
    D�{{���s	�B���:��{��	6/�{�	�#I�/�{
    b���n9�{�A�{�CI�A�{ O���p�B�{��	�/�{�	������{��	���{�	��}k
    =��{{���s	�BCI���{
    �CIĿ�{	 	���n�ͣ{֣{o�CI5֣{ 1%WI�ڣ{�)���h�ڣ{��	&O�{�	�#I�O�{
    q#I�O�{	 ����nF]�{�e�{��CIf�{ �WIh�{�WI�j�{nWI�o�{( ��_a/r�{��	:ߦ{�	�#I�ߦ{
    _#I�ߦ{	 ����n��{|�{��CI��{ WI��{U��n���{��	h�{�	���X}�{��	/o�{�	�#I�o�{
    g#I�o�{	 ����n�q�{�z�{��CI�z�{ 0WIi|�{�WIK�{�wIZ��{�WI߃�{`��

  • Hi,

    At least from the MAC firmware log I can see that the device enters into AP role and sending beacons. So nothing seems to be bad on the non-working case.

    All is left to do is:

    • connect a current meter and probe the flow. If beacons are transmitted you would be able to see current peaks every ~100mSec.
    • use a power detector next to the RF port and observe if you see these peaks cyclically.
    • use an air sniffer and see if you can see the beacons
    • reprogram he board and see if it is resolved - this is disruptive, meaning that if the issue is resolved we would not know the real root cause

    Regards,

    Shlomi

  • Dear Shlomi,

    Thank you for the update,

    how do I check the air sniffer ? air sniffer is tools ? what is the process to check the beacons ?

    Many time's i have reprogram and test also but not output at all. 

    I need to find it out why this is happening because already two board failed due to this issue and i have 100 pulse board at client place, don't know how would i fix this issue if we founded again same thing with working board?

    I have a one question here ? does software damage the wi-fi transmitting power like RF thing ?

  • Hi,

    If after reprogramming the board you still cannot see the AP or work in station mode, it must be a hardware issue.

    Have you shared with someone from TI your schematic/layout?

    The only software related issue I can think of is the calibration process that generates a calibration file but I can see that this file is generated in both cases (I cannot examine it as it is secured and encrypted but I have no reason to believe it is damaged).

    Regarding an air sniffer, I don't know of any free license tools. For a start, probing the current consumption from the device could be a good start.

    Shlomi

  • Hi,

     

    1. Schematic and Layout design was revied before by my colleague. Issue-Board was working fine for 2 months, now the issue came and other boards are still working fine from more than 3 months. Even Issue-Board is working fine with all GPIO/Analog pin/SD Card now, only RF/connectivity is not happening. 
    1. "probing the current consumption from the device" Mean, Measure the current between CC3220MODSF VDD pin and 3.3V supply? 
    1. "connect a current meter and probe the flow." Mean, Measure the current between CC3220MODSF VDD pin and 3.3V supply? 
    1. " power detector" are contactless device right? could you share any product link for our understanding.
  • Hi,

    Just to be sure. Your faulty board is not able to connect at client (STA) mode, right? If so, it looks like exact same issue as this one.

    Jan

  • Dear Jan,

    Noted.

  • Yes, but has someone from TI reviewed it?

    By measuring current consumption, you can look at https://www.ti.com/lit/an/swra502c/swra502c.pdf

    This is a reference with the LaunchPad but you can detect where in your system you can probe the current.

    Power detector requires RF specialty and is more complicated so I suggest we focus on the current measurement. But yes, this is a contactless device that senses the air. 

  • Dear Shlomi,

    No, Not reviewed by the TI .

    Noted for the current consumption,

    we will do rest of the test at our lab and let you know if anything we need's from your end.

    Thank you for your support.