code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231 values | license stringclasses 13 values | size int64 1 2.01M |
|---|---|---|---|---|---|
/************************************************Copyright(c)***********************************
** Quintic(Nanjing) Microelectronics Co,Ltd.
**
** http://www.quinticcorp.com
**
**--------------------File Info----------------------------------------------------------------
** File Name: qndriver.h
** subversion number: 160
**----------------------------------------------------------------------------------------
************************************************************************************************/
#include "config.h"
#ifndef _QN_0835_H
#define _QN_0835_H
//#define PILOT_CCA 0 // 0: disable stereo judgement for the country has many mono FM stations
#define CCA_PILOT_SNR_FILTER 35//25
#define FREQ2CHREG(freq) ((freq-6000)/5)
/**********************************QN8035's clock source selection**************
1.QN8035's default clock source is 32768HZ.
2.setting QN8035's clock source and clock source type(like sine-wave clock or digital clock).
3.user need to modify clock source according to actual hardware platform.
4.clock formula,the details please refer to the QN8035's datasheet
XTAL_DIV = Round(Clock/32768);
PLL_DLT = Round((28500000*512*XTAL_DIV)/Clock)-442368
*******************************************************************************/
#define QND_SINE_WAVE_CLOCK 0x00 //inject sine-wave clock
#define QND_DIGITAL_CLOCK 0x80 //inject digital clock,default is inject digital clock
//crystal clock is 32768HZ
#define QND_XTAL_DIV0 0x01
#define QND_XTAL_DIV1 0x08
#define QND_XTAL_DIV2 0x5C
//following is definition step
#define QND_STEP_CONSTANT 0x40 //(QND_FSTEP_100KHZ << 6)
#define CHIPID_QN8035 0x84
#define R_TXRX_MASK 0x30
#define QND_MODE_SLEEP 0
#define QND_MODE_WAKEUP 1
// RX / TX value is using upper 8 bit
#define QND_MODE_RX 0x8000
#define QND_MODE_TX 0x4000
#define QND_MODE_FM 0x0000
#define QND_CONFIG_VOLUME 0x07
#define CHIPSUBID_QN8035A0 0x01
#define CHIPSUBID_QN8035A1 0x02
enum
{
CCA_SENSITIVITY_LEVEL_0 = 0x1E06,
CCA_SENSITIVITY_LEVEL_1 = 0x1E07, //if using the pilot as CCA,reference this item.
CCA_SENSITIVITY_LEVEL_2 = 0x1E08,
CCA_SENSITIVITY_LEVEL_3 = 0x1E09,
CCA_SENSITIVITY_LEVEL_4 = 0x1E0A, //if not using the pilot as CCA,reference this item.
CCA_SENSITIVITY_LEVEL_5 = 0x1E0B,
CCA_SENSITIVITY_LEVEL_6 = 0x1E0C,
CCA_SENSITIVITY_LEVEL_7 = 0x1E0D,
CCA_SENSITIVITY_LEVEL_8 = 0x1E0E,
CCA_SENSITIVITY_LEVEL_9 = 0x1E0F
};
/**********************************************************************************************
// Performance configuration
***********************************************************************************************/
#define SMSTART_VAL 12//19
#define HCCSTART_VAL 18//33
#define SNCSTART_VAL 51//55
/**********************************************************************************************
// limitation configuration
***********************************************************************************************/
//#define CCA_PILOT_SNR_FILTER 20//18
#define CCA_PILOT_READ_DELAY 80//60
#define CCA_PILOT_READ_COUNT 12//10
#define CCA_PILOT_READ_COUNT_DELAY 5// 2
#define CCA_PILOT_TH 3
#define CCA_TIME_OUT 200
/**********************************************************************************************
definition register
**********************************************************************************************/
#define SYSTEM1 0x00
#define CCA 0x01
#define SNR 0x02
#define RSSISIG 0x03
#define STATUS1 0x04
#define CID1 0x05
#define CID2 0x06
#define CH 0x07
#define CH_START 0x08
#define CH_STOP 0x09
#define CH_STEP 0x0A
#define RDSD0 0x0B
#define RDSD1 0x0C
#define RDSD2 0x0D
#define RDSD3 0x0E
#define RDSD4 0x0F
#define RDSD5 0x10
#define RDSD6 0x11
#define RDSD7 0x12
#define STATUS2 0x13
#define VOL_CTL 0x14
#define XTAL_DIV0 0x15
#define XTAL_DIV1 0x16
#define XTAL_DIV2 0x17
#define INT_CTRL 0x18
#define SMP_HLD_THRD 0x19
#define RXAGC_GAIN 0x1A
#define GAIN_SEL 0x1B
#define SYSTEM_CTL1 0x1C
#define SYSTEM_CTL2 0x1D
#define RDSCOSTAS 0x1E
#define REG_TEST 0x1F
#define STATUS4 0x20
#define RDSAGC2 0x21
#define CCA1 0x27
#define CCA2 0x28
#define CCA3 0x29
#define CCA4 0x2A
#define CCA5 0x2B
#define PLT1 0X2F
#define PLT2 0x30
#define SMSTART 0x34
#define SNCSTART 0x35
#define HCCSTART 0x36
#define CCA_CNT1 0x37
#define CCA_CNT2 0x38
#define CCA_SNR_TH_1 0x39
#define CCA_SNR_TH_2 0x3A
#define NCCFIR3 0x40
#define REG_REF 0x49
#define REG_DAC 0x4C
/*******************************************************************************
definition operation bit of register
*******************************************************************************/
#define CCA_CH_DIS 0x01
#define CHSC 0x02
#define RDSEN 0x08
#define CH_CH 0x03
#define CH_CH_START 0x0c
#define CH_CH_STOP 0x30
#define STNBY_MODE 0x20
#define RX_MODE 0x10
#define IMR 0x40
#define RDS_RXUPD 0x80
#define ST_MO_RX 0x01
#define STNBY_RX_MASK 0x30
#define RXCCA_MASK 0x03
#define RX_CCA 0x02
#define RXCCA_FAIL 0x08
#define RX_MONO 0x04
#define ICPREF 0x0F
#ifdef __SMART_CPU__
#define QND_READ(adr) QND_ReadReg(adr)
#define QND_WRITE(adr, value) QND_WriteReg(adr, value)
void QNF_SetRegBit(u8 reg,u8 bitMask,u8 data_val);
u8 QND_ScanNoiseFloor(u16 start,u16 stop);
void QND_RXSetTH(void);
void QND_SetVol(u8 vol);
bool QND_RXValidCH(u16 freq);
void init_QN8035(void);
bool set_fre_QN8035(u16 freq);
void QN8035_mute(u8 On);
bool QN8035_Read_ID(void);
void QN8035_powerdown(void);
void QN8035_setch(u8 db);
extern _no_init bool _bit qn8035_online;
#define QN_IIC_read(a) \
QND_ReadReg(a)
#endif
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/fm/QN8035.h | C | mpl11 | 6,949 |
#ifndef _FM_API_H_
#define _FM_API_H_
#include "config.h"
#ifdef __IAR_SYSTEMS_ICC__
bool chk_fm_dev_online(void);
void init_fm_rev(void);
bool set_fre(u8);
void fm_rev_powerdown(void);
void save_fre(u16 fre);
void fm_module_mute(u8 flag);
void fm_set_ch(u8 db);
u8 get_total_mem_channel(void);
u8 get_fre_via_channle(u8 channel);
u8 get_channel_via_fre(u8 fre);
void save_fm_point(u8 fre);
void clear_all_fm_point(void);
void ch_save(void);
void fm_scan_flag(bool flag);
void fm_info_init(void);
u8 fm_scan_msg(void);
bool fm_scan(u8 mode);
#endif /* __IAR_SYSTEMS_ICC__ */
#define FM_CUR_FRE 0
#define FM_FRE_DEC 1
#define FM_FRE_INC 2
#define FM_SCAN_STOP 0
#define FM_SCAN_PREV 1
#define FM_SCAN_NEXT 2
#define FM_SCAN_ALL 3
#define MAX_FRE 1080
#define MIN_FRE 875
#define MAX_CHANNL (MAX_FRE - MIN_FRE + 1)
#endif /* _FM_API_H_ */
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/fm/FM_API.h | C | mpl11 | 943 |
#ifndef __ext_ins__
#define __ext_ins__
#define wr0 0x0
#define wr2 0x1
#define wr4 0x2
#define wr6 0x3
#define iwr0 0x10
#define iwr2 0x11
#define iwr4 0x12
#define iwr6 0x13
add16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x00, (0x20 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x00, (0x10 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x00, (0x00 | x<<2 | y)
#endif
endm
addc16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x00, (0x50 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x00, (0x40 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x00, (0x30 | x<<2 | y)
#endif
endm
add16s macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x00, (0x80 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x00, (0x70 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x00, (0x60 | x<<2 | y)
#endif
endm
addc16s macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x00, (0xb0 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x00, (0xa0 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x00, (0x90 | x<<2 | y)
#endif
endm
sub16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x00, (0xe0 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x00, (0xd0 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x00, (0xc0 | x<<2 | y)
#endif
endm
subc16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x01, (0x10 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x01, (0x00 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x00, (0xf0 | x<<2 | y)
#endif
endm
sub16s macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x01, (0x40 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x01, (0x30 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x01, (0x20 | x<<2 | y)
#endif
endm
subc16s macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x01, (0x70 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x01, (0x60 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x01, (0x50 | x<<2 | y)
#endif
endm
anl16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x01, (0xa0 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x01, (0x90 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x01, (0x80 | x<<2 | y)
#endif
endm
orl16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x01, (0xd0 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x01, (0xc0 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x01, (0xb0 | x<<2 | y)
#endif
endm
xrl16 macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x02, (0x00 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x01, (0xf0 | (y & 0xf) | x<<2)
#else
db 0xa5, 0x01, (0xe0 | x<<2 | y)
#endif
endm
mac16 macro x, y
#if (x > 0x3)
errors ...
#elif (y > 0x3)
db 0xa5, 0x02, (0x20 | x<<2 | (y & 0xf))
#else
db 0xa5, 0x02, (0x10 | x<<2 | y)
#endif
endm
mac16s macro x, y
#if (x > 0x3)
errors ...
#elif (y > 0x3)
db 0xa5, 0x02, (0x40 | x<<2 | (y & 0xf))
#else
db 0xa5, 0x02, (0x30 | x<<2 | y)
#endif
endm
mov16b macro x, y
#if (((x > 0x3) + (y > 0x3)) > 1)
errors ...
#elif (x > 0x3)
db 0xa5, 0x02, (0x60 | (x & 0xf) | y<<2)
#elif (y > 0x3)
db 0xa5, 0x02, (0x50 | (y & 0xf) | x<<2)
#else
errors ...
#endif
endm
lsl16k macro x, y
#if (x > 0xf)
errors ...
#else
db 0xa5, 0x03, (0x00 | (y & 0xc) << 2 | (y & 0x3) | x<<2)
#endif
endm
lsr16k macro x, y
#if (x > 0xf)
errors ...
#else
db 0xa5, 0x03, (0x40 | (y & 0xc) << 2 | (y & 0x3) | x<<2)
#endif
endm
rotl16k macro x, y
#if (x > 0xf)
errors ...
#else
db 0xa5, 0x03, (0x80 | (y & 0xc) << 2 | (y & 0x3) | x<<2)
#endif
endm
asr16k macro x, y
#if (x > 0xf)
errors ...
#else
db 0xa5, 0x03, (0xc0 | (y & 0xc) << 2 | (y & 0x3) | x<<2)
#endif
endm
rotl8 macro x, y
db 0xa5, 0x04
endm
rotr8 macro x, y
db 0xa5, 0x05
endm
rotl8k macro x,y
#if (y > 0x7)
errors ...
#else
db 0xa5, (0x08 | y)
#endif
endm
inc16 macro x
db 0xa5, (0x10 | x)
endm
inc216 macro x
db 0xa5, (0x14 | x)
endm
dec16 macro x
db 0xa5, (0x18 | x)
endm
dec216 macro x
db 0xa5, (0x1c | x)
endm
rotl16 macro x, y
#if (x > 0x3)
db 0xa5, (0x28 | (x & 0xf))
#else
db 0xa5, (0x20 | x)
#endif
endm
rotr16 macro x, y
#if (x > 0x3)
db 0xa5, (0x2c | (x & 0xf))
#else
db 0xa5, (0x24 | x)
#endif
endm
lsr16 macro x,y
#if (x > 0x3)
db 0xa5, (0x38 | (x & 0xf))
#else
db 0xa5, (0x30 | x)
#endif
endm
lsl16 macro x, y
#if (x > 0x3)
db 0xa5, (0x3c | (x & 0xf))
#else
db 0xa5, (0x34 | x)
#endif
endm
asr16 macro x, y
#if (x > 0x3)
db 0xa5, (0x44 | (x & 0xf))
#else
db 0xa5, (0x40 | x)
#endif
endm
movsa macro x, y
db 0xa5, (0x48 | x)
endm
movsb macro x, y
db 0xa5, (0x4c | x)
endm
//mov8bta macro x, y
// db 0xa5, (0x50 | (y & 0xf))
// endm
//
//movat8b macro x, y
// db 0xa5, (0x54 | (x & 0xf))
// endm
//
//mov8bb macro x, y
// db 0xa5, (0x70 | (x & 0xf)<<2 | (y & 0xf))
// endm
cmp16 macro x, y
#if (x > 0x3)
errors ...
#elif (y > 0x3)
errors ...
#else
db 0xa5, (0x60 | x<<2 | y)
#endif
endm
mov16 macro x, y
#if ((x > 0x3) & (y > 0x3))
db 0xa5, (0xb0 | (x & 0xf)<<2 | (y & 0xf))
#elif (x > 0x3)
db 0xa5, (0x90 | ((x & 0xf)) | y<<2)
#elif (y > 0x3)
db 0xa5, (0xa0 | (x<<2) | (y & 0xf))
#else
db 0xa5, (0x80 | x<<2 | y)
#endif
endm
mul16 macro x, y
#if (x > 0x3)
errors ...
#elif (y > 0x3)
db 0xa5, (0xd0 | x<<2 | (y & 0xf))
#else
db 0xa5, (0xc0 | x<<2 | y)
#endif
endm
mul16s macro x, y
#if (x > 0x3)
errors ...
#elif (y > 0x3)
db 0xa5, (0xf0 | x<<2 | (y & 0xf))
#else
db 0xa5, (0xe0 | x<<2 | y)
#endif
endm
mul16wr macro x, y
#if (x != wr4)
errors ...
#elseif (y != wr2)
errors ...
#else
db 0xa5, 0x06
#endif
endm
mul16swr macro x, y
#if (x != wr4)
errors ...
#elseif (y != wr2)
errors ...
#else
db 0xa5, 0x07
#endif
endm
/*----------------------------------------------------------------------------*/
/** @brief:
@param:
@return:
@author:Juntham
@note:
@date: 2012-05-29,19:30
*/
/*----------------------------------------------------------------------------*/
uart_put macro reg
LOCAL lab
push ACC
lab:
mov a, UART_STA
jnb ACC.7, lab
pop ACC
mov UART_BUF,reg
endm
#endif | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/ext_inst.inc | C++ | mpl11 | 7,902 |
/*--------------------------------------------------------------------------*/
/**@file led_ind_drv.c
@brief led_ind_drv
@details
@author
@date 2011-3-7
@note
*/
/*----------------------------------------------------------------------------*/
#include "Custom_config.h"
#include "led_ind_drv.h"
#include "main.h"
#include "device.h"
#if 0
#if defined(PLAY_STATUS_LED_P02)
#define LED_MAX_NUM 2
mode_led const _code mode_led_tab[LED_MAX_NUM]=
{
SYS_USB_MODE, BIT(2),PORT_P0,
SYS_SD_MODE, BIT(2),PORT_P0,
};
#elif defined(PLAY_STATUS_LED_P25)
#define LED_MAX_NUM 4
mode_led const _code mode_led_tab[LED_MAX_NUM]=
{
SYS_USB_MODE, BIT(5),PORT_P2,
SYS_SD_MODE, BIT(5),PORT_P2,
SYS_AUX_MODE, BIT(5),PORT_P2,
SYS_IDLE_MODE, BIT(5),PORT_P2,
};
#elif defined(PLAY_STATUS_LED_P01)
#define LED_MAX_NUM 4
mode_led const _code mode_led_tab[LED_MAX_NUM]=
{
SYS_USB_MODE, BIT(1),PORT_P0,
SYS_SD_MODE, BIT(1),PORT_P0,
SYS_BLUETOOTH_MODE, BIT(1),PORT_P0,
SYS_IDLE_MODE, BIT(1),PORT_P0,
};
#elif defined(PLAY_STATUS_LED_P17)
#define LED_MAX_NUM 4
mode_led const _code mode_led_tab[LED_MAX_NUM]=
{
SYS_USB_MODE, BIT(7),PORT_P1,
SYS_SD_MODE, BIT(7),PORT_P1,
SYS_RADIO_MODE, BIT(7),PORT_P1,
SYS_AUX_MODE, BIT(7),PORT_P1,
};
#elif defined(PLAY_STATUS_LED_P46)
#define LED_MAX_NUM 3
mode_led const _code mode_led_tab[LED_MAX_NUM]=
{
SYS_USB_MODE, BIT(6),PORT_P4,
SYS_SD_MODE, BIT(6),PORT_P4,
SYS_AUX_MODE, BIT(6),PORT_P4,
};
#else
#define LED_MAX_NUM 4
mode_led const _code mode_led_tab[LED_MAX_NUM]=
{
SYS_USB_MODE, BIT(7),PORT_P0,
SYS_SD_MODE, BIT(7),PORT_P0,
SYS_RADIO_MODE, BIT(7),PORT_P0,
SYS_AUX_MODE, BIT(7),PORT_P0,
};
#endif
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/led_ind_drv.c | C | mpl11 | 1,790 |
//#ifndef _CUSTOM_CONFIG_
//#define _CUSTOM_CONFIG_
//#define UART_DEBUG_ENABLE
#ifdef UART_DEBUG_ENABLE
#define MAIN_UART_DEBUG
//#define MISC_UART_DEBUG
//#define FM_UART_DEBUG
//#define BAT_UART_DEBUG
//#define BLUETOOTH_UART_DEBUG
//#define IR_UART_DEBUG
//#define ADKEY_UART_DEBUG
//#define UART_DEBUG_AT_P06P07
#define UART_DEBUG_AT_P24P25
//#define UART_DEBUG_AT_P36P37
#endif
#define USE_AUTO_SELECT_EEPROM_RTC_MEM
//#define USE_MANUAL_IDLE_FUNC
//#define KEY_TONE_INDICATOR_ENABLE
//#define EVENT_50MS_HANDLER_ENABLE
//#define BLUE_TOOTH_MODE_ENABLE
//#define BLUE_TOOTH_UART_FUNC
//#define USE_POWER_KEY
//#define MUTE_GPIO_USE_P03
//#define NO_PLAY_STATUS_LED
//#define AUX_DETECTION_THREAD_ENABLE
//#define AUX_DETECT_USE_P01
//#define PHONE_DETECTION_THREAD_ENABLE
//#define PHONE_DETECT_USE_P04
//#define USE_BAT_MANAGEMENT
//#define CHARGER_DETECTION_THREAD_ENABLE
//#define CHARGER_DETECT_USE_P01
//#define BAT_MEASURE_USE_ADC_PORT
//#define BAT_AD_GPIO_USE_P05
//#define ADKEY_GPIO_USE_P02
//#define IIC_GPIO_CLK_DATA_USE_P00_P01
//#define AUX_DETECTION_THREAD_ENABLE
//#define PHONE_DETECTION_THREAD_ENABLE
//#define AUX_DETECT_USE_P01
//#define JK_GHD_803A_1090A_V001
//#define JK_HYH_WM2428B_1096A_V001
//#define JK_HYH_QX3_7C_1082A_V001
//#define JK_IBT40_1094A_V001
//#define JK_NS_14FB_1094A_V001
//#define JK_IBT_388_1096A_V001
#define JK_SM_001_1096A_V001
#ifdef JK_GHD_803A_1090A_V001
#define MUTE_GPIO_USE_DUMMY
#define IIC_GPIO_CLK_DATA_USE_P03_P02
#define ADKEY_GPIO_USE_P06
#define AUX_DETECTION_THREAD_ENABLE
#define AUX_DETECT_USE_P07
//#define USE_POWER_KEY
#define POWER_CTRL_GPIO_USE_WAKEUP
#endif
#ifdef JK_HYH_WM2428B_1096A_V001
#define IIC_GPIO_CLK_DATA_DUMMY
#define ADKEY_GPIO_USE_P07
#define MUTE_GPIO_USE_P27
//#define MUTE_CTRL_LEVEL_LOW_MUTE
#define NO_PLAY_STATUS_LED
#define DEFAULT_VOL_AT_POWER_ON 30
#define NOT_USE_LINE_IN_FUNC
#define NOT_DISPLAY_SCAN
#endif
#ifdef JK_HYH_QX3_7C_1082A_V001
#define SYS_OSC_USE_ONCHIP_HTC
#define IIC_GPIO_CLK_DATA_USE_P00_P01
#define ADKEY_GPIO_USE_P02
#define AC1082_ADKEY_AT_P02
#define NO_DEVICE_DEFAULT_IDLE_MODE
#define PLAY_STATUS_LED_P46
#define LED_CTRL_LEVEL_LOW_ON
#define MUTE_GPIO_USE_DUMMY
#define NOT_USE_LINE_IN_FUNC
#define NOT_DISPLAY_SCAN
#define NO_FM_CHIP_ON_BOARD
#define USE_EEPROM_MEMORY
#define DEFAULT_VOL_AT_POWER_ON 30
#endif
#ifdef JK_IBT40_1094A_V001
#define SYS_OSC_USE_ONCHIP_HTC
#define IIC_GPIO_CLK_DATA_DUMMY
#define ADKEY_GPIO_USE_P02
#define MUTE_GPIO_USE_P05
#define PLAY_STATUS_LED_P46
#define LED_CTRL_LEVEL_LOW_ON
#define NOT_USE_LINE_IN_FUNC
#define NOT_DISPLAY_SCAN
#define USB_ERP2_FUNC
#define BLUE_TOOTH_ERP2_FUNC
#define ERP2_TIMER_UNIT_IN_MIN 3
#define USE_BT_PHONE_KEY_SHORT_WAKEUP_IDLE
//#define NOT_MOUNT_USB_FUNC
#define BLUE_TOOTH_CELLPHONE_FUNC
#define BLUE_TOOTH_UART_BAUDRATE_AT_9600
#define BLUE_TOOTH_CONFIG_DEV_NAME
#define BLUE_TOOTH_MODE_ENABLE
#define BLUE_TOOTH_UART_FUNC
#define BLUE_TOOTH_UART_AT_P24P25
#define BLUE_TOOTH_STATUS_LED_AT_P17
#define BLUE_TOOTH_CALL_STATUS_AT_P16
#define BLUE_TOOTH_STATUS_LED_PARTTERN
#define SYS_POWER_ON_FORCE_IN_BT_MODE
#define BLUE_TOOTH_GPIO_PWR_AT_P01
#endif
#ifdef JK_NS_14FB_1094A_V001
#define SYS_OSC_USE_ONCHIP_HTC
#define IIC_GPIO_CLK_DATA_DUMMY
#define ADKEY_GPIO_USE_P02
#define MUTE_GPIO_USE_P05
#define PLAY_STATUS_LED_P01
#define LED_CTRL_LEVEL_LOW_ON
#define NOT_USE_LINE_IN_FUNC
#define NOT_DISPLAY_SCAN
#define USE_POWER_IDLE_MODE
#define DEFAULT_VOL_AT_POWER_ON 30
#if 1
#define BLUE_TOOTH_MODE_ENABLE
#define BLUE_TOOTH_UART_FUNC
#define BLUE_TOOTH_UART_AT_P24P25
#define BLUE_TOOTH_GPIO_FUNC
#define BLUE_TOOTH_GPIO_PWR_AT_P16
#endif
#endif
#ifdef JK_IBT_388_1096A_V001
#define SYS_OSC_USE_ONCHIP_HTC
#define IIC_GPIO_CLK_DATA_USE_P00_P01
#define ADKEY_GPIO_USE_P07
#define MUTE_GPIO_USE_P02
#define PLAY_STATUS_LED_P04
#define LED_CTRL_LEVEL_LOW_ON
#define NOT_DISPLAY_SCAN
#define FM_AUX_SHARE_SAME_PATH
#define CUSTOM_DEFINED_PATH
#define AUX_DETECTION_THREAD_ENABLE
#define AUX_DETECT_USE_P46
#define USE_POWER_IDLE_MODE
#define AMP_GPIO_SEL_AB_D_MODE
#define AMP_GPIO_SEL_AB_D_MODE_AT_P37
//#define USE_POWER_KEY
//#define POWER_CTRL_GPIO_USE_P05
#define DISABLE_P05_OSC_OUTPUT
#if 1
#define USE_MODE_ANSWER_PHONE
#define BLUE_TOOTH_MODE_ENABLE
#define BLUE_TOOTH_UART_FUNC
#define BLUE_TOOTH_UART_AT_P24P25
#define BLUE_TOOTH_UART_BAUDRATE_AT_9600
#define BLUE_TOOTH_CONFIG_DEV_NAME
#define BLUE_TOOTH_CELLPHONE_FUNC
#define BLUE_TOOTH_STATUS_LED_AT_P05
#define NOT_MOUNT_USB_FUNC
#define BLUE_TOOTH_GPIO_PWR_AT_P36
#endif
#endif
#ifdef JK_SM_001_1096A_V001
//#define SYS_OSC_USE_ONCHIP_HTC
#define IIC_GPIO_CLK_DATA_USE_P01_P26
#define ADKEY_GPIO_USE_P07
#define MUTE_GPIO_USE_DUMMY
#define PLAY_STATUS_LED_P02
#define MUSIC_PLAY_STOP_MODE_ENABLE
//#define NOT_DISPLAY_SCAN
#define DEV_PLUG_PLAY_DISABLE
#define DONT_SPARK_PLAY_LED_WHEN_PLAY
#define DISABLE_P05_OSC_OUTPUT
#define NOT_USE_LINE_IN_FUNC
#define RADIO_NEXT_PREV_STOP_SCAN
#endif
//#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/custom_config.h | C | mpl11 | 5,289 |
/*;-----------------------------------------------------------------------------
;
; File: iar_common.h
;
; Description: Frequently used macros and symbols for runtime library.
;
;
; REVISON INFORMATION
;
; $Revision: 1.24 $
;
; Log information is available at the end of this file
;
;-----------------------------------------------------------------------------*/
#include "iar_check_symbols.s"
#include "iar_cfi.s"
//;=================;
//; Common defines ;
//;=================;
#define XSP_L ?XSP
#define XSP_H ?XSP+1
DPTR_MASK_SYMBOLS MACRO
EXTERN ?DPMASK
?DPMASK0 EQU ((?DPMASK ^ (?DPMASK - 1)) & ?DPMASK)
?DPTMP1 EQU (?DPMASK ^ ?DPMASK0)
?DPMASK1 EQU ((?DPTMP1 ^ (?DPTMP1 - 1)) & ?DPTMP1)
?DPTMP2 EQU (?DPMASK ^ ?DPMASK0 ^ ?DPMASK1)
?DPMASK2 EQU ((?DPTMP2 ^ (?DPTMP2 - 1)) & ?DPTMP2)
ENDM
//;=================;
//; Common Macros ;
//;=================;
EXTERNS_FOR_ALL_DPTR_SYMBOLS MACRO
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX
#endif ; __EXTENDED_DPTR__
#if (__NUMBER_OF_DPTRS__ > 1)
EXTERN ?DPS
DPTR_MASK_SYMBOLS()
#ifdef __DPTR_SEPARATE__
EXTERN ?DPL1
EXTERN ?DPH1
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX1
#endif ; __EXTENDED_DPTR__
#if (__NUMBER_OF_DPTRS__ > 2)
EXTERN ?DPL2
EXTERN ?DPH2
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX2
#endif ; __EXTENDED_DPTR__
#endif ; __NUMBER_OF_DPTRS__ > 2
#if (__NUMBER_OF_DPTRS__ > 3)
EXTERN ?DPL3
EXTERN ?DPH3
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX3
#endif ; __EXTENDED_DPTR__
#endif ; __NUMBER_OF_DPTRS__ > 3
#if (__NUMBER_OF_DPTRS__ > 4)
EXTERN ?DPL4
EXTERN ?DPH4
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX4
#endif ; __EXTENDED_DPTR__
#endif ; __NUMBER_OF_DPTRS__ > 4
#if (__NUMBER_OF_DPTRS__ > 5)
EXTERN ?DPL5
EXTERN ?DPH5
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX5
#endif ; __EXTENDED_DPTR__
#endif ; __NUMBER_OF_DPTRS__ > 5
#if (__NUMBER_OF_DPTRS__ > 6)
EXTERN ?DPL6
EXTERN ?DPH6
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX6
#endif ; __EXTENDED_DPTR__
#endif ; __NUMBER_OF_DPTRS__ > 6
#if (__NUMBER_OF_DPTRS__ > 7)
EXTERN ?DPL7
EXTERN ?DPH7
#ifdef __EXTENDED_DPTR__
EXTERN ?DPX7
#endif ; __EXTENDED_DPTR__
#endif ; __NUMBER_OF_DPTRS__ > 7
#endif ; __DPTR_SEPARATE__
#endif ; __NUMBER_OF_DPTRS__ > 1
ENDM
#if (__NUMBER_OF_DPTRS__ > 1)
TOGGLE_DPTR MACRO
EXTERN ?DPS
#if ((defined(__INC_DPSEL_SELECT__)) && (__NUMBER_OF_DPTRS__ == 2))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK0)
#endif
ENDM
SELECT_DPTR0 MACRO
EXTERN ?DPS
ANL ?DPS,#LOW(~(?DPMASK2 | ?DPMASK1 | ?DPMASK0))
ENDM
/*
; Initial
; value
; for DPS
; 000
; XOR 001 (0->1)
; 001
; XOR 011 (1->2)
; 010
; XOR 001 (2->3)
; 011
; XOR 111 (3->4)
; 100
; XOR 001 (4->5)
; 101
; XOR 011 (5->6)
; 110
; XOR 001 (6->7)
; 111
*/
DPTR0_TO_DPTR1 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK0)
#endif
ENDM
DPTR0_TO_DPTR2 MACRO
EXTERN ?DPS
XRL ?DPS,#(?DPMASK1)
ENDM
DPTR0_TO_DPTR3 MACRO
EXTERN ?DPS
XRL ?DPS,#(?DPMASK1 | ?DPMASK0)
ENDM
DPTR0_TO_DPTR4 MACRO
EXTERN ?DPS
XRL ?DPS,#(?DPMASK2)
ENDM
DPTR0_TO_DPTR5 MACRO
EXTERN ?DPS
XRL ?DPS,#(?DPMASK2 | ?DPMASK0)
ENDM
DPTR0_TO_DPTR6 MACRO
EXTERN ?DPS
XRL ?DPS,#(?DPMASK2 | ?DPMASK1)
ENDM
DPTR0_TO_DPTR7 MACRO
EXTERN ?DPS
XRL ?DPS,#(?DPMASK2 | ?DPMASK1 | ?DPMASK0)
ENDM
DPTR1_TO_DPTR2 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK1 | ?DPMASK0)
#endif
ENDM
DPTR2_TO_DPTR3 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK0)
#endif
ENDM
DPTR3_TO_DPTR4 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK2 | ?DPMASK1 | ?DPMASK0)
#endif
ENDM
DPTR4_TO_DPTR5 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK0)
#endif
ENDM
DPTR5_TO_DPTR6 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK1 | ?DPMASK0)
#endif
ENDM
DPTR6_TO_DPTR7 MACRO
EXTERN ?DPS
#if (defined(__INC_DPSEL_SELECT__))
INC ?DPS
#else
XRL ?DPS,#(?DPMASK0)
#endif
ENDM
#endif ; __NUMBER_OF_DPTRS__ > 1
/*;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; $Id: iar_common.h 1.24 2005/01/26 10:21:31Z ola ADx_patch $
; $Log: iar_common.h $
; Revision 1.24 2005/01/26 10:21:31Z ola
; Revision 1.23 2005/01/25 09:16:45Z ola
; Revision 1.22 2004/11/17 13:00:17Z owi
; Revision 1.21 2004/11/10 08:51:14Z owi
; Revision 1.20 2003/11/26 14:06:11Z ola
; Revision 1.19 2003/11/21 10:27:22Z ola
; Revision 1.18 2003/11/11 13:03:49Z owi
; Revision 1.17 2003/10/08 09:29:57Z owi
*/ | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/iar_common.s | Motorola 68K Assembly | mpl11 | 5,220 |
/*************************************************************/
/** @file:entry.h
@brief:
@details:
@author:Juntham
@date: 2012-06-09,15:27
@note:
*/
/*************************************************************/
#ifndef _ENTRY_H
#define _ENTRY_H
#include "typedef.h"
#ifdef __SMART_CPU__
_near_func void CHANGE_CODE_BANK(u8);
_near_func void bank_switch(u8);
_near_func void dec_delay_counter(void);
_near_func void my_printf(const u8 __code *format, ...);
_near_func void my_memcpy(u8 _xdata *s1, u8 _xdata *s2, u16 len);
_near_func void my_memcpy_tail(u8 _xdata *s1, u8 _xdata *s2, u16 len);
_near_func void my_memset(u8 _xdata *s1, u8 volume, u16 len);
_near_func void delay8(u8);
_near_func void delay16(u16);
_near_func void delay_n10ms(u8);
_near_func _monitor void put_msg_fifo(u8 msg);
_near_func _monitor void put_msg_lifo(u8 msg);
_near_func _monitor u8 get_msg(void);
_near_func _monitor void flush_all_msg(void);
_near_func bool check_event(u8 event);
_near_func void put_event(u8 event);
_near_func void clear_one_event(u8 event);
_near_func void clear_all_event(void);
_near_func u8 get_event(void);
_near_func void printf_buf(u8 _xdata *buf, u16 len);
_near_func void set_putchar(void(_near_func *fun)(u8));
_near_func void set_debug_mode(bool flag);
_near_func u16 get_win_buffer_address(void);
_near_func u8 get_one_count(u8);
_near_func u16 get_crc16(u32 num);
_near_func void config_wdt(u8 dat);
_near_func void SET_DAC_OFFSET(s16);
_near_func bool music_detect(u8 energy);
_near_func u8 dummy_func8(u8);
#endif
#ifdef __IAR_SYSTEMS_ASM__
extern deg
#endif
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/common.h | C | mpl11 | 1,672 |
/*;-----------------------------------------------------------------------------
;
; File: iar_check_symbols.h
;
; Description: Consistens check for runtime library building symbols.
;
;
; REVISON INFORMATION
;
; $Revision: 1.10 $
;
; Log information is available at the end of this file
;
;-----------------------------------------------------------------------------*/
#ifndef __CORE__
#error "You must define __CORE__"
#endif
#define __CORE_TINY__ 0
#define __CORE_PLAIN__ 1
#define __CORE_EXTENDED1__ 2
#ifndef __CODE_MODEL__
#error "You must define 'Code model' with: -D__CODE_MODEL__"
#endif
#define __CM_TINY__ 0
#define __CM_NEAR__ 1
#define __CM_BANKED__ 2
#define __CM_FAR__ 3
#ifndef __DATA_MODEL__
#error "You muste define 'data model' with: -D__DATA_MODEL__"
#endif
#define __DM_TINY__ 0
#define __DM_SMALL__ 1
#define __DM_LARGE__ 2
#define __DM_GENERIC__ 3
#define __DM_FAR__ 4
#ifndef __CALLING_CONVENTION__
#error "You muste define 'calling convention' with: -D__CALLING_CONVENTION__"
#endif
#define __CC_DO__ 0
#define __CC_IO__ 1
#define __CC_IR__ 2
#define __CC_PR__ 3
#define __CC_XR__ 4
#define __CC_ER__ 5
#ifndef __NUMBER_OF_DPTRS__
#error "You must define 'Nr of data pointers' (X) with: -D__NUMBER_OF_DPTRS__"
#endif
#if (__NUMBER_OF_DPTRS__ > 1)
#if !( defined(__XOR_DPSEL_SELECT__) || defined(__INC_DPSEL_SELECT__) )
#error "You must define 'DPTR Select method' with: __XOR_DPSEL_SELECT__ or __INC_DPSEL_SELECT__"
#endif
#if !( defined(__DPTR_SHADOWED__) || defined(__DPTR_SEPARATE__) )
#error "You must define 'Visibility for DPTR SFRs' with: __DPTR_SHADOWED__ or __DPTR_SEPARATE__"
#endif
#endif ; __NUMBER_OF_DPTRS__ > 1
#if (__CORE__ == __CORE_EXTENDED1__)
#undef __CODE_MODEL__
#undef __EXTENDED_DPTR__
#define __CODE_MODEL__ 3
#define __EXTENDED_DPTR__ 1
#endif
/*;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; $Id: iar_check_symbols.h 1.10 2005/02/17 13:29:26Z ola ADx_patch larssu $
; $Log: iar_check_symbols.h $
; Revision 1.10 2005/02/17 13:29:26Z ola
; Revision 1.9 2005/01/25 09:16:44Z ola
; Revision 1.8 2005/01/17 08:07:59Z ola
; Revision 1.7 2003/09/24 08:46:05Z ola
; Revision 1.6 2003/09/23 15:20:16Z ola
; Revision 1.4 2003/06/26 11:23:53Z owi
; Revision 1.3 2003/06/13 07:53:42Z owi
; Revision 1.2 2003/06/03 16:29:21Z owi
; Revision 1.1 2003/05/26 14:03:48Z owi
; Initial revision
*/
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/iar_check_symbols.s | Unix Assembly | mpl11 | 2,705 |
/***************************************************************************
* - CD002.h -
*
* Special header for the XX Microcontroller.
*
***************************************************************************/
#ifndef _CD002_H
#define _CD002_H
/***************************************************************************
* - KEIL - C51 - A51
***************************************************************************/
#ifdef __KEIL__
#ifdef __CX51__
#ifndef __C51__
#define __C51__
#endif /* __C51__ */
#endif /* __CX51__ */
#ifdef __AX51__
#ifndef __A51__
#define __A51__
#endif /* __A51__ */
#endif /* __AX51__ */
/**********Standard SFR*************/
#define SFR(reg, addr) sfr reg = addr
#define SFRC(reg, addr) SFR(reg, addr)
#define SFR_BIT(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7) \
sfr reg = addr; \
sbit bit0 = reg^0; \
sbit bit1 = reg^1; \
sbit bit2 = reg^2; \
sbit bit3 = reg^3; \
sbit bit4 = reg^4; \
sbit bit5 = reg^5; \
sbit bit6 = reg^6; \
sbit bit7 = reg^7
#define SFR_BITC(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7) \
SFR_BIT(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7)
#ifdef __C51__
/**********X SFR*************/
#define XSFR_ADDR(addr) (*(volatile unsigned char xdata *)(addr))
#else
/**********X SFR*************/
#define XSFR_ADDR(addr) (addr)
#endif /* __C51__ */
#endif /* __KEIL__ */
/***************************************************************************
* - IAR - ICC
***************************************************************************/
#ifdef __IAR_SYSTEMS_ICC__
/**********Standard SFR*************/
#define SFR(reg,addr) \
__sfr __no_init volatile unsigned char (reg) @ (addr)
#define SFRC(reg,addr) SFR(reg,addr)
#define SFR_BIT(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7) \
__sfr __no_init volatile union \
{ \
unsigned char reg; \
struct \
{ \
unsigned char bit0: 1; \
unsigned char bit1: 1; \
unsigned char bit2: 1; \
unsigned char bit3: 1; \
unsigned char bit4: 1; \
unsigned char bit5: 1; \
unsigned char bit6: 1; \
unsigned char bit7: 1; \
}; \
} @ addr
#define SFR_BITC(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7) \
SFR_BIT(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7)
/**********X SFR*************/
#define XSFR_ADDR(addr) (*((volatile unsigned char __xdata *)(addr)))
#ifndef _SYSTEM_BUILD
#pragma system_include
#endif
#pragma language=extended
#endif /* __IAR_SYSTEMS_ICC__ */
/***************************************************************************
* - IAR - ASM
***************************************************************************/
/***************************************************************************
* Assembler definitions
*
* The following SFRs are built in in the a8051.exe and can not be
* defined explicitly in this file:
* ACC,B,PSW,SP,DPL,DPH
* The PSW-bits are built-in in the a8051.exe
* OV,AC,F0,RS0,RS1,P
*
***************************************************************************/
#ifdef __IAR_SYSTEMS_ASM__
#pragma language = default
/**********Standard SFR*************/
#define SFR(reg,addr) reg DEFINE addr
#define SFRC(reg,addr)
SBIT_DEFM MACRO reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7
reg DEFINE addr
bit0 DEFINE addr.0
bit1 DEFINE addr.1
bit2 DEFINE addr.2
bit3 DEFINE addr.3
bit4 DEFINE addr.4
bit5 DEFINE addr.5
bit6 DEFINE addr.6
bit7 DEFINE addr.7
ENDM
#define SFR_BIT(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7) \
SBIT_DEFM reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7
#define SFR_BITC(reg, addr, bit0, bit1, bit2, bit3, bit4, bit5, bit6, bit7)
/**********X SFR*************/
#define XSFR_ADDR(addr) (addr)
#endif /* __IAR_SYSTEMS_ASM__*/
/***************************************************************************
* SFR
***************************************************************************/
SFR_BIT(P0, 0x80, P00, P01, P02, P03, P04, P05, P06, P07);
SFRC(SP , 0x81);
SFR(DP0L , 0x82);
SFR(DP0H , 0x83);
SFR(DP1L , 0x84);
SFR(DP1H , 0x85);
SFR(DPCON , 0x86);
SFR(SPH , 0x87);
SFR(P0HD , 0x88);
SFRC(SINT , 0x89);
SFR(IP0L , 0x8A);
SFR(IP0H , 0x8B);
SFR(IP1L , 0x8C);
SFR(IP1H , 0x8d);
SFR(WKUPPND, 0x8e);
SFR(WKUPCON, 0x8f);
SFR_BIT(P1, 0x90, P10, P11, P12, P13, P14, P15, P16, P17);
SFR(PWR_CON , 0x91);
SFR(WDT_CON , 0x92);
SFR(BANK_SEL , 0x93);
SFR(PBANK , 0x94);
SFR(IE1 , 0x95);
SFR(IO_MC0 , 0x96);
SFR(IO_MC1 , 0x97);
SFR(P1HD , 0x98);
SFR(SPI_BUF, 0x99); //R only
SFR(P2PD, 0x9A);
SFR(P3PD , 0x9B);
SFR(P2PU , 0x9C);
SFR(P3PU, 0x9D);
SFR(SD_CON0 , 0x9E);
SFR(SD_CON1 , 0x9F);
SFR_BIT(P2, 0xA0, P20, P21, P22, P23, P24, P25, P26, P27);
SFR(IRFLT_CON , 0xA1);
SFR(P0DIR , 0xA2);
SFR(P1DIR , 0xA3);
SFR(P2DIR , 0xA4);
SFR(P3DIR , 0xA5);
SFR(LCD_CON0 , 0xA6);
SFR(LCD_CON1 , 0xA7);
SFR_BIT(IE0, 0xA8, ET0, ET1, ET2, ET3, ERTC, ESOF, EUSB, EA);
SFR(SD_CON2 , 0xA9);
SFR(DAC_CON0 , 0xAA);
SFR(DAC_CON1 , 0xAB);
SFR(DAC_VLML , 0xAC); //W only
SFR(DAC_RDLL , 0xAC); //R only
SFR(DAC_VLMR , 0xAD); //W only
SFR(DAC_RDLH , 0xAD); //R only
SFR(SD_CPTR , 0xAE); //W only
SFR(DAC_RDRL , 0xAE); //R only
SFR(SD_DPTR , 0xAF); //W only
SFR(DAC_RDRH , 0xAF); //R only
SFR_BIT(P3, 0xB0, P30, P31, P32, P33, P34, P35, P36, P37);
SFR(P4 , 0xB1);
SFR(P4DIR , 0xB2);
SFR(P4PU , 0xB3);
SFR(P4PD , 0xB4);
SFR(P4HD , 0xB5);
SFR(P2HD , 0xB6);
SFR(P3HD , 0xB7);
SFR(P0DIE , 0xB8);
SFR(P2DIE , 0xB9);
SFR(P3DIE , 0xBA);
SFR(P4DIE , 0xBB);
SFR(CLK_CON0 , 0xBC);
SFR(CLK_CON1 , 0xBD);
SFR(CLK_CON2 , 0xBE);
SFR(CLK_CON3 , 0xBF);
SFR(P0PU , 0xC0);
SFR(UART_CON , 0xC1);
SFR(UART_STA , 0xC2);
SFR(UART_BUF , 0xC3);
SFR(MRES0 , 0xC4);
SFR(MRES1 , 0xC5);
SFR(MRES2 , 0xC6);
SFR(MRES3 , 0xC7);
SFR(P0PD , 0xC8);
SFR(RTC_BUF , 0xC9);
SFR(RTC_CON0, 0xCA);
SFR(RTC_CON1 , 0xCB); //W only
SFR(CHIP_VERSION, 0xCB); //R only
SFR(ADC_CON0 , 0xCC);
SFR(ADC_CON1 , 0xCD); //W only
SFR(SPI_CON, 0xCE);
SFR(SPI_STA, 0xCF);
SFR_BITC(PSW, 0xD0, P, Z, OV, RS0, RS1, F1, AC, CY);
SFR_BIT(PSW0, 0xD0, PP, ZZ, OV1, RS00, RS11, SS, AC0, CY0);
SFR(USB_CON2 , 0xD1);
SFR(TMR0_CON0 , 0xD2);
SFR(TMR0_CON1 , 0xD3);
SFR(TMR0_CNT , 0xD4);
SFR(TMR0_PRD , 0xD5);
SFR(TMR0_PWM0 , 0xD6);
SFR(TMR0_PWM1 , 0xD7);
SFR(P1DIE , 0xD8);
SFR(CRC_FIFO , 0xD9); //W only
SFR(TMR1_CON0 , 0xDA);
SFR(TMR1_CON1 , 0xDB);
SFR(TMR1_CNT , 0xDC);
SFR(TMR1_PRD , 0xDD);
SFR(TMR1_PWM0 , 0xDE);
SFR(TMR1_PWM1 , 0xDF);
SFRC(ACC , 0xE0);
SFR(CLK_GAT , 0xE1);
SFR(TMR2_CON , 0xE2);
SFR(TMR2_CNTL , 0xE3);
SFR(TMR2_CNTH , 0xE4);
SFR(TMR2_PRDL , 0xE5);
SFR(TMR2_PRDH , 0xE6);
SFR(USB_DAT , 0xE7);
SFR(P1PU , 0xE8);
SFR(USB_CON1 , 0xE9); //W only
SFR(TMR3_CON , 0xEA);
SFR(TMR3_CNTL , 0xEB);
SFR(TMR3_CNTH , 0xEC);
SFR(TMR3_PRDL , 0xED);
SFR(TMR3_PRDH , 0xEE);
SFR(DAA_CON1 , 0xEF);
SFRC(BREG , 0xF0);
SFR(HBITS , 0xF1); //W only
SFR(ADC_DATL , 0xF1); //R only
SFR(MP_CON0 , 0xF2); //W only
SFR(ADC_DATH , 0xF2); //R only
SFR(MP_CON1 , 0xF3);
SFR(MP_CON2 , 0xF4);
SFR(MP_CON3 , 0xF5);
SFR(WPTRL , 0xF6);
SFR(WPTRH , 0xF7);
SFR(P1PD, 0xF8);
SFR(DAA_CON2 , 0xF9);
SFR(HUFF_CON0 , 0xFA);
SFR(HUFF_CON1 , 0xFB);
SFR(VLENL , 0xFC);
SFR(VLENH , 0xFD);
SFR(SFTOUTH , 0xFE); //R only
SFR(SFTOUTL , 0xFF); //R only
/***************************************************************************
* XSFR
***************************************************************************/
#define OTP_CMD1 XSFR_ADDR(0xFF00 + 0x00) //W only
#define OTP_CMD0 XSFR_ADDR(0xFF00 + 0x01)
#define OSC_DET_CON XSFR_ADDR(0xFF00 + 0x03)
#define UART_BAUD XSFR_ADDR(0xFF00 + 0x04) //W only
#define SD_CON3 XSFR_ADDR(0xFF00 + 0x05) //W only
#define LVD_CON XSFR_ADDR(0xFF00 + 0x06)
#define STACK_LMT XSFR_ADDR(0xFF00 + 0x07) //FPGA only/W only
#define ISD_CON XSFR_ADDR(0xFF00 + 0x08)
#define ISD_BUF XSFR_ADDR(0xFF00 + 0x09)
#define ISD_ADR XSFR_ADDR(0xFF00 + 0x0a) //W only
#define ISD_CNT XSFR_ADDR(0xFF00 + 0x0b) //W only
#define MODE_CON XSFR_ADDR(0xFF00 + 0x0c)
#define PWM4_CON XSFR_ADDR(0xFF00 + 0x0d) //W only
#define CRC_REGL XSFR_ADDR(0xFF00 + 0x0e)
#define CRC_REGH XSFR_ADDR(0xFF00 + 0x0f)
#define USB_CON0 XSFR_ADDR(0xFF00 + 0x10)
#define USB_EP0_ADR XSFR_ADDR(0xFF00 + 0x14) //W only
#define USB_EP0_CNT XSFR_ADDR(0xFF00 + 0x15) //W only
#define USB_EPX_CNT XSFR_ADDR(0xFF00 + 0x16) //W only
#define USB_EP1TX_ADR XSFR_ADDR(0xFF00 + 0x17) //W only
#define USB_EP1RX_ADR XSFR_ADDR(0xFF00 + 0x18) //W only
#define EP1_RX_ADDRL XSFR_ADDR(0xFF00 + 0x17) //R only
#define EP1_RX_ADDRH XSFR_ADDR(0xFF00 + 0x18) //R only
#define USB_EP2TX_ADR XSFR_ADDR(0xFF00 + 0x19) //W only
#define USB_EP2RX_ADR XSFR_ADDR(0xFF00 + 0x1a) //W only
#define LOFC_CON XSFR_ADDR(0xFF00 + 0x20)
#define LOFC_PR XSFR_ADDR(0xFF00 + 0x21) //W only
#define LOFC_CNTH XSFR_ADDR(0xFF00 + 0x22) //R only
#define LOFC_CNTM XSFR_ADDR(0xFF00 + 0x23) //R only
#define LOFC_CNTL XSFR_ADDR(0xFF00 + 0x24) //R only
#define BP_ADRL XSFR_ADDR(0xFF00 + 0x26) //W only
#define BP_ADRH XSFR_ADDR(0xFF00 + 0x27) //W only
#define PLL_CON0 XSFR_ADDR(0xFF00 + 0x28) //W only
#define PLL_CON1 XSFR_ADDR(0xFF00 + 0x29) //W only
#define PLL_CON2 XSFR_ADDR(0xFF00 + 0x2a) //W only
#define SEG_EN0 XSFR_ADDR(0xFF00 + 0x2b) //W only
#define SEG_EN1 XSFR_ADDR(0xFF00 + 0x2c) //W only
#define DAA_CON0 XSFR_ADDR(0xFF00 + 0x30)
#define DAA_CON3 XSFR_ADDR(0xFF00 + 0x33)
#define DAA_CON4 XSFR_ADDR(0xFF00 + 0x34)
#define DAC_TRML XSFR_ADDR(0xFF00 + 0x36) //W only
#define DAC_TRMR XSFR_ADDR(0xFF00 + 0x37) //W only
#define OBUF_NUM XSFR_ADDR(0xFF00 + 0x40) //R only
#define OBUF_CON XSFR_ADDR(0xFF00 + 0x41)
#define OBUF_DATL XSFR_ADDR(0xFF00 + 0x42) //W only, 16bit XSFR, accessable by ext instructions only
#define OBUF_DATR XSFR_ADDR(0xFF00 + 0x44) //W only, 16bit XSFR, accessable by ext instructions only
#define KV_DAT XSFR_ADDR(0xFF00 + 0x46) //W only, 16bit XSFR, accessable by ext instructions only
#define KV_START XSFR_ADDR(0xFF00 + 0x48) //W only
#define KV_END XSFR_ADDR(0xFF00 + 0x49) //W only
#define KV_CNT XSFR_ADDR(0xFF00 + 0x4a) //W only
#define KV_VLM XSFR_ADDR(0xFF00 + 0x4b) //W only
#define IIC_CON XSFR_ADDR(0xFF00 + 0x4c)
#define IIC_STA XSFR_ADDR(0xFF00 + 0x4d)
#define IIC_BAUD XSFR_ADDR(0xFF00 + 0x4e) //W only
#define IIC_BUF XSFR_ADDR(0xFF00 + 0x4f)
#define SPI_BAUD XSFR_ADDR(0xFF00 + 0x52) //W only
#define SPI_CNT XSFR_ADDR(0xFF00 + 0x54) //W only
#define SPI_ADR XSFR_ADDR(0xFF00 + 0x55) //W only
#define LDO_CON XSFR_ADDR(0xFF00 + 0x56)
#define HTC_CON XSFR_ADDR(0xFF00 + 0x57)
#endif /* _CD002_H */
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/cd02.h | C | mpl11 | 11,568 |
/*;-----------------------------------------------------------------------------
;
; File: iar_cfi.h
;
; Description: Call Frame Information (CFI) macros for runtime library.
;
; REVISON INFORMATION
;
; $Revision: 1.23 $
;
; Log information is available at the end of this file
;-----------------------------------------------------------------------------*/
#if (defined(__EXTENDED_DPTR__))
#define CFA_SPP CFA_PSP24
#define SPP PSP24
#define CFA_SPX CFA_XSP24
#define SPX XSP24
#else
#define CFA_SPP CFA_PSP16
#define SPP PSP16
#define CFA_SPX CFA_XSP16
#define SPX XSP16
#endif
#if (defined(__EXTENDED_STACK__))
#if (defined(__EXTENDED_DPTR__))
#define CFA_MACHINE CFA_ESP24
#define MACHINE_SP ESP24
#define MACHINE_MEM XDATA
#else
#define CFA_MACHINE CFA_ESP16
#define MACHINE_SP ESP16
#define MACHINE_MEM XDATA
#endif ; defined(__EXTENDED_DPTR__)
#else
#define CFA_MACHINE CFA_SP
#define MACHINE_SP SP
#define MACHINE_MEM DATA
#endif ; defined(__EXTENDED_STACK__)
#if (__CODE_MODEL__ == __CM_FAR__)
#define __SIZE_OF_RETADDR__ 3
#else
#define __SIZE_OF_RETADDR__ 2
#endif
/*;--------------------------------------------------------------
;
; CFI Names macros
;
;--------------------------------------------------------------
; register resources
;--------------------------------------------------------------*/
CFI_NAMES_DECLARE_REGISTER_RESOURCES MACRO
cfi Resource A:8, B:8, PSW:8
#if (__NUMBER_OF_DPTRS__ > 1)
cfi Resource DPSEL:8
#endif
cfi Resource DPTR0:16
#if (__NUMBER_OF_DPTRS__ > 1)
cfi Resource DPTR1:16
#endif
#if (__NUMBER_OF_DPTRS__ > 2)
cfi Resource DPTR2:16
#endif
#if (__NUMBER_OF_DPTRS__ > 3)
cfi Resource DPTR3:16
#endif
#if (__NUMBER_OF_DPTRS__ > 4)
cfi Resource DPTR4:16
#endif
#if (__NUMBER_OF_DPTRS__ > 5)
cfi Resource DPTR5:16
#endif
#if (__NUMBER_OF_DPTRS__ > 6)
cfi Resource DPTR6:16
#endif
#if (__NUMBER_OF_DPTRS__ > 7)
cfi Resource DPTR7:16
#endif
cfi Resource DPL0:8
cfi Resource DPH0:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX0:8
#endif
#if (__NUMBER_OF_DPTRS__ > 1)
cfi Resource DPL1:8, DPH1:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX1:8
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 2)
cfi Resource DPL2:8, DPH2:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX2:8
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 3)
cfi Resource DPL3:8, DPH3:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX3:8
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 4)
cfi Resource DPL4:8, DPH4:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX4:8
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 5)
cfi Resource DPL5:8, DPH5:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX5:8
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 6)
cfi Resource DPL6:8, DPH6:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX6:8
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 7)
cfi Resource DPL7:8, DPH7:8
#ifdef __EXTENDED_DPTR__
cfi Resource DPX7:8
#endif
#endif
cfi Resource R0:8, R1:8, R2:8, R3:8, R4:8, R5:8, R6:8, R7:8
cfi Resource VB:8
cfi Resource V0:8, V1:8, V2:8, V3:8, V4:8, V5:8, V6:8, V7:8
cfi Resource V8:8, V9:8, V10:8, V11:8, V12:8, V13:8, V14:8, V15:8
cfi Resource V16:8, V17:8, V18:8, V19:8, V20:8, V21:8, V22:8, V23:8
cfi Resource V24:8, V25:8, V26:8, V27:8, V28:8, V29:8, V30:8, V31:8
cfi Resource ?V_START:8
ENDM
//; return resources
//;--------------------------------------------------------------
CFI_NAMES_DECLARE_RETURN_RESOURCE MACRO
#if (__CODE_MODEL__ == __CM_FAR__)
cfi VirtualResource ?RET:24, ?RET_LOW:8, ?RET_HIGH:8, ?RET_EXT:8
cfi ResourceParts ?RET ?RET_EXT, ?RET_HIGH, ?RET_LOW
#else
cfi VirtualResource ?RET:16, ?RET_LOW:8, ?RET_HIGH:8
cfi ResourceParts ?RET ?RET_HIGH, ?RET_LOW
#endif
ENDM
//; stack resources
//;--------------------------------------------------------------
CFI_NAMES_DECLARE_STACKS MACRO
cfi StackFrame CFA_MACHINE MACHINE_SP MACHINE_MEM
#if (defined(__EXTENDED_DPTR__))
cfi StackFrame CFA_PSP24 PSP24 XDATA
cfi StackFrame CFA_XSP24 XSP24 XDATA
cfi Resource PSP24:24, PSPX:8, PSPH:8, PSPL:8
cfi Resource XSP24:24, XSPX:8, XSPH:8, XSPL:8
cfi ResourceParts PSP24 PSPX, PSPH, PSPL
cfi ResourceParts XSP24 XSPX, XSPH, XSPL
#if (defined(__EXTENDED_STACK__))
cfi Resource MACHINE_SP:24
cfi Resource ESPX:8, ESPH:8, ESPL:8
cfi ResourceParts MACHINE_SP ESPX, ESPH, ESPL
#else
cfi Resource MACHINE_SP:8
#endif
#else
cfi StackFrame CFA_PSP16 PSP16 XDATA
cfi StackFrame CFA_XSP16 XSP16 XDATA
cfi Resource PSP16:16, PSPH:8, PSPL:8
cfi Resource XSP16:16, XSPH:8, XSPL:8
cfi ResourceParts PSP16 PSPH, PSPL
cfi ResourceParts XSP16 XSPH, XSPL
#if (defined(__EXTENDED_STACK__))
cfi Resource MACHINE_SP:16
cfi Resource ESPH:8, ESPL:8
cfi ResourceParts MACHINE_SP ESPH, ESPL
#else
cfi Resource MACHINE_SP:8
#endif
#endif ; defined(__EXTENDED_DPTR__)
ENDM
//; This names block is used by all runtime library routines.
//;--------------------------------------------------------------
CFI_nam: MACRO
cfi NAMES cfi_names
CFI_NAMES_DECLARE_REGISTER_RESOURCES()
CFI_NAMES_DECLARE_STACKS()
CFI_NAMES_DECLARE_RETURN_RESOURCE()
cfi ENDNAMES cfi_names
ENDM
CFI_banked_nam: MACRO
CFI NAMES cfi_banked_names
CFI_NAMES_DECLARE_REGISTER_RESOURCES()
CFI_NAMES_DECLARE_STACKS()
cfi VirtualResource ?RET:24, ?RET_LOW:8, ?RET_HIGH:8, ?RET_EXT:8
cfi ResourceParts ?RET ?RET_EXT, ?RET_HIGH, ?RET_LOW
cfi ENDNAMES cfi_banked_names
ENDM
CFI_pdata_enter_nam: MACRO
CFI NAMES cfi_pdata_enter_names EXTENDS cfi_names
CFI BASEADDRESS Base XDATA
CFI FRAMECELL RETH_CELL Base(1):8
CFI FRAMECELL RETL_CELL Base(2):8
CFI ENDNAMES cfi_pdata_enter_names
ENDM
/*;--------------------------------------------------------------
;
; CFI Common Macros
;
;--------------------------------------------------------------*/
CFI_COMMON_DECLARE_CORE_COMMON MACRO
cfi CODEALIGN 1
cfi DATAALIGN -1
cfi ?V_START SameValue
#if (defined(__EXTENDED_DPTR__))
cfi CFA_PSP24 PSP24
cfi CFA_XSP24 XSP24
cfi PSPX Undefined
cfi PSPL Undefined
cfi PSPH Undefined
cfi XSPL Undefined
cfi XSPH Undefined
cfi XSPX Undefined
#else
cfi CFA_PSP16 PSP16
cfi CFA_XSP16 XSP16
cfi PSPL Undefined
cfi PSPH Undefined
cfi XSPL Undefined
cfi XSPH Undefined
#endif ; defined(__EXTENDED_DPTR__)
#if (defined(__EXTENDED_STACK__))
cfi ESPL Undefined
cfi ESPH Undefined
#if (defined(__EXTENDED_DPTR__))
cfi ESPX Undefined
#endif
#endif
cfi ?RET CONCAT
ENDM
CFI_COMMON_DECLARE_SAME_VALUE_FOR_ALL_REGISTERS MACRO
cfi A undefined
cfi B SameValue
cfi PSW samevalue
#if (__NUMBER_OF_DPTRS__ > 1)
cfi DPSEL SameValue
#endif
cfi DPTR0 SameValue
#if (__NUMBER_OF_DPTRS__ > 1)
cfi DPTR1 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 2)
cfi DPTR2 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 3)
cfi DPTR3 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 4)
cfi DPTR4 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 5)
cfi DPTR5 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 6)
cfi DPTR6 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 7)
cfi DPTR7 SameValue
#endif
cfi DPL0 SameValue
cfi DPH0 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX0 SameValue
#endif
#if (__NUMBER_OF_DPTRS__ > 1)
cfi DPL1 SameValue
cfi DPH1 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX1 SameValue
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 2)
cfi DPL2 SameValue
cfi DPH2 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX2 SameValue
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 3)
cfi DPL3 SameValue
cfi DPH3 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX3 SameValue
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 4)
cfi DPL4 SameValue
cfi DPH4 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX4 SameValue
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 5)
cfi DPL5 SameValue
cfi DPH5 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX5 SameValue
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 6)
cfi DPL6 SameValue
cfi DPH6 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX6 SameValue
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 7)
cfi DPL7 SameValue
cfi DPH7 SameValue
#ifdef __EXTENDED_DPTR__
cfi DPX7 SameValue
#endif
#endif
cfi R0 SameValue
cfi R1 SameValue
cfi R2 SameValue
cfi R3 SameValue
cfi R4 SameValue
cfi R5 SameValue
cfi R6 SameValue
cfi R7 SameValue
cfi VB SameValue
cfi V0 SameValue
cfi V1 SameValue
cfi V2 SameValue
cfi V3 SameValue
cfi V4 SameValue
cfi V5 SameValue
cfi V6 SameValue
cfi V7 SameValue
cfi V8 SameValue
cfi V9 SameValue
cfi V10 SameValue
cfi V11 SameValue
cfi V12 SameValue
cfi V13 SameValue
cfi V14 SameValue
cfi V15 SameValue
cfi V16 SameValue
cfi V17 SameValue
cfi V18 SameValue
cfi V19 SameValue
cfi V20 SameValue
cfi V21 SameValue
cfi V22 SameValue
cfi V23 SameValue
cfi V24 SameValue
cfi V25 SameValue
cfi V26 SameValue
cfi V27 SameValue
cfi V28 SameValue
cfi V29 SameValue
cfi V30 SameValue
cfi V31 SameValue
ENDM
CFI_COMMON_DECLARE_UNDEFINED_FOR_ALL_DPTR_REGISTERS MACRO
cfi DPTR0 Undefined
#if (__NUMBER_OF_DPTRS__ > 1)
cfi DPTR1 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 2)
cfi DPTR2 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 3)
cfi DPTR3 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 4)
cfi DPTR4 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 5)
cfi DPTR5 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 6)
cfi DPTR6 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 7)
cfi DPTR7 Undefined
#endif
cfi DPL0 Undefined
cfi DPH0 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX0 Undefined
#endif
#if (__NUMBER_OF_DPTRS__ > 1)
cfi DPL1 Undefined
cfi DPH1 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX1 Undefined
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 2)
cfi DPL2 Undefined
cfi DPH2 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX2 Undefined
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 3)
cfi DPL3 Undefined
cfi DPH3 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX3 Undefined
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 4)
cfi DPL4 Undefined
cfi DPH4 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX4 Undefined
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 5)
cfi DPL5 Undefined
cfi DPH5 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX5 Undefined
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 6)
cfi DPL6 Undefined
cfi DPH6 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX6 Undefined
#endif
#endif
#if (__NUMBER_OF_DPTRS__ > 7)
cfi DPL7 Undefined
cfi DPH7 Undefined
#ifdef __EXTENDED_DPTR__
cfi DPX7 Undefined
#endif
#endif
ENDM
/*;--------------------------------------------------------------
;
; CFI macro: COMMON block
;
; This common block is used by all runtime library routines.
;
;--------------------------------------------------------------*/
CFI_com: MACRO
cfi COMMON cfi_common USING cfi_names
CFI_COMMON_DECLARE_CORE_COMMON()
cfi ?RET_LOW Frame(CFA_MACHINE, 1)
cfi ?RET_HIGH Frame(CFA_MACHINE, 2)
#if (__CODE_MODEL__ == __CM_FAR__)
cfi ?RET_EXT Frame(CFA_MACHINE, 3)
#endif
cfi CFA_MACHINE MACHINE_SP - __SIZE_OF_RETADDR__
cfi RETURNADDRESS ?RET CODE
CFI_COMMON_DECLARE_SAME_VALUE_FOR_ALL_REGISTERS()
cfi ENDCOMMON cfi_common
ENDM
CFI_banked_com: MACRO
cfi COMMON cfi_banked_common USING cfi_banked_names
CFI_COMMON_DECLARE_CORE_COMMON()
cfi ?RET_LOW Frame(CFA_MACHINE, 1)
cfi ?RET_HIGH Frame(CFA_MACHINE, 2)
cfi ?RET_EXT Frame(CFA_MACHINE, 3)
// cfi ?RET_EXT load(1, SFR, 0x90)
cfi CFA_MACHINE MACHINE_SP - 3
cfi RETURNADDRESS ?RET CODE
CFI_COMMON_DECLARE_SAME_VALUE_FOR_ALL_REGISTERS()
cfi ENDCOMMON cfi_banked_common
ENDM
CFI_pdata_enter_com: MACRO
cfi COMMON cfi_pdata_enter_common USING cfi_pdata_enter_names
CFI_COMMON_DECLARE_CORE_COMMON()
cfi CFA_MACHINE sub(sub(MACHINE_SP,__SIZE_OF_RETADDR__),__SIZE_OF_RETADDR__)
cfi Base SPP
cfi RETL_CELL Frame(CFA_MACHINE, 1, 1)
cfi RETH_CELL Frame(CFA_MACHINE, 2, 1)
#if (__CORE__ == __CORE_EXTENDED1__)
CFI ?RET_LOW Frame(CFA_MACHINE, 3, 1)
CFI ?RET_HIGH Frame(CFA_MACHINE, 4, 1)
CFI ?RET_EXT Frame(CFA_MACHINE, 5, 1)
#else
CFI ?RET_LOW Frame(CFA_MACHINE, 3, 1)
CFI ?RET_HIGH Frame(CFA_MACHINE, 4, 1)
#endif
cfi RETURNADDRESS ?RET CODE
CFI_COMMON_DECLARE_SAME_VALUE_FOR_ALL_REGISTERS()
cfi ENDCOMMON cfi_pdata_enter_common
ENDM
////////////////////////////////////////////////////////////////////////////////////////
// EXPORT above macros
////////////////////////////////////////////////////////////////////////////////////////
CFI_nam
CFI_banked_nam
CFI_pdata_enter_nam
CFI_com
CFI_banked_com
CFI_pdata_enter_com
////////////////////////////////////////////////////////////////////////////////////////
/*
* CFI Macro: cfi_DATA_BLOCK_start name
* cfi_DATA_BLOCK_end name
*
* Parameter: name Name of data block
*
* Description: Call Frame Information Data Block
*/
cfi_DATA_BLOCK_start MACRO name
cfi block \1 using cfi_common
cfi nofunction
cfi_OFFSET SET 0
ENDM
cfi_DATA_BLOCK_end MACRO name
IF cfi_OFFSET
#error "Non-zero offset on cfi data block end"
ELSE
cfi endblock \1
ENDIF
ENDM
/*
* CFI Macro: cfi_STACK_ALLOC bytes
*
* Parameter: bytes Number of bytes to allocate
*
* Description: Allocate word on stack
*/
cfi_STACK_ALLOC: MACRO bytes
cfi_OFFSET SET cfi_OFFSET + bytes
cfi CFA_MACHINE MACHINE_SP - (__SIZE_OF_RETADDR__ + cfi_OFFSET)
ENDM
/*
* CFI Macro: cfi_STACK_DEALL bytes
*
* Parameter: bytes Number of bytes to deallocate
*
* Description: Deallocate word from stack
*/
cfi_STACK_DEALL: MACRO bytes
cfi_OFFSET SET cfi_OFFSET - bytes
IF (cfi_OFFSET + __SIZE_OF_RETADDR__) < 0
#ifndef __IAR_SYSTEMS_ICC__ /* Let it accept preprocessing by compiler */
#error "Negative size on cfi deallocate"
#endif
ELSEIF cfi_OFFSET
cfi CFA_MACHINE MACHINE_SP - (__SIZE_OF_RETADDR__ + cfi_OFFSET)
ELSE
cfi CFA_MACHINE MACHINE_SP - __SIZE_OF_RETADDR__
ENDIF
ENDM
/*
* CFI Macro: cfi_PUSH_REG reg offset
*
* Parameter: reg Register to push
* offset Stack offset of pushed register
*
* Description: Move reg to stack
*/
cfi_PUSH_REG: MACRO reg
cfi_STACK_ALLOC 1
cfi reg frame(CFA_MACHINE, __SIZE_OF_RETADDR__ + cfi_OFFSET)
ENDM
/*
* CFI Macro: cfi_SET_REG reg_from, reg_to
*
* Parameter: reg_from Register to move from
* reg_to Register to move to or 'samevalue'
*
* Description: Move from REG to REG (samevalue)
*/
cfi_SET_REG: MACRO reg_from, reg_to
cfi reg_from reg_to
ENDM
/*
* CFI Macro: cfi_REMEMBER_STATE
*
* Parameter: no State number to remember
*
* Description: Remember state
*/
cfi_REMEMBER_STATE: MACRO no
cfi rememberstate
cfi_OFFSET_\1 SET cfi_OFFSET
ENDM
/*
* CFI Macro: cfi_RESTORE_STATE
*
* Parameter: no State number to restore
*
* Description: Restore state
*/
cfi_RESTORE_STATE: MACRO no
cfi restorestate
cfi_OFFSET SET cfi_OFFSET_\1
ENDM
cfi_PUSH_ISTACK_RET_DEFS_CONST_DEPEND: MACRO constant
#if (defined(__EXTENDED_STACK__))
cfi ?RET_LOW load(1, XDATA, sub(CFA_MACHINE, sub(constant,1)))
cfi ?RET_HIGH load(1, XDATA, sub(CFA_MACHINE, sub(constant,2)))
#else
cfi ?RET_LOW load(1, IDATA, sub(CFA_MACHINE, sub(constant,1)))
cfi ?RET_HIGH load(1, IDATA, sub(CFA_MACHINE, sub(constant,2)))
#endif
#if (__CORE__ == __CORE_EXTENDED1__)
#if (defined(__EXTENDED_STACK__))
cfi ?RET_EXT load(1, XDATA, sub(CFA_MACHINE, sub(constant,3)))
#else
cfi ?RET_EXT load(1, IDATA, sub(CFA_MACHINE, sub(constant,3)))
#endif
#endif
ENDM
cfi_PUSH_ISTACK_RET_DEFS_REG_DEPEND: MACRO reg
#if (defined(__EXTENDED_STACK__))
cfi ?RET_LOW load(1, XDATA, sub(CFA_MACHINE, sub(reg,1)))
cfi ?RET_HIGH load(1, XDATA, sub(CFA_MACHINE, sub(reg,2)))
#else
cfi ?RET_LOW load(1, IDATA, sub(CFA_MACHINE, sub(reg,1)))
cfi ?RET_HIGH load(1, IDATA, sub(CFA_MACHINE, sub(reg,2)))
#endif
#if (__CORE__ == __CORE_EXTENDED1__)
#if (defined(__EXTENDED_STACK__))
cfi ?RET_EXT load(1, XDATA, sub(CFA_MACHINE, sub(reg,3)))
#else
cfi ?RET_EXT load(1, IDATA, sub(CFA_MACHINE, sub(reg,3)))
#endif
#endif
ENDM
/*;
; Revision control system
; $Id: iar_cfi.h 1.23 2005/03/04 10:29:57Z owi ADx_patch $
; $Log: iar_cfi.h $
; Revision 1.23 2005/03/04 10:29:57Z owi
; Revision 1.22 2004/11/22 15:15:12Z owi
; Revision 1.21 2004/11/18 13:55:17Z owi
; Revision 1.20 2004/11/16 16:41:06Z owi
; Revision 1.19 2004/11/10 16:31:02Z owi
; Revision 1.18 2004/11/10 08:51:14Z owi
; Revision 1.17 2004/09/16 08:02:35Z owi
; Revision 1.16 2004/03/15 16:45:32Z owi
; Revision 1.15 2004/03/15 13:15:28Z owi
; Revision 1.14 2004/03/12 15:46:22Z owi
; Revision 1.13 2004/01/27 15:19:11Z owi
; Revision 1.12 2004/01/27 13:57:41Z owi
; Revision 1.11 2003/10/23 11:17:37Z owi
; Revision 1.10 2003/10/08 08:51:25Z owi
*/ | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/common/iar_cfi.s | Unix Assembly | mpl11 | 20,081 |
#ifndef _RTC_MODE_H_
#define _RTC_MODE_H_
#include "config.h"
#ifdef __IAR_SYSTEMS_ICC__
void RTC_mode(void);
void IRTC_init(void);
#endif /* __IAR_SYSTEMS_ICC__ */
#endif /* _RTC_MODE_H_ */
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/RTC/RTC_Mode.h | C | mpl11 | 219 |
/*************************************************************/
/** @file:hot_msg.h
@brief:
@details:
@author:Juntham
@date: 2012-06-13,8:53
@note:
*/
/*************************************************************/
#ifndef _HOT_MSG_
#define _HOT_MSG_
#include "config.h"
#ifdef __SMART_CPU__
void ap_handle_hotkey(u8 key);
extern u16 _data input_number;
#endif
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/key_msg/hot_msg.h | C | mpl11 | 415 |
#include "custom_config.h"
#ifdef USE_BAT_MANAGEMENT
#ifdef BAT_MEASURE_USE_ADC_PORT
#else
#define _5V 0xC000
#define _4V2 0xA100
#define _3V7 0x8E00
#define _3V3 0x8200
#endif
u8 const _code adc_bat_volt[]={
0x82, /// below 3V3
0x83, /// 3V3
0x8E, /// 3V7
0xA1, //// 4V2
0xA6, //CHARGE_FULL 4V3
};
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/key_msg/adc_bat_level.h | C | mpl11 | 357 |
/*************************************************************/
/** @file:misc_hdlr_if.h
@brief:
@details:
@author:
@date: 2012-06-13,8:53
@note:
*/
/*************************************************************/
#include "custom_config.h"
#ifndef _MISC_HDLR_IF_
#define _MISC_HDLR_IF_
#include "config.h"
#include "main.h"
#define POWER_KEY_HOLD_VALID_TIME_SEC 2
typedef enum {
#ifdef AUX_DETECTION_THREAD_ENABLE
AUX_PLUG_THREAD,
#endif
#ifdef PHONE_DETECTION_THREAD_ENABLE
PHONE_PLUG_THREAD,
#endif
#ifdef CHARGER_DETECTION_THREAD_ENABLE
CHARGER_PLUG_THREAD,
#endif
OTHER_THREAD,
}EVENT_ID;
#ifdef AUX_DETECTION_THREAD_ENABLE
#define AUX_THREAD 1
#else
#define AUX_THREAD 0
#endif
#ifdef PHONE_DETECTION_THREAD_ENABLE
#define PHONE_THREAD 1
#else
#define PHONE_THREAD 0
#endif
#ifdef CHARGER_DETECTION_THREAD_ENABLE
#define CHARGER_THREAD 1
#else
#define CHARGER_THREAD 0
#endif
#define MAX_EVENT_LIST (AUX_THREAD+PHONE_THREAD+CHARGER_THREAD)
#if MAX_EVENT_LIST
#define EVENT_DETECTION_THREAD_HDLR
#endif
typedef enum {
SYS_PWR_ON,
SYS_PWR_OFF,
SYS_PWR_IDLE,
}SYS_PWR_HDLR;
typedef enum {
LED_SPARK_ON,
LED_SPARK_VERY_FAST,
LED_SPARK_FAST,
LED_SPARK_NOR,
LED_SPARK_SLOW,
LED_SPARK_STOP,
}LED_SPARK_TYPE;
typedef enum {
PA_UNMUTE,
PA_MUTE,
PA_SUPERMUTE,
}MUTE_TYPE;
typedef enum {
I_FUNC,
O_FUNC,
S_FUNC,
F_FUNC,
}FUNC_CMD;
#ifdef __SMART_CPU__
void ext_pa_mute(MUTE_TYPE M_Type);
void init_func_list(void);
u8 func_msg_hdlr(FUNC_CMD Func_CMD,u8 func_msg);
void adc_channel_init(u8 adc_port);
void detect_event_func_init();
void detect_event_func_register( EVENT_ID thread_id,\
bool event_trig_levl,\
bool *event_protect,\
u8 msg_in,u8 msg_out,\
void (*init)(),bool (*gpio_level)(),void (*release)()\
);
void detect_event_func_hdlr(void);
bool get_event_detect_status(EVENT_ID thread_id);
void event_50ms_hdlr(void);
#if defined(USE_POWER_KEY) || defined(USE_POWER_IDLE_MODE)
void power_key_hdlr(SYS_PWR_HDLR pwr_cmd);
#endif
#endif
u8 get_ir_key_index(u8 ir_code);
#ifdef IR_UART_DEBUG
void debug_ir_func(void);
#endif
#ifdef ADKEY_UART_DEBUG
void debug_adkey_func(void);
#endif
#ifndef NO_PLAY_STATUS_LED
void play_status_led_hdlr(void);
#endif
void set_play_status_led(LED_SPARK_TYPE led_status);
void activate_pop_noise_hdlr(void);
void pop_noise_handler(void);
void event_halfsecond_hdlr(u8 msg);
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/key_msg/misc_hdlr_if.h | C | mpl11 | 2,582 |
#ifndef _CLOCK_H
#define _CLOCK_H
#include "config.h"
///*-----------------------------------------------------------
//////osc_out_sel
#define RTC_OSC 0
#define P00P01_OSC 1
/////pll_in_sel
#define PLLIN_32K 0
#define PLLIN_HTC (1 << 4)
#define PLLIN_RTC_12M (2 << 4)
#define PLLIN_P00P01_12M (3 << 4)
/////system_clk_prein
#define PRE_SYSCLK_RTC_CLK 0
#define PRE_SYSCLK_RC256K 1
#define PRE_SYSCLK_HTC_CLK 2
#define PRE_SYSCLK_PLL_CLK 3
/////system_clk_sel
#define SYSCLK_RC256K 0
#define SYSCLK_MAIN_CLK 1
/////P05 config
#define P05_OSC_CLK (0 << 2)
#define P05_SYS_CLK (1 << 2)
#define P05_HTC_CLK (2 << 2)
#define P05_PLL_CLK (3 << 2)
#define P05_NORMAL_IO (4 << 2)
#define SYSTEM_MAIN_CLK 0x0
#define SYSTEM_CLK_DECELERATE 0x1
#define SYS_IDLE(X) PWR_CON &= ~BIT(0);PWR_CON |= ((X & 0X1)<<0)
#define SYS_STANDBY(X) PWR_CON &= ~BIT(1);PWR_CON |= ((X & 0X1)<<1)
#define SYS_SLEEP(X) PWR_CON &= ~BIT(2);PWR_CON |= ((X & 0X1)<<2)
#ifdef __ICC8051__
_monitor void pll_init(void);
_near_func void pll_nrnf_cfg(u16 nr, u16 nf);
_near_func void system_clk_div(u8 div);
_near_func void otp_clk_div2(bool en);
_near_func void P05_config(u8 cfg);
_near_func void Timer0_init(u8 sys_clk);
void check_htc_otp(void);
void check_htc_32k(void);
void check_htc_12M(void);
bool check_htc_sof(u8 timeout);
#endif
#ifdef __IAR_SYSTEMS_ASM__
//extern pll_init
#endif
#endif
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/src/clock.h | C | mpl11 | 1,584 |
cd ..\link_hex
del myoutotp.bin.fw
maker -c image.cfg
download.bat | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/link_hex6L/make.bat | Batchfile | mpl11 | 69 |
isd_download.exe -f %1myoutotp.bin.fw -toram -osc 32K -w 200 -dev jieliide -chiptype cd002 -isdtype 9line
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/link_hex6L/download.bat | Batchfile | mpl11 | 111 |
%~d0
cd %~p0
Hex -tohex -s 0x0000 -l 0x4000 -b 8 -f 0xff -e release\exe\app.hex link_hex6L\app.hex
del release\exe\app.hex
cd link_hex6L
make.bat
cd.. | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/make_release.bat | Batchfile | mpl11 | 156 |
copy ..\link_hex6L\info.txt .\ /y
cd ..\link_hex
del myoutotp.bin.fw
maker -c image.cfg
download.bat | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/link_hex2L/make.bat | Batchfile | mpl11 | 104 |
isd_download.exe -f %1myoutotp.bin.fw -toram -osc 32K -w 200 -dev jieliide -chiptype cd002 -isdtype 2line
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/link_hex2L/download.bat | Batchfile | mpl11 | 111 |
%~d0
cd %~p0
Hex -tohex -s 0x0000 -l 0x8000 -b 8 -f 0xff -e .\debug\exe\app.hex .\link_hex2L\app.hex
del .\debug\exe\app.hex
cd link_hex2L
make.bat
cd.. | 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/make_debug.bat | Batchfile | mpl11 | 158 |
%~d0
cd %~p0
@rem del .\src\AC109N_lib.r51
copy .\src\AC109N_releaseA.r51 .\src\AC109N_lib.r51 /y
cd..
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/make_lib_release.bat | Batchfile | mpl11 | 109 |
%~d0
cd %~p0
@rem del .\src\AC109N_lib.r51
copy .\src\AC109N_debugA.r51 .\src\AC109N_lib.r51 /y
cd..
| 109a-cd-pros | trunk/109a-cd-pros/main_root/AC109N_SDK/make_lib_debug.bat | Batchfile | mpl11 | 110 |
PYTHON ?= python
PYUIC4 = pyuic4
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):$(shell python -c 'import os; print ":".join(os.path.abspath(line.strip()) for line in file("PYTHONPATH"))' 2>/dev/null)
.PHONY: all check clean clean-pyc
all: clean-pyc check build
check:
# @$(PYTHON) scripts/detect_missing_analyse_text.py || true
clean: clean-pyc
-rm -rf build
build:
$(MAKE) -C yaraeditor/ui
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
docs: docs/build
docs/build: docs/src/*.txt
$(PYTHON) docs/generate.py html docs/build $?
touch docs/build
| 0423htebazile-repository | Makefile | Makefile | gpl3 | 643 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
import os, sys
import platform
import subprocess
from distutils.core import setup
from distutils.cmd import Command
from distutils.log import info, warn
class Uninstall(Command):
description = "Attempt an uninstall from an install --record file"
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def get_command_name(self):
return 'uninstall'
def run(self):
try:
f = open("uninstall.list")
files = [file.strip() for file in f]
f.close()
except:
raise DistutilsFileError("Unable to open uninstall.list. Did you try an uninstall without install before ?\nPlease do a 'python setup.py install' and then restart me.")
for file in files:
if os.path.isfile(file) or os.path.islink(file):
info("removing %s" % repr(file))
if not self.dry_run:
try:
os.unlink(file)
except OSError, e:
warn("could not delete: %s: %s" % (repr(file), e))
elif not os.path.isdir(file):
info("skipping %s" % repr(file))
dirs = set()
for file in reversed(sorted(files)):
dir = os.path.dirname(file)
if dir not in dirs and os.path.isdir(dir) and len(os.listdir(dir)) == 0:
dirs.add(dir)
if dir.find("site-packages/") > 0:
info("removing %s" % repr(dir))
if not self.dry_run:
try:
os.rmdir(dir)
except OSError, e:
warn("could not remove directory: %s" % str(e))
else:
info("skipping empty directory %s" % repr(dir))
def extract_version():
if not os.path.exists("VERSION"):
subprocess.call(["make", "version"])
if os.path.exists("VERSION"):
f = open("VERSION")
version = f.read()[0:-3]
f.close()
return version
else:
print "ERROR: Unable to read the VERSION file."
if len(sys.argv) > 1 and sys.argv[1] == "install" and not "--record" in sys.argv:
sys.argv.append("--record")
sys.argv.append("uninstall.list")
man_dir = 'man' if platform.system() == 'FreeBSD' else 'share/man'
config_dir = '$HOME/.yara' if platform.system() == 'FreeBSD' else '$HOME/.yara'
data_files = [
(os.path.join(man_dir, 'fr/man8'), ['man/fr/yara-editor.8']),
(os.path.join(man_dir, 'man8'), ['man/fr/yara-editor.8']),
(os.path.join(man_dir, 'en/man8'), ['man/en/yara-editor.8']),
(os.path.join(config_dir, 'yaraeditor/yara-editor'), ['config/yara-editor.cfg'])
]
setup(
name = 'yara-editor',
version = '0.1.5',
packages=['yaraeditor','yaraeditor/ui','yaraeditor/core/'],
scripts = ['bin/yara-editor'],
data_files=data_files,
# Metadata
author = 'Ivan Fontarensky',
author_email = 'ivan.fontarensky_at_gmail.com',
description = 'yara-editor is a free editor for yara in python.',
license = 'GPLv3',
# requires=["somepackage (>1.0, !=1.5)"],
# keywords = '',
cmdclass={'uninstall': Uninstall},
)
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | setup.py | Python | gpl3 | 3,478 |
'.\" t
.\" Title: yara-editor
.\" Author: Ivan Fontarensky <ivan.fontarensky_at_gmail.com>
.\" Manual: yara-editor Manuel
.\" Date: 2011-08-18
.\" Language: French
.\"
.TH "YARA-EDITOR" "8" "2012\-07\-04" "YARA-EDITOR 3\&.0\&.6\" YARA-EDITOR" Manual"
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH NAME
YARA-EDITOR
.SH SYNOPSIS
.sp
\fIyara-editor\fR <file>
.sp
.SH "DESCRIPTION"
.sp
YARA-EDITOR - just an editor for yara rules\&
.RE
.SH OPTIONS
.RE
.PP
\fB\-h, \-\-help\fR
.RS 4
Display help and exit\&.
.RE
.PP
\fB\-v, \-\-verbose\fR
.RS 4
Verbose mode enable
.RE
.PP
\fB\-V, \-\-version\fR
.RS 4
Display version and exit\&.
.RE
.SH BUGS
.sp
http://code.google.com/p/yara-editor/
.SH AUTEURS
.sp
Developer: Ivan Fontarensky <ivan.fontarensky_at_gmail.com>
.sp
Manual: Ivan Fontarensky <ivan.fontarensky_at_gmail.com>
| 0423htebazile-repository | man/en/yara-editor.8 | Roff Manpage | gpl3 | 1,230 |
'.\" t
.\" Title: yara-editor
.\" Author: Ivan Fontarensky <ivan.fontarensky_at_gmail.com>
.\" Manual: yara-editor Manuel
.\" Date: 2011-08-18
.\" Language: French
.\"
.TH "YARA-EDITOR" "8" "2012\-07\-04" "YARA-EDITOR 3\&.0\&.6\" YARA-EDITOR" Manual"
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH NAME
YARA-EDITOR
.SH SYNOPSIS
.sp
\fIyara-editor\fR <file>
.sp
.SH "DESCRIPTION"
.sp
YARA-EDITOR - permet d'editer une règle yara\&
.RE
.SH OPTIONS
.RE
.PP
\fB\-h, \-\-help\fR
.RS 4
Affiche l'aide puis quitter\&.
.RE
.PP
\fB\-v, \-\-verbose\fR
.RS 4
Active le mode verbeux
.RE
.PP
\fB\-V, \-\-version\fR
.RS 4
Display version and exit\&.
.RE
.SH BUGS
.sp
http://code.google.com/p/yara-editor/
.SH AUTEURS
.sp
Developer: Ivan Fontarensky <ivan.fontarensky_at_gmail.com>
.sp
Manual: Ivan Fontarensky <ivan.fontarensky_at_gmail.com>
| 0423htebazile-repository | man/fr/yara-editor.8 | Roff Manpage | gpl3 | 1,241 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
import string
import pickle
import logging
import sys, os, traceback
from yaraeditor.constante import *
from PyQt4 import *
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import (QObject, Qt, QDir, SIGNAL, SLOT)
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
try:
from PyQt4.QtCore import QString
except ImportError:
QString = str
class CodeEditor(QtGui.QPlainTextEdit):
index=-1
def __init__(self, parent):
super(CodeEditor, self).__init__(parent)
self.lineNumberArea = LineNumberArea(self)
self.completer = None
QtCore.QObject.connect(self, QtCore.SIGNAL(_fromUtf8("blockCountChanged(int)")), self.updateLineNumberAreaWidth)
QtCore.QObject.connect(self, QtCore.SIGNAL(_fromUtf8("updateRequest(QRect,int)")), self.updateLineNumberArea)
QtCore.QObject.connect(self, QtCore.SIGNAL(_fromUtf8("cursorPositionChanged()")), self.highlightCurrentLine)
self.updateLineNumberAreaWidth(0)
self.highlightCurrentLine()
self.setAcceptDrops(True)
allStrings = ["all","and","any","ascii","at",
"condition","contains","entrypoint","false",
"filesize","fullword","for","global",
"in","include","index","indexes","int8",
"int16","int32","matches","meta","nocase",
"not","or","of","private","rule","rva",
"section","strings","them","true","uint8",
"uint16","uint32","wide"]
completer = QtGui.QCompleter(allStrings)
completer.setCaseSensitivity(Qt.CaseInsensitive)
completer.setWrapAround(False)
self.setCompleter(completer)
def dragEnterEvent(self, event):
if event.mimeData().hasFormat("text/plain"):
event.accept()
else:
event.reject()
def dragLeaveEvent(self, event):
event.accept()
def dropEvent(self, event):
data = event.mimeData().data("text/plain")
tc = self.textCursor()
tc.movePosition(QtGui.QTextCursor.Left)
tc.movePosition(QtGui.QTextCursor.EndOfWord)
self.setTextCursor(tc)
QtGui.QPlainTextEdit.dropEvent(self,event);
def lineNumberAreaWidth(self):
digits = 1
max = self.qMax(1, self.blockCount())
while (max >= 10):
max /= 10
++digits
space = 3 + self.fontMetrics().width('9') * digits+15;
return space;
def qMax(self, a1, a2):
if a1 <= a2:
return a2
else:
return a1
def updateLineNumberAreaWidth(self,value):
self.setViewportMargins(self.lineNumberAreaWidth(), 0, 0, 0)
def updateLineNumberArea(self,rect, dy):
if (dy):
self.lineNumberArea.scroll(0, dy);
else:
self.lineNumberArea.update(0, rect.y(), self.lineNumberArea.width(), rect.height());
if (rect.contains(self.viewport().rect())):
self.updateLineNumberAreaWidth(0);
def resizeEvent(self, event):
QtGui.QPlainTextEdit.resizeEvent(self,event);
cr = self.contentsRect();
self.lineNumberArea.setGeometry(QtCore.QRect(cr.left(), cr.top(), self.lineNumberAreaWidth(), cr.height()))
def highlightCurrentLine(self):
extraSelections = list()
if (not self.isReadOnly()):
selection = QtGui.QTextEdit.ExtraSelection()
lineColor = QtGui.QColor(Qt.yellow).lighter(160)
selection.format.setBackground(lineColor)
selection.format.setProperty(QtGui.QTextFormat.FullWidthSelection, True)
selection.cursor = self.textCursor()
selection.cursor.clearSelection()
extraSelections.append(selection)
self.setExtraSelections(extraSelections);
def lineNumberAreaPaintEvent(self,event):
painter= QtGui.QPainter(self.lineNumberArea)
painter.fillRect(event.rect(), Qt.lightGray)
block = self.firstVisibleBlock()
blockNumber = block.blockNumber()
top = self.blockBoundingGeometry(block).translated(self.contentOffset()).top()
bottom = top + self.blockBoundingRect(block).height()
# print block.isValid(),blockNumber,top,event.rect().bottom()
while (block.isValid() and top <= event.rect().bottom()):
if (block.isVisible() and bottom >= event.rect().top()):
number = str(blockNumber + 1)
painter.setPen(Qt.black)
painter.drawText(0, top, self.lineNumberArea.width(), self.fontMetrics().height(), Qt.AlignRight, number)
block = block.next()
top = bottom
bottom = top + self.blockBoundingRect(block).height()
blockNumber+=1
def setCompleter(self, completer):
if self.completer:
self.disconnect(self.completer, 0, self, 0)
if not completer:
return
completer.setWidget(self)
completer.setCompletionMode(QtGui.QCompleter.PopupCompletion)
completer.setCaseSensitivity(QtCore.Qt.CaseInsensitive)
self.completer = completer
self.connect(self.completer,
QtCore.SIGNAL("activated(const QString&)"), self.insertCompletion)
def completer(self):
return self.completer
def insertCompletion(self, completion):
tc = self.textCursor()
extra = (len(completion) - len(self.completer.completionPrefix()))
tc.movePosition(QtGui.QTextCursor.Left)
tc.movePosition(QtGui.QTextCursor.EndOfWord)
tc.insertText(completion[-extra:])
self.setTextCursor(tc)
def textUnderCursor(self):
tc = self.textCursor()
tc.select(QtGui.QTextCursor.WordUnderCursor)
return tc.selectedText()
def focusInEvent(self,e):
if (self.completer):
self.completer.setWidget(self)
QtGui.QPlainTextEdit.focusInEvent(self,e)
def keyPressEvent(self, event):
if self.completer and self.completer.popup().isVisible():
if event.key() in (
QtCore.Qt.Key_Enter,
QtCore.Qt.Key_Return,
QtCore.Qt.Key_Escape,
QtCore.Qt.Key_Tab,
QtCore.Qt.Key_Backtab):
event.ignore()
return
## has ctrl-E been pressed??
isShortcut = (event.modifiers() == QtCore.Qt.ControlModifier and
event.key() == QtCore.Qt.Key_E)
if (not self.completer or not isShortcut):
QtGui.QPlainTextEdit.keyPressEvent(self, event)
## ctrl or shift key on it's own??
ctrlOrShift = event.modifiers() in (QtCore.Qt.ControlModifier ,
QtCore.Qt.ShiftModifier)
if ctrlOrShift and len(event.text())==0:
# ctrl or shift key on it's own
return
eow = "~!@#$%^&*()_+{}|:\"<>?,./;'[]\\-="
hasModifier = ((event.modifiers() != QtCore.Qt.NoModifier) and
not ctrlOrShift)
completionPrefix = self.textUnderCursor()
if (not isShortcut and (hasModifier or len(event.text())==0 or
len(completionPrefix) < 3 or
event.text()[-1] in eow )):
self.completer.popup().hide()
return
if (completionPrefix != self.completer.completionPrefix()):
self.completer.setCompletionPrefix(completionPrefix)
popup = self.completer.popup()
popup.setCurrentIndex(
self.completer.completionModel().index(0,0))
cr = self.cursorRect()
cr.setWidth(self.completer.popup().sizeHintForColumn(0)
+ self.completer.popup().verticalScrollBar().sizeHint().width())
self.completer.complete(cr) ## popup it up!
class LineNumberArea(QtGui.QWidget):
def __init__(self, parent):
super(LineNumberArea, self).__init__(parent)
self.codeEditor = parent
def sizeHint(self):
return QtCore.QSize(self.codeEditor.lineNumberAreaWidth(), 0)
def paintEvent(self, event):
self.codeEditor.lineNumberAreaPaintEvent(event);
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | yaraeditor/core/codeeditor.py | Python | gpl3 | 8,442 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
from PyQt4 import QtGui
from PyQt4 import QtCore
from PyQt4.QtCore import (QObject, Qt, SIGNAL, SLOT)
class YaraHighlighter(QtGui.QSyntaxHighlighter):
def __init__(self, parent=None):
super(YaraHighlighter, self).__init__(parent)
keywordFormat = QtGui.QTextCharFormat()
keywordFormat.setForeground(QtCore.Qt.darkBlue)
keywordFormat.setFontWeight(QtGui.QFont.Bold)
keywordPatterns = ["\\ball\\b","\\band\\b","\\bany\\b","\\bascii\\b","\\bat\\b",
"\\bcondition\\b","\\bcontains\\b","\\bentrypoint\\b","\\bfalse\\b",
"\\bfilesize\\b","\\bfullword\\b","\\bfor\\b","\\bglobal\\b",
"\\bin\\b","\\binclude\\b","\\bindex\\b","\\bindexes\\b","\\bint8\\b",
"\\bint16\\b","\\bint32\\b","\\bmatches\\b","\\bmeta\\b","\\bnocase\\b",
"\\bnot\\b","\\bor\\b","\\bof\\b","\\bprivate\\b","\\brule\\b","\\brva\\b",
"\\bsection\\b","\\bstrings\\b","\\bthem\\b","\\btrue\\b","\\buint8\\b",
"\\buint16\\b","\\buint32\\b","\\bwide\\b"]
self.highlightingRules = [(QtCore.QRegExp(pattern), keywordFormat)
for pattern in keywordPatterns]
classFormat = QtGui.QTextCharFormat()
classFormat.setFontWeight(QtGui.QFont.Bold)
classFormat.setForeground(QtCore.Qt.darkMagenta)
self.highlightingRules.append((QtCore.QRegExp("\\b\$[A-Za-z]+\\b"),
classFormat))
singleLineCommentFormat = QtGui.QTextCharFormat()
singleLineCommentFormat.setForeground(QtCore.Qt.red)
self.highlightingRules.append((QtCore.QRegExp("//[^\n]*"),
singleLineCommentFormat))
self.multiLineCommentFormat = QtGui.QTextCharFormat()
self.multiLineCommentFormat.setForeground(QtCore.Qt.red)
quotationFormat = QtGui.QTextCharFormat()
quotationFormat.setForeground(QtCore.Qt.darkGreen)
self.highlightingRules.append((QtCore.QRegExp("\".*\""),
quotationFormat))
functionFormat = QtGui.QTextCharFormat()
functionFormat.setFontItalic(True)
functionFormat.setForeground(QtCore.Qt.blue)
self.highlightingRules.append((QtCore.QRegExp("\\b[A-Za-z0-9_]+(?=\\()"),
functionFormat))
self.commentStartExpression = QtCore.QRegExp("/\\*")
self.commentEndExpression = QtCore.QRegExp("\\*/")
def highlightBlock(self, text):
for pattern, format in self.highlightingRules:
expression = QtCore.QRegExp(pattern)
index = expression.indexIn(text)
while index >= 0:
length = expression.matchedLength()
self.setFormat(index, length, format)
index = expression.indexIn(text, index + length)
self.setCurrentBlockState(0)
startIndex = 0
if self.previousBlockState() != 1:
startIndex = self.commentStartExpression.indexIn(text)
while startIndex >= 0:
endIndex = self.commentEndExpression.indexIn(text, startIndex)
if endIndex == -1:
self.setCurrentBlockState(1)
commentLength = len(text) - startIndex
else:
commentLength = endIndex - startIndex + self.commentEndExpression.matchedLength()
self.setFormat(startIndex, commentLength,
self.multiLineCommentFormat)
startIndex = self.commentStartExpression.indexIn(text,
startIndex + commentLength);
class OutputHighlighter(QtGui.QSyntaxHighlighter):
def __init__(self, parent=None):
super(OutputHighlighter, self).__init__(parent)
keywordFormatError = QtGui.QTextCharFormat()
keywordFormatError.setForeground(QtCore.Qt.red)
keywordFormatGood = QtGui.QTextCharFormat()
keywordFormatGood.setForeground(QtCore.Qt.green)
keywordFormatError.setFontWeight(QtGui.QFont.Bold)
keywordFormatGood.setFontWeight(QtGui.QFont.Bold)
keywordError = ["\\Error\\b","\\Warning\\b","\\UnboundLocalError\\b","\\SyntaxError\\b",
"\\UnicodeEncodeError\\b"]
keywordGood = ["\\Signature match\\b"]
self.highlightingError = [(QtCore.QRegExp(pattern), keywordFormatError) for pattern in keywordError]
self.highlightingGood = [(QtCore.QRegExp(pattern), keywordFormatGood) for pattern in keywordGood]
def highlightBlock(self, text):
for pattern, format in self.highlightingError:
expression = QtCore.QRegExp(pattern)
index = expression.indexIn(text)
while index >= 0:
length = expression.matchedLength()
self.setFormat(index, length, format)
index = expression.indexIn(text, index + length)
for pattern, format in self.highlightingGood:
expression = QtCore.QRegExp(pattern)
index = expression.indexIn(text)
while index >= 0:
length = expression.matchedLength()
self.setFormat(index, length, format)
index = expression.indexIn(text, index + length)
self.setCurrentBlockState(0)
# vim:ts=4:expandtab:sw=4 | 0423htebazile-repository | yaraeditor/core/highlighter.py | Python | gpl3 | 5,521 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
import string
import pickle
import logging
import sys, os, traceback
from yaraeditor.constante import *
from PyQt4 import *
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import (QObject, Qt, QDir, SIGNAL, SLOT)
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
try:
from PyQt4.QtCore import QString
except ImportError:
QString = str
class YTreeWidget(QtGui.QTreeWidget):
index=-1
def __init__(self, parent):
super(YTreeWidget, self).__init__(parent)
self.setDragEnabled(True)
def dragEnterEvent(self, event):
if event.mimeData().hasFormat("application/pubmedrecord"):
event.setDropAction(Qt.MoveAction)
event.accept()
else:
event.ignore()
def startDrag(self, event):
text = self.selectedItems()[0].text(0)
value = "\t$str=\"%s\""%text
mimeData = QtCore.QMimeData()
mimeData.setData("text/plain", value)
drag = QtGui.QDrag(self)
drag.setMimeData(mimeData)
result = drag.start(Qt.MoveAction)
def mouseMoveEvent(self, event):
self.startDrag(event)
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | yaraeditor/core/ytreewidget.py | Python | gpl3 | 1,374 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
__all__ = []
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | yaraeditor/core/__init__.py | Python | gpl3 | 219 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
import string
import pickle
import logging
import sys, os, re, traceback
from yaraeditor.constante import *
from yaraeditor.core.highlighter import *
from yaraeditor.core.codeeditor import *
from yaraeditor.core.ytreewidget import *
from PyQt4 import *
from PyQt4.QtCore import (QObject, Qt, QDir, SIGNAL, SLOT)
# Set the log configuration
logging.basicConfig( \
filename=LOG_FILE, \
level=logging.DEBUG, \
format='%(asctime)s %(levelname)s - %(message)s', \
datefmt='%d/%m/%Y %H:%M:%S', \
)
logger = logging.getLogger(NAME)
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
if sys.platform.startswith('darwin'):
rsrcPath = ":/images/mac"
else:
rsrcPath = ":/images/win"
class Controlleur:
index=-1
def __init__(self,application,ui,mainwindow,fileName=None,config=None):
self.app = application
self.ui_yaraeditor = ui
self.mainwindow = mainwindow
self.config = config
mainwindow.setToolButtonStyle(QtCore.Qt.ToolButtonFollowStyle)
self.setupFileActions()
self.setupEditActions()
self.setupViewActions()
self.setupYaraActions()
self.setupHelpActions()
self.setupEditorActions()
self.setupPropertiesActions()
self.yaraTree = self.ui_yaraeditor.yaraTree
self.malwareTree = self.ui_yaraeditor.malwareTree
self.outputEdit = self.ui_yaraeditor.outputEdit
self.pathYaraEdit = self.ui_yaraeditor.pathYara
self.pathMalwareEdit = self.ui_yaraeditor.pathMalware
self.treeMalwareProperties = self.ui_yaraeditor.treeMalwareProperties
self.treeMalwareStrings = self.ui_yaraeditor.treeMalwareStrings
highlighter = OutputHighlighter(self.outputEdit.document())
self.path_yara=config.get(CONF_PREFERENCE, CONF_PATH_YARA)
self.path_malware=config.get(CONF_PREFERENCE, CONF_PATH_MALWARE)
self.pathYaraEdit.setText(self.path_yara)
self.pathMalwareEdit.setText(self.path_malware)
self.modelYara = QtGui.QDirModel()
self.yaraTree.setModel(self.modelYara)
self.yaraTree.setAnimated(False)
self.yaraTree.setIndentation(20)
self.yaraTree.setSortingEnabled(True)
self.yaraTree.setColumnHidden(1,True)
self.yaraTree.setColumnHidden(2,True)
self.yaraTree.setColumnHidden(3,True)
self.yaraTree.setRootIndex( self.modelYara.index(self.path_yara) );
self.mainwindow.connect(self.yaraTree, SIGNAL('itemDoubleClicked'), self.treeOpenFile)
self.modelMalware = QtGui.QDirModel()
self.malwareTree.setModel(self.modelMalware)
self.malwareTree.setAnimated(False)
self.malwareTree.setIndentation(20)
self.malwareTree.setSortingEnabled(True)
self.malwareTree.setColumnHidden(1,True)
self.malwareTree.setColumnHidden(2,True)
self.malwareTree.setColumnHidden(3,True)
self.malwareTree.setRootIndex( self.modelMalware.index(self.path_malware) );
#self.malwareTree.setSelectionMode( QtGui.QAbstractItemView.MultiSelection )
#self.treeMalwareStrings.setDragDropMode(self.treeMalwareStrings.DragDrop)
self.treeMalwareStrings.setDragEnabled(True)
#self.treeMalwareStrings.setDropIndicatorShown(True)
self.malwareTree.setContextMenuPolicy(Qt.CustomContextMenu);
self.malwareTree.customContextMenuRequested.connect(self.menuContextTree)
QtCore.QObject.connect(self.yaraTree, QtCore.SIGNAL(_fromUtf8("doubleClicked(QModelIndex)")),self.treeOpenFile)
QtCore.QObject.connect(self.pathYaraEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), self.changeYaraPath)
QtCore.QObject.connect(self.pathMalwareEdit, QtCore.SIGNAL(_fromUtf8("textChanged(QString)")), self.changeMalwarePath)
if not self.load(fileName):
self.fileNew()
def setupFileActions(self):
tb = QtGui.QToolBar(self.mainwindow)
tb.setWindowTitle("File Actions")
self.mainwindow.addToolBar(tb)
menu = QtGui.QMenu("&File", self.mainwindow)
self.mainwindow.menuBar().addMenu(menu)
self.actionNew = QtGui.QAction(
QtGui.QIcon.fromTheme('document-new',
QtGui.QIcon(rsrcPath + '/filenew.png')),
"&New", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtGui.QKeySequence.New, triggered=self.fileNew)
tb.addAction(self.actionNew)
menu.addAction(self.actionNew)
self.actionOpen = QtGui.QAction(
QtGui.QIcon.fromTheme('document-open',
QtGui.QIcon(rsrcPath + '/fileopen.png')),
"&Open...", self.mainwindow, shortcut=QtGui.QKeySequence.Open,
triggered=self.fileOpen)
tb.addAction(self.actionOpen)
menu.addAction(self.actionOpen)
menu.addSeparator()
self.actionSave = QtGui.QAction(
QtGui.QIcon.fromTheme('document-save',
QtGui.QIcon(rsrcPath + '/filesave.png')),
"&Save", self.mainwindow, shortcut=QtGui.QKeySequence.Save,
triggered=self.fileSave, enabled=False)
tb.addAction(self.actionSave)
menu.addAction(self.actionSave)
self.actionSaveAs = QtGui.QAction("Save &As...", self.mainwindow,
priority=QtGui.QAction.LowPriority,
shortcut=QtCore.Qt.CTRL + QtCore.Qt.SHIFT + QtCore.Qt.Key_S,
triggered=self.fileSaveAs)
menu.addAction(self.actionSaveAs)
menu.addSeparator()
self.actionPrint = QtGui.QAction(
QtGui.QIcon.fromTheme('document-print',
QtGui.QIcon(rsrcPath + '/fileprint.png')),
"&Print...", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtGui.QKeySequence.Print, triggered=self.filePrint)
tb.addAction(self.actionPrint)
menu.addAction(self.actionPrint)
self.actionPrintPreview = QtGui.QAction(
QtGui.QIcon.fromTheme('fileprint',
QtGui.QIcon(rsrcPath + '/fileprint.png')),
"Print Preview...", self.mainwindow,
shortcut=QtCore.Qt.CTRL + QtCore.Qt.SHIFT + QtCore.Qt.Key_P,
triggered=self.filePrintPreview)
menu.addAction(self.actionPrintPreview)
self.actionPrintPdf = QtGui.QAction(
QtGui.QIcon.fromTheme('exportpdf',
QtGui.QIcon(rsrcPath + '/exportpdf.png')),
"&Export PDF...", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtCore.Qt.CTRL + QtCore.Qt.Key_D,
triggered=self.filePrintPdf)
tb.addAction(self.actionPrintPdf)
menu.addAction(self.actionPrintPdf)
menu.addSeparator()
self.actionQuit = QtGui.QAction("&Quit", self.mainwindow,
shortcut=QtGui.QKeySequence.Quit, triggered=self.mainwindow.close)
menu.addAction(self.actionQuit)
def setupEditActions(self):
tb = QtGui.QToolBar(self.mainwindow)
tb.setWindowTitle("Edit Actions")
self.mainwindow.addToolBar(tb)
menu = QtGui.QMenu("&Edit", self.mainwindow)
self.mainwindow.menuBar().addMenu(menu)
self.actionUndo = QtGui.QAction(
QtGui.QIcon.fromTheme('edit-undo',
QtGui.QIcon(rsrcPath + '/editundo.png')),
"&Undo", self.mainwindow, shortcut=QtGui.QKeySequence.Undo)
tb.addAction(self.actionUndo)
menu.addAction(self.actionUndo)
self.actionRedo = QtGui.QAction(
QtGui.QIcon.fromTheme('edit-redo',
QtGui.QIcon(rsrcPath + '/editredo.png')),
"&Redo", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtGui.QKeySequence.Redo)
tb.addAction(self.actionRedo)
menu.addAction(self.actionRedo)
menu.addSeparator()
self.actionCut = QtGui.QAction(
QtGui.QIcon.fromTheme('edit-cut',
QtGui.QIcon(rsrcPath + '/editcut.png')),
"Cu&t", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtGui.QKeySequence.Cut)
tb.addAction(self.actionCut)
menu.addAction(self.actionCut)
self.actionCopy = QtGui.QAction(
QtGui.QIcon.fromTheme('edit-copy',
QtGui.QIcon(rsrcPath + '/editcopy.png')),
"&Copy", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtGui.QKeySequence.Copy)
tb.addAction(self.actionCopy)
menu.addAction(self.actionCopy)
self.actionPaste = QtGui.QAction(
QtGui.QIcon.fromTheme('edit-paste',
QtGui.QIcon(rsrcPath + '/editpaste.png')),
"&Paste", self.mainwindow, priority=QtGui.QAction.LowPriority,
shortcut=QtGui.QKeySequence.Paste,
enabled=(len(QtGui.QApplication.clipboard().text()) != 0))
tb.addAction(self.actionPaste)
menu.addAction(self.actionPaste)
def setupViewActions(self):
menu = QtGui.QMenu("&View", self.mainwindow)
self.mainwindow.menuBar().addMenu(menu)
self.actionYaraBrowser = QtGui.QAction(
"&Yara Browser", self.mainwindow, toggled=self.ui_yaraeditor.dockWidgetYara.setVisible)
self.actionYaraBrowser.setCheckable(True)
self.actionYaraBrowser.setChecked(True)
menu.addAction(self.actionYaraBrowser)
self.actionMalwareBrowser = QtGui.QAction(
"&Malware Browser", self.mainwindow, toggled=self.ui_yaraeditor.dockWidgetMalware.setVisible)
self.actionMalwareBrowser.setCheckable(True)
self.actionMalwareBrowser.setChecked(True)
menu.addAction(self.actionMalwareBrowser)
self.actionInspector = QtGui.QAction(
"&Inspector", self.mainwindow, toggled=self.ui_yaraeditor.dockWidgetInspector.setVisible)
self.actionInspector.setCheckable(True)
self.actionInspector.setChecked(True)
menu.addAction(self.actionInspector)
def setupYaraActions(self):
tb = QtGui.QToolBar(self.mainwindow)
tb.setWindowTitle("Yara Actions")
self.mainwindow.addToolBar(tb)
menu = QtGui.QMenu("&Yara", self.mainwindow)
self.mainwindow.menuBar().addMenu(menu)
iconExec = QtGui.QIcon()
iconExec.addPixmap(QtGui.QPixmap(_fromUtf8(":/icon/images/win/exec.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
self.actionExecuteYara = QtGui.QAction(
QtGui.QIcon.fromTheme('yara-execute',iconExec),
"&Execute", self.mainwindow, shortcut=QtGui.QKeySequence(Qt.Key_F5),
triggered=self.yaraExecute)
tb.addAction(self.actionExecuteYara)
menu.addAction(self.actionExecuteYara)
self.actionGenerateRules = QtGui.QAction(
"&Generate Rules", self.mainwindow, triggered=self.yaraRulesGenerator)
menu.addAction(self.actionGenerateRules)
def setupHelpActions(self):
helpMenu = QtGui.QMenu("Help", self.mainwindow)
self.mainwindow.menuBar().addMenu(helpMenu)
helpMenu.addAction("About", self.about)
helpMenu.addAction("About &Qt", QtGui.qApp.aboutQt)
def setupEditorActions(self):
self.ui_yaraeditor.horizontalLayout = QtGui.QHBoxLayout(self.ui_yaraeditor.widgetEditor)
self.ui_yaraeditor.horizontalLayout.setMargin(0)
self.ui_yaraeditor.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.ui_yaraeditor.yaraEdit = CodeEditor(self.ui_yaraeditor.widgetEditor)
self.ui_yaraeditor.yaraEdit.setObjectName(_fromUtf8("yaraEdit"))
self.ui_yaraeditor.horizontalLayout.addWidget(self.ui_yaraeditor.yaraEdit)
self.ui_yaraeditor.widgetEditor.setAcceptDrops(True)
#Create our YaraHighlighter derived from QSyntaxHighlighter
self.yaraEdit = self.ui_yaraeditor.yaraEdit
highlighter = YaraHighlighter(self.yaraEdit.document())
self.yaraEdit.document().modificationChanged.connect(
self.actionSave.setEnabled)
self.yaraEdit.document().modificationChanged.connect(
self.mainwindow.setWindowModified)
self.yaraEdit.document().undoAvailable.connect(
self.actionUndo.setEnabled)
self.yaraEdit.document().redoAvailable.connect(
self.actionRedo.setEnabled)
self.mainwindow.setWindowModified(self.yaraEdit.document().isModified())
self.actionSave.setEnabled(self.yaraEdit.document().isModified())
self.actionUndo.setEnabled(self.yaraEdit.document().isUndoAvailable())
self.actionRedo.setEnabled(self.yaraEdit.document().isRedoAvailable())
self.actionUndo.triggered.connect(self.yaraEdit.undo)
self.actionRedo.triggered.connect(self.yaraEdit.redo)
self.actionCut.setEnabled(False)
self.actionCopy.setEnabled(False)
self.actionCut.triggered.connect(self.yaraEdit.cut)
self.actionCopy.triggered.connect(self.yaraEdit.copy)
self.actionPaste.triggered.connect(self.yaraEdit.paste)
self.yaraEdit.copyAvailable.connect(self.actionCut.setEnabled)
self.yaraEdit.copyAvailable.connect(self.actionCopy.setEnabled)
QtGui.QApplication.clipboard().dataChanged.connect(
self.clipboardDataChanged)
def setupPropertiesActions(self):
#self.ui_yaraeditor.verticalLayout_7 = QtGui.QVBoxLayout(self.ui_yaraeditor.tab_strings)
#self.ui_yaraeditor.verticalLayout_7.setObjectName(_fromUtf8("verticalLayout_7"))
self.ui_yaraeditor.treeMalwareStrings = YTreeWidget(self.ui_yaraeditor.tab_strings)
self.ui_yaraeditor.treeMalwareStrings.setHeaderHidden(False)
self.ui_yaraeditor.treeMalwareStrings.setObjectName(_fromUtf8("treeMalwareStrings"))
self.ui_yaraeditor.treeMalwareStrings.setColumnCount(2)
self.ui_yaraeditor.treeMalwareStrings.headerItem().setText(0, QtGui.QApplication.translate("YaraEditor", "Value", None, QtGui.QApplication.UnicodeUTF8))
self.ui_yaraeditor.treeMalwareStrings.headerItem().setText(1, QtGui.QApplication.translate("YaraEditor", "Type", None, QtGui.QApplication.UnicodeUTF8))
self.ui_yaraeditor.verticalLayout_7.addWidget(self.ui_yaraeditor.treeMalwareStrings)
def about(self):
QtGui.QMessageBox.about(self.mainwindow, "About",
"""
Yara-Editor Version (%s)
Editor for Yara rules
%s
""" % (VERSION,AUTHOR))
def clipboardDataChanged(self):
self.actionPaste.setEnabled(
len(QtGui.QApplication.clipboard().text()) != 0)
def menuContextTree(self, point):
# On définie le menu contextuel.
menu=QtGui.QMenu()
action_inspect_malware=menu.addAction("Inspect")
QtCore.QObject.connect(action_inspect_malware, QtCore.SIGNAL("triggered()"), self.inspect_malware)
action_generate_rules=menu.addAction("Generate Rules")
QtCore.QObject.connect(action_generate_rules, QtCore.SIGNAL("triggered()"), self.yaraRulesGenerator)
# Il reste à lier chaque clic sur le menu à une action réelle via un SLOT.
menu.exec_(QtGui.QCursor.pos())
def inspect_malware(self):
logger.debug('inspect_malware() :')
self.treeMalwareProperties.clear()
self.treeMalwareStrings.clear()
for index in self.malwareTree.selectedIndexes():
fileInfo = self.modelMalware.fileInfo(index)
self.add_element(self.treeMalwareProperties,"Name",fileInfo.fileName())
self.add_element(self.treeMalwareProperties,"Path",fileInfo.filePath())
self.add_element(self.treeMalwareProperties,"Size",str(fileInfo.size()))
fi = open(str(fileInfo.filePath()),'rb')
data = fi.read()
fi.close()
sha1 = QtCore.QCryptographicHash.hash(data,QtCore.QCryptographicHash.Sha1).toHex()
md5 = QtCore.QCryptographicHash.hash(data,QtCore.QCryptographicHash.Md5).toHex()
self.add_element(self.treeMalwareProperties,"MD5",str(md5))
self.add_element(self.treeMalwareProperties,"SHA1",str(sha1))
for s,t in self.get_strings(data):
self.add_element(self.treeMalwareStrings,str(s),t)
def add_element(self,tree,name,value="",typeValue=""):
item = QtGui.QTreeWidgetItem(tree)
item.setText(0,name)
if value!="":
item.setText(1,value)
if typeValue!="":
item.setText(1,typeValue)
def remove_element(self,tree,name):
findings = tree.findItems(name,Qt.MatchCaseSensitive)
for f in findings:
index = tree.indexOfTopLevelItem(f)
tree.takeTopLevelItem(index)
def get_ascii(self,data,length_min=7):
strings = set()
for m in re.finditer("([\x21-\x7e]{4,})", data):
if len(m.group(1))> length_min:
strings.add(m.group(1))
return strings
def get_unicode(self,data,length_min=7):
strings = set()
for m in re.finditer("([\x20-\x7e]{4,})", data):
if len(m.group(1))> length_min:
strings.add(m.group(1))
return strings
def get_strings(self,data,length_min=7):
strings_ascii = self.get_ascii(data,length_min)
strings_unicode = self.get_unicode(data,length_min)
strings = set()
for sa in strings_ascii:
strings.add((sa,"ascii"))
for su in strings_unicode:
if su in strings:
continue
strings.add((su,"unicode"))
return strings
def maybeSave(self):
if not self.yaraEdit.document().isModified():
return True
ret = QtGui.QMessageBox.warning(self.mainwindow, "Application",
"The document has been modified.\n"
"Do you want to save your changes?",
QtGui.QMessageBox.Save | QtGui.QMessageBox.Discard |
QtGui.QMessageBox.Cancel)
if ret == QtGui.QMessageBox.Save:
return self.fileSave()
if ret == QtGui.QMessageBox.Cancel:
return False
return True
def setCurrentFileName(self, fileName=''):
self.fileName = fileName
self.yaraEdit.document().setModified(False)
if not fileName:
shownName = 'untitled.yara'
else:
shownName = QtCore.QFileInfo(fileName).fileName()
self.mainwindow.setWindowTitle(self.mainwindow.tr("%s[*] - %s" % (shownName, "Rich Text")))
self.mainwindow.setWindowModified(False)
def fileNew(self):
if self.maybeSave():
self.yaraEdit.clear()
self.setCurrentFileName()
def fileOpen(self):
fn = QtGui.QFileDialog.getOpenFileName(self.mainwindow, "Open File...", "",
"Yara files (*.yara);;All Files (*)")
if fn:
self.load(fn)
def fileSave(self):
if not self.fileName:
return self.fileSaveAs()
f = open(self.fileName, 'w')
f.write(str(self.yaraEdit.document().toPlainText()))
f.close()
self.yaraEdit.document().setModified(False)
self.modelYara.refresh()
self.yaraTree.setRootIndex( self.modelYara.index(self.path_yara) );
return True
def fileSaveAs(self):
fn = QtGui.QFileDialog.getSaveFileName(self.mainwindow, "Save as...", self.path_yara,
"Yara files (*.yara);;HTML-Files (*.htm *.html);;All Files (*)")
if not fn:
return False
lfn = fn.lower()
if not lfn.endswith(('.yara', '.htm', '.html')):
# The default.
fn += '.yara'
self.setCurrentFileName(fn)
return self.fileSave()
def filePrint(self):
printer = QtGui.QPrinter(QtGui.QPrinter.HighResolution)
dlg = QtGui.QPrintDialog(printer, self.mainwindow)
if self.yaraEdit.textCursor().hasSelection():
dlg.addEnabledOption(QtGui.QAbstractPrintDialog.PrintSelection)
dlg.setWindowTitle("Print Document")
if dlg.exec_() == QtGui.QDialog.Accepted:
self.yaraEdit.print_(printer)
del dlg
def filePrintPreview(self):
printer = QtGui.QPrinter(QtGui.QPrinter.HighResolution)
preview = QtGui.QPrintPreviewDialog(printer, self.mainwindow)
preview.paintRequested.connect(self.printPreview)
preview.exec_()
def printPreview(self, printer):
self.yaraEdit.print_(printer)
def filePrintPdf(self):
fn = QtGui.QFileDialog.getSaveFileName(self.mainwindow, "Export PDF", None,
"PDF files (*.pdf);;All Files (*)")
if fn:
if QtCore.QFileInfo(fn).suffix().isEmpty():
fn += '.pdf'
printer = QtGui.QPrinter(QtGui.QPrinter.HighResolution)
printer.setOutputFormat(QtGui.QPrinter.PdfFormat)
printer.setOutputFileName(fileName)
self.yaraEdit.document().print_(printer)
def load(self, f):
if not QtCore.QFile.exists(f):
return False
fh = QtCore.QFile(f)
if not fh.open(QtCore.QFile.ReadOnly):
return False
data = fh.readAll()
codec = QtCore.QTextCodec.codecForHtml(data)
unistr = codec.toUnicode(data)
if QtCore.Qt.mightBeRichText(unistr):
doc = QtGui.QTextDocument()
doc.setHtml(unistr)
text = doc.toPlainText()
unistr = text
self.yaraEdit.setPlainText(unistr)
self.setCurrentFileName(f)
return True
def treeOpenFile(self,index):
self.load( self.modelYara.filePath(index) )
def changeYaraPath(self,path):
if QDir(path).exists():
self.path_yara = path
self.yaraTree.setRootIndex( self.modelYara.index(self.path_yara) );
self.config.set(CONF_PREFERENCE, CONF_PATH_YARA,self.path_yara)
self.save_config()
def changeMalwarePath(self,path):
if QDir(path).exists():
self.path_malware = path
self.malwareTree.setRootIndex( self.modelMalware.index(self.path_malware) );
self.config.set(CONF_PREFERENCE, CONF_PATH_MALWARE,self.path_malware)
self.save_config()
def save_config(self):
config_path = os.path.join(CONF_PATH,CONF_FILE)
config_file = open(config_path, 'w')
self.config.write(config_file)
config_file.close()
def yaraExecute(self):
import yara
self.outputEdit.clear()
report = set()
ret = ""
self.add_message_output("Compilation...")
yara_script = str(self.yaraEdit.document().toPlainText())
modelIndexList = self.malwareTree.selectionModel().selectedIndexes();
try:
rules = yara.compile(source=yara_script)
except yara.SyntaxError, e:
report = "Error : Exception occured in : \n%s" % (str(e))
self.add_message_output(report)
return
pathes = set()
[pathes.add(str(self.modelMalware.filePath(index))) for index in modelIndexList]
self.add_message_output("Execution...")
found=0
for path_malware in pathes:
try:
if os.path.isdir(path_malware):
for root, dirs, files in os.walk(path_malware):
set_report = set()
for i in files:
n = os.path.join(root, i)
matches = self.check_yara(rules,n)
if len(matches)>0:
for m in matches:
report = "Signature match : %s : %s" % (m,n)
self.add_message_output(report)
found+=1
else:
matches = self.check_yara(rules,path_malware)
if len(matches)>0:
for m in matches:
report = "Signature match : %s : %s" % (m,path_malware)
found+=1
self.add_message_output(report)
except Exception, e:
report = "Error : Exception occured in : \n%s\n%s" % (str(e),traceback.format_exc())
logging.error("Exception occured in yaraExecute(): %s" % (str(e)))
logging.debug(traceback.format_exc())
self.add_message_output(report)
self.add_message_output("Finish : %d matches" % found)
def check_yara(self,rules,path):
try:
matches = rules.match(path)
return matches
except Exception, e:
logging.error("Exception occured when using yara: %s\n%s" % (str(e),traceback.format_exc()))
return []
def add_message_output(self, message):
import datetime
cursor = self.outputEdit.textCursor()
codec = QtCore.QTextCodec.codecForHtml(message)
unistr = codec.toUnicode(message)
cursor.movePosition(QtGui.QTextCursor.Start, QtGui.QTextCursor.MoveAnchor)
self.outputEdit.setTextCursor(cursor)
timestamp = str(datetime.datetime.now())
self.outputEdit.insertPlainText("["+timestamp+"] "+message+"\n")
def yaraRulesGenerator(self):
from yaraeditor.ui.rules_generator import *
self.dialog_generator = QtGui.QDialog()
self.ui_generator=Ui_DialogGenerator()
self.ui_generator.setupUi(self.dialog_generator)
self.app.connect(self.ui_generator.btnBrowseNewFile,SIGNAL("clicked()"),self.generator_add_file)
self.app.connect(self.ui_generator.btnBrowseNewFamily,SIGNAL("clicked()"),self.generator_add_family)
self.app.connect(self.ui_generator.listFiles, QtCore.SIGNAL("customContextMenuRequested(const QPoint &)"), self.generator_menuContextTree)
self.ui_generator.listFiles.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
if self.dialog_generator.exec_():
rules = self.generator_generate_rules()
self.yaraEdit.setPlainText(rules)
def generator_generate_rules(self):
count = self.ui_generator.treeWidget.topLevelItemCount()
set_strings = set()
set_condition = set()
for i in range(0,count):
item = self.ui_generator.treeWidget.topLevelItem(i)
condition = "$str%d" % i
value = "\t%s=\"%s\""%(condition,item.text(0))
set_strings.add(value)
set_condition.add(condition)
rules = TEMPLATE_YARA
rules = rules.replace("###STRINGS###","\n".join(set_strings))
#rules = rules.replace("###CONDITION###","\t(%s)" % " and ".join(set_condition))
rules = rules.replace("###CONDITION###","\tall of them")
return rules
def generator_add_file(self,path=""):
if path == "":
pathes = QtGui.QFileDialog.getOpenFileNames(self.mainwindow, "Open File","","All (*)")
if pathes == None:
return
for path in pathes:
item = QtGui.QListWidgetItem(path)
self.ui_generator.listFiles.addItem(item)
self.generator_update()
def generator_remove_file(self,path=""):
items = self.ui_generator.listFiles.selectedItems()
for item in items:
index = self.ui_generator.listFiles.row(item)
self.ui_generator.listFiles.takeItem(index)
self.generator_update()
def generator_add_family(self,path=None):
if path == None:
pathes = QtGui.QFileDialog.getOpenFileNames(self.mainwindow, "Open File","","All (*)")
else:
pathes = path
if pathes == None:
return
for path in pathes:
item = QtGui.QListWidgetItem(path)
self.ui_generator.listFilesFamily.addItem(item)
self.generator_update()
def generator_update(self):
self.set_string = dict()
countFamily = self.ui_generator.listFilesFamily.count()
for index in range(0,countFamily):
item = self.ui_generator.listFilesFamily.item(index)
self.generator_add_string(item.text())
count = self.ui_generator.listFiles.count()
for index in range(0,count):
item = self.ui_generator.listFiles.item(index)
self.generator_remove_string(item.text())
self.ui_generator.treeWidget.clear()
good = False
while not good:
for s,v in self.set_string.iteritems():
print s,v
if v>=countFamily:
self.add_element(self.ui_generator.treeWidget,str(s))
good = True
countFamily -=1
def generator_add_string(self,malware):
f = open(malware,'rb')
data = f.read()
f.close()
strings_in_file = set()
for s,t in self.get_strings(data):
strings_in_file.add(s)
for s in strings_in_file:
if '"' not in s and '\\' not in s and not len(s)>40:
if self.set_string.has_key(str(s)):
self.set_string[str(s)] += 1
else:
self.set_string[str(s)] = 1
def generator_remove_string(self,malware):
f = open(malware,'rb')
data = f.read()
f.close()
for s,t in self.get_strings(data):
if self.set_string.has_key(str(s)):
self.set_string[str(s)] = 0
def generator_menuContextTree(self, point):
# On définie le menu contextuel.
menu=QtGui.QMenu()
action_delete=menu.addAction("Remove")
QtCore.QObject.connect(action_delete, QtCore.SIGNAL("triggered()"), self.generator_remove_file)
# Il reste à lier chaque clic sur le menu à une action réelle via un SLOT.
menu.exec_(QtGui.QCursor.pos())
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | yaraeditor/core/controlleur.py | Python | gpl3 | 30,740 |
PYTHON ?= python
PYUIC4 = pyuic4
export PYTHONPATH = $(shell echo "$$PYTHONPATH"):$(shell python -c 'import os; print ":".join(os.path.abspath(line.strip()) for line in file("PYTHONPATH"))' 2>/dev/null)
.PHONY: all check clean clean-pyc
all: clean-pyc check build
check:
# @$(PYTHON) scripts/detect_missing_analyse_text.py || true
clean: clean-pyc
-rm -rf build
build:
$(PYUIC4) yaraeditor.ui > yaraeditor.py
$(PYUIC4) rules_generator.ui > rules_generator.py
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
docs: docs/build
docs/build: docs/src/*.txt
$(PYTHON) docs/generate.py html docs/build $?
touch docs/build
| 0423htebazile-repository | yaraeditor/ui/Makefile | Makefile | gpl3 | 709 |
# -*- coding: utf-8 -*-
# Resource object code
#
# Created: Sat Nov 24 16:28:52 2012
# by: The Resource Compiler for PyQt (Qt v4.8.1)
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore
qt_resource_data = "\
\x00\x00\x04\x8b\
\xff\
\xd8\xff\xe0\x00\x10\x4a\x46\x49\x46\x00\x01\x01\x00\x00\x01\x00\
\x01\x00\x00\xff\xdb\x00\x84\x00\x09\x06\x06\x13\x06\x05\x09\x14\
\x10\x08\x0a\x09\x09\x0a\x0d\x16\x0e\x0d\x0c\x18\x17\x1a\x13\x14\
\x19\x16\x1f\x1c\x21\x20\x1f\x1c\x1e\x1e\x22\x27\x32\x26\x23\x25\
\x2f\x20\x1e\x1f\x2b\x3b\x24\x2f\x2c\x35\x2d\x38\x38\x21\x23\x31\
\x35\x3c\x2a\x35\x2f\x30\x34\x2a\x01\x09\x0a\x0a\x0d\x0b\x0d\x19\
\x0e\x0e\x19\x35\x24\x1e\x24\x35\x35\x35\x35\x35\x35\x35\x35\x35\
\x35\x35\x35\x35\x35\x33\x35\x2b\x34\x35\x35\x35\x33\x35\x35\x35\
\x34\x35\x34\x35\x35\x2c\x2f\x35\x2d\x29\x29\x35\x34\x35\x35\x35\
\x34\x2c\x2c\x34\x2c\x34\x2e\x34\x34\xff\xc0\x00\x11\x08\x00\x37\
\x00\x32\x03\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xc4\x00\x1b\
\x00\x00\x02\x02\x03\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x06\x05\x07\x01\x03\x04\x02\xff\xc4\x00\x33\x10\x00\x02\
\x01\x03\x03\x02\x02\x08\x04\x07\x00\x00\x00\x00\x00\x00\x01\x02\
\x03\x00\x04\x11\x05\x12\x21\x06\x31\x07\x13\x14\x22\x41\x51\x61\
\x71\x91\xb1\x15\x36\x74\x81\x16\x23\x26\x42\x73\x82\xa1\xff\xc4\
\x00\x19\x01\x00\x02\x03\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x03\x01\x04\x05\x02\xff\xc4\x00\x25\x11\x00\x01\
\x04\x02\x01\x04\x01\x05\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\
\x02\x03\x11\x04\x31\x12\x21\x41\x51\x71\xb1\x05\x13\x22\x32\x33\
\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xbc\x6b\
\x4d\xdd\xda\xd8\xd9\xcd\x24\x8f\xb2\x18\x50\xbb\xb7\xb8\x01\x93\
\x5b\xaa\x13\xad\x3f\x26\x6a\xbf\xa6\x7f\xb5\x43\x8d\x02\x53\x22\
\x60\x7c\x8d\x69\xee\x52\xb3\xf8\xcb\x00\x73\x8d\x3a\xe9\x97\x3c\
\x1d\xca\x0f\xd2\x9e\xf4\xeb\xe5\xd4\xb4\xdb\x79\x54\x32\xc7\x71\
\x12\xca\xa0\xf0\x70\x46\x79\xa4\xdf\x0d\x34\x88\x2f\x3a\x3a\x26\
\x92\xc2\xd6\x69\x0c\xb2\x0d\xed\x1a\xb3\x77\xf7\x91\x5c\x1a\xf4\
\x9a\xdc\x3a\xcd\xdf\xa3\xab\x2d\x8a\x39\xf2\x02\xac\x5b\x7c\xb1\
\xdb\xbf\x3d\xaa\xbb\x5e\xe0\xde\x4e\xeb\x7e\x16\xb4\xd8\xd0\x49\
\x29\x86\x1a\x61\x6e\xcb\x8e\xd5\x95\x45\x28\xf8\x71\xd4\xf2\xf5\
\x26\x8b\x31\x9c\xab\x5c\x5b\xc8\x10\xc8\x00\x1b\x81\x19\x19\x03\
\x8c\xf7\xff\x00\x94\xdd\x4f\x6b\x83\x85\x85\x97\x3c\x2e\x82\x43\
\x1b\xf6\x11\x45\x14\x57\x49\x2b\x07\xb7\xc6\xa9\xee\xa4\xd6\x35\
\x79\x34\xcb\xb5\xb8\xb4\x96\x0b\x36\xf5\x65\x22\x21\xb4\x2e\x7b\
\x6e\xf7\x7c\x6a\xe2\xa8\x4e\xb4\x1f\xd1\x9a\xaf\xe9\x9f\xed\x4a\
\x95\xbc\x9b\xb5\xa1\x81\x38\x8a\x50\x0b\x01\xb2\x37\xdb\xd2\xe2\
\xf0\xd9\x11\x3a\x16\xc7\x63\x97\xdd\xbc\xb9\x3c\x1d\xfb\x8e\x47\
\xed\x4c\x77\x0b\x9b\x79\x38\xc9\x2a\x7e\xd4\xa9\xe1\x67\xe4\x98\
\x7f\xcd\x27\xde\x9b\xa4\x7d\x91\xb1\xf6\x28\xcd\x4c\x7f\xa0\x4b\
\xcc\x15\x94\xff\x00\x67\xe5\x56\xde\x0e\x5c\xac\x7a\x7e\xa2\xa6\
\x54\x57\xf3\x51\xb6\x92\x01\xc6\xd2\x2a\xca\x56\xdc\xa0\x82\x08\
\x3d\x8d\x51\xfd\x33\xd1\x8d\xd7\x13\x5f\xca\x2e\xa3\xb1\x45\x97\
\x3b\x02\x6e\x19\x6c\x9c\x01\x91\x80\x2a\xdc\xe9\x9d\x0f\xf8\x77\
\x40\xb7\x83\xd2\x1a\xe3\xc9\xdd\xfc\xc2\x31\xdc\x93\xc0\xf6\x0e\
\x69\x50\x17\x71\xaa\xe8\xaf\x7d\x5a\x38\x84\xce\x78\x7f\xe4\x6a\
\xc5\x6b\xa7\x95\x2b\x45\x14\x55\x95\x8a\x8a\xe6\xd4\xac\x17\x54\
\xd3\x6e\x22\x7c\xf9\x77\x11\xb4\x6d\x8e\xf8\x23\x1c\x51\x7f\x78\
\x2c\x6d\x19\xb6\x19\x1b\x21\x51\x07\x76\x66\x20\x28\xfd\xc9\x15\
\x12\xfd\x65\x0a\xe8\xb2\x5c\x08\x6e\x8d\xb4\x37\x42\xda\x66\x28\
\x53\x67\xae\x15\xa4\x3b\xbf\xb1\x73\x92\xde\xe0\x68\xda\x90\x4b\
\x4d\x84\x94\x7c\x1e\x99\x18\xed\xd5\xe3\xd9\x9e\x3d\x56\x07\xef\
\x53\xef\xd7\x56\x9a\x0d\xa7\xa3\x49\x7b\x3d\xc5\xc5\x9c\x62\xde\
\x49\x36\x13\x96\x51\x83\xcf\xce\xbd\xdf\xf8\x9b\x0e\x9f\xa4\xda\
\x4a\xd6\x37\x81\x2e\xa1\xb8\xb8\x54\x3b\x55\xbc\xa8\x58\x29\x6e\
\x4f\x3b\x81\x05\x40\xee\x0f\xb2\xa3\x2f\xbf\x0c\xd4\x3a\xea\x48\
\x24\xd1\x64\x92\xee\x6b\x84\x89\xe6\xdd\xb4\x17\x78\x7c\xed\xdb\
\x43\x03\x8d\xa3\x04\xe3\xbf\xd6\x91\xf6\xb8\x7f\x35\xa8\x33\x86\
\x41\xac\xc2\x48\x1a\xaa\xda\xc7\x83\x2a\x7f\x08\xd4\x0e\x0e\x0c\
\xea\x33\xfe\xb5\x63\x52\x4f\x4a\x75\xa5\x9b\xdb\xdc\x45\x6d\xa7\
\xcf\x69\x6f\x6b\x6e\xd7\x61\x42\x86\x25\x04\x8d\x19\xe1\x49\x6d\
\xdb\x97\xb1\xe7\x18\xf9\x54\xfe\x99\xd4\x89\xab\x8b\x23\x14\x53\
\x95\xba\x89\xa6\xf5\x97\xcb\x28\x83\x80\x58\x1e\x79\x6e\x00\xf6\
\xe0\x9e\xc2\x99\x1b\x78\x34\x35\x54\xcc\x9c\x64\x4e\xe9\x40\xa0\
\x54\xbd\x14\x51\x5d\xaa\xab\x5c\xb6\xeb\x3b\xc4\x59\x03\x18\x9f\
\x7a\x7c\x1b\x04\x67\xe8\x4d\x79\xbb\xb4\x4b\xfb\x29\xa3\x92\x31\
\x2c\x13\xc6\xd1\xc8\x87\xb1\x56\x18\x20\xfc\xc1\xac\xd1\x42\x17\
\x15\xdf\x4e\xdb\xdf\x42\x8b\x25\x9c\x72\x24\x76\xcf\x6a\xa0\xe7\
\x88\x9c\x00\xc9\xdf\xb1\xda\xbf\x4a\x0f\x4e\xdb\x9b\xef\x33\xd0\
\xa2\xf3\xfc\xe4\xb8\xdf\xce\x7c\xc4\x43\x1a\xb7\xcc\x21\x22\x8a\
\x28\x42\x34\xde\x9b\xb6\xd2\x26\x56\x82\xca\x2b\x79\x12\x13\x02\
\xb0\xce\x42\x17\x2f\xb7\xe5\xbd\x89\xfd\xeb\xb2\x3b\x55\x8a\xe2\
\x57\x08\x04\xb3\x05\x0e\xde\xd2\x17\xb0\xf9\x0c\x9e\x3e\x26\xb3\
\x45\x08\x5b\x68\xa2\x8a\x10\xbf\xff\xd9\
\x00\x00\x06\xd8\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x06\x6a\x49\x44\x41\x54\x58\xc3\xed\
\x55\x69\x4c\x94\x57\x14\x55\xd4\x56\x5b\x63\xb4\xd5\x68\x13\xb5\
\x5a\xb5\x5a\x71\xa9\x25\x75\x50\x91\xd2\x0a\x54\x65\x13\x10\x14\
\x64\x19\xd1\x6a\x2b\x8b\x53\x34\x38\x2c\x65\x11\x37\x16\x51\x60\
\x40\xa8\xe2\x52\x59\x44\xa4\x54\x2d\x8e\xe0\x82\x36\x2e\x35\x2e\
\xa3\x18\xc6\x9a\x6a\x27\x85\xa9\x86\x88\x31\x19\xa5\xc9\x24\x24\
\xa7\xe7\x8d\x6f\x5a\x4b\x45\xb1\xb5\xb1\x3f\x3a\xc9\xc9\x97\x6f\
\x79\xf7\x9e\x7b\xee\xb9\x77\xba\x00\xe8\xf2\x22\xd1\xe5\x7f\x02\
\xff\x29\x02\x1f\x06\xa6\x78\x10\x49\x44\xa1\x44\x26\xb1\x84\xb0\
\xfb\x57\x09\x30\x81\x0f\x51\xaa\x5a\xad\x35\x24\x64\xea\x5b\x12\
\x33\x8d\xa6\xc4\x2c\xa3\x29\x35\xe7\xe6\xbd\xf8\xcc\xb3\xb7\x16\
\xab\x4b\xaf\xf3\x7d\x9d\x24\x67\xfb\x5c\x09\x30\xe0\x50\xb7\xb0\
\x0c\xdd\x9a\x9c\x3b\xad\xa1\xd1\xc0\xac\x50\x60\x46\x30\xe0\xaa\
\x04\x3c\x3e\x05\x16\xac\x04\x22\x53\x81\x35\xf9\xe6\xb6\x75\x5b\
\xf4\x2d\xc1\xd1\x45\x7a\xa9\x8e\xcb\xf3\x22\x10\x1d\x9f\xa1\x6b\
\xf6\x5f\x06\x4c\x98\x0d\x8c\x72\x25\xdc\x80\xb1\xde\xc0\x78\x7f\
\xc0\x2e\x08\x70\x08\x23\xb1\x70\x20\x38\x16\x88\xdd\x04\x64\x6e\
\x35\x9a\x3e\x89\xb5\xa8\xf2\x8f\x89\x08\x02\x75\xb1\x69\xe6\xb6\
\xa9\x7e\xc0\x9b\x0c\x35\xdc\x1d\x18\x13\x00\x4c\x5c\x08\x28\x48\
\x4a\x11\x01\x4c\x66\x72\x7b\xaa\x31\x8d\x70\x89\x04\x02\xe3\x48\
\x64\x33\x90\xb5\xc3\x68\x0a\x5e\x61\x51\x44\x2d\x94\xfc\x5b\x04\
\x84\xfc\xcb\x29\xf1\xfb\xf3\x80\x91\x5e\xc0\xb8\x10\x56\xac\x02\
\x3c\x57\x33\x11\xab\x55\xe6\x02\x41\xbc\x7a\x6f\x60\x5b\x12\x00\
\xc7\x15\xc4\x72\x2a\xf2\x39\xdf\x25\x01\xa9\x85\xc0\xda\x7c\x5d\
\xb3\xdb\xa2\x0c\x1d\x49\x84\x3f\x33\x01\x21\xa5\x6a\x3d\x30\x85\
\xbd\xb7\x65\xef\xa7\x31\xb0\x7f\x06\xb0\xaa\x14\xc8\x3b\x02\xec\
\x3c\x05\x6c\x3d\x09\xa4\x7d\x0b\xac\x28\x26\x19\x12\x9a\xbd\x06\
\xf8\x68\x15\xbd\x42\x32\x73\xd4\x40\x04\xc9\xe5\x94\x98\xdb\xa2\
\x56\x57\xdd\x78\x56\x35\x44\x0b\x2e\x24\xe4\x00\xce\x94\xd6\x9e\
\xfc\x3d\xd7\x02\xea\x32\x60\xef\x05\x60\x73\xe9\xd9\x5b\x91\xa9\
\xa5\xd7\xd3\x77\xd6\x35\x56\x9e\x32\x9a\xf6\x5f\x65\xa2\xe3\xc0\
\xca\x3d\x34\x67\x1e\x89\xf0\x5b\x67\xfa\x62\x16\xc9\x04\xa5\xd0\
\xa8\x5f\x02\xeb\x0b\x7e\x57\xc3\xa7\xd3\x1e\xc8\x2a\x36\xb7\xf9\
\x25\xb2\xbf\xec\xad\x32\x1f\xc8\x3f\xc6\xca\x0f\xe9\x5b\xe4\xd8\
\xd9\x11\x81\xc2\x70\xf3\x55\x9a\xfa\xaa\xb3\x46\x53\xe5\x15\x20\
\xbd\x16\x08\xa7\x22\xfe\xd9\x24\x40\x45\x3e\x66\x7b\x44\x8c\x15\
\xf4\x86\xa6\xe4\x4e\xab\x5f\xb8\xa6\xbe\x33\x2d\x11\x04\x92\x36\
\xee\xd4\xb7\xa8\x34\x0c\x96\x0e\x44\x7d\x05\x94\x9f\xa7\x0a\x59\
\x16\x39\x9d\xda\x2d\x2a\x17\x41\x44\xbd\xa9\xea\x46\xf5\x15\x93\
\x79\xfb\xf7\x40\xc2\x41\x60\xe1\x76\x7a\x64\x23\x30\x93\xbe\xf1\
\x26\x89\xcf\x18\x47\x53\x66\x6e\x5b\x12\x6f\x99\x14\x75\xfb\xa4\
\x62\x97\x58\x77\x8a\xe5\xc6\x2f\x42\x53\xaf\xd9\xcf\x8a\x28\xa1\
\x7a\x2f\x50\xa9\x23\x91\x35\x96\xc3\x8f\xdd\x80\x7c\x1e\xe2\xb1\
\x24\x43\x57\xf1\xdd\xcd\x7b\x55\x0d\x1c\xcb\x3a\xee\x8a\x72\x20\
\x60\x0b\xe0\x46\x3f\x78\xb1\x1d\x61\xbc\x66\x95\x00\x31\x69\x5a\
\xc3\xa3\xbe\xb0\x26\x2f\x28\x7e\xa8\xb0\x35\xa0\x3a\x73\x97\xae\
\x39\xfd\x1b\x20\x85\x44\xca\xd9\xff\x8c\x5d\x75\x8d\x42\xfa\x8e\
\xa4\xe3\x3b\x7b\xb1\xaa\x53\x0b\xb5\x86\x9a\x6b\xe6\xb6\x82\x73\
\x24\x4f\xa3\x2a\x77\x50\x85\x4d\x0f\xbd\xa4\x24\x89\x75\x3b\x69\
\xe0\xad\xba\x66\x6b\xc5\xe2\x9a\x4b\xc5\x4f\x9e\x01\x84\xff\xac\
\xc1\x86\xba\x2f\xce\xd0\x95\xd6\x99\xcc\xb9\x74\x7e\x31\x83\xed\
\x3d\x71\xf3\x9e\x48\xf0\xb4\x1e\x8a\x3e\x2f\x4e\x28\xd2\xd7\xea\
\x4d\xe6\xdd\x54\x2e\x99\xde\x58\xca\x09\xf2\x67\x4b\xbd\xd3\xb8\
\xbc\x88\x38\x8e\x6a\x42\xb6\xa5\xe2\x03\xaa\x54\x7d\x4b\x26\x95\
\xd6\xd6\x3d\x42\xc0\x2a\xab\x72\x55\x91\xbe\xf2\x9c\xb9\x6d\x0f\
\x3d\x70\xda\x00\x08\xd3\x75\x66\xf7\x5b\x5b\x52\x73\xf5\x4e\x6b\
\x05\x5b\x92\x76\x02\x58\x56\xc1\x49\x61\x62\xdf\x2c\x60\x1e\x95\
\x08\x5e\x47\x52\x6a\x93\xd9\x87\x3b\x64\x59\x32\xdb\xac\x6d\x47\
\xc0\x5a\x4d\x62\xae\xd6\x70\xec\x1a\x70\xf2\x47\xa0\xec\xc8\xc3\
\x3e\x75\x66\x9c\xc4\xd8\x79\x92\x44\xf1\x51\x7d\x4b\xd5\x75\xfa\
\x82\xfb\x63\x79\x15\x10\x42\x83\xfa\x70\x32\x66\xd3\xa0\x4e\xfc\
\xaf\x71\xe4\x76\x0d\x63\xc4\x7d\x35\x8f\x21\x60\xf5\x43\xb2\x46\
\x6b\xb8\xf4\x33\xd0\x70\x1b\x58\x14\x67\x59\xb5\x3e\x9d\x24\x61\
\xe9\x71\x09\x49\x7c\x4d\x12\x69\xa7\x01\x15\x3d\x15\xb2\x8b\x24\
\x38\xae\xce\xc9\x0f\x17\xd8\x52\x4e\x49\xd5\x71\x49\xe0\x71\x3f\
\x0b\x89\x3c\xad\xa1\xe1\x16\x70\x82\xb2\x8a\xbf\x6a\x7b\x8f\xa8\
\x01\x7c\xd5\x4d\xa2\x7b\x07\xe8\xe6\xe8\x1f\x37\xde\x29\x20\x29\
\x25\xb3\xfc\xec\xad\xa2\x7a\x7a\x82\xed\x88\x20\x09\x25\x77\x86\
\x2f\x7d\xe1\xc5\xe4\x2a\xb6\xe6\xe0\xe9\xc7\x13\xe8\x4a\xd8\x88\
\x40\x4e\x01\x89\xf1\x61\xb1\xdb\xf4\x17\x0d\xe6\x36\x4d\xf9\x99\
\xdb\xd3\xfd\xe3\xc3\xf9\xbc\x17\xf1\x0a\xf1\x6a\x07\x10\xef\x7a\
\xd9\x7b\xaa\xde\xfb\x60\x7e\xe2\xb6\xec\xe3\x46\x53\x1a\x0d\x9d\
\xc0\x6a\x97\x73\x42\x16\x73\xc3\x86\x16\xf1\x9e\x23\x7b\xf8\xe2\
\x5f\x09\xd8\xc8\x2a\x5e\x22\x7a\x12\xbd\x1d\xe6\xaa\x57\xfa\x47\
\xe5\x34\x1c\xbf\x7c\xe7\xd7\xe4\xbc\xea\x46\x85\x7b\xc4\x02\x3e\
\x1f\x48\x0c\x92\x78\x43\xc2\x7a\x3f\x70\x8c\xfd\x9c\x49\x0e\xbe\
\xab\xd2\x8b\x6a\x1b\xee\x56\xdc\x04\x0a\xb8\xbe\x37\x71\xac\xd7\
\xd3\x13\x5f\x70\x42\xe2\xb8\xb8\x72\xb9\x69\x4f\x5d\xfb\x33\x01\
\x91\xbc\x87\xac\xb0\x0f\xf1\xba\x0c\x38\xc4\x6e\xe6\x92\xa5\xd3\
\xe7\xaa\x0f\x64\x97\x9e\x6a\x56\xc6\x14\xde\x78\x6b\xa2\xf3\x2c\
\x3e\x1f\x4b\xd8\x12\xe3\x24\x6c\xe5\xb3\x77\x26\xbb\x45\x6c\xd8\
\x55\x7d\xa1\xa5\xfe\x2e\x50\xf7\x0b\x70\x88\x5e\x3a\xf0\x13\x7b\
\x4e\x53\x97\x73\x42\xca\xb9\xc6\x8f\xfe\x00\xd4\x37\xfe\x41\xa0\
\xab\xac\x5c\x24\xef\x2b\x2b\x1a\x2e\x82\x11\x13\x08\xbb\x7e\x03\
\x87\xbb\xbc\x3b\x43\x99\x36\x78\xb4\x22\x90\xf7\x8e\x84\x93\xb0\
\x4a\x3b\x38\x0d\x7e\x5b\xb1\x40\x19\xb3\xc5\x70\x44\xd7\xd8\x7a\
\xf4\x72\x63\x6b\x2d\xaf\xb5\x97\x9b\x1e\xd4\xea\x9a\x1e\xd4\x5c\
\x6a\x7a\x70\xf8\x52\xd3\x7d\xed\x85\xa6\xfb\x87\xcf\x1b\xef\x1f\
\x3a\x67\x34\x89\xb5\x6e\xad\xfe\x65\x59\xb9\xa8\x7a\x24\x31\x91\
\x98\x22\x13\xb9\x12\xb3\x09\x77\xc2\x8b\xf0\x26\x7c\x89\xb9\xed\
\x20\x9e\x79\x8f\x98\xe4\x9a\xa8\x70\x8b\xd0\x5a\xe0\x1e\x59\xad\
\xf0\x88\x3a\x38\xc5\x53\x55\x35\x75\x4e\xf4\x3e\x07\x9f\x98\xb2\
\xe9\x7e\x71\xbb\x1d\xe7\x25\xec\xa0\xc7\xb6\xd1\xac\x22\xb6\xc5\
\xd5\xa2\xe7\xfd\x84\xe4\x52\x4a\x7b\x62\x06\xe1\x26\x13\xfa\x11\
\xf3\x09\xa1\x40\x10\x11\x42\x84\xb6\x43\x88\x7c\x17\x28\xbf\xf5\
\x93\x67\xdd\x64\x2c\x7b\x19\x7b\x88\xcc\xd5\x53\xe6\x7e\xf1\x04\
\x9e\x6b\x0b\xe4\x37\xee\xf2\x8c\xab\x8c\x31\x45\xc6\x1c\x29\x73\
\xf4\x91\x39\x6d\x3a\x65\x42\x42\x41\x4c\x25\x1c\x9e\x64\x42\xf9\
\xce\x41\x7e\xab\x90\x67\x27\xc8\x58\xc3\x65\xec\xbe\x32\x57\x77\
\x99\xfb\xc9\x63\x48\x0c\x23\x46\x10\xa3\x88\xd1\x32\x58\x87\x63\
\x28\xbf\x19\x25\xcf\x0c\x93\x31\x06\xc9\x98\x7d\x64\x8e\x1e\xd6\
\xea\x9f\xb8\x88\xe4\x01\xd1\xaf\xd7\x88\xfe\xc4\x80\xa7\x2d\x22\
\xf9\x4d\x7f\x79\xa6\x9f\x8c\xd1\x5b\xc6\x7c\x49\xe6\xb0\xb1\xfe\
\x7f\xfc\x06\xb3\xa4\x19\x9e\x6b\xe3\x34\xfa\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\xe8\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x05\x7a\x49\x44\x41\x54\x58\xc3\xc5\
\x96\x0d\x4c\xd4\x75\x18\xc7\x1f\x2e\x01\xb1\xc0\x38\x1c\x6f\x81\
\x61\x9a\x24\x18\x57\x20\x21\xa9\xbc\x1b\xd4\x28\x96\x2d\x93\x36\
\x27\x45\xb9\xca\x88\x4a\xd9\x60\x33\x29\x50\x47\x80\xbc\xb8\xb0\
\x40\x40\x4e\x8e\x57\x89\xe0\x70\x8a\x32\x72\x91\x81\xd3\x39\x60\
\x97\x20\x06\x2c\x25\x85\x89\x16\x2f\xcd\xdd\xb9\xe0\xe9\x79\xce\
\xdf\x7f\xfb\xeb\x4c\x8e\x08\xba\xed\x33\x8e\xdf\xff\x7f\xff\xe7\
\xfb\xbc\xff\x01\x11\xe1\xff\xc4\xb4\x9b\x00\x1c\x89\x08\x62\x23\
\x11\x44\xb8\xce\x99\x00\xfa\xb8\x3d\x09\xb0\x27\x09\xe0\xec\x1e\
\x80\xde\x4f\x00\x5a\x82\x01\x0e\x08\x31\xee\x73\x21\x20\x2a\x19\
\x40\x97\x4f\xb7\xca\x61\x31\x8b\x00\x76\xd2\x75\xcb\xd9\x16\xb0\
\x9d\x0d\xb2\x08\xfe\xce\x46\x39\x1a\x7c\xf6\x16\x40\x1d\x9d\xf9\
\xcc\xb6\x80\x8d\xec\xed\x07\x00\x27\xe8\xfb\xf3\x5c\x0f\x2c\x42\
\x26\x2a\x6a\xd6\x04\x70\x8e\x57\x01\xec\xcb\x03\xb8\x95\xea\xe4\
\xd4\xce\x85\x28\xce\x37\x7f\xe5\xe2\x32\xc4\xc2\x58\xe0\x6c\x0a\
\x30\x7a\xcf\xde\x6a\xfc\xfc\xf4\x22\xe7\xdc\x0d\x9b\x0b\xbc\xbc\
\xae\xcf\x85\x00\x77\xae\x78\xae\x7c\xb5\xa7\xa7\xbe\x22\x34\xd4\
\xc0\x91\x60\x6a\x37\x6c\x40\x29\x2d\x26\x1b\x03\x58\xc6\x29\x13\
\xad\x6c\x6b\x6a\x0d\xb8\xf2\x0f\x42\x15\x8a\xaf\xd9\xa8\x76\xeb\
\x56\x23\xdf\x45\x47\x9b\x5c\x03\xf4\xf1\x0d\x0b\x0b\x4b\x3c\xdf\
\xd8\xf8\x8b\x7e\x74\xf4\xaf\xa1\xee\xee\x3f\xf9\x99\x26\x0f\x22\
\xf1\x90\x30\x8e\x44\xb1\x9d\x1d\x1e\x72\x72\xc2\x83\x16\x16\xc8\
\xb5\x41\xe7\x1f\x3e\xc8\x70\x48\x48\x48\xe2\x39\xad\xb6\x5f\xaf\
\xd7\x23\x33\x36\x34\x84\x27\x93\x92\xae\x49\xc2\xa7\x23\xc0\x96\
\x6b\x20\x07\xe0\xa6\x7c\x1e\xbc\x0c\x70\x88\x43\x2b\xbb\xcf\x92\
\x0d\x07\x05\x05\x25\xfe\x54\x53\xd3\x3f\x32\x32\x82\xcc\x28\xd1\
\xd3\xd8\x78\xfb\x1d\x95\xaa\x54\xa4\xc1\x6d\x5a\x02\x24\x8f\xb8\
\x26\xd8\xf0\xa9\x98\x18\x1c\xed\xef\xc7\xac\x80\x80\x56\xd1\x9e\
\x0b\x88\xb5\x61\xbe\xbe\x99\xa7\xca\xcb\xfb\x07\x07\x07\x51\xe2\
\x4a\x4f\x0f\x7e\x9b\x90\xd0\x27\x8a\xd8\x77\xda\xbb\xe0\xde\x54\
\xb4\x16\x16\xfe\x66\x30\x18\x90\x39\x97\x9b\xcb\xf9\xdc\x1c\xe2\
\xe3\x9d\x79\x22\x3f\xff\x6a\x5f\x6f\x2f\xf6\xca\x38\x5b\x55\xa5\
\x8f\x59\xb9\x92\xbd\x0e\x93\x0a\x6f\xa6\x02\x6c\x83\x83\x83\x13\
\xc7\xc7\xc7\x91\xb9\x79\xf5\x2a\x96\xa4\xa6\xde\xa8\xae\xae\xc6\
\xd6\xd6\x56\xec\xec\xec\x34\x72\xfe\xf4\x69\x2c\x89\x8b\xbb\xc8\
\xe2\x08\xaf\x19\x6d\xc3\x7b\x05\xb0\x37\xa7\x6b\x6a\xae\x0d\x0f\
\x0f\xa3\x5a\xad\xc6\xe4\xe4\x64\xac\xad\xad\xc5\xe2\xe2\x62\xd4\
\x6a\xb5\x78\xbc\x20\xff\xd6\x6b\x1e\x1e\x07\x85\xd7\x0b\x66\xbc\
\x8e\x65\xed\x18\xb1\xc2\xc1\x61\xf7\x81\x84\x84\xeb\x65\x65\x65\
\xc6\x10\xfb\xfb\xfb\xa3\x8d\x8d\x0d\x0e\x0c\x0c\xe0\xf1\x86\x06\
\x4c\x89\x8e\xee\x9e\xce\xa6\x9c\xca\xa8\x8d\x28\xb0\x77\xb9\xf8\
\x76\x3b\x3b\xff\x7c\x24\x37\x77\xb2\xa2\xa2\x02\xb3\xb3\xb3\x31\
\x2f\x2f\x0f\x2b\x2b\x2b\xb1\xbe\xbe\x1e\x2f\x5d\xba\x64\xe4\xb2\
\x4e\x67\x08\x50\xa9\xd2\x1f\x14\xf6\x29\x05\xd0\xc7\x93\xbd\xe0\
\xf7\x00\x9e\x76\xfb\x01\xc6\x8c\x6d\x67\x66\x86\x05\x56\x56\xa8\
\x49\x4b\xc3\xc3\xf9\xf9\x93\xbb\x62\x63\x7b\x93\xe3\xe2\x86\x4a\
\xd3\xd3\x7f\xa7\x9c\x4f\x76\x74\x74\xa0\x4e\xa7\xc3\x3f\x86\x87\
\x27\xd3\xb6\x6d\xab\xe7\xae\x30\x59\x80\xd4\x46\x3c\x58\x36\x01\
\x54\xee\x05\xe8\x67\xa3\xdf\x00\x4c\xf0\x5f\x7a\x03\x31\x94\x2c\
\x5e\x6c\xec\xfd\x02\x47\x47\xf4\x51\x2a\x33\xc5\xfd\x2c\x36\x68\
\xb5\x83\xc3\xbe\x86\x9c\x9c\xd1\xb6\xd6\x36\x6c\x6b\x6b\xc3\x6b\
\x57\x06\xb0\x49\xa3\xb9\x38\x55\x1d\x48\xc6\xbd\xb8\x47\xd9\x5b\
\x32\xa4\x97\x86\x0c\x7f\x4f\x00\x68\xa2\x61\xb3\x85\xd3\x50\xe4\
\xea\x6a\x28\xb4\xb6\x36\x5e\x7b\x1d\x60\x07\x9d\x3d\x24\xe3\x09\
\xe2\xd5\x9d\x51\x51\xdf\x37\x69\xb5\x93\xcd\xcd\xcd\xd8\xd5\xd5\
\x85\xdd\x67\xce\x8c\x89\x05\xe6\xf8\x0f\xd1\x06\x77\x36\x9e\x05\
\x70\x5d\x32\x9c\x0b\x30\xf2\x11\x40\xa1\x2f\x09\xa3\xeb\x66\xc4\
\xfa\xf7\x01\x4e\x56\x05\x06\x62\x81\xb9\x39\xee\x02\xa8\x15\x13\
\x6f\xfe\x7d\x08\x59\x6e\x6f\x9f\x56\x96\x92\x32\x76\xf4\xe8\x51\
\x6c\x69\x69\xc1\x5f\x2f\x5c\x30\xac\xf1\xf0\xc8\xa0\x6b\xaa\xfb\
\x09\xd8\xf8\x25\xc0\x80\x31\xb4\x36\x36\xb7\xdf\xa3\xfd\x2f\xa9\
\xa5\x8f\x92\x08\xa7\x92\xae\x2e\x75\x77\xc7\x32\x95\x0a\xbf\x00\
\x68\xa6\xb3\x85\xc4\xa3\xa2\x25\x95\x32\x6c\xc5\xf9\xd3\xc4\xa6\
\x4f\xc3\xc3\x7f\xa8\x3e\xac\x9e\xac\xab\xab\xc3\xcb\x3d\x3d\x13\
\xd1\x91\x91\x64\x06\xd6\xdd\x25\x80\x0b\x8d\x8d\x97\xfb\xf8\xe0\
\x8b\x00\x7b\x65\xc6\x9f\x22\xa2\x3f\x06\xf8\x51\xed\xe6\x86\x47\
\x22\x22\x90\x92\x3e\xc0\x5e\x10\x8f\x89\xb6\x7c\x9c\x67\xba\x0c\
\xfe\x7f\x31\xe1\x42\x38\x13\xaf\x2c\xb5\xb3\xcb\xca\x8b\x8f\xbf\
\xa1\xd1\x68\x50\xd7\xde\x8e\xc9\xb1\xb1\x0d\xf2\x16\x05\xe9\xf5\
\x8a\x57\x2d\xbf\xeb\xad\xba\x13\x81\x1d\x24\x6c\xef\x6e\x80\x3e\
\xf6\x9c\xaf\xe5\x29\x14\x7a\x6f\x80\xb7\x85\x30\x0f\xe1\x25\x8b\
\x79\x46\x86\x4a\x9c\x73\x61\xae\x20\x96\x13\xcf\x11\x6f\x6e\xf1\
\xf3\x3b\x56\x98\x91\x31\x71\x4c\xad\x36\xd0\xff\x6f\xc8\x53\xb0\
\x96\xf3\xaf\xf1\xf2\xc2\x9a\xc8\x48\x64\x83\xbc\x6a\x19\xce\xb9\
\x64\x9c\xe6\x00\x6d\x63\x78\x56\x3c\x70\x35\xb1\x86\xc3\x49\x04\
\xc8\x58\x27\xce\xfd\x09\x3f\x7e\x61\x15\x82\xc8\x1f\x78\x69\xa9\
\x52\x99\x11\xe5\xe9\x59\xc6\x4e\xdc\xd5\x05\x24\x75\x0d\xd5\x41\
\x57\x81\x42\x81\xbc\xef\x4b\x9c\x9d\x8d\x14\xd1\x84\xe3\x9d\x1f\
\x02\x10\x4f\x3f\xf2\x16\x0f\x66\x43\xa4\x07\x42\xb9\x38\x89\x17\
\x64\xac\x17\x6d\x47\x3f\x81\x40\x21\xc6\x57\x44\x84\xd3\xe3\x24\
\xd2\xa3\xb8\xef\x20\x8a\x21\xc5\xdb\x01\x3e\xff\x0c\xa0\x88\xf6\
\x66\x31\xb9\x9c\xb2\xee\x4e\xc8\xdd\xff\x23\x01\x4a\xd1\x29\x8a\
\xa9\x26\xa1\x82\x98\x47\x3c\x4c\xd8\x13\x4b\x44\xde\x67\x92\x02\
\x67\x31\xda\x2d\x4c\x11\x60\x26\x86\xcb\x7c\xd1\x72\x0e\xa2\xba\
\x97\xfd\x8b\x22\x5c\x22\x8c\xdb\x8a\x69\xcb\x8e\x99\x4d\xb9\x8c\
\x84\x88\x79\x42\x84\xb5\x08\x9f\xbd\xc8\xa3\xa9\x6d\xc8\xc2\x17\
\x09\x27\xd8\xb8\xb9\xdc\x7b\x53\xb6\xa1\x24\x82\xc3\x66\x25\x52\
\x62\x6d\xc2\x20\x5a\x28\xc2\xfd\x88\x30\x6c\x29\x9e\xa3\x90\x7b\
\xcf\xfc\x0d\xe3\x58\x91\xad\x93\x78\x02\x2d\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\xb6\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x04\x48\x49\x44\x41\x54\x58\xc3\xe5\
\x57\xcf\x6f\x1b\x45\x14\xfe\x66\x77\xed\xf5\x6e\xb6\x24\xb1\x1b\
\x24\xa0\x6d\x44\x10\x3f\x0a\x14\x81\xa0\x34\x42\xe4\x50\x10\x48\
\x88\xbf\x82\x53\xfe\x01\x8e\x48\xa8\xe2\xc0\x85\x7f\x20\x5c\xb8\
\x72\xe1\x08\x87\x22\x81\x25\x40\x21\x04\x50\x91\x9d\xa4\x2d\x4e\
\x4b\x4c\xda\xca\x8d\x08\x75\x12\xd7\xf6\x7a\xd7\xc3\x7b\x33\xbb\
\x9b\xd4\x3f\xd3\xd6\xd0\x03\x23\xbd\xcc\x6c\xe6\xf9\xbd\x6f\xbe\
\xf7\xe6\xcd\x8c\x90\x52\xe2\x41\x36\x03\x0f\xb8\x59\xf1\x60\x7e\
\x7e\xfe\x5d\xea\x4e\xff\x47\x7e\x97\x17\x16\x16\xbe\xbc\x03\x00\
\x3b\x7f\xe4\xb1\x13\x1f\xce\xcc\x3c\x0e\xd3\x34\xb1\xfa\x93\x8f\
\xb5\xe5\x3a\xf6\xaa\xe1\x7d\x79\xf2\xc6\x4d\x9c\x3c\xed\xe0\xd9\
\x57\xd3\x08\xc3\x10\x57\xae\x5c\xc5\x8d\x6b\xe5\x73\x34\xd5\x05\
\x00\xdf\x7c\x9b\x47\x61\x65\x0d\xd9\xec\x51\xdc\xdc\xb0\xf0\xde\
\xfb\xaf\x8f\x64\xb9\x9f\x7d\xfa\x3d\x6e\x36\x02\x2c\xfe\x90\x47\
\x36\x37\x85\x93\x4f\xcd\x74\x87\x80\x5b\xca\x4a\x61\x62\x22\x8b\
\xdc\xd1\x29\x38\xa6\x83\x4c\x26\x33\x12\x00\xd3\x4f\x3c\x0a\x77\
\xbc\xae\x16\xc6\x3e\x7a\xe6\x00\xb7\xb4\x9d\x81\xe3\xb8\x70\x5d\
\x0f\xb6\x39\x86\x4b\x97\xd6\x49\x83\x54\x52\x69\xc0\xb6\x01\x06\
\x44\x3a\xaa\x4f\xd3\x77\x3a\xad\xe7\x83\x00\xf0\x7d\x92\x26\xd0\
\x68\x00\xcd\x46\xd4\xd3\x77\xcb\xc7\x64\xee\x21\x98\xb6\x89\x17\
\x5e\x7c\x05\xeb\xa5\xcb\xfd\x01\x18\xa6\x41\x62\x91\x98\xfc\x81\
\x33\x67\x5e\x1e\xb2\xb6\x50\x0b\x5b\xb1\xe8\x37\xae\x4b\x03\xb7\
\x4b\xeb\xfc\xf9\x35\x65\x53\xdb\x16\xfd\x01\xb4\xc3\x36\x49\x88\
\x30\x20\x69\x07\x3a\x04\xac\x2f\x05\x75\x52\x8d\x25\x8f\x55\x2f\
\x75\xcf\x3f\xe4\x29\x35\xa6\xb9\xa8\xac\x90\x1a\xb4\x2b\x89\x80\
\x6c\x99\x64\xb7\xad\x44\x0e\x00\x40\x46\xc3\x76\xa8\x85\x40\x14\
\x8b\x7f\x68\x8a\x6d\x8a\x9b\x4d\x74\x3b\x24\x19\x3b\x12\x1a\xa7\
\x53\x9c\x38\x44\x33\x87\xa0\x45\x94\x53\x18\xea\x1c\x06\x92\xba\
\xaf\xbf\x9b\x2d\x65\x0b\x96\xb6\xdb\x96\x03\x00\xc8\xb6\x44\x5b\
\x09\x31\x21\xdb\x98\x9b\x7b\x69\x78\x86\xb1\x41\xa6\x5f\x85\x80\
\x18\x9b\xec\x56\x59\x29\x94\x21\xd8\x26\xd9\x66\x1f\x7d\x01\x68\
\x42\xa5\x36\x4a\x62\x73\xe2\x45\x4d\x45\x82\xff\x0a\x45\x34\x92\
\x12\x2e\xa2\x9f\xed\x0f\xf4\x3c\xc7\x42\xea\x71\x6c\x2f\xb1\xdf\
\x1f\x80\xd0\x22\xb4\xfc\x52\x2c\x43\x5a\x06\x44\xda\xd2\x74\x33\
\xf5\x71\x38\x6c\xde\x1d\x1c\x02\x5a\x39\x51\x2c\x29\x0c\xa2\xa1\
\x29\x57\x42\x63\x49\x61\x11\x7e\x90\xd8\x4b\xec\xf7\x03\x20\x12\
\xdf\x02\xde\x44\x0a\x67\x5f\x7b\xfe\x70\x1b\x9d\x77\x0d\x83\xf2\
\xdc\x9e\xd3\x17\x96\x7f\xa5\x5d\x29\xf6\x71\xf4\x65\x40\x08\xe5\
\x5c\x08\x03\xc7\x8f\x4f\xd1\x02\x53\x23\x29\x44\x6c\xab\x54\xda\
\x55\x76\x3b\x11\x74\x30\x20\x60\xd0\xfe\x37\x0c\x01\xd7\x71\xf0\
\xf3\x85\x55\x8c\x1f\xf1\x54\x7d\xb8\x97\xc6\xdb\xba\xba\xbb\xa7\
\x6c\x19\x86\xa1\x44\x0c\x02\x60\xf0\xea\x0d\xa1\x14\xaf\x5d\xaf\
\x60\xeb\xaf\x6a\x12\x1a\xc8\xfd\xf4\x39\xf8\x2d\xa2\x1c\x43\x57\
\x74\xf7\xd3\xba\x49\x95\xd1\x64\xe7\x6c\x7b\x20\x03\x4a\xc1\x88\
\xd0\x9a\xea\x54\x1c\x45\x33\xc9\x96\x60\x66\x85\x06\x31\x24\x04\
\x86\x72\xbc\x71\xb5\x84\xcd\xcd\x32\xea\xf5\xda\x7d\x39\x77\x9c\
\x31\x1c\x3b\x76\x02\xb9\xa9\x87\x0f\x13\x02\xbd\x7a\xa6\x8b\x2b\
\xd6\xc7\x1f\x7d\x80\x9d\x9d\x1d\xd4\x6a\x35\xb4\x5a\xad\x04\xa0\
\x45\xd5\x31\x16\x4e\x54\xee\x19\x34\xcf\xa9\xd8\x53\xd1\xf1\xe9\
\x70\x8a\xe5\xf3\x2f\xbe\x52\x36\x59\xd8\xc7\x10\x06\x38\x0f\x0c\
\x4c\x66\x73\xc9\xff\x17\x17\x17\xb1\xb4\xb4\xa4\x1c\x70\x01\x9a\
\x9d\x9d\xa5\x2a\x39\x77\x68\x16\xd8\x96\x88\x72\xa0\x93\x01\xa3\
\x13\x40\x9c\x84\x0e\x65\x6e\xdc\x8a\xc5\x22\x9d\xe5\x74\x4f\xc8\
\xe5\x94\x14\x0a\x85\x21\xd5\x59\x76\x84\xc1\x49\x16\x26\xc4\x90\
\x42\xa4\xc3\x20\xd4\xa9\x17\x37\x97\x8e\x59\x3e\x19\x63\x8a\xe3\
\xbe\x5f\xeb\x5a\xa5\xd2\x97\x3d\x77\xc9\x9d\x0c\x20\x42\xc8\x20\
\x0e\x18\x39\x98\x3c\xdc\xdf\xf5\xee\x88\xb6\xac\x8c\x0e\xb9\x01\
\x95\xf0\x40\xd9\xee\x89\xf7\xde\x1a\xdf\x2d\xf8\x2e\xe0\xd3\x8d\
\x89\xa5\x2f\x03\x41\xe0\x53\xd1\x68\xd2\x8d\xaa\xa1\x32\x7b\x64\
\x8d\x96\xbf\xbb\xb7\x8b\x4a\xe5\x06\x6e\xfd\xbd\xdd\x1f\xc0\xed\
\xbd\xdb\xd8\xa9\x56\x95\x92\x21\x46\xf8\x62\x92\x21\x36\xd6\x4b\
\x28\x5d\xbe\x48\x87\xa9\x95\xe7\x77\x41\xcf\x10\xd4\x9b\x75\x6c\
\x6d\x55\xe8\x74\x0d\x70\xc4\x1b\x43\xfe\xbb\x1f\xe1\x79\x1e\xce\
\xbe\xf9\x4e\xd7\x39\x5e\xde\xac\x0c\x4a\x43\xd2\xa6\xdb\x15\xd9\
\xd9\xde\xbe\xc5\xef\x00\xac\xac\xfc\x46\x97\xa8\x54\xfe\x99\xa7\
\x9f\xfc\x84\x14\xf2\x3d\x01\x5c\xdf\xfc\x13\xbf\x5f\x5c\x55\x49\
\xf7\x35\x85\xa0\x33\x9b\xef\x7a\xe1\x52\xdf\xae\x42\xba\x35\x4f\
\x4f\x4f\xe7\x4f\x9d\x7a\x4e\x39\xa7\x57\x51\xad\x17\x80\xe5\xb7\
\xdf\x7a\xe3\xdc\xbf\xf9\x1c\xeb\x74\xae\xb8\xfa\xdf\xbf\x8e\xff\
\x01\x8c\xae\xac\x22\x42\x7f\x21\xa9\x00\x00\x00\x00\x49\x45\x4e\
\x44\xae\x42\x60\x82\
\x00\x00\x08\x78\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x08\x3f\x49\x44\x41\x54\x58\xc3\xad\x57\x0d\x50\x93\xf7\
\x1d\xae\xda\x6d\xb6\xb7\xeb\x6d\x5d\xb7\xdb\xe7\x79\xfb\xba\xb5\
\xdb\xda\xab\xb6\xda\xde\x76\xe7\x7a\x37\xbb\x8f\xb3\x6e\xd3\xde\
\xa9\xd4\x8f\xad\xdb\xea\xb4\xee\xe6\x67\xd5\xda\x22\x88\x42\x2c\
\x08\xd1\xc8\x97\x08\xd1\x02\x22\x8a\x84\x40\x02\x24\x81\x40\x04\
\x02\xf9\x00\x92\x90\x90\x90\x40\x42\xc2\x57\xc2\x37\x28\x88\xa5\
\x67\x9e\xfd\xfe\xaf\x7f\x1c\x28\xda\x76\xe7\x7b\xf7\x5c\x72\xc7\
\xcb\xff\xf9\xfd\x9e\xe7\xf9\xfd\xde\x37\x8f\x01\x78\xec\x51\x82\
\xae\x6f\x10\x56\x13\xa2\x09\x1b\x09\x3f\x7e\xe8\xfd\x8f\x90\xf8\
\x71\xc2\x6f\x97\x2d\x5f\x21\x36\x7b\x3a\xfb\xec\xd7\x01\x57\x68\
\xe4\x3a\x2f\xe2\xab\xec\x6f\x84\x43\xfc\xf3\x91\x5f\xbf\x26\xec\
\xd6\xd4\x9b\x5c\xd6\xb1\x70\x58\x17\xfa\x14\x4a\x47\x2f\x1c\xc1\
\x31\x56\x59\xf4\x92\x25\x4b\xc4\x31\x31\xc7\xfd\x9a\xca\xca\x30\
\x2f\xe2\x91\x5d\xbf\x20\xfc\xed\x64\x72\x9a\xca\x31\xf6\xe9\x6d\
\xfd\x10\x50\x64\xef\x41\x89\xc9\x09\x95\xc5\x03\x5b\xef\x08\xf6\
\xec\xd9\xd7\x9c\x9d\x7b\x31\x1c\xea\x1f\xc4\xe8\xe8\xd8\x34\xdd\
\xbf\xfd\x51\x10\x0b\x3e\x6f\xdc\xb2\x55\xda\x3a\x78\x63\xca\x30\
\x0c\x28\xdc\xc3\x28\x31\xb7\xa1\xc4\xe8\x40\x81\xce\x8c\x84\xcc\
\x1c\x64\x65\xe7\x82\x11\x5f\x9f\xb8\x29\xc0\xed\xf6\xf4\xd1\xff\
\xfd\xe1\x8b\x10\x3d\x4b\x78\x95\xfb\x3b\xc7\x67\x13\xf9\x6c\x1e\
\x05\xd4\x5d\x93\x90\x99\xda\xa0\xa4\xae\xaf\xd6\x34\x21\x35\xbf\
\x18\xa2\xa4\xd3\xb0\xb6\xd8\xef\x12\xcf\x20\x3f\x3f\xbf\x96\x9f\
\xf9\xf9\xa4\x95\xe6\x17\xd4\x32\x5f\x99\xbf\x84\xd7\x66\xfb\x5c\
\x1d\x9c\x86\xac\xb9\x13\xa5\x66\x17\x64\x75\x16\x64\x15\x6b\x10\
\x93\x20\x81\xa6\x52\x3b\x87\x74\xfc\xc6\x24\xc6\xae\x4f\x60\x74\
\xfc\x06\x56\xac\x58\x21\xa6\x33\x16\x3f\x8c\xf8\x7b\x84\xbf\x30\
\x4f\xed\x24\xad\x71\x04\xd0\x05\xc6\xd1\x32\x30\x71\x5b\x67\x75\
\xfa\xed\xa3\x73\x7d\x96\xd7\xdb\x90\x57\x51\x8f\x23\xf1\x62\x5c\
\x2e\x90\xdd\x47\xcc\x48\x87\x47\xc7\xd1\x3f\x38\x8c\xee\xde\xbe\
\x29\x3a\x7b\xc7\x3d\xd3\x30\xa3\xec\x9d\x31\x61\x9e\x5a\x02\xc1\
\x61\x13\x11\x97\x75\x8c\x42\x69\xf3\x43\xd7\xd6\x83\x5a\x4f\x1f\
\xf4\xbe\x41\x94\xbb\x42\x77\x7c\x36\xd8\x71\xb9\xda\x88\xb8\x34\
\x29\xd2\x33\xb3\xe6\xf8\x3c\x87\x78\x60\x88\x88\x83\xe8\xf0\xf9\
\x51\xab\xd7\x77\xb1\x02\x74\x06\x93\x2b\x74\x2b\x1c\xbe\x66\x10\
\x94\x5d\x3d\x53\xc0\xea\x3a\x9b\xd3\x6f\x19\x0d\x87\x2b\x7b\xa6\
\x50\x6c\x0b\x08\xc4\x0c\x55\xce\x2e\x54\xb5\x06\xa0\xb6\x76\x40\
\x61\x6a\xc5\xd5\x6b\x8d\x48\xb9\x24\x47\x8c\x28\x1e\x5e\x3a\x78\
\x76\xd7\x4c\xea\x91\xb1\xeb\xbc\xe3\x20\xdc\xed\x5e\x58\x6c\x2d\
\x28\x92\x97\xa0\xb8\x4c\xe5\x1f\x9a\xb8\x35\xdd\x73\x13\x70\xd3\
\x8e\xb0\x8e\x4c\x83\x2f\x2b\xe1\x8a\xb6\x8d\x03\x85\x96\x00\x2a\
\x1c\x81\xbb\xc4\xda\x56\x3f\x34\x36\xef\x5d\x9f\x33\xe5\x6a\x7c\
\x18\x17\x0f\x7d\x83\x61\x5e\xb9\x07\x87\x47\xd1\x1b\x0c\x09\x1d\
\xb3\x10\x96\xab\x34\x48\x3a\x7d\x06\x5a\x5d\x0d\x7c\x93\x40\x68\
\x0a\x30\xd2\xc4\x28\xbd\x63\x50\x9b\xad\xfe\xd9\x0a\x44\x37\x52\
\xa2\xf3\xaa\x4c\xa8\x76\x75\x0b\x1d\x57\xb4\xf8\x50\xd6\xd4\x86\
\x22\xbd\x55\xf0\xf9\xfd\x63\x22\x28\xcb\x55\xf3\x12\x0f\x8d\x8c\
\x09\x36\xf8\xbb\x7a\xe0\x68\x75\x51\x81\x46\x24\x24\x26\x22\xaf\
\xb0\x08\xde\xe1\x49\xf8\x26\x80\x06\x96\x1d\xef\x24\xa4\xa6\x4e\
\xd4\xf9\x87\xd8\x3e\x38\xc2\xad\xff\x5f\x01\x17\xb5\x06\x54\x3a\
\xfc\x50\x59\xdb\xef\xf8\x5c\x65\x40\x74\x52\x0a\x72\xf2\xf2\xe7\
\xf8\x3c\x23\xf7\x8c\xcf\x5d\x3d\x7d\x70\xb9\xdb\x61\x6a\x6c\x42\
\x6e\xde\x25\xc4\xc6\x9f\x84\xad\xab\x1f\xed\x37\x80\x4e\x22\x57\
\x04\x3e\xc1\x65\xd7\x28\xd2\xf5\x74\xae\xb3\x2f\xbc\xf7\x70\x64\
\x01\x71\xae\x9f\x9d\xfe\x68\xd3\xf0\x6d\x64\x6b\xf4\x28\x6d\x74\
\xa1\xb0\xb6\x19\xd9\x65\x3a\x88\xc4\x92\xfb\x7c\x9e\xe9\x7a\x60\
\x68\x44\x90\xbb\xdd\xdb\x89\x66\xab\x0d\xa5\xa5\xe5\x38\x76\x3c\
\x16\xf5\x56\x07\xda\xc8\x63\x0b\x05\x59\x1d\x04\xa4\x8d\x3d\x48\
\xac\xb0\xe3\x42\x73\x1f\x2e\x18\xbd\x50\xd4\x34\xb0\xf0\xed\xba\
\x77\xfc\xa2\x1b\xfa\x3f\x41\x96\xb2\x1a\x57\xaa\x4d\xc8\x92\x6b\
\xb0\xf7\xa8\x08\x0d\x06\xd3\xbc\x72\x07\xfb\x07\xe0\xf3\x77\xc1\
\xee\x70\xa2\x8a\xfc\x15\x9f\x96\x20\xef\x4a\x01\x06\x6f\x01\x0e\
\xca\x92\x36\x44\x79\xa2\xf6\x33\x0c\x7e\x9c\xae\x76\x21\xbd\xde\
\x87\x0c\xea\xbe\xce\x17\x62\xa3\xf8\x01\xe1\x3b\xf7\x16\x70\xb4\
\xb6\x77\x02\x29\x05\xa5\x38\x27\x53\x41\x94\x7e\x01\x6b\x23\xb6\
\xcc\x2b\x77\xa0\xbb\x17\xce\x36\x0f\x0c\xa6\x46\xa4\x67\x9c\x43\
\x6a\x96\x14\xee\x9e\x7e\xb8\xa8\xeb\x46\x0a\x98\xdc\x77\x13\xe7\
\x8c\x01\xa4\xd4\xb6\x23\x4d\xef\xc5\x99\x6b\x6e\xa4\xd6\x7a\xa0\
\x20\xe9\xdf\x7c\x6b\xb3\x94\xb8\xd6\xcc\xb7\x80\x8e\x69\xbd\x43\
\x48\x38\x7f\x05\xf1\xe7\x72\xb1\x2b\xf2\x38\x0e\x7e\x10\x79\x77\
\xac\x98\xdc\x3d\x7d\x21\x78\x3a\x7c\x68\xb2\x58\x51\x28\x93\x23\
\x3e\x21\x11\x26\x9b\x03\x01\x4a\x37\x6d\x63\xa8\xfa\xc2\x38\xdb\
\xd0\x29\x74\xcb\x88\xc5\xda\x56\x9c\xaa\x72\x22\xb9\xc6\x8d\xac\
\x7a\x37\x2e\x2a\x54\xcd\xc4\xf3\xef\x07\x6d\xc0\xd8\xb2\xd6\x6e\
\xc4\x24\x4b\xf1\xfe\x89\x53\x78\x6b\xdb\x4e\xa4\x9d\xcd\x10\xc6\
\x6a\x46\xee\x16\x7b\x2b\xb4\x55\x3a\x81\xb8\x50\x51\x8a\xf1\x69\
\x20\x40\x01\xab\x1d\x00\x8a\x3b\xa7\x04\x8f\x33\x4d\x5d\x77\xbb\
\x8e\x55\x98\x05\xef\xa5\x46\x1f\x8d\xb4\x9f\xbd\x17\x1c\x26\x3c\
\xf5\xa0\x02\x44\xb2\x46\x0f\x0e\x7d\x24\xc1\x8e\x83\x91\x78\xf5\
\x37\xab\xd0\xd4\x6c\x15\xd2\xcd\xe4\x6e\x30\x9a\x21\x39\x93\x0c\
\x69\xce\x45\x1a\xab\x09\xa1\xeb\xa6\x91\x3b\x72\x5f\x6a\x1d\xc6\
\x49\x4d\x8b\x20\x3b\x23\x4d\x50\xdb\x70\xb4\xa8\x41\x40\x92\xc6\
\x8a\xb2\xb6\xbe\xf0\xd2\x97\x97\x8b\xf9\xea\x5d\xf0\xa0\x02\xe2\
\xf3\x6a\xad\xd8\x15\x25\xc2\x96\xed\xff\xc1\xca\x55\xaf\x0b\x5d\
\xb3\x65\x22\x2b\xa2\xa7\x9b\xe8\x04\x6c\x1e\x1f\x7a\x69\x8b\xf9\
\xf9\x58\xe5\x39\x86\xf0\xb1\x25\x28\xa4\x9c\x05\x2d\x4e\xd9\x28\
\xc8\xce\xba\x4f\x28\x6f\xc6\xd9\x1a\x27\x34\xae\xee\xe9\x9d\xfb\
\x0f\x5d\xa5\xf3\x77\xf2\xbd\xbf\xe8\x41\x45\x24\x4a\x35\xf5\xd8\
\xb6\xff\x43\xac\xdb\xfc\x36\x76\xef\x7d\x0f\x8d\xcd\x16\x14\x2b\
\x94\xf8\xc7\x3b\xdb\x68\x43\x7a\xe1\xa1\x99\xbe\xd6\x0f\xe4\xb6\
\x0c\x40\xa2\x6b\x43\xb6\x35\x24\x78\x2e\x10\x52\xd7\xd1\xb2\x7a\
\xc4\x96\x18\x71\x4e\xef\x81\xdc\xde\x1d\xce\xd7\xe8\xda\xe8\xdc\
\x18\x9e\xfa\x6f\x71\xf9\x9f\xe0\x85\xdc\x57\xc4\xa9\xd4\xa2\x0a\
\x6c\xdd\xb9\x17\xaf\xaf\x59\x27\x8c\x95\xa2\xb4\x0c\x3b\xde\x7d\
\x17\xe2\x7c\x05\xe2\x8a\x1b\x84\x70\xb1\x6e\xd9\x27\xf3\xfa\x78\
\x89\x49\x28\x84\x15\x11\x5f\x6e\x11\xe4\x3e\x4f\x61\x2b\x33\xdb\
\x83\x2f\x2c\x5d\x96\xc2\x82\xcd\xe7\xfd\x25\xc2\x0f\xf9\x93\xf6\
\xeb\x84\xaf\x10\x16\xde\x5b\x40\x72\x52\x5e\x31\xd6\xff\x7d\x07\
\x9e\x7f\xe9\x15\x21\xe5\x47\x8e\x44\xe1\xbd\xe8\x58\x24\x96\x9b\
\x11\x43\x7e\x32\xa2\xd4\xba\x0e\x41\x66\x16\x2e\xe6\x7b\x12\xfb\
\x54\x59\x90\xac\xb5\xa1\xae\x23\x38\xb5\x73\xff\x41\x39\xcb\x13\
\x27\x67\x9b\xee\x65\xc2\x2b\x84\x65\x84\x9f\x12\x9e\xe1\xef\x03\
\xf7\x15\x90\x1e\x97\x75\x09\x7f\xde\xf4\x36\x5e\x5b\xf5\x7b\xa4\
\xa4\xa6\x61\xfd\xa6\xcd\x38\xa3\x36\xe1\x40\x8e\x46\x08\x18\x5b\
\x2a\xac\xf3\x8f\xa8\xdb\xa8\x42\x3d\xe2\x14\xa4\x40\xa5\x0d\xc5\
\x2d\xfe\xdb\x59\x57\x4b\xac\x74\xc6\x09\x96\x25\xc2\x3b\x3c\x70\
\xbf\xe3\xaf\x5f\xec\xfb\x72\xc2\x8f\xb8\x02\x5f\x9e\xcf\x82\xcc\
\xa8\x94\xf3\x78\x63\xfd\x66\x44\x6c\xda\x82\x0d\x1b\x23\x90\x4c\
\x96\x1c\xcc\x51\x0b\x84\xac\x80\xe4\x1a\x8f\xa0\x82\x88\xc2\x96\
\x5e\xe7\x26\xb9\xdb\x50\xda\xd0\x14\x78\xfe\xc5\xa5\x69\x9c\xf8\
\x00\x7b\x99\xe1\x4f\xb8\xb5\xfc\x3b\x2b\xe0\x57\x84\x9f\xf1\x1c\
\x3c\xc1\x83\x78\xdf\x25\x8d\x94\x64\x62\x4d\xc4\x56\x6c\xd8\xb0\
\x11\xc7\x92\x33\x10\x27\xd7\x63\x7f\xb6\x5a\xe8\xfa\x44\x59\x33\
\x24\x94\x74\x49\x95\x03\x17\x9b\xfc\xd0\xba\xba\xa6\xd6\x6e\x88\
\xf8\x98\xcb\x1d\x45\xd8\xc4\xc9\x18\xf1\x9b\x84\x3f\x11\x56\xf1\
\xce\x7f\x42\xf8\x26\xe1\xc9\x87\x4d\x81\x34\x26\x3d\x5b\xc8\xc0\
\xf6\x43\x51\x10\xc9\x74\xd8\x23\x2d\x15\x36\x19\xf3\xfd\xa4\xda\
\x8a\x4c\xbd\x1b\x15\xed\xc1\xdb\x51\x09\x62\x35\x5b\xdd\xdc\xe7\
\x08\xfe\xae\xf8\x47\x4e\xfa\x06\x27\x66\x2f\xb2\x3f\x27\x7c\x9f\
\xf0\x35\xee\xfb\xa2\x87\xed\x81\x0c\x71\x9e\x1c\xff\x3a\x10\x89\
\x33\x65\x7a\x6c\x93\x5c\xc6\xe1\x7c\x1d\x75\xed\x84\x44\x6b\x47\
\xae\xd1\x13\x2e\x37\x5a\xfc\xbc\x5b\x36\x56\x7f\xe5\x04\x2f\x12\
\x56\x72\x9f\x57\xf2\x8e\x9f\xe5\xc4\x4f\xf3\xae\xbf\x34\x5f\xe8\
\xee\xbd\xf6\xe5\x16\x97\x4e\x66\x57\xd6\x63\xdf\x79\x25\xb6\xc4\
\x67\xe3\x84\xd2\x84\x1c\xb3\x17\x1a\xab\x67\x78\x5d\xc4\x26\x29\
\x5f\xa5\x3b\xf8\x48\x3d\xc5\x49\x9e\x23\xbc\x40\xf8\x25\x97\xfa\
\xbb\x3c\x68\xb3\x89\x17\x7c\x9e\xd7\x70\x16\x14\x89\x54\xef\xc4\
\x3f\x4f\x5f\xc2\x79\x43\x07\xb4\xee\xbe\xe9\x63\x49\x12\x15\xef\
\x78\x37\xbf\x67\x01\x5f\x24\x4f\xf2\x1f\x27\xdf\xe6\x78\x66\xd6\
\xa2\xf9\x42\xc4\x33\x17\x3b\xf0\x60\x86\xac\xdc\xad\x6c\xed\x0e\
\x17\x55\xeb\x5d\xfc\x95\xe9\x10\x0f\xd7\xec\x87\xc8\x42\x4e\xb2\
\x98\x13\x2e\xe6\xa3\xb5\xe8\xff\x21\x9e\x7d\x3d\xce\x65\x8e\xe2\
\x9f\x5b\x09\x3f\x78\xc0\xbd\x0b\x38\xd9\xc2\xcf\x22\xfd\xac\x5f\
\xd5\xff\x05\x42\x5a\xb5\xfc\x4a\x39\x80\xc8\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\xa0\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x06\x67\x49\x44\x41\x54\x58\xc3\xc5\x57\x09\x50\x95\x55\
\x14\xfe\x1f\xfc\xef\xe1\x56\x84\x58\x6e\x28\xa0\xa8\x94\xca\x66\
\x88\x20\x62\xa8\xb8\x01\x06\x83\x4b\xb2\xa8\xa5\x0c\xa8\xe1\x14\
\x68\x5a\x2a\xc6\x96\x92\x28\x8b\x0a\x18\xc8\x22\x04\xc8\x22\x02\
\xa9\x91\x0b\x33\xc0\x10\x20\x88\x20\x88\x38\xb8\x0e\xe5\x30\xd3\
\xd4\xb8\xa0\xa3\xa3\xef\x74\x3e\xba\x14\x33\x99\x3d\x2c\xeb\xcd\
\x7c\x73\x38\xe7\x7c\xe7\xdc\x73\xcf\x5d\xfe\x8b\x44\x44\xd2\xff\
\x89\xe7\x3b\x25\x49\xc1\x18\xcb\x70\x64\x78\x32\x3e\x64\x6c\x16\
\xd2\x53\xd8\xe1\x57\xfc\xab\x05\x88\x81\xc7\x30\x16\x2d\x59\xb2\
\x24\x31\x21\x21\xe1\x2c\xff\xda\x5b\x5b\x5b\xef\x76\x74\x74\xa8\
\x21\xa1\xc3\x0e\x3f\x78\x82\xaf\xf8\xc7\x05\xf0\x4f\x8b\x61\xe5\
\xe0\xe0\x10\x9c\x94\x94\x54\xd9\xd2\xd2\x72\x8f\x41\xc7\x8f\x1f\
\xa7\xe0\xe0\x60\x0a\x08\x08\xe8\x96\xd0\x61\x87\x1f\x3c\xf0\x11\
\x87\xf8\x17\x2e\x40\x0c\x3e\xc5\xcd\xcd\x2d\xb6\xb8\xb8\xb8\xad\
\xb9\xb9\x99\x52\x52\x52\xe8\x3d\x9f\x55\x57\xad\xe6\x2f\x2d\x1b\
\xe5\xbc\x36\x7f\x90\xfb\x8e\xc3\x90\xd0\x61\x87\x1f\x3c\xf0\x11\
\x87\xf8\xbe\x14\xf1\xa7\xf5\xb6\xb3\xb3\x0b\x29\x2c\x2c\x6c\x6b\
\x68\x68\xa0\x1d\x21\xa1\x9d\xd3\x17\xaf\x39\xa5\xef\x1d\x95\xa6\
\xe7\x97\x1e\x3f\xee\x93\xfc\xaf\x26\x6e\x2d\x4a\x82\x84\x0e\x3b\
\xfc\xe0\x81\x8f\x38\xc4\xf7\x65\x5f\xf4\x2e\x40\x66\x78\xc4\xc6\
\xc6\x56\x35\x35\x35\x51\x4c\xdc\xbe\x4e\x9b\x55\x5b\xf3\xa4\x95\
\x29\x31\x43\x36\x9d\xdc\x3b\xf3\x40\x43\xfc\xc6\x92\x6b\x39\xe1\
\x67\x3a\x8e\x42\x42\x87\x1d\x7e\xf0\xc0\x47\x1c\xe2\x91\x07\xf9\
\x34\x2e\x40\xcc\xde\xd4\xd5\xd5\xf5\x50\x55\x55\xd5\xfd\x92\x92\
\x12\x5a\x1e\x18\xf6\x9d\xf4\x41\xe6\x5e\x69\x53\x45\xd8\xac\x8c\
\x5b\xd1\xa9\x8d\x77\x4f\xbc\xbb\x2e\x8e\x7c\x77\x64\x13\x24\x74\
\xd8\xe1\x07\x0f\x7c\xc4\x21\x1e\x79\x90\x4f\x93\x2e\xf4\x14\xa0\
\xcd\x98\x1f\x1e\x1e\x5e\x51\x5f\x5f\x4f\x7b\xe2\xe2\xaf\x8e\x5c\
\x97\x92\xfc\xfa\x8e\xaa\x48\xab\xb4\xce\x9d\xc9\x2d\x8f\x8f\x5d\
\xfe\x45\x7d\xd9\x27\xb2\x96\x7c\xe2\x6e\x12\x24\x74\xd8\xe1\x07\
\x0f\x7c\xc4\x21\x1e\x79\x90\x0f\x79\x35\x2d\x40\xc5\x58\x9d\x95\
\x95\x75\xbd\xba\xba\x9a\x02\x23\x13\xce\xa0\xbd\x73\x33\x3b\x62\
\x42\x6b\x1e\xa5\x37\xff\x4c\xcd\x9d\x0f\xe8\xb6\xcb\x17\xd7\xc8\
\x65\x3f\x11\x24\x74\xd8\xe1\x07\x0f\x7c\xc4\x21\x1e\x79\x90\x0f\
\x79\x35\x2d\xa0\x3f\x63\x4b\x69\x69\xe9\xbd\xf2\xf2\x72\x5a\xb8\
\x2d\x25\x7b\x52\x54\x5d\xf4\xf6\x8a\x3b\x19\x92\xe9\x1a\x1a\xef\
\x12\x41\xf6\x6b\x0b\x68\xda\xf6\x0e\xb2\xd9\x49\xdd\x12\x3a\xec\
\xf0\x83\x07\x3e\xe2\x10\x8f\x3c\xc8\x87\xbc\x9a\x16\x30\x80\x11\
\x7e\xfa\xf4\x69\x75\x65\x65\x25\x8d\x0d\x3a\x72\xd0\x3a\xbe\x35\
\x3a\xfa\xfc\xc3\x5c\xc9\x29\x9f\x54\xcb\x1a\x49\x7f\xcd\x75\x32\
\x08\xea\xa2\x31\x9f\x51\xb7\x84\x0e\x3b\xfc\xe0\x81\x8f\x38\xc4\
\x23\x0f\xf2\x21\xaf\xa6\x05\x0c\x64\x6c\xe5\xd6\xdd\xab\xab\xab\
\x23\xcf\x98\x6f\x32\x2c\x12\xda\xbf\x0c\xad\x7d\x9c\x2e\x79\x5c\
\x20\xc9\x97\x49\xab\x19\xef\xf7\x02\x74\xd8\xd9\x0f\x1e\xf8\x88\
\x43\x3c\xf2\x20\x1f\xf2\xf6\xa5\x03\xeb\xa3\xa2\xa2\x6e\x62\x13\
\xc5\xe6\x9e\xfa\x76\xe8\xae\xe6\x08\xe7\xa2\x07\xbb\x23\xce\x53\
\x5a\xe2\x45\xaa\xc9\x6c\xa3\x0e\x69\xf9\x7d\x92\x7c\x38\x80\x25\
\x74\xd8\xe1\x07\x0f\x7c\xc4\x21\x1e\x79\x90\xaf\x2f\x1d\xc0\x1e\
\xf0\xf0\xf7\xf7\xff\x9e\x8f\x11\x95\x55\x56\x5f\x99\xb0\xab\x26\
\x7a\x78\xe2\x4f\xc1\x36\x47\xd5\x21\xb3\xf3\xa8\x74\x63\x05\x35\
\x4b\x8b\xda\x49\xf2\xe4\x00\x96\xd0\x61\x87\x1f\x3c\xf0\x11\x87\
\x78\xe4\x11\x77\x41\xff\xbe\x9c\x82\xb7\xad\xad\xad\xb3\x92\x93\
\x93\xbb\x1a\x1b\x1b\x29\xb6\xb0\xb2\x48\x0a\xbf\xba\x55\x3a\xf0\
\x70\xa3\x49\x2a\x25\xcf\xc9\xa3\x4a\x69\x1e\x2f\xc7\x32\x0e\x60\
\x09\x1d\x76\xf8\xc1\x03\x1f\x71\x88\x47\x1e\xe4\xeb\xcb\x29\xc0\
\x3d\xf0\x1a\xc3\xd7\xcb\xcb\xab\x9e\xef\x75\xaa\x3b\x7f\xe1\x76\
\x60\xf6\xb9\x24\x29\xf2\x87\x4f\x87\x27\x3f\x0c\xb5\xce\x52\xa7\
\xbb\x1e\xa3\xb3\x0b\x8f\xd2\x39\x48\xe8\xb0\xc3\x0f\x1e\xf8\x88\
\xf3\xf4\xf4\x6c\x40\x1e\x91\x4f\xbb\x2f\x37\x21\x96\xc1\xc6\xd8\
\xd8\x38\x8e\x5b\x78\xbd\xac\xac\x8c\x1a\x2f\x36\xff\x98\x7c\xa6\
\xa9\x60\x52\xe2\xb5\x48\xb4\xd9\xfa\xc8\x83\x30\x87\xc2\xc7\x11\
\x90\xd0\x61\x87\xff\x42\xd3\xc5\xdb\xe0\xfb\xf9\xf9\x75\x19\x19\
\x19\xd5\x70\x9e\x15\x8c\x91\x1a\xdf\x84\xbd\xbe\x05\xba\x0c\x67\
\x53\x53\xd3\x0c\x6f\x6f\xef\xeb\xb9\xb9\xb9\x74\xe9\xd2\x25\x6a\
\x68\x69\x6b\xcd\xa9\x6c\x2d\x0a\x28\xb8\x9c\x68\x1e\x7f\x25\x12\
\x12\x3a\xec\xf0\x83\xc7\xfc\x2e\x77\x77\x77\xf2\xf1\xf1\xb9\xa3\
\xab\xab\x9b\x65\x36\x4c\xeb\x30\x1e\x2c\x7d\xfd\x1a\x62\x2f\xe8\
\x33\x5c\x0c\x0c\x0c\x0e\xd8\xdb\xdb\x37\x70\x37\xba\xf8\x58\x11\
\x3e\x34\xed\xed\xed\x74\xe3\xc6\x8d\x6e\x09\x1d\x76\xf8\x99\xd7\
\xc8\xfc\x5a\x0c\xce\x3a\x6d\x98\x37\xe1\x51\xba\x9b\xce\xd3\xc5\
\x13\xe5\x92\xbf\x2b\xe2\x59\xef\x01\x1d\x51\x84\x03\x23\xc0\xd0\
\xd0\xb0\xc0\xcc\xcc\xac\xd6\xd6\xd6\xf6\x96\xa3\xa3\xe3\x7d\x27\
\x27\x27\x35\x24\x74\xd8\xe1\x07\x8f\xb1\x86\x67\x9e\xb3\x6a\xc6\
\xf8\x47\x91\x33\x95\x94\xb0\x40\x45\x99\xee\x3a\x4f\xbd\xcd\xe5\
\xaf\x9f\x57\xc4\x5f\xbd\x88\x54\x62\x39\x0c\x18\x73\xc4\xbd\x8e\
\x8b\x65\x37\x63\x3f\x23\x8a\xb1\x4d\x6c\xb6\xb9\x8c\xd1\x0c\x93\
\x61\xfd\x15\x99\x01\x93\x65\xf5\xb6\xa9\x4a\xda\xfd\x8e\x92\x0e\
\x2e\x54\x51\x96\x87\xce\x93\x15\x16\x32\x96\x63\xd6\xb3\xf6\xc4\
\xf3\xde\x84\xb2\xd8\x98\xd8\xcd\x43\xc5\x20\x78\x68\x8c\x13\x18\
\x23\x0a\x7c\x43\x70\x06\x31\x16\x98\xe9\x29\x4e\x7c\xc4\x45\x04\
\xdb\x28\x69\x8f\xa3\x92\x92\x9c\x55\x94\xcd\x45\xf8\x58\xc8\x19\
\x62\x32\x5a\x22\xbf\x42\xd3\x57\xb1\xb6\xe8\x08\x6e\xcb\x57\x19\
\x7a\x62\x89\x86\x08\x39\x58\xd8\xf4\xc4\xdf\x6e\x56\xfa\x8a\xbc\
\x40\x33\x59\xfd\xf9\x34\x25\xed\x9d\xa5\xea\x2e\x22\x67\xb1\xce\
\x93\x95\x96\x72\xa6\xf8\x4c\xcb\xbf\x17\xa2\xd1\xab\xe5\x8f\x8e\
\xf4\x63\xbc\x22\x06\xc2\xcc\x87\x8b\xe3\x36\x8a\x61\xc8\x30\x12\
\xf0\xb2\x1a\xac\x28\x08\x32\x97\xd5\x21\xb6\x4a\x8a\x9e\xad\xa2\
\x43\x2e\x2a\xca\x5d\xaa\xf3\x94\x97\x03\x97\xd4\x02\x86\xb2\xbb\
\x08\x0d\x07\xd7\x16\x83\xeb\xf6\x5a\x0e\x13\xf1\xea\x79\x8b\x31\
\x99\x61\xce\xb0\xe8\x05\x5f\x8b\xc1\x8a\xe2\x20\x0b\x59\x1d\x66\
\xa7\xa4\xd8\x39\x2a\x4a\x75\x55\x51\xfe\x32\x1d\xf5\x0a\x4b\x39\
\x5b\x14\x21\x6b\x52\x80\x96\x98\xfd\x40\x31\x6b\x63\x31\xa8\x25\
\x63\x2a\x63\x1a\x63\x3a\x63\x86\x38\x39\x3d\x80\xbe\xc1\x52\x5f\
\x71\x62\x93\xa5\xac\x0e\x9f\xae\xa4\x7d\x4e\x2a\x4a\x5b\xa4\x43\
\x47\xb9\x08\x1b\x03\x2d\xbc\xa0\x87\x69\x5a\x80\x52\xac\xff\x08\
\xc6\x04\xf1\xfe\xb7\x15\x03\xe1\xbf\xa3\xd9\x0c\x27\x71\x22\x7a\
\xe0\x24\x36\x5d\x10\x17\x51\xba\xd9\x4a\x56\x47\xd8\xff\x56\xc4\
\x7a\x6b\x65\x39\xf6\x4a\x77\x57\xff\x83\x02\x70\xfc\x3e\xe6\x22\
\x4e\x6e\x99\x22\xab\x97\x99\x6a\xe3\xd5\xec\x25\x4e\x50\xbf\x97\
\xbd\x04\xd3\x45\xa1\x36\x0c\xff\x51\x03\x15\xa9\xe2\x3b\x61\x22\
\x26\xa4\x7a\x99\x9b\xd0\x5c\xd8\x27\x32\xde\x64\x8c\x17\x9d\x1b\
\x21\x8e\xec\x00\x8d\x36\xe1\x0b\x1e\x43\x23\xa1\x8f\x16\xad\x1e\
\x21\x0a\x1f\x22\x26\x31\xa0\xe7\x18\xfe\x0a\xd1\xfb\x82\xfe\x41\
\x1a\xc9\x6e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x08\x27\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x07\xee\x49\x44\x41\x54\x58\xc3\xa5\x57\xdb\x6f\x1c\x67\
\x15\x3f\xdf\x37\x33\x3b\xbb\xf6\xde\xf1\xae\xd7\x4d\x4c\xec\xc4\
\xbd\xd8\xc6\x4d\x2f\x69\xac\x06\xa9\xa1\x69\x65\x1a\x55\x20\xa1\
\x08\x81\x84\x90\x5a\xfe\x86\x3e\xf5\x91\x8a\x17\xf2\xc8\x1b\x54\
\x15\x2f\x51\x2a\x11\xc2\x25\xbc\x24\xa0\x2a\x42\x7d\x08\x22\x02\
\x29\x50\xb5\x6a\x9c\xae\x6f\x2a\x8e\xd7\x97\xb5\xd7\x7b\x9d\xcb\
\xd7\xdf\x39\x33\xeb\x26\x24\xb5\x70\x98\xf5\xfa\x9b\xf9\x76\xe6\
\x3b\xe7\xfc\xce\xef\xfc\xce\x37\x8a\xf6\x39\xe6\xe6\xe6\x66\xdf\
\x79\xe7\xa7\x3f\xaf\xd5\xd6\x15\x0e\xa3\x14\xcf\xca\x3f\xd2\xf8\
\xf0\x1f\x5f\xaa\x78\xce\xec\xfd\x8a\x73\x63\x54\xa5\x52\xd1\x17\
\x2e\x5c\x78\xf7\xfc\xf9\xf3\xbf\xfe\x2a\x1b\xf6\x7e\x0e\xb8\xae\
\x5b\x9a\x99\x79\xfa\xa5\x20\x08\x28\x0c\x43\xd2\x5a\x13\x1c\x89\
\x46\xa3\xc8\x68\x43\x5a\x69\x18\xe3\x39\x18\x8f\x1d\xe4\x7b\xe0\
\x00\x59\x96\x45\xd9\x6c\xf6\xaf\xfb\xd9\xd8\xd7\x01\x2c\xd2\xee\
\x76\xbb\xb4\xb1\xb1\x21\x0b\xf6\x1d\x60\x83\x2a\x36\xae\x30\x6f\
\x30\xaf\x79\xc4\xb5\xd6\x91\x71\xad\x0c\x7d\x6d\xa8\x4c\xed\x76\
\xbb\xb9\x9f\x0d\xbd\x1f\x00\x2f\x9c\x98\x7d\xd3\xb2\x2d\xb2\x6d\
\x1b\x0b\x5b\x12\xa5\x46\x54\x96\xa5\xc8\xd2\x98\xe3\x68\xf9\x9a\
\x1d\xc3\x88\x5b\x31\x2a\x89\xdc\xe0\x77\x1b\x13\xcf\x3c\xf3\xec\
\xf7\x2a\x95\xb1\xb1\x03\x3b\x30\x36\x36\x96\xaa\x8c\x8c\x7c\xdb\
\x84\x8c\x44\x18\xc1\x1b\xe2\xf6\xd0\xc8\xef\x21\x3e\xca\x8a\x6f\
\x8e\xb0\xa7\x80\x2c\xfe\x17\x4d\x21\x65\xdd\xae\x47\x13\x13\x4f\
\x3c\x3f\x3e\x3e\x72\xe4\xc0\x0e\xec\xec\xec\x84\xad\x56\xbb\x19\
\xe5\xde\x12\x58\xe5\x6e\xbd\x47\x33\xfc\xc5\x8f\x07\x91\x55\x8b\
\xad\xf7\x9d\x12\x94\x88\x76\x77\x77\x03\xcf\x33\xfe\xa3\xa4\x00\
\x06\x38\x9f\xc1\x7d\x51\x72\x64\x7b\x55\xd0\x3f\x2c\x2b\x76\xc9\
\x62\x68\x62\xa7\x34\x85\x78\x26\xba\xdd\x7f\x14\x0e\x14\xc9\x47\
\x64\x12\x39\x1b\xe7\x28\x31\x06\xf7\xdc\x11\xf4\xaf\x8c\xf9\x12\
\x95\xfe\xc2\x56\x20\xe9\x0a\x43\x9f\x94\xaf\xcc\x81\x1d\xd8\xdc\
\x9c\x6f\x60\xc1\x5e\x88\x45\x24\xfd\x80\xd4\xc0\x09\x39\x17\x24\
\xe8\xcb\x68\xef\x2f\x9d\x68\x08\xac\x3e\x68\x61\xcf\xf4\xb6\xf7\
\x2d\xc3\x81\x81\x81\xc7\x86\x86\x86\xa6\xfb\x4b\xa2\xd4\xc2\x91\
\x91\x91\x74\x22\x61\x0f\x16\x0a\x05\xc2\x6f\xf4\xa8\x47\x36\x9b\
\xd3\x85\xc2\xd0\xb7\x8e\x1d\x3b\x56\x46\x75\xe8\x28\x63\x96\x46\
\x79\x2e\x2f\x2c\x2c\x7c\x22\x3e\x9e\x3c\x79\xf2\x67\x47\x8f\x1e\
\x7d\x1b\x82\x13\xa0\x74\x8c\x6d\x3b\x1c\x88\xbe\x7e\xfd\xba\x7e\
\x6a\xf2\x49\x44\xab\xc8\x67\x32\x5a\x26\xe6\x45\xac\x01\xd0\x02\
\xf6\x58\x33\x19\xd5\xbd\x20\x44\x38\x25\x12\x09\xaa\x56\x97\xe9\
\xc9\xa7\x26\x4c\xb9\x54\xf2\x71\x28\x46\x51\xa3\xae\xb7\xb7\xb7\
\xff\x7c\xe9\xd2\xa5\xd7\x04\x81\xd1\x43\xa3\x4f\xa7\xd3\x69\xea\
\xf5\x7a\x64\x27\x5c\x55\xc8\x65\x45\x4a\x57\x56\x96\x89\xbf\xff\
\xef\x31\x3e\x3e\xaa\x86\x87\x87\xf5\xca\xd2\x12\xf5\xc0\x09\xdd\
\x0b\x29\x9f\xcf\x4f\x65\x32\x99\xa2\x0d\x78\x33\x2f\xbd\x7c\x7a\
\xf2\xf5\xb3\x67\x29\xe1\xba\x1a\xd2\x49\xb9\x5c\x8e\x96\x97\x97\
\x59\xc5\xe8\xf8\xf1\x19\x4a\x26\x07\x38\x4d\x94\x4a\xa5\x58\x9e\
\xc9\xc5\xe8\x58\x56\x2c\xcb\xcc\x74\x23\x52\x8d\x08\x25\x08\x7e\
\xae\xdd\xee\x40\x07\x3a\x74\xeb\xd6\xbf\xe8\xec\xd9\xd7\xcc\x99\
\x33\x67\x94\xe7\x79\x54\xaf\xd7\xc1\xaf\x4d\x9a\x9f\x9f\x2f\x7f\
\xf8\xe1\xdf\x1e\xb7\xf1\x60\x7e\xbd\xb6\x36\xf4\x9b\x4b\xbf\xa5\
\xd4\x40\x4a\x65\x06\x07\x69\x7a\x6a\x8a\x3e\xfa\xf4\x53\xfa\xe0\
\x83\xbf\x00\xc2\x05\x40\xe9\x90\x03\x35\xb4\x00\x69\x82\x15\xd0\
\xd6\x7b\xb2\xac\x44\x0f\x43\x0a\x90\x16\xdf\x67\x47\x3c\x8c\x01\
\x79\x5e\x47\x9c\xba\x75\xeb\xdf\x74\xe8\xd0\x63\x6a\x76\x76\x56\
\x55\xab\x55\xea\x74\x7a\x28\xa8\x0e\xa5\x06\x07\x1d\xa5\xfc\x8a\
\x0d\x42\xb8\xff\xf9\x7c\xd5\x76\x12\x96\xe4\xcc\x76\x5c\xda\xaa\
\x6f\xd2\xc7\x1f\x7f\x42\xb5\xbb\x9b\x20\x4c\x15\xc6\x6c\x31\x66\
\xb3\x41\x9b\xcf\xb5\x30\x9c\xb9\xa0\x58\x98\x4c\x3f\xf7\x81\xd4\
\xbd\xef\x7b\x18\xa3\x06\xc5\x11\x5f\xbb\x76\x8d\xa6\xa7\xa7\xe9\
\xc6\x8d\x1b\x34\x3a\x7a\x98\x56\x57\xef\x12\x93\x1b\xcf\xa7\x6c\
\xf0\xce\x6d\xb5\x5b\x56\x6f\xbb\x47\xc9\x44\x92\x12\xc9\x04\xb5\
\x9a\x4d\x2a\x95\x2a\xf4\xa3\x1f\xff\x10\x91\x84\xa2\xe9\x71\x73\
\x12\x55\x74\x1c\x2d\xba\xc7\xfa\xa3\x94\x25\xda\xcf\x5f\x25\x6a\
\x19\x21\x23\xd5\x04\xe7\xbc\x8e\x47\x83\xd9\x41\xba\x78\xf1\x22\
\xab\x2b\xdd\xb9\x33\x4f\x4d\xa4\xe7\x9b\x2f\xbe\xc8\x28\x26\x19\
\x01\x67\x6b\x6b\x4b\xe3\x0b\x0e\x00\x62\x3b\x41\x0e\x90\x28\x14\
\xb6\x69\x7d\x7d\x83\x9a\xad\x06\x9a\x8c\x13\x35\x98\xb8\x23\x72\
\xce\x6d\x8e\x1c\xe7\x96\x62\x2e\xa0\x13\xb2\xf4\xca\x39\xa7\xc7\
\x08\x12\xdc\xc6\xf9\xfe\xb1\xaf\x8f\x51\xbb\xd3\xa6\x2c\xc8\x0d\
\x57\xa9\x98\x4f\xd2\xc6\xe6\x3a\x07\xe7\xd8\x80\xc2\x01\xe9\xf8\
\x19\xb2\xe1\x00\xe7\xd7\x45\x19\xb2\x91\x84\x63\x93\x5b\x2c\x89\
\xb1\x30\x36\x4e\x6c\x00\x0a\x68\xa8\x1f\xa9\xa1\x28\x70\x2d\x8e\
\xb0\x61\x15\xb7\x65\x9e\x63\x27\xba\x5e\x97\x4a\x43\xa5\x58\xd1\
\x91\x4a\x09\x82\xe8\xc8\x91\xc3\x09\x29\x43\x07\x51\x5b\x29\x10\
\x2d\x8e\x94\x11\xe0\xf1\xf3\xd5\x26\x34\xc0\x48\x83\x91\x5a\xa7\
\xa8\xee\x59\x62\xf9\x23\x68\x50\x5f\xbe\x1e\x94\xc5\x7e\x65\xa4\
\x06\x53\x84\x1a\xc2\x63\xdc\xaa\x81\x1a\x02\x4c\xb9\x49\xe9\xa8\
\xe2\x40\xa7\xdb\x22\x03\x06\x6b\x27\xea\xeb\x5c\x8a\x4c\x98\xdb\
\xb7\x6f\x53\x3a\x9d\x89\x34\x5e\x7f\x85\xf4\xc6\x7d\x8a\x49\xf7\
\xdf\x37\x70\xb4\xe8\xa8\xb4\x50\xfd\x8c\xde\x78\xf3\x27\x52\x9e\
\xbc\xb7\xb0\x11\xb7\x74\x59\x7c\x98\x84\xa1\xe7\xf9\x66\x67\xa7\
\x81\x12\xe9\xc4\xdb\x2d\x43\x50\xaa\x18\x42\x2e\x1b\xc4\xcb\x98\
\xe1\xda\xc4\xdd\x90\x11\x62\x78\x2d\xee\x78\x7d\xf5\x93\x6d\x62\
\x18\x2b\x61\xb4\x3d\xe3\xdc\x36\x5b\x1d\x59\x8f\x75\x80\x2b\xcd\
\xf1\x1c\x51\x52\x68\x46\x68\x43\x14\x3c\xb8\x1a\xa6\xd3\x29\x61\
\xb6\x83\xbc\x33\x21\x5f\x9d\x9b\xa3\x7f\xde\xfc\x07\x3d\x7f\xe2\
\x39\x6a\x34\x1a\x91\x31\xc7\x11\xe7\xa4\x41\xa9\x28\x5e\x01\x06\
\xe7\x5d\x44\xca\x24\xe5\x2f\x0b\x16\x8f\x0e\xee\x5f\x82\xfa\x4d\
\x4e\x4e\x23\xb8\x16\x41\xf9\xe2\xbd\xa2\x23\x82\xb6\xba\xba\xda\
\xe3\x2a\xe8\x16\x0b\xc5\x80\x17\x14\x82\x00\xa2\xc6\x6e\x83\x26\
\xc6\x8f\xd1\xd2\x42\x95\xa0\x60\x92\x0a\x46\x83\xf3\x99\x48\xb8\
\x22\x36\x26\xee\x09\xd1\xce\xc0\x50\xbe\x58\x10\x27\x79\x0d\xbe\
\x8f\xa3\x4d\x0f\xa6\x45\x41\x27\x26\x26\x68\x79\xb1\x4a\x59\xd4\
\xbe\x8a\xd1\x73\x41\x78\xce\x3e\xa7\xa0\x9d\x4c\xba\x5e\x32\x99\
\x24\xdf\xc3\xc6\x01\x24\x71\xa1\x56\xdb\x3b\x75\x3a\x71\xe2\x05\
\x3a\x77\xee\x9c\x20\xc0\x9b\x53\x96\x59\x8e\x8a\x9d\xe1\xf3\x24\
\x88\xc4\x7b\x02\xde\x1d\x6a\x10\xab\xd9\xde\x15\x22\x37\x00\x77\
\x11\x1d\x94\x25\xfd\xef\x37\x6f\xd2\x95\x3f\x5c\xa1\x16\xd6\xd4\
\x8d\x6d\x04\x98\x90\x72\x65\x27\x11\x40\x93\x1d\xd8\x45\xd4\x2d\
\x5c\xe4\xba\x7e\x17\xcd\x3b\x14\xad\x1e\x1e\x2e\xd3\xf1\x67\x9f\
\x8b\xd8\xec\x83\xaf\xd8\x17\xa2\x45\xd3\x0e\x94\x8d\x89\xca\xcd\
\x8b\xa3\x74\x8c\x4d\x1d\x8c\x0a\x5c\xc9\x0c\x64\x44\x05\xf3\xc5\
\xa2\x18\xe7\xe3\x1b\x33\x33\x74\xe5\x8f\x7f\x42\x2a\xee\x08\x7a\
\x4a\xd9\xb2\xc7\x2c\x97\xcb\x0c\xdf\xba\x0d\x75\xda\x86\x03\xd5\
\x53\xa7\x4e\x8d\x6c\xd5\xb7\x40\x0e\x9b\x76\x1a\x75\x0a\xe0\x61\
\x2e\x97\x91\x45\x3a\xbd\x8e\x30\xb8\x66\x6a\x28\x21\x9b\x02\x90\
\x95\x11\x60\x54\x38\x65\xec\x08\xc3\xaa\x81\x6a\x13\x73\xdc\xa8\
\xf8\x77\x26\x1c\x6f\xd7\x0b\x85\x22\x9d\x3e\x7d\x46\xd0\x63\xf6\
\xbb\xae\x43\x8b\x8b\xcb\xcd\x95\x95\x95\x05\x2e\xc3\xe0\xf2\xe5\
\xcb\xbf\xb8\x7a\xf5\xea\x47\x41\xb4\xb9\x34\x5e\xe0\x85\xaf\xbc\
\xfc\xea\x2b\xdf\x79\xfd\xbb\x8f\xf3\x04\x47\x53\x2a\x95\x61\xb0\
\x05\x07\xb0\x68\xfc\xe2\xc1\x0b\x1a\x13\x75\x42\x2b\xde\x17\x0e\
\xc0\x39\x17\xe9\xdc\xdb\x2e\xc2\xc1\x64\x32\xb1\xf5\xde\x7b\xbf\
\xfa\x5d\xab\xd5\xf2\x94\x1c\x96\xee\xf5\x5a\xb7\x11\x54\x4d\x74\
\x00\x3b\x93\xf7\x31\xbc\x7f\x6f\x0d\x7f\xff\xdc\x0f\x7e\x8f\x8e\
\x25\x0e\x2c\x2e\x2e\x51\xb1\x98\xa3\xf5\xb5\x4d\xc9\x7f\x06\xc8\
\x14\x01\x73\xe0\x05\x54\x07\x57\x98\xd1\x4c\x36\x18\x10\xa6\xd7\
\x37\xeb\x48\x43\x5e\xd6\x69\x34\x77\x01\x77\xa5\x0e\xa4\xdf\x42\
\x45\x6c\xfd\xaf\x6f\x46\x4e\xad\xb6\x96\xab\x54\xca\xf1\xae\xdb\
\x17\xd2\xb0\x61\x8e\x96\x91\x5a\x44\x79\xd9\x0c\x3b\x1c\x62\xce\
\x64\xf3\x79\x70\xc5\xa7\xb5\xb5\x35\x51\xc9\xbe\x03\xf9\x6c\x0e\
\x4d\xa8\x31\x80\x68\xdd\x83\xbc\x9a\xd9\x3b\x8d\x5d\x8f\x21\xe6\
\x63\x6a\x6a\x92\xee\xdb\x73\x1d\xe0\x88\xd4\xb0\xd9\xa9\xd5\x6a\
\xe6\x20\x0e\x74\xd6\x6b\x77\xdf\x5d\xa8\x2e\x3c\x11\x84\x41\x4a\
\x47\xdb\x9e\xfb\x84\x56\xdd\xfb\xaa\xfc\xe0\x3b\xa5\x8a\x34\x82\
\x42\xa4\xa7\x57\xad\xce\xff\x12\xe7\xb5\x87\x3a\xb8\x8f\xf3\x16\
\xf6\x6d\x87\xc1\xe6\xe2\xc3\x1c\x85\x01\xcd\x9b\xcc\x07\x22\xb2\
\x6d\x45\x7b\x2f\xee\xe4\xa3\x12\x6a\x90\x61\xde\x58\xf6\x1e\x66\
\xe4\x0b\x0e\xbc\xe6\xb9\xc1\xb6\x6c\x63\x00\x00\x00\x00\x49\x45\
\x4e\x44\xae\x42\x60\x82\
\x00\x00\x2b\x93\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\
\x00\x00\x2b\x5a\x49\x44\x41\x54\x78\xda\xed\x9d\x07\x78\x15\x45\
\xd7\xc7\xe7\x55\x44\xc5\x8a\x4a\x55\x8a\x80\x88\x60\xa3\x0b\x0a\
\x48\x57\x04\xe5\xa5\x77\x11\x50\x04\x41\x8a\x02\x0a\xf2\xd1\x5b\
\x50\x7a\x91\x1a\x7a\x28\xa9\x84\x14\x08\x21\x90\x40\x28\x01\x02\
\x84\x24\x90\x9e\xd0\x6b\x48\xa3\x09\x9e\xef\x9c\xd9\xd9\xbd\xbb\
\x77\xf7\xe6\xde\x9b\xdc\x24\xc0\x9b\xfb\x3c\xbf\x07\x08\x7b\x37\
\x3b\xf3\xff\xcf\x99\x33\xb3\xb3\xb3\x8c\x15\x7e\x0a\x3f\x85\x9f\
\xc2\x4f\xe1\xc7\xda\x67\x36\xfb\x1c\xe9\x8b\x0c\x2f\xac\x8c\x27\
\x57\xe4\x57\x85\xd0\xc3\x91\xb9\x48\x10\x92\x88\x40\xe9\x65\x2f\
\x72\x9e\x99\xf3\x1f\x60\x33\xd9\x7a\x3c\xba\x48\x61\x85\x3d\xbe\
\x42\x7f\x8c\xb4\x47\x26\x22\xce\x42\x68\x20\xde\x5e\x55\x1c\x6a\
\x6e\x2a\x03\xcd\x3c\xde\x86\x7e\xfb\x6a\xc1\xe0\xd0\x7a\x30\x25\
\xa2\x19\xa7\x47\xe0\x07\xd0\xc2\xe7\x25\x78\x65\xd1\xd3\xc0\xa6\
\xb0\x2d\x78\xa6\x67\x0a\x2b\xf3\xf1\x08\xdb\x13\x85\xc8\xe1\x24\
\x72\xf1\x45\xcf\x71\xa1\x1b\x6e\x2b\x07\x6d\x76\x54\x85\xfe\xc1\
\xb5\x60\x5c\x78\x13\x98\x7a\xba\x79\xb6\xb4\xde\x5e\x09\xbe\x0e\
\x78\x05\xbe\xf4\x7f\x59\x32\xc1\x64\xb6\xb5\xd0\x04\x8f\xa6\xf0\
\x1e\x24\x74\x99\x65\x2f\x41\xf5\x75\x25\xa0\xb9\x67\x25\xe8\xb8\
\xb3\x06\x0c\x08\xae\x0d\xd3\x4e\xb7\xb0\x99\xd9\x51\xed\x60\x65\
\xdc\x8f\xfc\x4f\xfa\x77\x23\xf7\x32\xdc\x00\x85\x26\x78\xf4\x0d\
\x90\x3a\xf4\xe0\x27\x30\x3d\xb2\xa5\x21\xf3\xcf\x74\x81\x55\x28\
\x2c\xe1\x7d\x7e\x36\x78\x5f\x98\x0d\x41\x57\x56\x41\xd8\x0d\x0f\
\x4e\x5c\xc6\x11\x48\xc9\x8a\xe0\x9c\x43\xe6\x9f\xed\xca\xbf\xd7\
\x62\x7b\x69\xc5\x00\x39\x36\x81\xd4\xe5\x84\xf3\x7c\xa3\xf0\x93\
\x67\x89\x1c\xcc\x88\x6c\xc5\xf1\xbe\xe0\x04\x87\xaf\xbb\x72\x92\
\x32\xc3\x05\x27\x14\x92\x33\x4f\x9a\xc8\x32\x91\x92\x75\x4a\x41\
\x3e\xd7\xfb\x9b\x9e\xd3\x18\xc0\x6e\x13\xa0\xf8\x14\x95\x6a\xbb\
\x94\xa5\x44\x32\x02\x3b\xa7\x52\xf8\xd3\xff\x14\x8a\xe6\xc8\xcf\
\x2c\xd6\xb4\x2c\x56\xf2\xcc\xa8\xd6\x9c\xd3\xb7\x02\x21\x31\xf3\
\xb8\x82\xc9\x04\xe1\x1a\x43\x24\xcb\x18\x98\x80\xce\x33\xe6\x68\
\x63\xf8\xd4\xe3\x05\x9d\x01\x88\x26\xdb\xc5\xe8\x20\x3b\x13\xa0\
\xf8\x74\x5d\x13\x4f\x36\xe7\xe7\xab\xed\xf2\x26\xb0\x19\x2c\x8a\
\xf5\x66\xa5\x0b\x4d\xe0\xc8\xcf\x4c\xd6\xaf\xc6\xba\x52\x30\x2b\
\xea\x0b\x4e\x62\xe6\x31\x1d\x49\xdc\x08\x32\xe1\xba\xc8\x20\x19\
\x41\xe6\x24\x3f\xcf\xc0\x90\x7a\xbc\xb5\x1b\x19\x40\x63\x82\x3f\
\x70\xf8\x68\x6e\x02\x2e\xfe\xcb\x30\xe9\x64\x0b\xe5\xba\x88\x3a\
\x64\x82\xe9\x2c\xba\xd0\x04\x8e\xfc\xcc\x60\x53\x5b\x7a\xbd\x03\
\x4e\xd1\x5f\x82\x73\xc2\x60\x48\xc8\x3c\xaa\xa0\x37\x83\x1c\x15\
\x8c\x0d\x91\x8c\x9c\x4c\xf5\xe5\xe7\xa2\xd1\x82\x25\xf1\x75\x26\
\x18\xcd\x46\x28\xf3\x04\x42\xfc\xc9\xa7\x5a\xf2\xf3\x98\x53\xc7\
\xe5\xad\x42\x13\x38\xb8\x0b\x08\xee\x1b\x54\x1b\xfe\x8c\x6e\x03\
\x5b\x53\xc6\xa2\xf0\x61\x2a\x64\x23\x1c\x35\x8c\x0c\x46\x66\x08\
\xbb\xe1\xce\xcf\xf5\xc5\x8e\x8a\x56\x0d\xa0\x31\xc1\x58\xf6\x33\
\x73\x62\x6b\x48\xfc\x29\xa7\x5a\xf1\x73\x10\xc1\x57\xd7\x70\xe4\
\x7f\x13\x75\x36\x17\x9a\xc0\x71\x1f\x27\x96\x3c\xf2\x70\x23\xf8\
\xeb\x4c\x5b\xf0\xc1\xec\x3e\x1e\x33\xfa\xf8\xcc\x23\x66\x46\x30\
\x37\xc3\x51\x8b\x91\x21\xec\x86\x1b\x3f\x57\xbd\x2d\x65\x2d\xe6\
\x00\x96\x4c\x40\xe2\x4f\x8d\x68\xcd\xbf\x4f\x90\xf0\xe7\xc4\xc8\
\x82\xfe\x2e\xff\x9c\xa8\x5b\x68\x02\x87\x8d\x02\x60\xce\x99\x76\
\x9c\xc3\xd7\xb7\xa2\x01\x0e\x4b\x26\x50\x8c\x60\x6c\x86\x44\x1d\
\x92\x19\x42\xaf\x6d\x54\xce\x47\xfc\x76\xac\x09\x8c\x0d\x6f\x00\
\x83\x0f\x55\x87\x1e\x7b\xdf\xb4\x68\x82\xce\x81\x65\x61\x5a\xc4\
\x17\xfc\x3b\x0b\x63\x3a\xc3\xb1\x9b\x9e\x3c\xa1\x3c\xa7\x10\x01\
\x21\x68\x02\xf5\xb9\xeb\x6e\x2e\x57\x68\x82\xdc\xce\xfc\xbd\xb6\
\xb8\x18\xcc\x3d\xfb\x35\x27\xe2\xd6\x4e\x61\x00\x15\x99\x6a\x23\
\x58\x8f\x0c\x7e\x17\xff\x52\xce\x67\x04\x0d\x0f\x7f\x3e\x5c\x13\
\xda\xfa\x97\x56\x92\xc4\x66\xdb\x4b\xc2\xf4\xd3\x5f\xf2\xff\x5f\
\x14\xd3\x05\x4e\xdd\xf2\x47\xf1\x4f\xaa\x30\x0d\x31\xc9\x04\xea\
\xf3\xd5\xfb\x9f\x34\x81\x34\x76\xf7\xe0\xd3\xb6\xb9\x0b\xff\x93\
\xaa\x38\xbf\x01\xf3\xce\x7e\xc3\x89\xcb\x38\xa4\x10\xaf\xa0\x37\
\x43\x76\x91\x21\xec\x86\x2b\xb8\x9d\xfb\x3f\x4c\x28\x7f\x50\xce\
\x6b\x89\x51\x47\x3e\x87\x0e\xfe\xef\xc1\x8c\xd3\x6d\xf8\xbf\x17\
\xc7\x76\x45\xf1\xfd\x54\x23\x8a\x13\x28\xfa\x09\x33\x33\x9c\x84\
\x90\x6b\x6b\x34\xe7\xa9\xb7\xb9\xfc\xff\x90\x09\x24\xf1\xc3\x3f\
\xd8\x50\x06\x9e\x9f\xf7\x0c\x8d\xa5\x07\xe2\x4f\x9f\xb6\xf3\xfb\
\x34\xd7\x9f\xfa\xe6\xf2\x57\x60\x74\x58\x53\x98\x1f\xd3\x1e\x36\
\x24\xfd\x8c\xc2\x1f\x34\xc3\xcc\x10\x99\x87\x35\x24\x58\x88\x0c\
\x89\x9c\xa3\x10\x93\xbe\x1f\xfb\xee\x55\xb0\x25\x65\x0c\x2c\x89\
\xed\xc6\x7f\x8f\x25\xe8\xff\x25\xf1\xc3\x55\xa8\x4d\xa0\x35\xc3\
\x7e\x34\x81\xfa\xfb\xf5\xb6\xfc\x2f\x98\x40\x88\x5f\x1f\x0b\xbb\
\x20\xe6\xbf\x30\x26\xac\x99\x64\x82\x71\x6c\xa8\x55\x13\xa8\x84\
\xa7\xef\xff\x1c\xda\x88\x9f\x43\xc6\xef\xd2\x6c\x14\x3a\x54\xa0\
\x37\x42\xbc\x39\x8a\x09\x64\x8e\xe8\x48\x54\xcc\x20\x19\xe2\xe0\
\xf5\x8d\xe0\x71\x7e\x82\xe6\xf7\x12\x4b\xe3\xba\xf3\xe1\x63\x52\
\xd6\x71\x14\x5c\x26\x5c\x47\x8a\x99\x19\xf6\x5f\x5b\xab\x39\x4f\
\xfd\x27\xda\x04\x8a\xf8\x15\x60\x61\x6c\x07\x85\xdf\x8e\x36\xcf\
\xde\x04\x1a\xe1\x2b\xc0\xa4\x93\x5f\x68\xbe\xef\x7e\x7e\x3c\x6f\
\x79\xb1\x19\x07\x04\xa1\x1c\x63\x23\x1c\x44\xf1\x0f\x0a\x03\xc8\
\x1c\xb6\x62\x06\xf3\xc8\x10\xc6\x23\x43\xc8\xd5\xd5\xb0\x36\x71\
\x10\xac\x43\xe8\xf7\x26\x65\x1d\xd3\x91\x6c\xd1\x10\xa6\xc8\x40\
\x26\x50\x97\x87\xca\xf8\xe4\x99\x40\x88\xff\x09\x16\x6e\x51\x6c\
\x47\x1d\xbf\x5b\x32\x81\x74\x0f\x3f\xf1\x1d\xe7\x12\x30\xec\x60\
\x63\xcd\x77\x36\x25\x0f\x83\x93\xb7\x7c\x21\x26\x63\x3f\x27\x96\
\x73\xc0\x82\x11\x42\x75\xd1\x41\x1b\x0d\xf4\x86\xb0\x1c\x15\xf4\
\x91\x41\x26\x49\x8d\xc6\x0c\xc7\xcd\xa2\x83\xd6\x10\x64\x02\x75\
\xd9\xa8\x9e\xd8\x2c\x96\xfe\x64\x98\x40\x11\xbf\x22\x2c\x89\xeb\
\xa4\x40\x02\x06\x5c\x9e\xa7\xfc\x7b\xec\xb1\x16\x26\x13\x4c\x60\
\x95\xe9\x7e\xfe\xeb\x8b\x5f\x80\x81\x21\x0d\x35\xdf\x5b\x9d\xd8\
\x0f\x0e\xdf\x70\x41\xd1\x43\xcc\x90\x4d\x60\x6e\x84\x03\x28\xf8\
\x01\x43\x13\x28\x64\xa2\x21\x38\x5a\x23\x24\x18\x62\xa9\x8b\xd0\
\x1a\x22\x29\xeb\xa8\x85\xa8\xa0\x8f\x0c\x07\xae\xaf\x55\xca\xf7\
\x67\xf4\x37\xd0\xc0\xb5\x04\x94\x5b\x55\x54\x8a\x04\xdd\x59\x99\
\xc7\xd7\x04\x42\xfc\x06\x28\xfe\xd2\xb8\xce\x0a\xeb\x93\x06\x41\
\x44\x9a\x3f\x44\xa7\x07\x41\xd0\xd5\xa5\xca\xcf\xc7\x1e\x6b\x29\
\x99\xc0\x89\xdd\x6a\xe6\xfe\x0e\xfc\x15\xdd\x5e\xf9\xbf\x15\xf1\
\xbd\xc0\x1f\xfb\xf9\xb3\xe9\xc1\x9c\x98\x0c\x19\xad\x09\xb4\x46\
\xd8\x6f\xc5\x08\xe6\x51\x41\x90\xa9\x8d\x0a\x09\x1c\x7b\xf2\x85\
\x30\x6d\x54\xc8\x32\x36\x04\x19\x80\xc4\x97\xcb\x48\xe5\x6d\xe0\
\x5a\x52\x99\x5b\x50\x4c\xf0\x58\x46\x02\x59\xfc\xad\x15\xe1\xef\
\xf8\x2e\x0a\x1b\x92\x07\xa3\xf8\x7e\x28\xfe\x1e\x05\x32\x81\xfc\
\xff\xd3\x22\xda\x72\xd4\xdf\x71\x3d\x37\x06\x93\x2c\x6f\x14\x7e\
\x9f\x44\x06\x11\xcc\x31\x36\x42\x08\x0a\x1e\x62\x66\x04\x23\x33\
\xa8\x0c\x91\x19\xaa\x8a\x04\x6a\xcc\xcd\x60\x39\x2a\x24\x1a\x76\
\x11\x48\x16\xa1\x37\x02\x89\x2f\x97\x71\xce\x99\xff\x42\x43\x95\
\xf8\x8f\xb7\x09\x14\xf1\xdf\x86\x65\xf1\x5d\x15\x24\xf1\x7d\x51\
\xf4\x40\x81\xc9\x04\x7b\xd1\x04\xea\x63\x89\x55\x09\x7d\xb0\x7f\
\x74\x46\xd1\xf7\x9a\xb1\x4f\x8b\xc6\x08\x5a\x43\xc4\x5a\x34\xc3\
\x7e\x63\x23\x08\x33\xc4\x73\xac\x99\xe1\x90\xa1\x19\x12\x75\xa8\
\xcd\x20\x99\xe0\xc0\xf5\x35\x4a\x39\xe7\x9e\xe9\x60\x28\xfe\xe3\
\x69\x02\x21\x7e\x43\x14\x7f\x79\x42\x77\x85\x8d\x29\x3f\x09\xf1\
\x77\xab\x0c\xa0\x35\xc2\xde\xab\x7f\x2b\xc7\xfb\x5c\x9a\x06\xa7\
\xd3\x76\xc2\x19\xec\x26\x88\xb3\x1c\x95\x09\x32\xf6\xe9\x88\xe1\
\x68\x8d\x10\xab\x31\x81\xb1\x19\xe2\x34\x46\x38\x20\xa2\x81\x6c\
\x02\xcb\x66\x48\xd0\x60\x32\x41\xa2\x82\x30\x40\x96\x8c\x14\x0d\
\x48\x7c\xb9\x9c\xf3\xce\x76\xcc\x56\xfc\xc7\xcb\x04\x8a\xf8\x95\
\x60\x45\x42\x0f\x85\x4d\x29\x43\x70\xa8\xe6\x03\x51\xe9\x01\xc8\
\x6e\x61\x82\xdd\x86\x66\xd8\x77\xed\x6f\x38\x74\x63\x23\x8a\xbe\
\x47\x85\xda\x04\x41\xfa\x88\xa0\x33\x81\x91\x11\xac\x9b\x21\x2e\
\x1b\x33\xc4\x65\x63\x86\x04\x9d\x19\xf4\x91\x41\x36\x43\x28\x8a\
\x2f\xd7\xcb\xfc\xb3\x9d\xa0\xa1\x5b\x49\x9b\x6e\x38\x11\x7c\x25\
\xd2\x23\x6b\x02\x21\xfe\xa7\xdb\x2a\xc1\xca\xc4\x9e\x0a\x2e\x24\
\x7e\xda\x0e\x21\xbe\x89\x68\x4e\xf6\x66\xd0\x9a\x40\x42\x31\x41\
\x86\xcc\x5e\x33\xd4\x26\xd8\x07\x61\x37\x37\x43\xc8\xf5\x15\xb0\
\xfb\xca\x5c\x8e\xeb\xf9\x51\x0a\xf2\xcf\xf6\x5f\x5f\x09\xe1\xa9\
\x9e\x26\x13\x64\xca\x1c\xd0\x11\x6f\x21\x32\x24\x28\x58\x36\x03\
\x89\x2f\xd7\xcb\x82\x98\xce\xf0\xa9\x5b\x29\x9b\xc5\xd7\x2c\x47\
\x9b\xc0\xdc\xb1\xc6\x9f\x7f\x74\x4c\xa0\x12\x7f\x55\x62\x2f\x85\
\xb5\x49\xdf\x61\xcb\x47\xf1\xd3\x76\x49\xa4\xef\xb2\x60\x84\x00\
\x8b\x46\x38\xa3\x41\x6d\x04\x95\x19\xd2\x4d\x66\x38\x78\x63\x2d\
\xf8\x5f\x9e\x09\x5b\xce\x0d\xd3\x5c\xcb\xe8\x23\x2d\x61\xc8\x81\
\x26\xf0\x8d\xcf\x87\x86\xd0\xff\x4d\x0c\x6f\x03\x5e\x17\xfe\x40\
\x43\xac\xe2\xbf\x23\x4e\x63\x08\x73\x23\x18\x9b\x21\xc1\x82\x19\
\x42\xaf\x3b\x2b\xd7\xb2\x30\xa6\x8b\xdd\xe2\xeb\x4c\x30\x91\xb9\
\x61\xcd\x17\x7d\x64\xc4\xff\x6c\x5b\x65\x70\x4e\xea\xad\xb0\x2e\
\xb9\x1f\x84\xa5\xba\xa0\xc8\x3b\x05\xbb\x0c\xc8\xce\x04\x26\x33\
\x18\x9a\x20\x03\x0d\x20\x08\xbb\xb9\x09\x73\x86\xc9\xf8\x3b\xfb\
\x2b\xbf\x7f\x4c\x58\x2b\x68\xe9\x59\x0d\xaa\xad\x29\xc5\x1f\x00\
\xa1\xbb\x86\x74\xe3\xa8\xf5\xf6\x77\xa1\x95\x57\x55\xa0\x55\x44\
\x2d\x3c\xab\x40\x73\xcf\xca\xd0\xcc\xb3\x12\x7f\x6e\xe0\xd5\x45\
\xcf\x41\xb1\x79\x45\xa1\xe6\xa6\x72\x30\xe2\x60\x2b\xf0\xbd\x3c\
\x15\x4e\xa7\xfb\x59\x8c\x08\xf1\x16\x8d\x10\xaa\x31\x42\xe8\x0d\
\x67\x4d\xdd\x74\xda\xf9\x51\xb6\xcb\xcd\x6c\x36\x41\x81\x2f\x51\
\x57\x89\xbf\x26\xa9\x8f\xc2\x7a\x14\x22\xec\xa6\x0b\x44\xe2\x58\
\x3f\x32\x9d\xd8\x69\xc5\x08\xbb\x54\x26\xd0\x1b\xe2\x0c\x27\x50\
\x47\xc8\xb5\xe5\xd8\xc5\x0c\x56\x7e\xef\xe4\x13\x6d\x81\xae\x85\
\x44\xa4\x49\xa4\x66\x1e\xef\xc0\x0f\xc1\x0d\xc1\x29\xaa\x1d\xbf\
\xe1\x42\xb7\x5f\x69\x31\xc6\xec\xe8\x36\x7c\x8d\xde\x8c\xc8\xd6\
\x30\xed\x74\x4b\x98\x12\xd1\x1c\x26\x9d\x6a\x0a\x13\x4e\x35\x81\
\x9f\x0f\xd5\x85\x96\xdb\xdf\xc6\x0a\x7e\x16\xde\x58\xf2\x22\x0c\
\xdc\xd7\x14\xf6\x5c\x9d\xaf\x32\x81\xbe\x8b\xc8\xce\x08\xa7\x6e\
\x79\x6b\xea\x86\xf8\x33\xb2\x03\x14\x9b\xff\xd4\x63\x6e\x02\x45\
\xfc\x2a\xb0\x36\xf9\x5b\x85\x0d\x29\x03\x78\xcb\x8f\xc4\x96\x23\
\x89\x6f\x22\x4a\x63\x04\xbd\x21\x8c\x4d\x10\x20\x0c\x80\x64\x48\
\x84\x5c\x5f\x0e\x9b\xcf\xfd\xa4\xfc\xce\x01\xfb\x3e\x85\xf2\x2b\
\x5e\xe3\xc2\xb7\xf0\x78\x17\xfe\x38\xde\x1a\x96\xe2\xd8\x7a\x71\
\x5c\x27\x3e\xbf\x6e\xab\xf8\xe3\x4f\x36\x82\x71\x27\x3e\x85\xdf\
\xc3\x1b\xc0\x98\xe3\xf5\xa1\x5b\x60\x35\x28\xb9\xb4\x18\x3f\xf7\
\x9c\xd3\x7d\x79\x99\xe2\x32\x43\x04\x5a\x33\xc4\x6b\x8c\xa0\x35\
\xc3\xc6\x94\xef\x35\x75\x44\x54\x5b\x5b\x1a\x6a\x6e\x79\x3e\xc7\
\x06\x20\x68\xd9\x3a\x9b\xc9\x32\x51\x8d\xf2\xf9\x6b\x02\xe9\x59\
\xbb\xf0\x46\x28\xfe\xba\xe4\xbe\x0a\x54\x50\xa9\xe5\xfb\x69\x49\
\x37\x8a\x04\x5a\x13\x44\x1b\xa2\x8d\x06\x47\x6e\x6e\xc4\xbe\x7d\
\x88\xf2\xfb\xbe\xdf\xf7\x19\x6f\xa5\x44\xbf\xbd\x0d\x78\x66\xbd\
\x2c\xbe\x1b\x2c\x8d\xb3\x26\x7e\x2b\xab\xe2\x8f\x3a\x56\x17\x7e\
\x39\x5a\x1b\x46\x84\xd5\x84\x4f\xb6\x95\xe6\xe6\x1a\x14\xdc\x0c\
\x4e\xde\xf2\xcc\xc6\x04\x32\x5a\x23\xf8\x5f\x9e\xae\xa9\x27\xf9\
\xda\xa9\x05\xe7\x54\x7c\x5a\x86\xc6\x9f\x6f\xfc\x94\x2d\x45\x45\
\x5a\x22\xaf\xe5\xa7\xf8\xa9\x8d\x5c\xab\xc0\xfa\x94\xef\x14\x36\
\x9d\xfb\x01\x5b\xfe\x26\xde\x67\x46\x1a\x42\x11\xc0\x08\xeb\x46\
\x38\x9d\xe6\x03\xde\x97\xc6\x2b\xbf\x6b\xec\xd1\x2f\x79\xab\x24\
\xe1\xfb\xef\x6d\xc8\x13\xab\xbc\x12\x7f\xd8\x91\x8f\x60\xe8\xe1\
\x0f\xa0\xfd\xce\x8a\xf0\xec\xdc\xa7\x61\x50\x48\x73\x38\x99\xa6\
\x36\x81\x75\x23\x50\x8e\xa2\xae\x2b\x62\x59\x7c\x4f\x2e\x60\x4e\
\xba\x01\x65\x21\x6a\x1b\xe6\x8b\x8a\x4c\x40\x3a\x20\xa5\xf2\x43\
\xfc\x8a\x24\x7e\x63\xd7\x77\x30\xd4\xf7\x53\x70\x39\x37\x90\x17\
\x32\x32\xcd\xd7\x44\xba\x8c\xd6\x08\xd6\x4d\xb0\x13\x45\x97\xd9\
\x85\x59\xbd\x33\x9e\xff\x47\xfe\x7b\x96\xc7\xf7\x82\xda\x9b\x2a\
\xf0\xd6\xd8\x23\xa0\x1e\x26\x54\x7d\xf2\x45\xfc\x9f\x0e\xd5\x80\
\x41\x87\xde\x83\x4e\x01\x15\xa1\xe8\xdc\xa7\x60\xc2\xb1\xf6\xc2\
\x04\xc1\x66\x46\x30\x19\x22\x5e\x05\x8d\x50\xd4\xf5\x25\xf3\xde\
\xda\x32\x50\xcf\xb5\x58\x6e\xc4\x9f\x86\x0c\x42\xea\x21\x2f\xe6\
\xbd\x01\x66\xb0\xb7\xe9\x46\xcd\xc0\xe0\xc6\xb0\xf1\x5c\x7f\x85\
\x1d\x97\xc7\x63\xcb\xf7\xe1\x44\x72\x7c\x0d\x50\x9b\x40\x8d\xde\
\x08\xb2\x01\x02\xae\xce\x52\x7e\xc7\xc8\x43\x2d\x30\x71\x2a\x8a\
\x06\x28\x8f\x42\xf7\xc8\xa1\xf8\x2d\x72\x26\xfe\xc1\xf7\x60\xe0\
\xc1\x6a\xf0\x7d\x68\x55\x68\xec\x51\x92\x5f\xc7\xea\xc4\xfe\x28\
\xec\x6e\x61\x02\x35\x26\x23\xa8\x4d\xe0\x79\x71\x94\xa6\xce\x88\
\x8e\x7e\xb5\xa0\xd2\x9a\x67\xed\x4a\xfc\x28\x79\x64\xfd\xd8\x51\
\x21\xfe\x10\xa4\x11\xf2\x3a\xf2\x54\x7e\x74\x00\x4f\xb3\x1e\xe8\
\xbd\x99\x2c\xeb\xc7\xe0\x26\x18\xf6\x07\x28\xf8\x5f\x9e\xcc\x43\
\xb5\xc9\x04\x6a\x6c\x37\x41\x34\x72\x3a\xcd\x1b\x43\xfe\xef\xca\
\xb9\x1b\xbb\x56\xe5\xad\x7e\xf8\xc1\xe6\x3c\x81\x2a\x28\xf1\xfb\
\x1f\xa8\x02\xdf\xed\xaf\x04\xe5\x57\x15\xe3\xd7\xe4\x77\x79\x92\
\x81\x01\xcc\x4d\x20\xb1\xe7\xea\x1c\x4d\x7d\x11\xe3\x8f\x7d\x05\
\x6f\x2c\x2d\x62\x93\xf8\xca\x3e\x05\x83\x58\x04\xea\x30\x1d\x19\
\x86\x7c\x8e\x94\xb0\x6b\x49\x5d\xae\x0d\xc0\xb0\x1b\xf8\x84\xfd\
\x86\xd1\xe0\xce\x8f\x21\x4d\xc0\xe5\xfc\xf7\x0a\xfe\x57\xa6\x18\
\x88\xaf\x8f\x0a\x51\x1c\x3f\x03\xfc\x21\x22\xdd\x1b\x3c\x2f\x8d\
\xe2\xe7\x5b\x70\xb6\x3b\x54\x58\xf9\x3a\x0f\x95\xcb\xe2\x7a\x3e\
\x12\xe2\x7f\x1b\x52\x11\x3a\x04\x94\x85\xa2\x73\x9e\xe2\xd7\x17\
\x96\xba\x01\x85\xde\xa7\xc2\xd8\x0c\x47\x31\x3f\x52\xd7\x95\x5c\
\x3e\xca\x03\xcc\x43\x3c\x75\x0b\xef\xae\x7f\x8e\x8f\x12\x28\x42\
\xf0\x56\x4f\x09\xdf\x74\x76\x17\xc7\x5e\xf4\x28\xda\x2f\x48\x6b\
\xa4\x74\x7e\x8a\xcf\xc4\xd4\xe3\x4b\x48\x2d\x56\x87\x4d\x24\x13\
\x0c\x0a\xf9\x1c\xb6\x9c\x1f\xa8\xb0\xf3\xca\x54\x14\x79\x87\x40\
\x6f\x82\x28\x43\x24\x03\x1c\x4f\xdd\x0c\xdb\x2e\x0c\xe1\xe7\x99\
\x15\xd1\x11\x5e\xc0\x50\x4b\xf9\x06\x25\x4d\xb9\x13\xbf\x99\x24\
\xfe\x49\x7b\xc5\x7f\x57\x27\x7e\xef\xe0\xf2\xd0\x73\xdf\x5b\x50\
\xc9\xb9\x18\x34\xc1\x28\xe0\x71\x71\xa4\x99\x01\xb4\x26\x88\x17\
\x50\xf9\xd4\xf5\x24\x43\xc2\x52\x14\x90\x45\x2e\xb1\xe4\x25\xa8\
\xbe\xb6\x2c\x74\xf6\xaf\x03\xdf\x06\x36\x84\x09\xc7\xdb\xc1\xea\
\x84\xbe\xfc\x77\xf1\xbe\x7f\x0c\x4b\xc0\xfa\xff\x1a\x29\xc7\x0a\
\x68\xdb\x1a\xea\x6b\x5e\x56\x9b\x60\x70\x48\x53\xd8\x7a\xe1\x47\
\x85\x5d\x57\xd5\x26\xd0\x9b\x41\x67\x80\x0c\x5f\x38\x7e\x6b\x33\
\xb8\x5e\x1c\xca\xbf\x4f\xe7\x23\xf1\x29\xd7\x30\x89\xdf\x5b\x2f\
\x7e\x6c\xc1\x88\xdf\x7d\x6f\x59\x68\xbb\xb3\x04\xbf\x46\xba\xde\
\xc3\x37\x9d\x51\xec\xbd\x02\x63\x33\x90\x09\xd4\x75\x24\x43\x65\
\x1d\x75\xb8\x35\x4c\x08\xff\xda\xf0\xff\x65\xaa\xaf\x2b\xcb\x23\
\x03\xef\x06\x46\xf3\xed\x6a\x5e\x64\x05\xf8\xd1\x99\xe0\x27\x2c\
\xc8\xb6\x0b\x83\x14\x02\xaf\x39\x19\x98\x60\x87\xca\x04\x32\xbe\
\x10\x91\xe6\x85\x7d\xfe\x18\xfe\x3d\x3a\x4f\xb1\x02\x14\xbf\xd7\
\xde\x2a\xf0\xb5\x7f\x79\xbe\x2c\xab\xd6\xe6\xd7\xa0\xe6\xe6\xe2\
\xf0\xb1\xcb\xab\x50\x77\x6b\x71\x68\xb9\xa3\x04\x74\x0a\x2c\x0d\
\x5d\x83\x4a\x43\xe7\x3d\x25\xe1\xd5\xc5\x45\x60\x22\x0a\xb7\xe3\
\xf2\xef\x2a\x03\x58\x32\xc2\x3e\xf0\xbb\x32\x41\x53\x47\xf6\xf0\
\xc2\xfc\x67\x79\x1e\x40\xf0\x48\xf0\x2b\xef\x06\x8a\x3c\x1a\x26\
\x18\xc0\xbc\x4a\x62\xe8\x72\xbd\x38\x58\xe1\xd0\xcd\x55\x26\xd1\
\x33\x76\x60\x2b\xf7\x31\x24\x22\xdd\x13\x2b\xf0\x37\xfe\x9d\x9f\
\xf6\x37\xe3\xe2\x4f\x3f\xd5\x3e\xdf\xc4\xef\x17\x5c\x1d\x1a\xbb\
\x97\x85\x4a\xab\x5f\xe6\xe3\x7c\xde\xcf\x8e\x66\x29\x3c\xd9\xea\
\xc1\x0e\x28\x50\xe6\x4d\x3f\xc7\x30\x4d\xc2\xd7\xd9\xf6\x12\x54\
\x58\xfd\x2c\x74\xd9\x59\x97\x5f\x3b\x99\x39\x2e\x33\xc8\x64\x80\
\x2c\x35\xfb\x38\xfb\x6e\xcc\x03\xff\xab\x13\x39\x01\xd7\xa6\xc1\
\xfe\x9b\x4b\x38\x47\x52\xd7\xe2\xb0\xd2\x95\x13\x9d\xe1\x0f\x09\
\x59\x21\x18\x11\x5d\x94\xba\x5c\x9b\xd4\x5f\x93\x2b\x50\x24\xe0\
\x33\x80\x03\x58\xf3\xfc\xce\x01\xf4\x26\x68\x87\x7d\xd1\x2c\x96\
\x3e\xf9\x44\x7b\x70\xbb\xf8\x13\xc7\xef\xca\x78\x45\xfc\x28\x73\
\xcc\x0c\xe0\x77\x75\x3c\xff\xce\x90\xfd\xcd\x2d\x88\xdf\x33\x87\
\xe2\x7f\x9e\xad\xf8\xad\xbd\x2b\xc0\x5b\x2b\xc4\x6c\xda\x70\x16\
\xc3\xc7\xd5\xe5\xd8\x32\x46\xcf\x1b\xd3\x80\x97\xb1\xc9\xc8\x78\
\x64\x2c\xf2\xbb\xe0\x0f\xfe\xf3\xcf\x99\x9b\x6c\x86\x1a\xeb\xde\
\xe4\xd7\x7f\x24\xd5\x59\x18\x20\x48\x1f\x0d\xd0\x04\xf1\x9c\x7d\
\x06\x04\x2b\x24\x70\x42\x38\xa1\x37\x97\x2a\xf5\x39\x39\xbc\xbd\
\x6e\xb4\x40\x49\x22\x9b\x8a\xd7\xdd\x0a\x93\xf2\x7c\x1a\x02\x5a\
\x7a\x3c\xcb\xb3\xa9\x7b\x35\x70\xbf\x34\x44\x21\xec\xd6\x5a\x6c\
\xf5\xde\x0a\x51\x3c\x02\xa8\x91\xc4\x0f\xbc\x3e\x83\x1f\xff\x57\
\x54\x37\x1e\xe2\x46\x1c\x6c\x91\xa7\xe2\xff\x7c\xb8\x16\x34\x74\
\x2d\x2b\xb5\xf4\x3f\xd8\x15\x2e\xfa\x2b\x6c\xbe\x10\x9c\x66\xd4\
\x46\x89\xb1\x75\x3f\xa4\x2b\xd2\x4e\x64\xdb\x34\xd5\xda\x0a\xf9\
\x4a\xfc\xfc\x07\x9e\x89\xb7\x65\x9e\xef\xa3\x01\xa8\x0c\x41\xd7\
\x67\xa3\xd0\x41\x66\xec\xd5\x61\xd9\x08\xfb\x34\x46\x08\xbc\x36\
\x43\xa9\xcf\x7e\x41\x8d\xf8\x8a\x20\xf3\xa1\x61\xe9\xe5\xcf\xd0\
\x6d\xe1\x3d\x78\x2d\x2f\x14\xcc\xda\x80\xd9\xec\x73\x12\x6e\x43\
\xca\x0f\xe0\x71\x69\x28\x27\xe0\xda\x64\x6c\xf9\xdb\x11\x12\xde\
\x08\xc9\x04\x87\x52\x97\xf3\xe3\xe7\x08\xf1\xf5\x7d\xbe\xe3\xc4\
\x1f\x7e\xa4\x36\x7c\xea\xfa\xa6\x24\x3c\xb5\xdc\xba\xcc\x85\xd1\
\xde\x22\x8c\x4d\x12\xa2\xff\x20\xa6\x53\x69\x52\xe5\x7d\xe4\x6d\
\xa4\xac\x18\x63\xd3\x1c\x7b\x71\xc1\x1b\xe2\xe7\xef\x20\x0d\xd9\
\x7b\xec\x27\x8a\x02\x54\x8e\x5d\xd7\x68\x4e\x60\x8f\x8a\x20\x43\
\x43\xc4\x6b\x30\x36\x01\x19\xc0\x1f\x23\xa3\x5c\xa7\xed\xbc\x3f\
\xe6\x2d\xde\xe2\x1d\xc1\xdf\xd9\xc2\x82\x59\x1b\x30\x9b\x25\xf6\
\x0f\x6a\x0c\x9e\x97\x7f\x56\x38\x91\xbe\x15\x5b\xfd\x76\x81\x1c\
\x01\xb4\x84\xa7\xb9\x80\xf7\x95\x91\xb0\x31\x65\x20\xbc\xbd\xb2\
\x04\x7c\xe1\x55\xc3\x81\xe2\x37\xd6\x88\xff\x95\x4f\x65\x23\xe1\
\x27\x88\x89\x94\x6e\x48\x63\xa4\x9a\x18\x53\xbf\x24\xee\xaa\x59\
\x6b\x4d\x4f\x8b\x56\x57\x81\x0c\x40\xe5\xf6\xbd\xfa\x1b\x0a\xbc\
\xc7\x0c\xbd\x09\xe2\x75\x26\xd0\x9a\x21\x81\x13\xac\xa9\xd3\xf7\
\xd7\xbd\x65\x71\xca\x58\x99\x1a\x1e\x86\x19\x41\xbe\x26\x85\xb3\
\x59\xdf\x92\x4b\x5f\x86\xed\x97\x87\x29\x04\x5d\x9f\xc9\x85\x8f\
\xd2\xa1\x35\x80\xff\xd5\x3f\xf8\xf1\xcd\xdc\xab\xf3\x49\x1e\xbd\
\xf8\xdd\x73\x2e\xfe\x09\x49\xfc\xc1\xa1\xb5\xa0\xfc\xca\x97\x01\
\xdb\xf8\x2d\xec\xb3\x3d\x54\xc2\xff\x8c\x74\x12\xf3\xe7\xe5\x45\
\x22\x5b\x24\x87\x21\xf4\x19\x32\x80\x5c\xfe\xb8\xac\x40\x81\xde\
\x04\xf1\x3a\x2c\x1b\x21\x32\xc3\x4b\x53\xaf\x14\x21\x49\x68\x4b\
\xb3\x84\x3c\x29\x9c\xc5\x32\xd8\xf7\xac\x59\xfe\x25\x85\xd8\xfa\
\xa7\x9f\xea\x84\x2d\x79\xb8\xc2\xc9\xf4\x2d\x06\xe2\x6b\x0d\x10\
\x7c\x63\x0e\x3f\x76\x58\x68\x2b\x3e\xbd\x6b\x9a\xe1\x73\x9c\xf8\
\x2d\xbd\x2a\xc2\x73\x73\x8b\x48\x73\xe6\xaf\xb0\x79\x22\xa1\x1b\
\xae\x12\xfe\x2d\xa4\x58\xae\x93\xa7\x29\xd8\x2d\xa0\x01\xe4\xf2\
\x9b\x0c\x10\x68\x18\x0d\x6c\x35\xc1\x89\xb4\xcd\x9a\x7a\x35\x9f\
\x2d\x34\x82\x66\x0c\x79\x52\xf8\x05\x46\xa5\x3c\x4f\x0a\x67\xb3\
\xe1\x1f\xac\x7f\x0b\x76\x5c\x19\xa1\xb0\xfb\xfa\x24\x14\xd8\x4b\
\xb0\xdd\x90\x63\x69\xeb\xf8\xb1\xab\xe2\xfb\x73\x57\xd3\x6d\x5d\
\xc7\x89\xff\x19\xfc\x1a\x56\x1f\xaa\xae\x79\x4d\x6a\xf5\x52\xb8\
\xa7\x39\xf3\xdf\x90\xde\xbc\xcf\x96\x66\xcf\x8a\x39\xac\x82\x66\
\xb1\xa6\x95\x56\x95\x50\xea\x40\x6b\x00\xbd\x11\xe2\x35\x58\x36\
\xc2\xa1\xd4\x65\xca\x39\x67\x9c\xea\x6c\xf3\xba\x01\x1a\x29\xe0\
\xb8\xc5\x2b\xef\x93\x42\x27\x96\x34\xf3\x54\x17\xf0\xb9\x3a\x52\
\xe1\x78\xda\x5a\x14\xd9\x53\x65\x02\xbd\x11\x02\xae\xff\x1f\x3f\
\xf6\x83\xf5\xe5\xa0\xb5\x57\x75\x03\xf1\xbb\x9a\xc4\x8f\xb1\x4f\
\xfc\x01\x21\x1f\x43\xa9\xbf\x5f\x90\x86\x74\x52\xab\x9f\x24\x32\
\xfa\x2f\x91\xaa\x22\xd4\x3b\x36\x3c\xce\x60\xcd\xa8\x2c\x54\xa6\
\x5d\xd7\xc6\xa1\xc8\xbb\x2d\x98\x20\xd0\xc0\x00\x7b\xf4\x11\xe1\
\x76\x10\x24\x20\xc1\x37\x9d\x94\x7a\x1d\x11\xda\x9a\x67\xfb\x76\
\xdd\x2d\x1c\xc5\xef\x14\x16\xcd\xb3\xbe\xbf\xd2\xaa\x92\x98\xf4\
\xfc\xaa\xb0\xe7\xc6\x14\x03\xf1\xb5\x26\x38\x94\xba\x94\x1f\x3b\
\xfe\xe8\x37\x7c\x21\xc7\xd2\xd8\xee\x0e\x13\xbf\x77\xd0\xfb\x52\
\xc8\xa7\x09\x1b\x69\x48\x37\x56\xb4\xfa\xfa\x62\xa1\xc4\x33\x79\
\xd2\x22\x66\xb2\x29\xed\x7d\x6a\xf3\x72\x05\xdd\x98\x2e\x0c\xb0\
\xdb\xd0\x08\xf1\x9c\xec\x4d\x90\x20\x08\xbc\x3e\x59\xa9\xdb\x9e\
\x01\x0d\x0d\x47\x00\x56\xd7\x0b\x0c\xe6\xdd\x5d\x11\x47\x8b\x4f\
\xab\x81\x12\x47\x1e\xfc\x12\xfc\xae\x8d\x52\x38\x9a\xb6\x0a\xa2\
\x32\x3d\x05\x5e\x1a\xa2\x91\xc8\x0c\x77\xd8\x79\xfd\x37\x7e\x6c\
\xa9\xa5\xaf\xf0\x35\x7c\x8e\x12\xbf\x9d\xef\x3b\xd2\xec\x9d\xb4\
\x40\x62\xba\xb8\x53\xd6\x5e\x64\xf6\x2f\xe6\x69\x7f\x38\x8b\x6d\
\x1f\xb8\xaf\x19\x2f\xd7\xc1\xd4\x85\x28\x74\x80\x99\x09\x76\xa3\
\xb0\xbb\x85\xf8\xc8\x6d\x62\x8f\x05\xa4\xd6\x4f\xa8\xeb\xf6\x43\
\x8c\x30\xf6\x2e\x1a\xe1\x6b\x05\x27\xb2\x70\x31\x6c\x7d\xca\x5e\
\x91\x5f\x35\xd8\x76\x9d\xbf\x44\x81\xc4\x6b\xb8\xe5\x1d\xf0\xbf\
\x36\x5a\x61\xf7\xf5\xf1\xd8\xc2\x3d\x24\x14\x13\x78\x72\xe1\x65\
\x0e\xdd\x5a\xc8\x8f\xed\x15\xf0\x29\x54\x5b\x53\xda\x40\xfc\xce\
\xb9\x13\xbf\x3a\x73\xc6\x2b\x9f\x8a\x0c\x15\x93\x36\xe5\x44\x08\
\xcc\xdb\xc9\x11\x27\x96\xbc\xe4\x6c\x5f\x5e\x36\x6a\x04\x92\x01\
\x02\x0c\x0c\x60\x66\x04\x33\x33\x24\xa8\xa0\xfa\x52\xd7\x2f\xd5\
\xb9\xad\xdb\xd5\xc9\xd0\x6d\x64\xec\x06\x4e\xe0\x15\xd6\x16\x39\
\x8f\x55\xd1\xdb\x0b\xa1\x53\x49\xe8\x8f\xd6\x97\xe7\x42\xf7\xde\
\xfd\x19\x4c\x38\xde\x01\x66\x9f\xee\x8e\x2d\x78\x8c\x21\x61\x69\
\xcb\x51\x70\x73\xf1\x65\xb0\xf5\x67\xba\x41\xc0\x8d\xb1\xe0\x7e\
\x71\x18\xbc\x88\x89\x1f\xad\xd7\xcf\x03\xf1\x27\x89\xc9\x9c\x46\
\x22\xe4\x17\xc9\x87\x51\xd0\xc7\x54\x1e\xb9\x1e\xa2\x32\xdd\x21\
\xee\x76\x80\x86\xf8\xdb\xbb\x2d\x10\xa8\x90\xa0\x20\x19\x20\x22\
\x63\xb3\xa6\x7e\x6d\x19\x01\x18\x8e\x08\xfa\xf0\x19\xc2\xb6\x62\
\x32\xcb\xfa\x74\x6e\x07\xdf\xba\xfc\xb9\xfd\x5d\x18\xaa\x6d\x65\
\xf7\x8d\x71\x70\x3a\xd3\x55\x18\xc0\x43\x25\xbc\x89\xc3\xb7\x16\
\xf1\x63\x07\x05\x37\x87\x77\xd7\x94\xca\x2b\xf1\x69\xea\xb6\x8e\
\x98\xad\xcb\x9f\x71\xb0\x13\x1b\xd1\xca\xf3\x03\x51\x0f\x7f\xf0\
\x96\x1f\x7f\x5b\x66\xb7\x0d\x18\x99\x20\x10\x23\xc9\x0a\xa5\x7e\
\x97\xc6\x7c\xc7\x93\x3a\x7b\x0d\xc0\x47\x03\xcd\xd9\x26\xd1\x15\
\x96\xb4\xa5\x2f\x0b\xfe\x2b\xb2\x27\x16\xe4\x77\x85\xe0\xd4\xe9\
\xb0\x3f\x75\x16\x1c\x4e\x5b\xa8\x70\x14\x5b\xfb\x89\xf4\xb5\x0a\
\xd1\x5c\x74\x73\x4c\xe2\x47\x61\xeb\x0f\xc4\xca\xa1\xf3\x51\x28\
\xa3\xc7\xaf\xb4\xe2\x77\x74\x94\xf8\xb5\x44\x96\x9f\x7f\x37\x45\
\x9c\xd8\x89\x51\x87\xda\xf2\xb2\x1d\xba\x35\x5f\x25\xbe\x65\x23\
\x24\xe8\x08\xd4\x11\x7a\x6b\x8e\xa2\xc1\xa4\xe3\x1d\x6d\x5e\x32\
\xa6\x86\xdf\xe0\xaa\x88\x57\x28\x75\x87\xc5\x6d\x09\x67\xe0\x75\
\x69\x24\x04\xde\x1c\xcb\xd9\x7b\x73\x22\x17\x4f\x21\x8b\x70\xe7\
\x44\xeb\xf0\xb0\x80\x27\x1c\x4b\x5f\xc9\xcf\x37\x39\xbc\x13\x7f\
\x52\x27\xb7\xe2\xf7\xda\xf3\xfe\xa3\x21\xfe\x6c\x56\xf1\xc5\xf9\
\xcf\x29\x75\x16\x91\xb1\x09\x05\xde\x95\xad\x09\x0c\xc5\xbf\xa3\
\x27\x04\x1b\x9e\xac\x43\x9f\xdd\x8d\xec\x1a\x01\xc8\x6b\x07\x79\
\x1d\x31\x36\x12\xf9\x44\xcc\x09\x58\x2f\xcc\x9e\x9b\xe3\x14\x0e\
\xa2\x0b\xd5\x06\x88\x96\x31\x34\x80\xde\x04\x67\x04\x21\xa9\xd3\
\xf8\xf9\x3e\xdd\x5a\x15\xba\xee\xaa\xa5\x17\xff\xac\x7d\xe3\x7c\
\x3e\xd4\x6b\xc3\x7c\x0a\x54\x7c\xa9\xce\xe6\xb6\xf6\xfc\x90\x97\
\x2d\x38\x75\x8a\x10\x5f\x6f\x80\x04\x05\x49\xf4\x33\x59\x14\x15\
\x5d\xb1\xdb\xdc\x0c\xc7\xb1\x71\x10\x87\xd2\xe6\x61\xab\xff\x13\
\xf6\xdf\x9a\xa1\xd1\x40\xae\x37\x7b\x9f\x1e\xe2\xd3\xc2\xa3\x59\
\x32\x5e\xe5\x4f\x48\x0d\xeb\x4f\x0c\xcd\x62\x4d\x3f\xde\x50\x01\
\x82\x52\xff\x50\x38\x9e\xbe\x1c\x85\x74\x45\xdc\x2c\xa0\x35\xc0\
\x19\x8e\x87\x86\xc8\xcc\x2d\xfc\x5c\xde\x97\x7f\xe5\x21\x69\x7a\
\x44\xdb\x1c\x8b\xff\x4b\x58\x7d\x69\x92\x47\x1a\xe7\x4f\x15\x09\
\x5f\x9d\x02\x12\x9f\x46\x49\xa9\x2b\xe2\xbe\x17\x75\xb5\x02\xe2\
\xef\xec\x32\x03\x45\x47\x4e\x67\xba\xc0\xc1\xb4\x3f\x35\x75\x6b\
\x0f\x55\x56\x97\xb2\x7b\x04\xc0\xd7\x09\xf4\x64\x21\xa2\x81\xbc\
\x6d\x7d\x24\x34\x8b\x4d\xee\xe4\x57\x1f\xf6\xa6\x8e\x57\x38\x9d\
\xb9\x49\x18\xc0\xd5\xa2\x11\xce\x28\xc2\x9b\x23\x19\xe0\x78\xfa\
\x32\x7e\xae\xa9\x27\xba\xc0\x5b\xcb\x5f\x55\x89\xff\x5f\xbb\xc4\
\x1f\x17\xde\x10\x3e\xdc\x58\x42\x9a\xe1\x93\xc6\xf9\x43\x45\xb6\
\x5f\xbc\x40\x16\x42\xe0\xd0\x98\x1a\x8c\x5c\x57\x67\xb3\xb6\xab\
\x22\xc0\x2e\x14\xde\xc4\x21\x14\x5f\x5d\xaf\xd6\x58\x19\xf7\x03\
\xaf\xaf\xef\xf7\x36\x81\x5e\x81\xb5\xf9\x1a\x00\x7b\x9f\x1c\xe2\
\x09\x60\x33\xbe\x66\xb0\x33\x52\xc6\x96\xd9\xac\xf5\xdf\x05\x36\
\x81\x7d\xb7\xfe\x8f\xb3\xff\xd6\x54\x43\xe1\xcf\x28\xa8\xc4\xbe\
\xad\xc6\x43\xc3\xc1\x34\x27\x7e\xbe\x2f\xbc\x3e\x82\xaf\x76\x54\
\xcf\xb1\xf8\x6d\x7d\x2b\x9b\x2f\x87\x6e\x29\x86\x7a\x4f\x17\x80\
\xf8\xbc\xf5\xcf\x8f\xfa\x96\x97\xed\x68\xfa\x22\x6c\xed\x3b\x39\
\x6a\xe1\x89\x98\xdb\xde\x4a\x9d\x9a\x43\xdf\xff\xfd\xc8\x37\x30\
\x2c\xb4\x19\xb4\xf0\xac\x0c\x5f\xf9\x56\xe0\xa1\xde\xde\xd6\x6e\
\x04\x9f\x05\x94\x12\xc0\x56\xb6\x25\x80\x33\x59\xc8\x82\xe8\x6f\
\x21\xf8\xd6\x04\xce\x91\xf4\x79\x28\xae\xab\x0a\x37\x0b\xb8\xeb\
\xcc\x70\x96\xe3\xc1\x91\xcf\x57\xfa\xef\x57\xf9\x26\x8f\x39\x11\
\x7f\x70\x68\x4d\xa9\xdf\x97\x6e\xec\x8c\x13\xc3\x9a\x02\x5b\x0e\
\x4d\xad\xbf\xe6\x86\x8a\x4a\xd9\x62\x6f\x6f\x47\xb1\x77\xaa\x30\
\x19\xe0\x58\xc6\x62\xe5\x38\x35\x5f\x7a\x7d\xec\x10\xa1\x2d\x26\
\x80\x34\x02\xb0\x39\x01\x14\x23\x80\x6d\xe7\x87\x43\x48\xda\x44\
\xce\x89\xcc\x15\x28\xa6\xab\x01\x6e\x3a\xce\x72\xdc\x75\x9c\xce\
\x5c\xcf\xcf\xe5\x77\xf5\x37\x7e\x41\x92\xf8\xdf\xd8\x25\xfe\xef\
\xe1\x9f\x48\xf7\xf3\xa5\xc7\xa0\xe8\x76\xee\xb7\xc8\x7b\xac\xa0\
\x76\xc5\x10\xcf\x45\x3a\x27\xfc\xc8\xcb\x16\x9e\xb1\xcc\x4c\x7c\
\x13\xf1\x77\x7c\xe1\x40\xda\x54\xa5\x4e\x65\xe4\xfa\x20\xa1\xf2\
\xc2\x00\x22\x01\x4c\x11\x37\xc1\xde\xb7\x9e\x00\x8a\x57\xae\x1d\
\x48\x9b\xac\x10\x95\xb5\x89\x0b\x7e\x56\x83\x9b\x05\xf4\xe2\xc7\
\x60\xeb\x3f\x95\xb9\x9a\x9f\x6b\xe1\x99\xef\x80\x76\xf4\xb6\x5b\
\xfc\xe3\x9f\x40\x87\x9d\x55\xe5\xd0\x3f\x47\x14\xe8\x13\xb1\x62\
\xe7\x3f\x05\x64\x00\x8f\x2e\xfe\x0d\x78\xb9\x42\xd3\xa6\x41\xdc\
\x1d\x1f\x14\xdb\x5f\x27\x7e\x22\x72\x2a\x73\x95\xa6\x4e\x65\xfa\
\xed\x69\x6a\xb8\xb6\xcf\x51\xf0\x04\xb0\x1f\x0b\xc3\xab\xa5\xd5\
\x41\x95\x6c\x49\x00\x9b\xd6\xdc\xf8\x36\x84\xa6\x4f\xe1\x1c\x4a\
\x9f\x69\x26\xbc\x35\x13\x90\xe0\x2a\xee\x48\x9c\xc8\x5c\xc6\xcf\
\x37\x2e\xac\x03\xdf\x96\xc5\x5e\xf1\xc7\x1c\xaf\x07\xaf\x2c\x7c\
\x56\x1e\xf2\xd1\x6a\xdc\x36\xa2\xdf\x7f\xaa\x80\xc4\x6f\x4f\x43\
\xe5\x9d\xd7\xc6\xf2\x72\x45\x64\xad\x85\x84\xbb\xfe\x9c\x44\x85\
\x9d\x0a\x87\xd3\x67\x29\x75\x2a\x43\xdf\xa5\x73\xe4\x55\xf8\x57\
\x12\xc0\xaf\xf8\x7a\x80\xae\x62\xed\xa2\xd5\x19\xc0\x91\x5f\x6d\
\xaf\x09\x07\xd3\xa7\x72\x8e\x65\x2e\xb4\x2a\x7e\x8c\x21\x5a\x23\
\x1c\xcb\x98\xcf\xcf\xd7\x3f\xa8\x19\xdf\x93\xc7\x5e\xf1\x9b\x79\
\x96\x97\x43\x19\x0d\xf9\xfa\x8a\x3b\x7b\xcf\x14\x90\xf8\x3c\xf1\
\x9b\x75\xaa\x27\x2f\xd3\x51\x2c\x5b\x76\xe2\x47\xdd\xde\xa8\xd4\
\xa7\x1a\xaa\x8b\x9c\xcc\xea\xd9\x03\x5f\x0b\xf0\x01\x5b\x24\xd6\
\x40\xbc\x6e\xcb\x82\x86\x85\x03\xf0\xc2\x0e\x65\x4c\xe3\x44\x64\
\xad\x82\xb3\x77\x5c\x15\x62\x34\xb8\x19\x60\x6a\xf5\xb1\x2a\x8e\
\x65\xce\xe5\xe7\xa3\x73\xd3\x86\x4c\xf6\x88\x4f\xaf\x63\xe1\x8b\
\x38\xeb\xf2\xb9\xec\x91\x62\xd1\xe6\x2b\x05\x18\xfa\x83\xbe\xda\
\x5e\x8b\x97\xe7\x70\xc6\x4c\x0c\xfd\x5e\x2a\xe1\xf5\x26\x08\xcb\
\x98\xad\xd4\xa7\x4c\xc0\xf5\x3f\xf2\xbc\xf5\xd3\x70\x51\x24\x80\
\xbf\x22\x9f\xd9\xf6\xe8\x18\x8e\x00\x96\x9e\x1d\x80\x05\x9b\xce\
\x39\x73\x67\x13\x8a\xb9\xcd\x4c\x78\x63\x13\xc4\x6a\x30\x37\xc0\
\x3c\x7e\xbe\x01\x41\xcd\xf9\x6e\x5c\xb6\x8a\x3f\xea\x58\x1d\xfe\
\xba\x36\xd1\xfa\x27\x88\xb1\x6c\xf9\x02\x7b\xfa\x05\xb3\xfe\xaa\
\xce\x65\x60\xf7\x8d\xf1\xbc\x3c\xd1\xb7\x37\xa0\xc8\x7e\x02\xbd\
\x09\xa2\xb1\xf5\xcb\x75\xa9\x86\x0c\x94\x97\x7d\x3f\x41\xe6\x12\
\xf5\x46\x8b\x5e\x3f\xb2\x2d\x59\x76\x62\xb7\xe8\x55\x2b\x47\x32\
\x67\xc0\xd1\xcc\xd9\x16\xc5\x8f\xe5\xb8\x19\x73\xd7\x5d\xc7\xf1\
\xac\xf9\xfc\x9c\xdf\xa3\x01\x68\x2b\x36\x5b\xc5\xff\xe5\x68\x2d\
\x78\x79\x61\x51\xb9\xef\xff\x59\x2c\xe0\x2c\x56\x40\xe2\xf7\x7d\
\x69\xc1\x73\x20\xd7\xcf\xa9\xac\x65\x2a\xf1\xfd\x20\x89\xe3\x6f\
\xe2\x9e\x3f\x1a\xff\x2f\x7e\xac\x9a\x0d\x49\x43\xf3\x34\xf3\x37\
\x48\x00\xbf\x47\x2a\xdb\x96\x2f\xe1\x85\x85\x65\xce\xe4\x9c\xcc\
\x5a\x2c\x0c\xb0\x0d\x85\xdd\x26\x44\x37\x42\x6b\x80\x38\x8e\xbb\
\xc4\x5d\x89\x13\x59\x8b\xf8\x39\x7f\xd8\xdb\x82\xef\xc3\x67\xab\
\xf8\x9d\x03\xaa\x48\x0b\x3a\x19\x9b\x88\x74\x11\x63\xfe\x82\x98\
\xed\xe3\xfb\x20\xfd\x1d\xf3\x03\x2f\x47\x78\x16\xf5\xfb\x3b\x84\
\xe8\x06\xe2\xf3\xd6\xbf\x5e\xa9\x4b\x35\xb5\x37\x56\xb2\xfb\x86\
\x4e\x4e\xe0\x4f\x09\xd9\x95\x00\xce\x66\x9f\x57\x75\x2e\x0b\x47\
\xb3\x66\x71\xa2\xee\xac\xc6\xd6\x8b\xc2\xdf\x75\x35\xc0\x8d\x13\
\xa7\xc3\xdd\x90\xd3\xb7\x57\xf2\x73\x4e\x3c\xd6\x05\xde\x5b\x57\
\xc2\x26\xf1\x47\x84\x7d\x0c\xd5\xd7\xbf\x26\xbb\x98\xfa\xfe\x4f\
\x59\x41\x3c\x02\x2d\xc4\xa7\x6b\xa7\x32\x1c\xcb\xfa\x13\x12\xef\
\xa1\xf8\xf7\xfc\x0c\xf0\x57\x38\x8e\xc7\xc9\x75\x29\xf3\x4b\x68\
\xbb\x5c\xef\x07\x68\x6d\xfd\x1f\x85\x7e\x32\x18\x4f\x00\x1b\xb0\
\x95\xb6\x27\x80\xb3\xd8\x77\x9f\xbb\xd6\xc0\x02\x3a\x71\xa2\xee\
\x38\x63\x0e\xb0\x5e\xc5\x5a\x88\xbc\xb3\xc2\x8c\x95\xf8\xf3\x0d\
\x56\x8d\x10\x8d\xdf\xa5\x73\x2e\x8f\xfd\x11\x4a\x2f\x7b\xd1\x26\
\xf1\x87\x1d\xf9\x50\x4a\xfe\x6a\xb0\x15\x62\xd2\xa7\x72\xbe\xf7\
\xfd\x2a\xf1\xe9\xfa\x8f\x67\xfd\xc5\xcb\x63\x2c\xbe\x1f\x24\x73\
\xfc\x39\x31\x77\x5d\x94\xba\x24\xe8\x91\xf1\x97\x16\x38\x66\x7a\
\x97\xce\x41\x53\xc5\x24\x34\xb5\x74\xfe\x38\x98\xbc\x63\x08\xf5\
\xfb\x34\x59\xd6\x81\x05\x32\xe9\x31\xb7\x46\x62\xbe\xc4\xea\x08\
\x60\xea\xc0\xbd\xad\x20\xfc\xf6\x6c\xbb\x88\xbc\xb3\x1c\xe2\xef\
\xb9\x09\xdc\x0d\x89\xbd\xbb\x95\x1f\x4b\xb7\x4a\xe9\x42\xc7\x1c\
\x6b\x68\x55\xfc\x0e\xbb\x2a\xc9\xe1\x9f\x56\xf4\x7e\xc1\xf2\x6d\
\xdf\x3b\xad\xf8\x5f\x7b\xd7\xe1\xd7\x7e\xe2\xf6\x1c\x88\x47\xf1\
\x93\xef\xf9\x0a\xa1\xcd\xf1\xd7\x11\x8d\x8d\x48\xae\xa7\x49\xc7\
\xbb\xe6\xba\xf5\xf3\xc5\x9d\x24\x34\x3d\xc8\x4a\x42\xd3\xdd\x50\
\x5a\xfc\x2a\x4d\x8d\x3b\x31\xd3\x93\xcc\x93\xc4\x54\xf9\x77\x62\
\x06\xf0\x39\x9b\x56\x01\xcd\x8d\xec\x8b\x05\xfd\xd3\x2e\x4e\xde\
\x9e\xa7\x32\x80\x64\x82\x04\x03\x4e\xde\x9e\xcf\x8f\x7f\x17\xbb\
\x99\x2e\x01\xef\x99\xc4\x3f\xa6\x17\x9f\x36\x67\xa8\xb7\xb5\xa4\
\x1c\xfe\xe9\x6e\x5f\x4d\xdb\x0a\xe1\x58\xf1\x27\x1f\xef\x26\xca\
\x38\x17\xfb\x7c\x59\x7c\x5f\x9d\x09\x52\x34\xf8\x6b\xa0\x06\x22\
\xd7\xd5\xd7\xde\x75\xf9\xcd\x99\xec\x1e\xeb\xb2\x3a\xae\x37\x3d\
\xcf\x38\x4d\xe4\x46\x63\xc5\x50\x8f\x9e\x6d\xfc\x51\x88\xde\x45\
\x4c\x96\xd5\xb1\x7d\x25\xb0\x13\x4b\x5e\x15\x37\x18\x4e\xde\xf9\
\x4b\x03\xfd\x8c\x2a\xe2\xc7\x7d\xad\xa1\xce\xa6\xca\x5c\xc0\xb9\
\x91\xdf\x69\x8e\x89\xbb\xb7\x05\x45\x76\x33\x14\x5e\xc2\x03\xa2\
\xef\xae\xe6\xc7\x8e\x3a\xd4\x1e\x3e\xdc\x58\x52\x11\xff\x57\x03\
\xf1\x69\x67\x8e\xb2\xcb\x8b\x01\x6b\xca\xb6\x89\xf5\xfc\x15\xf2\
\x2d\xf9\x93\x56\x3f\xa7\x4e\xc1\x32\xd3\xf5\x9e\xba\x33\x8f\x97\
\x21\xf9\xbe\x2f\x27\x85\xe3\x67\x05\x7f\x85\xe4\xfb\x3e\x70\xfa\
\xce\x62\xa5\xae\xbe\xde\x91\x33\x13\xf0\x95\xbd\x52\x44\xa4\xc9\
\xb0\x11\xa2\x5b\xec\xc8\xa4\xc7\xd5\x3f\x13\x8d\xa4\xaa\xa8\xab\
\x32\xa2\xdf\x7f\xd1\xf6\x1b\x65\x18\x5a\x06\xa1\xc8\xbd\x76\x35\
\x46\xa1\xab\xf0\xfe\x8a\x7e\x46\x3b\x70\xd6\xda\x54\x8e\x6f\xa1\
\xfe\xd3\x81\xc6\x40\x6f\xfe\xa0\xe3\x4e\xdd\x99\xab\x70\xf6\xee\
\x1a\x45\xec\x44\x1d\x1e\x9c\xf8\x7b\xdb\xf8\xb1\xf4\x98\x33\x9d\
\x77\xe0\x81\x8f\xb8\xf8\x23\x51\xfc\xe1\x28\xfe\xcf\x28\xfe\x90\
\xc3\xef\x2b\x7b\xf2\xf0\xfe\x5f\x9a\xc5\x6a\x63\x5b\x12\xe3\x98\
\x71\x3e\x95\x7b\x5e\x64\x3f\x7e\xad\xa7\xef\x2c\xe4\x65\x48\x51\
\x84\xb7\x5d\xfc\x73\x2a\x92\xef\x7b\x43\xc4\x9d\xf9\x4a\x7d\x7d\
\xb3\xa3\x9e\xdd\x26\xe0\xad\x5f\x1a\x0e\x53\x42\xdc\x4c\x2c\xee\
\x28\x2d\xba\xc6\x97\x44\x84\xcc\x45\x23\x71\x62\x69\xb4\x23\x55\
\x27\xff\xda\x7c\xbf\xba\x79\xd1\x5d\x60\x5d\xca\x77\xb0\x26\xf9\
\x5b\x58\x9d\xd4\x9b\xbf\xd4\x80\x5e\x69\xf2\xed\x9e\x7a\xd0\xcc\
\xed\x03\x88\xb8\x3b\x4f\xe1\xf4\x5d\xac\xa8\xfb\xee\xd9\xe0\xc1\
\x89\xbe\xb7\x82\x1f\x4f\x15\x50\x63\xc3\xeb\x3a\xf1\x07\xa3\xf8\
\x3f\xa2\xf8\x3f\x84\xbe\x2b\xcf\x62\xd1\xfd\xfe\x86\xb6\xdd\xc6\
\xcc\xf5\xf4\x6e\x50\x35\xe7\x37\x61\xdb\xb9\x51\xfc\x1a\xa3\xef\
\x2e\xe3\xc2\x69\xc5\xd7\x9a\xe0\x9c\x0e\x21\xfa\x3f\x7a\x92\xee\
\x7b\x62\x3d\x2d\x50\xea\xcc\x1e\x13\xa8\x5a\x3f\xdd\x05\xed\x91\
\x37\x11\x51\x6c\xf8\x48\x1b\x1e\xd2\xb6\xa5\x46\xe2\xff\x1d\xdf\
\x95\xbf\xca\xed\xcd\x65\xaf\x61\x61\xe6\x6b\x88\xbf\xbf\x59\x23\
\x7a\x92\x82\x87\x42\xe2\x7d\x37\x88\xc4\x4a\xd8\x75\x75\x02\x8f\
\x30\x9d\x70\x9c\x6f\x24\x7e\xb7\x3d\x15\x65\x03\x50\xff\xff\x61\
\x9e\xde\xf2\x95\x9e\x81\x48\x6d\x8f\x82\x1c\x4c\x9b\xc9\xcb\x12\
\x73\x6f\x0d\x0a\xec\x83\x62\xfa\x1a\xe0\x67\x05\x7f\x1d\xe7\xff\
\x91\x48\xb8\xbf\x55\x53\x67\xed\x6d\x34\x81\xaa\xf5\xff\x22\xb2\
\xfa\x97\xf3\xa2\x2a\xca\xb2\x52\x98\x76\x8d\x67\x97\x68\xfb\xd5\
\x25\xb1\xdd\x75\xe2\x2f\x89\xeb\xcc\xdf\x64\x49\xe2\x04\x5c\x9b\
\x00\x91\xf7\x16\x28\x9c\xbd\xbf\x12\x92\xfe\x71\x37\xc3\x43\x47\
\xfc\xfd\x4d\xfc\xf8\xdf\x0e\x77\xe0\xb3\x7c\x3f\x1c\xa8\x8e\xe2\
\x57\x57\xc4\x1f\x70\xe0\x1d\x68\xe3\x5b\x56\x9e\xc6\xa4\x7d\x6f\
\xdf\xc9\x93\xfe\x5f\xbc\xb1\x9c\x8c\xb8\x30\x7a\x00\xbf\xa6\xe8\
\x7b\x4b\xd0\xa8\xae\xd8\x62\x7d\x54\xf8\x1a\xe0\x67\xc8\x79\x8e\
\x7f\xb6\xc4\xde\x5f\xa3\xa9\xb7\xba\x2e\x55\xb2\xbd\x29\x64\xd6\
\xfa\x7b\x8a\xd0\x9f\x27\xc3\x61\x0a\xb3\x1f\xb3\x12\x58\xe9\x63\
\x58\x62\xf9\x15\xc5\x61\x61\x4c\x67\x9d\xf8\xf4\x52\x63\xba\xa5\
\x3b\xfd\x44\x2f\x88\xba\xb7\x50\x21\xfa\xde\x62\x14\xd8\x8d\x0b\
\x9f\x8c\x42\x67\x47\xec\x7d\x67\xfe\x9d\xf6\x3b\xea\xc3\x1b\x4b\
\x9e\x83\x7e\x21\x55\x15\xf1\xfb\xed\xaf\x0c\x5f\xf8\x94\x91\x86\
\x3a\x8c\xf5\x67\x8c\x6f\x7a\xe4\x68\xf1\x87\x53\xab\x6f\xee\xf6\
\x21\x1c\x4e\x77\xe2\xd7\x12\x77\x7f\x1d\xa4\xfc\xe3\x6d\x28\xfc\
\x79\x0d\x7e\x56\xb0\x24\xfe\x4e\x8c\x80\xdb\x34\x75\x46\x75\x98\
\x5d\x04\xa0\x21\x23\x5f\xd2\x25\x65\xfe\x79\xda\xfa\x99\x68\x65\
\x2f\x8a\xa5\xc3\xdd\xd8\x10\x76\x8c\xd6\xee\xd3\xcb\x16\xd4\xe2\
\xd3\xfb\xed\xdb\xfb\xbd\x0f\xcd\xdd\x3f\x84\x33\xf7\x17\x69\x88\
\xbf\xbf\x1e\x05\xc6\xa4\x89\xe3\x61\x01\x4f\x4e\xec\xfd\xd5\xfc\
\x3b\xff\xf5\xf9\x04\x5e\x5f\xf2\x2c\xf4\x09\xae\xc4\xc5\xef\x1b\
\xf2\x36\xfe\xbd\x82\xdc\x05\x90\xe3\xdf\x72\x70\x86\x9f\xf8\xde\
\x9a\xb7\x60\x5d\xc2\x30\xfe\xfb\x63\x31\x72\x25\xa3\x71\xcf\x3f\
\xf0\x51\xe1\x6b\x91\x0b\x1c\x3f\x0b\xf8\x5b\x60\x27\x36\x8c\x6d\
\x9a\xba\xea\x13\xd0\xd4\x6a\xf8\xe7\x8f\x74\x49\x8b\x5f\x69\x5c\
\xdf\x5d\x34\x86\x3c\x9d\x0c\xa3\x5b\xac\xcf\x8b\xe1\x44\x07\x1c\
\x68\x04\xd0\xab\x5b\xe9\x8d\xde\xb2\xf8\x73\xce\xb4\x83\x71\xc7\
\x9b\xc1\xcb\x18\x3a\xe9\x56\xe7\xd9\xfb\x8b\x15\x62\xee\xff\x6d\
\x55\xfc\x73\x2a\xe2\x30\x12\xd0\xf7\xc8\x04\xb4\xed\x7a\xb3\xed\
\xa5\xb8\xf8\xbd\x82\xcb\x49\x06\x28\xc9\x06\x8a\xf9\xff\xdc\x86\
\x7a\x6a\xf1\x89\x6f\x2e\x7b\x1d\x66\x9e\xe8\x2d\xae\x75\x19\x8a\
\xb2\xc5\x4c\x78\x89\x0b\x1c\x5f\x0b\xd8\x26\xfe\x45\x15\xf1\xff\
\xac\xd3\xd4\x13\x95\xd7\x9a\xf8\xfc\x6e\x1e\xcd\xec\x95\x63\x4b\
\xc4\x8d\xb0\xfa\x79\x9e\x0c\xab\x4c\xf0\xac\x70\xdb\x57\x98\x22\
\xb9\x90\x09\x7a\xec\xae\xc5\xc5\xff\x33\xfa\x2b\x70\x8a\xfe\x12\
\x2a\xad\x7e\x0d\x66\x9e\xec\x03\x31\xff\x2c\xd1\x90\xfc\x60\x2b\
\x9c\x7b\xe0\x61\x86\xa7\x45\x12\x1f\x6c\xe4\xdf\x5b\x72\x66\x20\
\x90\x40\xa5\x96\x3d\x0b\x2d\xbc\xdf\x80\x92\x7f\x17\xa5\x9b\x19\
\x8b\x6d\x5b\xca\x64\x31\xb9\x73\x26\x23\xd5\x77\xa9\x0a\xeb\x13\
\x47\xf0\xdf\x13\xf7\x0f\xe6\x2a\x0f\xb6\x08\x91\x8d\xb0\x5d\xf8\
\x8b\x1a\xfc\x0d\x49\xf8\x67\xbd\xa6\x7e\x6c\x11\x5f\x79\x27\xa0\
\x34\x9d\x4b\x7b\x11\x7e\x23\xc6\xf6\xf9\x7a\x23\xec\x19\x11\x7e\
\x5b\xb2\x2f\xd8\x0a\xda\xfe\xb5\x5b\xc0\x47\x5c\xfc\x99\x51\xad\
\xa1\xd3\xce\x1a\x40\xa1\x34\xf6\x9f\xa5\x0a\x49\x0f\x36\x19\x88\
\x6f\x32\xc1\x79\x43\xbc\x20\xe5\x81\x2b\xb6\x92\xd5\x70\x2c\x73\
\x0e\xfc\x1c\xd2\x96\x1b\x81\x47\x80\xb1\x18\xfe\xfa\xf0\x09\x8f\
\x22\x36\x08\xfe\xb9\x68\xe9\x1e\xd4\xbf\xd3\xb5\x8d\x3b\xd2\x19\
\xf6\xde\x98\xca\xaf\x2d\x11\x5b\x61\xca\x03\x37\x14\x6e\x47\xb6\
\xe2\x5f\xcc\x16\x3f\x0b\x18\x8b\x9f\x88\xe2\xab\xeb\xa7\x83\x4f\
\x03\x9b\xc4\xe7\xad\x9f\xca\xff\x2a\xfb\x53\xac\xe7\xb3\x71\x3a\
\xd7\xf1\x9f\x22\x62\xed\x5d\x13\x56\x0b\x03\x12\x9a\xa0\xb6\xcb\
\x9b\x30\x3d\xb2\x25\xd4\xda\x54\x16\xbb\x81\x62\x10\xf7\xe0\x6f\
\x4e\xe2\x83\x75\x70\xfe\xa1\x87\x05\x3c\x2d\xe0\xa5\x21\xe5\xe1\
\x36\x48\x78\xb0\x9a\x9f\x6f\xe9\xd9\x41\xd0\x77\x77\x73\x34\x99\
\xe8\x0e\xa4\x3d\x09\x82\x0c\xe0\x8f\xb0\xd3\x71\x1d\xb1\x82\x9d\
\x4e\x7d\x0b\x7b\x6f\x4e\x13\xd7\xb4\x16\xcf\xb9\x15\x2e\x3c\xdc\
\x0e\x17\x1f\xee\x10\xf8\x58\xc1\xd7\x02\x7e\x1a\x2e\x29\xf8\x1b\
\x92\xf4\x60\x83\x52\x37\x84\xad\xe2\x6b\x5e\x0d\x3b\x9e\x5d\xc4\
\x26\xd8\x5e\x4c\xf6\x14\xd8\x4b\x21\x9f\x16\xf3\xc9\x0d\x70\x40\
\xf6\x1b\x0d\x13\x8b\x2f\x7a\x9e\x8b\xbf\xe3\xd2\x78\x88\x7f\x80\
\x7d\x29\x56\xb4\x25\xe1\x2f\xe8\xf0\xb2\xca\xf9\x87\x98\x47\x3c\
\x74\x41\x01\x9d\xf9\xf9\x09\xfa\x5d\x9b\x92\x7e\xd1\xb1\xef\xe6\
\x74\xe5\x98\xc4\x07\x6b\xb0\x0b\xda\x08\xe7\xd0\x48\xf6\x89\x2e\
\x09\x7f\xc9\x10\x3f\x2b\xe8\xc5\xa7\x6b\x90\xaf\x89\xe8\x68\xa7\
\xf8\x1a\x13\xd0\x4e\x5f\x1d\xd8\x9b\xac\x80\xdf\x0a\x4a\x26\x78\
\x95\xd1\x0e\x13\x23\x58\x08\x89\xef\x73\x79\x3c\x24\x3c\x5c\x0e\
\x49\x0f\x57\x63\x65\x7b\x98\xe1\x69\x01\x93\xc8\x17\x2d\xb2\x5d\
\xc7\x05\x34\xc4\xf9\x87\x38\x3e\xc7\xd6\x4c\xc6\x90\x39\xff\xd0\
\x8d\x73\xf1\x5f\x3c\xee\xdf\x1d\x0a\x97\x74\xf8\x58\xc1\xd7\x02\
\x7e\x3a\x2e\x6b\xf0\xd7\x40\xdf\x49\x79\xb8\x89\xd7\x8b\x4c\x47\
\xdf\x86\xbc\x3f\xcf\xe9\x0d\xa0\x47\xe9\x25\xd1\x4f\x61\x17\xb0\
\xa1\x3a\x86\xda\x93\xb7\x17\x40\xe2\xc3\x15\x28\xbe\x33\x17\xe7\
\x22\x8a\x6e\xc2\xd3\x02\x5e\x36\xa0\x17\xff\xd2\x43\x6f\x1b\xd8\
\xa1\xc5\x0e\x13\x5c\x46\xd1\xb2\xc7\xcf\x02\xfe\x66\xf8\x42\xf2\
\xc3\xb5\xbc\x5e\x64\x3a\x09\xf1\x73\xbb\x00\xe4\xd1\x30\x01\x66\
\xd4\xd5\xd7\x96\x83\x53\x77\x16\x42\xd2\xbf\xab\x20\xf9\x5f\x6c\
\xf9\xff\xba\x62\x8b\x43\xd1\xff\xf5\x34\xc0\xcb\x90\x4b\x1a\xb6\
\x5b\xc0\xdb\x0a\xc6\x22\x5f\xd6\xe0\x63\x81\xec\x05\xa7\x6b\x3f\
\xff\x2f\x46\x9a\x7f\xd7\x73\xa4\xb2\xae\xc1\x9f\x6d\x86\x2b\x28\
\xb4\x31\xd8\xf2\xff\x5d\xc7\x8f\x95\xe9\xe4\xfb\xa9\x43\xc4\x7f\
\x34\x4c\xc0\xc5\x2f\x0f\x11\x77\x16\x61\x41\x57\x23\xce\x58\x51\
\xae\x58\xe9\x9e\x86\x5c\x46\x71\xad\xb3\xdd\x02\xde\x56\x30\x89\
\x7c\xc5\x22\x3e\x16\xf0\x35\xe4\x12\x9a\xf8\xfc\xbf\x1b\x79\xb9\
\xa4\xf2\x19\x73\xe1\x5f\x17\xb8\x8a\x82\xab\xb9\x82\xd1\xe0\x1c\
\x37\x8b\xe9\x38\x47\x8b\xaf\x59\xe7\x37\x95\x1d\x66\xf9\xfa\xa6\
\x70\x14\xbf\x06\x8a\x7f\xfa\xee\x62\x38\x07\xce\x9c\x8b\xb0\x05\
\x2e\x83\xa7\x05\xbc\x6c\x60\x3b\xe7\x8a\x06\x6f\x1b\xd8\x61\x03\
\x3e\x3a\xae\x82\xaf\x0e\x3a\xdf\x45\xd8\x8a\xe5\x59\xa3\x94\xcb\
\x9c\x95\xb1\x43\xa1\xc1\xe6\x6a\xe0\x7f\x65\x92\xf2\xb3\x0b\xb0\
\x49\x9c\x03\x0d\x00\x7e\x70\x1e\xd6\x6b\xbe\xd3\xd9\x2f\x6f\xc4\
\x57\xf6\xfb\xeb\xce\x27\x86\xaa\x8a\xb9\x9a\xfc\x11\x3f\xd2\x66\
\xf1\x73\x66\x04\xfb\xcd\x90\x33\x23\x48\x60\x6e\x01\x9b\x2d\x8a\
\x4e\x1c\x4c\x9b\x0d\xad\x3d\x6a\xf1\x0a\xaf\xbb\xa2\x0e\x94\x58\
\x50\x52\x63\x82\xf3\xb0\x81\x9f\x8b\xfe\xd4\x8a\xff\x59\x9e\x88\
\xcf\x6f\x08\xd1\x50\x58\xba\x23\x38\x4a\xac\x07\x78\x35\xaf\xc5\
\x1f\xfe\xd6\xf2\x37\x34\xe2\x4b\x06\x70\x41\xc1\x3c\x0c\xb0\xdd\
\x14\x97\xc0\x9d\xe3\x38\x43\x58\x37\x05\x5d\xe3\x05\xd8\x98\xad\
\xf0\xc4\xc8\x03\xed\xf9\x10\x57\xb3\x19\xc3\xea\xae\x50\x79\xe1\
\x07\x1a\x13\x98\x93\x0f\xe2\xcb\x6f\x06\x1d\x2c\xa6\x85\xf3\x78\
\x85\xf4\x14\x1c\xf2\x39\xb1\xb4\x39\xa7\xfb\xeb\x0a\x7b\x01\x9d\
\x7f\x09\xdc\xb0\x52\xdd\x05\x1e\x36\x9b\xe2\x12\xb8\x2a\x61\xf7\
\x3c\xac\xc5\x73\xb9\xa0\xa9\xb6\x65\x13\x35\x72\x1f\x25\xa4\x50\
\x9f\xbd\xf0\x54\x4e\x32\x3c\xdd\x9a\x35\x5a\xb9\xdb\x63\xd5\x50\
\xa8\xb4\xe0\x7d\x43\x13\xe4\xa3\xf8\x43\xc4\xa3\x71\xf9\xf2\x72\
\xc8\xe7\x59\x5b\xd6\x0d\x87\x7e\xb7\xa9\x55\x98\x17\xfa\x3c\xac\
\xe3\xc2\x99\x5a\xb3\xbb\x55\x43\x50\xf7\x91\x9d\x08\x74\x4e\xc9\
\x10\x5b\x2d\x44\x88\x9c\x19\x82\xce\x69\x4d\x78\x5a\x74\x61\x6d\
\x03\xa6\xee\x2b\x87\xc0\x47\xf3\x9b\x6b\x4c\xf0\xa4\x8a\xcf\x44\
\x92\x51\x8d\xd5\x63\x7f\xd0\x14\x30\x15\x54\x5f\x81\x6b\x14\xb1\
\x8c\x50\x9b\x82\x92\x27\x6b\xad\xd0\xb2\x29\x36\xe2\xf9\x3c\x72\
\x9c\x4b\x5c\x30\xeb\xab\xa9\x5b\x9b\x78\xb4\xbb\xcd\xc2\xab\xe9\
\xb3\x62\x34\xd4\x9d\xdf\x8e\x9b\xe0\x49\x16\x5f\x5e\x1f\xa0\x79\
\x17\xa0\xb1\x09\x9c\x79\x0b\xa3\x2e\x41\x8b\xc9\x08\xb6\xf4\xbd\
\xd6\x90\x0c\x95\xb3\x91\x06\x75\x35\xea\x04\xef\xdd\xb5\xd2\xb3\
\xf3\xf6\x6e\xba\x2c\xd3\x7b\xf9\x28\x68\x30\xa3\xff\x13\x2d\x7e\
\x0e\x4c\xb0\x81\xf7\xef\x5a\x13\xb8\xf2\x16\xac\x3e\x6e\xc0\xde\
\xc6\x50\x63\x7d\x29\x1e\x7a\xcd\x13\xcc\xec\xc8\xcd\x88\x43\x7d\
\x9e\xad\x29\x63\x1c\x22\x5a\xdf\x39\x0b\xa0\xe7\xdf\xbf\x38\x5e\
\x7c\x5a\x03\x20\xad\x00\x2a\x70\xf1\xed\x36\x01\xb5\xb4\x4b\x3c\
\x2f\x70\xe5\x7f\x1a\x89\x4f\x95\x4f\xf0\xdd\x2b\xd0\xe9\x34\xdc\
\x22\x33\x50\xcb\xcc\xae\x1b\xc8\xf9\x88\xc3\x43\x97\xe5\x3b\x42\
\xac\x6f\xfc\xca\x40\x9f\x3f\xe7\x41\xf7\xa5\x23\x1d\x2b\xbe\xb4\
\xeb\xe9\x64\xb1\x1e\xb2\x51\x41\x8b\x6f\xb7\x09\xa4\xbc\xc0\x45\
\x37\xc1\x22\x8b\x6f\xbe\x8b\x15\x3d\xee\xc4\x67\xb8\xd0\x0c\xd4\
\x27\x93\x21\x48\x24\xf5\xe8\x83\x26\x5b\x72\x32\xe2\x30\x8d\x3a\
\x4c\xd7\x31\xe6\xc8\x97\x0e\x6b\xb1\x64\x82\x5e\xb3\xe7\x40\xb7\
\xc5\xc3\x1d\x29\xfe\x24\xb1\x06\xa0\xbe\x78\x1e\xa2\xc0\xc5\x37\
\x36\xc1\x64\x96\x6a\xd9\x04\xda\x84\xab\xed\xf6\xda\x36\x3d\x0f\
\x4f\xb3\x5d\xf2\x43\x8f\x94\x9c\x51\xb8\x96\x67\xdf\xb2\x4b\x30\
\xb3\x33\x84\xf9\x10\xb0\xcb\xae\x0f\x1c\x1a\xb6\xc9\x04\x3d\x66\
\xfd\x05\x5d\x17\x0d\x73\x94\xf8\xfd\x98\xb4\xaf\xff\x2b\xac\x40\
\xdf\x00\x6a\xcd\x04\x25\xd8\x4f\xb4\x36\x20\x3b\x13\x90\xf8\x1f\
\x6d\xa8\x90\xa3\x5b\xa1\x94\x60\x99\x0c\xe0\x62\x31\xc1\xb4\x66\
\x88\x8b\x66\x43\x40\x7a\xe9\xb3\xa3\x1f\xcb\x26\x13\xb4\x73\x1a\
\x0d\x55\x16\x55\xb6\x2b\xbf\xb0\x20\x7e\xc1\xec\x77\x9c\x03\x13\
\x7c\xcc\x17\x6d\x8e\x67\x17\x8d\x4c\x90\x1b\xf1\xe5\x2d\xce\xd5\
\xd3\xcf\xfa\x51\x46\xf6\x86\xb8\x64\x30\xfc\xa4\x6b\xca\x8b\x7d\
\x79\x28\x62\xf1\x79\xfa\x3f\xd8\x15\x5b\x47\x06\x8f\xab\xf8\x6a\
\x13\xd0\x0a\xd5\xea\xe2\x61\x12\x8d\x09\x72\x2b\xbe\xb9\x01\x2e\
\xf1\xb9\x06\x57\x15\x6e\x36\x20\x99\x40\x7d\xb3\x86\x22\x8a\x23\
\xb7\x66\x21\x33\xf1\xc5\x9b\xf4\x0c\x83\xfc\xd4\xee\x20\x76\xca\
\x9a\x09\x1e\x77\xf1\xcd\x97\x90\x57\x53\x9b\x80\xc4\xa7\x1b\x48\
\x39\x1d\x63\x1b\x1b\x60\x9b\x0a\x57\x03\x64\xd1\xb7\xf1\x3e\x9f\
\x5a\x3d\x09\xaf\x1e\xff\x13\x34\xf9\xe3\xa8\x2d\x58\xf9\x28\x86\
\x44\x94\x56\xee\xd2\xe3\xda\x13\x99\xfc\x88\xf6\x10\x76\xd4\x92\
\x09\x9e\x14\xf1\x2d\x9a\x80\x6e\xa4\xd8\xbb\xa7\x7d\x76\x06\x20\
\x11\x2f\x6a\x0c\x20\xb3\x95\xdf\xd5\x93\xc4\x5e\x97\xed\x6d\x5d\
\x47\x8d\x00\x48\x78\xb1\x30\xe3\x2e\xdf\x9c\x41\x7a\x1f\x21\x3d\
\xae\xfd\x2b\x93\xde\x3b\x5c\x5f\x3c\xcb\xd8\x8e\x0d\x65\x61\xe6\
\xeb\x00\x9f\x34\xf1\x2d\x9a\x20\x37\x6b\xe0\x64\xaa\xae\x29\xa9\
\x9a\x0a\x96\x85\xde\x60\xb3\xd8\x6a\x68\xda\x96\xee\xed\xd7\xdd\
\x52\x26\xc7\xa1\x9e\x0f\x55\x49\x3c\xd3\xeb\x67\x69\xa2\x86\xde\
\x42\x4a\x1b\x32\x7c\x2e\x9e\xa3\x78\x41\x4c\xa1\x97\xe7\xcf\x54\
\xa8\x4c\xf0\xa4\x8a\xaf\x37\x01\xed\x4a\xd5\x07\xc3\x22\xb6\xe0\
\xdc\xec\x86\xd5\x76\xc7\xfb\x76\x89\x4c\x5d\x0f\xf5\xf1\x34\x7f\
\x40\xf3\x08\xb4\x90\x83\xe6\x15\xe8\x3a\x68\x48\x99\xd3\xa9\x5f\
\x25\xd4\x9b\x5a\x3c\x09\xff\xbb\x10\x90\xb6\xaa\x7f\x57\xdc\x9b\
\x2f\x62\xf6\x4c\x85\xc6\x04\x4f\xb2\xf8\xe6\x26\xa0\x0a\xe9\xc8\
\x3e\x62\x73\x31\x39\xba\x9c\xd3\x68\x60\xc9\x00\x34\x63\x48\x42\
\x93\xc8\x94\x73\x90\xd0\xd4\xed\x90\xd0\x24\x16\xb5\x54\x32\x1e\
\x89\x9d\xdb\x28\x44\xdf\x17\x4f\xe6\xce\x52\xb5\x78\x7a\x60\x95\
\x76\xe5\x78\x4f\xac\xd7\xb7\xf4\x16\x52\x93\x09\xba\x31\x2f\x56\
\x83\xad\x7a\x92\xc5\x57\x9b\x80\x9e\x60\xa9\x20\x5a\xc7\x20\xd6\
\x9b\xed\xa5\x16\x40\x33\x7e\xf6\x54\x7e\x63\xb7\x4a\x3c\x6c\x93\
\xd0\x34\x3b\x48\x89\x25\x89\x4c\xe7\x22\xa1\xe9\xc1\x49\x12\x9a\
\xc2\x73\x1e\x6f\xb7\x4e\xef\xdb\xf9\x3f\x31\x3b\xd7\x42\x44\xb9\
\xd7\x99\x6d\xaf\x9f\x95\x4d\xd0\x46\x4c\xed\xf6\x79\x92\xc5\x37\
\x7f\xa2\xe8\x0d\x51\xd8\xae\x3c\x1a\x60\x4b\x22\xe1\xac\x89\x45\
\x99\xb3\xb2\xed\x99\xe8\x46\x1c\xf5\xf6\x8c\x1c\xed\xb6\x29\xbd\
\x6f\x67\xa0\x28\x4b\x71\x66\xff\x7b\x87\xe9\x78\x7a\xb0\xa3\xa6\
\x30\xcf\x13\x2f\xbe\x7a\xae\xa0\x98\x48\x8e\x5a\x62\x9b\xf9\x05\
\x83\xe7\xa1\xec\xa2\x01\x85\x5c\x2e\xfe\x20\x16\x81\x69\x95\x07\
\x99\xc6\x11\x09\x65\xae\x56\xe1\x76\x62\xfe\x78\xfd\xf4\xe2\xe5\
\xd2\xb9\x6c\x10\xcf\x8b\x04\xf1\x7f\x42\x7c\xa3\x68\x40\x5b\x96\
\xf5\x64\x0d\xd9\x72\x39\x1a\xa8\xc7\xc9\xca\xaa\x57\xe9\x8d\x20\
\x33\x44\xd8\x1d\xcb\x7a\xb1\x7d\x94\x40\x51\xc8\xcf\xab\x1d\x36\
\xb3\x4d\x00\x1b\xf0\x8d\x2a\xf3\x7f\x9f\xc2\x27\x30\x1a\xd0\x10\
\x89\xb6\x7b\xf9\x12\xa3\xc1\x28\x39\x1a\x50\x3f\x6b\xb6\x08\x42\
\x7e\xe3\xb7\xbc\x05\x5a\x4f\xf6\x36\x1a\x62\x34\x4b\xa2\x6c\x3e\
\xb7\x13\x4c\x76\xbf\x71\xb3\x38\x37\x62\x63\x96\x87\x3b\x73\xfc\
\xaf\x7c\xfe\x23\xfa\xc3\x52\x62\xc2\xa4\x17\x76\x0c\xeb\xe8\xd6\
\xb2\xd9\x22\x88\x61\x42\xf8\x0a\xa2\xd5\x55\x16\xc9\xd7\xf7\xfc\
\xfd\xb7\x78\xac\x2d\xb9\x84\x43\x5e\xb8\x24\xbd\x71\x73\xb8\xb8\
\x3b\xf7\x7c\xa1\x84\x8e\x8b\x06\x2f\x8a\x68\xd0\x06\xa3\xc1\x68\
\x94\x7a\x81\x6a\x11\x44\x13\xd1\xdf\x16\x51\x75\x21\xaf\x89\x19\
\xb6\x0e\xf8\xb7\xb1\x18\x3d\x0e\x53\xf4\xc8\xcb\x5d\xb7\xc5\x7e\
\xfb\x34\x02\x18\x2c\x92\xb7\xa7\x0b\xa5\x73\x7c\x34\x20\xa1\x69\
\x1f\xc0\x1e\x02\x4b\x8b\x20\xe4\xe1\x25\x6d\x58\x41\xbb\x62\x7e\
\x8b\x76\x58\x40\xf3\x0c\xd4\x2d\xe4\xd5\x1d\x3e\x34\xda\x11\x31\
\xd3\x57\x91\x15\xf0\x93\xb9\x4f\xea\xe7\x69\xd1\xb7\x56\x10\x58\
\x1b\x22\xc9\xc7\xbf\xcb\xa4\x6d\xd0\x07\xf3\x2c\x1d\x43\x75\x4e\
\xde\xaa\x99\xdd\x04\x10\x1f\x01\xf4\x66\x7b\x99\xb4\xef\x6e\x99\
\x42\xa9\xf2\x36\x1a\x3c\x25\xc4\xfd\x8f\x1d\xd1\xa3\xa4\xe8\x9b\
\xbb\x62\xb7\x30\x9e\x8d\x60\x67\xa8\x5b\xb0\xe7\x46\x14\x09\x4d\
\x49\xa5\x6e\xdb\x75\x9a\xfd\xa3\x7d\x0a\x2b\xf2\x2d\x5a\xbe\x12\
\xa3\x98\xc2\xcf\x23\x3a\xcf\x50\x41\xdc\x8c\xe9\xc7\x5f\x90\x20\
\x86\x98\xea\xb9\x03\x4a\xe8\x0c\x85\x56\xef\xaf\xaf\xdf\x76\x9d\
\x46\x23\xb4\x29\x73\x9e\xee\xcd\x57\xf8\x71\xcc\x3c\x03\xdd\x8c\
\xa9\x8e\x7c\x8d\x19\xc4\x18\x1e\xba\xc5\xbd\x01\xc3\x17\x29\x90\
\xd0\xaf\xb0\xf9\x4c\xbf\xbf\xfe\x28\x31\x0a\x19\xc8\xa4\xdd\xb8\
\xa9\x9b\xa1\x5d\xca\x8a\x16\x56\xf3\xa3\xdf\x8d\x14\x15\x7d\xf5\
\x27\x62\xee\x60\x26\xa6\x94\x1b\x2c\x08\x3d\x5a\x0c\xef\x06\x33\
\xd3\xfe\xfa\x5f\x8a\xd6\x5e\x53\x8c\x50\x68\x0e\xbf\x84\x48\x3e\
\x0b\x13\xc0\xc7\x6c\x88\x59\x85\x49\x6f\xcb\xa6\x3b\x77\x43\xcd\
\x84\x6e\x23\x86\x9a\xb5\xc5\xf0\xae\x22\x33\xed\xaf\xef\x80\x6d\
\xd7\x0b\x3f\x8f\xca\x10\x93\x04\xad\x2a\xe6\x0f\xcc\x85\x7e\x59\
\x4c\xec\x3c\x5d\xd8\xba\x9f\x6c\x23\x14\x11\x5d\x43\xa1\xd0\x85\
\x9f\xc2\x4f\xe1\xa7\xf0\x53\xf8\x29\xfc\x68\x3f\xff\x0f\x1d\xf6\
\x57\xee\x7c\x6e\x76\x4b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
\x60\x82\
\x00\x00\x07\x72\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x07\x39\x49\x44\x41\x54\x78\x5e\xa5\x97\x6b\x6c\x14\xd7\
\x19\x86\x9f\x33\x33\x7b\xf1\xda\xbb\x5e\xdb\xf1\x05\x1a\xb0\x21\
\xb8\x01\x43\x02\x85\xa6\x51\x29\x14\x2b\xa2\x49\x14\x89\x5f\x6d\
\x41\x55\xc9\x45\x28\x42\x02\xa7\x28\x4d\xaa\xfe\xea\x45\xe2\x47\
\xfe\x94\x44\x51\x4a\x93\x8a\xaa\x45\x4d\xa3\x46\x8a\x5a\x95\x48\
\x16\x69\x68\x43\x21\xad\x02\x82\x16\x62\x2e\x36\x36\xc6\x57\xf0\
\x8d\xb5\xbd\x17\xef\xee\xec\xce\xe5\x74\x38\x5a\x65\xd5\xf5\x62\
\x0b\xfa\x4a\xaf\xce\x68\xce\x1c\x7d\xcf\xf9\xbe\x6f\xce\xce\x0a\
\x29\x25\xe5\x24\x84\xd8\x0e\xac\x67\x71\x75\x49\x29\xff\xce\x7d\
\x4a\x01\x94\x04\x5e\xab\x69\x5a\xd4\x03\xfb\x9e\xe3\x38\x1d\x2c\
\x22\xef\xd9\x3f\x00\x9d\x05\x90\x5e\xee\x51\x5a\xe9\xae\x0f\x3c\
\xbd\xe9\xa7\xaf\xef\xdb\xf9\xf3\x27\x36\xae\x79\xf2\xe2\xc5\x8b\
\x0c\x0e\x0d\x31\x34\xe8\x79\xa8\xe0\xc1\x41\x35\x7a\xf7\xf1\xe6\
\xd9\xfd\xe4\xe6\x67\x3e\x78\x75\xe7\x6b\x6b\x9b\xc2\xcf\x79\xf0\
\x11\xee\x51\x46\x09\xc0\x86\xf6\x68\x76\x57\x55\x65\x8e\xab\x21\
\x49\x4f\x4f\x0f\xe1\x70\x98\xbb\x29\x95\x4a\x61\x4c\x0d\xd4\x39\
\xdd\x03\x75\x4b\xb4\x74\xcd\x55\xa8\x06\x92\xff\x0f\x80\xb8\x39\
\xd8\x47\xc5\x48\x1f\xb3\xb7\x5c\xfe\x71\xf2\x24\x19\x33\x8b\x63\
\xd9\x48\xc0\x34\x4d\x72\xb9\x1c\xf9\x7c\x1e\xdb\xb6\xa9\xad\xad\
\xa5\x22\x3e\x45\xa2\x42\xc3\x76\xb9\x2f\x19\x25\xf5\x14\x48\x70\
\x81\xc6\xa0\xe0\xc2\xbf\xfe\x86\x99\x99\x43\xc3\x45\x02\x02\x88\
\xe8\x2e\xba\x26\xf0\x09\x81\x71\x5b\xb2\x2c\x62\x20\x70\xc1\xa8\
\x08\x3c\xf5\xc2\xcf\xbe\xfe\xd2\x2f\xbb\x1e\x02\x36\x00\x51\xa0\
\x19\x68\x41\x89\xcf\x81\x77\x0e\xff\x60\x7d\x5f\x59\x80\x23\x47\
\x8e\x08\x5d\xd7\x35\xa9\x39\x0a\x60\xd5\xaa\x15\xf8\x32\x3a\x92\
\x10\x52\x4a\xcf\x20\x04\xd4\x87\x83\x04\x0c\x9d\x80\x4f\x63\x3c\
\x2b\xb8\x3e\x31\xc9\xbf\x27\xc7\x08\x6e\xda\xb9\x67\xeb\xb6\x6d\
\x7b\x2a\xc2\x21\x96\xd6\x06\x08\x05\x74\xaa\x2b\x75\xea\xc2\x7e\
\xa2\x55\x7e\x7a\x46\x92\xed\xc7\x3e\x9b\x0a\x00\xfb\x4b\x00\xe6\
\x77\xa5\x10\x78\x8b\x03\xac\x89\x56\x92\xb5\x1c\x2c\xdb\xc5\x95\
\x12\x4d\x08\xfc\x86\x46\xd0\xa7\x93\x75\x04\x89\x68\x0b\x6f\xbc\
\xf9\x3e\x8d\x4b\x1f\x04\x50\xa0\x85\x51\xd9\x2b\x93\x2a\x57\x75\
\xb5\x9f\xc6\xda\x06\x46\x26\xe7\xf6\xbd\xf4\xd6\xe7\x1c\x3e\xb0\
\x61\xff\x5d\x01\xd0\x41\x68\xa0\xeb\x02\xd7\xb3\xe1\x0a\x24\x02\
\x57\x0a\x34\xa1\xee\x2b\xdf\x4a\x39\x7c\xf5\xe9\xcd\x44\xeb\xea\
\x55\x6f\x94\x91\xea\x97\x64\x32\x49\x30\x18\x54\xcd\xfc\xfd\xed\
\xcd\xd8\xf6\x8d\x22\x44\x11\x00\xf6\xee\xdd\x2b\x3b\x3a\x3a\x5c\
\x43\x08\x7c\x1a\xf8\x75\x0d\xc3\xd0\xd1\x10\xd8\xba\x8b\x2b\x51\
\x00\x86\xa6\x11\x30\x34\xf5\x8c\x99\xcd\xaa\x20\x3e\x9f\x8f\x72\
\xb2\x2c\x8b\x44\x22\x41\x4d\x4d\x8d\x02\x08\x04\x02\xec\x6a\xff\
\x12\xee\xa9\x9b\xfb\x3a\xde\xbc\x70\xfe\x57\x2f\x6f\x3c\x6a\x50\
\x14\xae\xeb\x4a\xa1\xeb\x18\x06\xaa\xc6\x04\xee\x5c\x6b\xcc\xe5\
\x6c\xe2\xe9\x1c\xd9\xbc\x8d\xe5\x48\x42\x7e\x9d\xd9\x2c\xd4\x9a\
\x26\x0b\xc9\x71\x1c\x32\x99\x8c\x2a\x03\xc5\x46\x67\x63\x4b\x80\
\x4b\x03\xd9\xe7\x81\xa3\x1a\x45\x21\x3d\xe9\x1a\x18\x3a\xf8\x7d\
\x02\x5b\x4a\x06\x62\x29\xae\x26\x0d\x8c\x55\x5b\x78\xb0\xfd\x59\
\xbe\xbc\xe3\x65\xea\xb7\x3c\x4b\xcd\xc3\x5b\xb9\xd6\x3f\xc2\xe9\
\xd3\xa7\x89\xc5\x62\xaa\xe6\xa7\x4e\x9d\xe2\xf0\xe1\xc3\x6a\x2c\
\x9e\xb0\x70\xfc\xf8\x71\x0e\x1d\x3a\xc4\xc1\x83\x07\xe9\xec\xec\
\xa4\xff\xc6\x20\xb6\x9d\xd7\x84\xa7\xf9\x00\xba\x02\x60\x68\x36\
\xcb\xb9\x49\x87\xd6\x1d\x1d\x6c\xfb\xe1\x51\x2a\xb7\xbe\xc2\xf8\
\x03\x3b\xb8\xec\x3c\xc6\x65\xf9\x04\x99\xe5\x7b\x68\x79\x7c\x3f\
\x96\xa8\xe3\xd8\x87\x9d\xea\x54\x1c\x1e\x9d\xe4\x9b\x4f\xed\xe5\
\xca\x95\x2b\x0a\x40\xd7\x75\x42\xa1\x10\x95\x95\x95\xea\x3a\x12\
\x89\x60\x18\x06\xae\x6a\x52\xf7\x2e\x6f\x81\x10\x4c\x66\x25\xf1\
\xa5\xad\x7c\xe7\xc0\x2f\x48\xe9\xf5\x24\x52\x39\x84\x6e\x81\x26\
\x48\xe7\x5c\x62\x71\x93\x54\x2a\x4f\x77\xde\xe5\x72\x55\x80\x8d\
\xad\x5b\xb8\xd2\xdb\xc7\x58\xb6\x8d\x99\xb3\x13\x18\x2a\x80\xfc\
\x22\x68\x4b\x4b\x8b\x3a\xb4\x84\x10\x54\x55\x55\x31\x91\x04\x6f\
\x4e\x96\x05\x10\x1a\x0c\xa7\x24\xbb\x5e\xfc\x31\xe1\x25\xcb\x18\
\xe9\x7c\x97\xa9\xfe\xcb\x18\x81\x0a\x5a\x5b\x36\xb0\x7c\xd5\xa3\
\xf4\x4e\x84\xb9\x31\x9c\x22\x36\x63\x32\x3a\x95\x61\xcc\xb3\x21\
\x1a\x99\x8a\x25\x68\x7f\x2c\x48\x43\x11\x40\xed\xde\xdb\x35\x75\
\x75\x75\x00\x0a\x2a\xe5\xa4\xbd\xd1\x96\x77\x34\x3f\x03\x1a\xb4\
\x44\x05\x9f\xbc\xfb\x06\x12\x8d\x8a\xc4\x20\x0d\x91\x20\x8e\xeb\
\x72\xb3\xe7\x24\x31\xb7\x8a\x75\xdf\x7a\x9e\x68\xdb\x37\xb8\xd8\
\x13\x67\xcc\xce\x90\x4a\xe6\x49\xa7\x2d\xcf\x36\x08\x40\x16\xcf\
\x04\xef\x0d\x51\x00\x85\xa3\x5e\x81\xf9\x8c\x3c\x42\x97\x77\xcf\
\xc0\xb2\x88\x20\x6f\x0f\xe0\xaf\x8c\x50\xb7\xb2\x96\x82\x58\xd1\
\x50\x45\x3c\x63\xd1\x7f\xea\x6d\x92\xf5\xff\xe1\xa1\x87\x5f\x20\
\x99\xf6\x61\x59\x0e\xb6\xe3\x2a\x1b\x3e\x0d\x69\xaa\x0c\x50\x22\
\x05\xa5\x4c\x71\xae\x5c\x06\x94\x1b\x22\x3e\x7c\xa1\x00\xa5\xaa\
\xad\xf4\xf1\x40\xd8\xcf\xd9\x2b\x67\x59\xff\xc8\x6e\x42\x41\x83\
\xac\x67\xdb\x96\x9e\x5d\x0c\x5d\x03\x50\x8d\x26\x28\x0a\x09\x08\
\x89\x2c\x66\x87\xbb\x66\x40\x59\xa8\x71\x9e\xce\x0f\xcc\x30\x38\
\x6b\xb1\xa3\xe3\x2d\x7a\x66\xa3\xe8\x81\x14\xc1\xa0\xae\x82\xdb\
\x96\x81\xcf\xd0\x50\xbb\x74\x5d\x24\x25\x92\x14\xe6\x16\x01\xd0\
\x34\x81\x50\x66\x9e\xfa\xa7\x52\xbc\xfa\x5e\x17\xfd\xb7\xd2\x88\
\x6a\x93\xe6\xfa\x0a\xb2\xa6\x43\xce\xb4\x31\xbd\x71\xd3\xea\x1a\
\xce\x9c\x28\x5f\x02\x60\xf1\x12\x08\xf1\xbf\x59\x28\x55\x6b\x53\
\x98\xd7\x77\xaf\x67\x28\x61\xa3\x37\xac\x66\xcd\xba\xaf\xa8\xce\
\x2e\x88\x33\x23\xd0\xd6\xd6\xb6\x30\x80\x5c\xac\x07\x16\x28\xc1\
\xe3\xad\xb5\x7c\x6d\x65\x84\x4f\x7b\x27\xf1\x3f\xb2\x8e\x1d\xbb\
\x5e\x54\x5d\x5e\xa2\x45\x00\x58\x30\x03\xca\x9a\x00\x41\x51\xae\
\x65\x92\x4f\x4d\x63\xcd\xcd\x60\x67\xe2\xe4\x66\x24\x86\x95\x29\
\xd9\xd1\xe2\x52\x60\x0b\x37\xa1\x50\x96\xd2\xc1\x31\x93\xe4\xe7\
\xbc\xa0\xa9\x69\x05\xa0\x40\x24\xc4\x73\x30\x38\x2b\x59\x3a\xe7\
\xde\x17\x80\x44\x02\x62\xe1\x0c\x64\xc6\xba\x01\x8a\x41\x4d\xc9\
\x68\x42\x72\x2d\xe6\x32\x96\x92\xe6\x60\xbe\x2e\xf1\xed\xaa\x15\
\x8d\xf7\x0a\xe0\x38\x8e\x32\x18\x0b\xbf\x86\x96\x03\x33\x59\x49\
\xff\x8c\xe7\x69\x97\x89\x39\x69\x4e\xa5\x65\xff\x6c\x56\xf6\x0f\
\xc7\x65\xcf\xba\x2d\xed\xeb\xab\x9b\x5a\x9f\x29\x02\x2c\x1e\x78\
\x7a\x7a\x9a\xd1\xd1\x51\x26\xd2\x41\x60\x59\xbc\x2c\xc0\xe4\x9c\
\xe4\xe2\xb8\x8b\x17\x84\x9b\x49\x19\xbf\x3d\x27\xfb\xc6\xe7\x64\
\xcf\xed\xb4\x9c\x00\xc6\x0a\x1e\x6f\x58\xde\xd6\xa4\x1b\x7e\x16\
\x03\x48\xa7\xd3\xea\x7f\x44\x57\x57\x17\x37\x06\x47\xd1\xaa\x57\
\x12\x69\xde\x0c\x1a\xef\x94\x03\x18\xfd\x74\xd8\xb9\xd1\x3d\x25\
\xc7\xc7\x53\xb2\xcb\x83\x19\x02\x26\x81\x71\x20\x0d\xf8\x00\x1d\
\x08\x5a\x79\xd3\x70\x1d\xa7\x1c\x80\xfa\x00\x99\x98\x98\x50\x3f\
\xcb\xdd\xdd\xdd\xc4\xd2\x3a\x81\x86\xb5\x54\xad\xde\x86\xe6\x0f\
\xfd\xde\xd2\x8c\xb7\xbd\xaf\xe3\x73\xe5\x00\xba\xfe\xd8\xe5\xfc\
\x04\x88\x01\x03\x80\x09\x84\x81\x4a\x20\xc0\x3c\x49\x0a\x00\x2a\
\xc5\x33\x33\x33\x5c\xbf\x7e\x9d\x4b\x97\x2e\x31\x3a\x3e\x4d\xde\
\xd7\x44\x45\xc3\x66\xfc\x75\x91\xb3\xae\x74\xde\x1b\xbe\x76\xee\
\x4f\x7f\xfd\xdd\x8f\x6e\x7b\xc0\x6e\xd9\xb7\xc0\x9b\xe8\x15\x42\
\x5c\x07\x34\x20\x50\x08\x9c\x07\x74\x40\x02\x4e\x61\x4e\xf7\xf9\
\x83\xb6\x44\x30\x33\x3b\xcb\xc4\xf8\xb8\x0a\x3a\x30\x34\x4a\xca\
\xae\x42\xaf\x6e\x41\x34\x3d\x3a\x66\xa5\x13\x1f\x0e\x9c\xfb\xe8\
\x83\x4b\xa7\xdf\xef\x03\xe6\x00\x93\x12\x19\xcc\x97\x2c\x06\x23\
\x07\x08\xc0\x29\x80\x18\x5f\x00\x04\x42\xb1\x91\x5b\x53\x5c\xfd\
\xec\x2f\x4c\x67\x03\xf8\xa3\xcd\x18\x8d\xdb\x11\x66\xf6\xd8\xd4\
\xad\xde\x63\xff\xfc\xf3\x2b\x67\x00\x0b\xc8\x01\x59\xc0\x06\x5c\
\x40\x2e\x08\x20\x3d\x09\x21\xdc\xc2\x02\x0a\x8b\xac\x02\xac\x5e\
\x00\xd0\xce\x7f\xf4\xeb\xdf\x44\x9f\x7b\x6d\x49\xa0\xf9\xbb\xbb\
\x2b\x73\x99\x13\x99\xe4\xf4\x89\x0b\x1f\xff\xf6\xe3\x81\xae\x4f\
\xe2\x85\x35\x4e\xc1\x56\xd1\xb8\xb2\xa4\x61\xfe\x0b\xaa\xd3\xe9\
\xaf\x70\x35\x30\x23\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
\x00\x00\x05\xbc\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x05\x83\x49\x44\x41\x54\x78\x5e\xb5\x57\x4b\x6c\x54\xd5\
\x1f\xfe\xee\x9d\x3b\x8f\x5b\x68\xe9\x50\x86\x3a\xd8\x48\xb5\x04\
\x4a\x78\x88\x0a\x21\xd4\x47\x5c\x28\x44\x43\x02\xc4\x05\x89\x1b\
\x16\xba\x91\x90\xb8\x71\xe5\x23\x3e\x12\x37\x24\xae\xdc\xb8\xd2\
\xb0\xd0\x95\x09\xff\xe4\xbf\x20\x04\x2b\x2a\x68\x95\x4a\xa0\xb4\
\x4c\xe9\x93\x96\x4e\x3b\xd3\xce\xab\xf3\xb8\xcf\x73\xef\x1d\xe7\
\x77\x72\x4f\x32\xc9\x64\x8a\x93\x8c\xbf\xe4\xcb\x79\x4c\xe6\x7c\
\xdf\xef\x71\x7e\x67\x46\xaa\x56\xab\x68\xc5\x9e\x3b\xfd\xe9\x4b\
\x00\x0e\x01\x08\xe3\xf1\x36\x06\xe0\xf6\x9d\xff\x7d\x5e\x40\x13\
\x53\x5a\x24\x0f\xc7\xb7\x47\x5f\xfd\xfe\xab\x0b\x1f\xaa\x11\x45\
\x05\x00\x49\x02\x37\x7f\x40\x40\x06\x84\x4f\xa3\xe3\xf3\x37\xce\
\x7f\x76\xe9\x0b\x00\x3f\xa1\x89\xc9\x68\xcd\xb6\x1f\x39\x38\xb0\
\xc3\x45\x40\xb5\x1d\xc0\x64\x80\xeb\x01\x8e\x0b\xb0\x1a\x3c\x0f\
\x60\x4e\x0d\xcc\x41\x49\x63\x38\x34\xf8\xd4\xcb\x1f\xbc\xf3\xe6\
\xbb\x35\xe1\xaf\xb5\x4b\x00\x1c\xc6\xc0\x4c\x8d\x7b\x1e\x52\x7c\
\xaf\x25\x0e\x61\xa8\x54\x2a\x28\x19\x0e\xf2\xc5\x0a\xde\x3a\x7e\
\xf8\xec\xeb\x2f\xee\x7f\x83\x52\xd7\x52\x0a\xde\xfe\xe8\xf2\xa1\
\xba\x25\x9f\xf7\xf5\xf5\x47\x97\x52\xeb\x83\xd7\xfe\x9c\x05\xf3\
\xb8\x76\x44\x42\x0a\x9e\x1f\x8c\xe3\xe9\x27\xa3\x10\x56\x2c\x95\
\x60\x4b\x1d\xe8\xea\xde\x86\xc2\x7a\x0e\x9f\x9c\x3f\xfd\x5e\x26\
\x5f\x36\x6b\x22\xee\xd5\xea\xa1\xd4\x4c\x80\x20\xa6\x93\xce\xbd\
\xb0\x37\x7e\x4e\xec\xed\x1f\x88\x75\xd3\xc8\x6c\xa6\xe8\xba\xb6\
\x65\x60\xe7\x76\x44\xbb\x54\x04\xe4\x2a\x6c\xe6\xe1\xc7\x9f\x13\
\x38\x31\xb4\x1b\xfb\x9e\x89\x81\x8c\x31\x06\xcb\x33\x41\x66\x07\
\xb6\x40\xd7\x75\xf5\xec\xc9\xa1\xc3\x77\x27\x17\xf7\x03\xf8\xe3\
\x71\x11\x38\x75\xee\xe4\xc1\xf7\x4f\x1c\x1b\xe8\xc7\x06\x66\x59\
\x16\x8a\xc5\x22\xfa\x7a\x7b\x70\xe6\x95\x7e\x8c\xdc\x5f\x46\x4f\
\x57\x04\xbd\x3d\x9d\x90\x24\x09\xa6\x61\x80\x2c\x10\x50\x90\xcd\
\x56\x90\xc9\x64\xe4\x7f\x5d\x03\x9a\xa6\x71\x2f\x36\x32\xc7\x71\
\xe8\xd0\x1a\x41\x00\xbb\x76\xf6\x62\x4f\xdf\x66\xdc\x4a\xac\x20\
\x95\x2d\x43\x8d\xa8\x98\x9f\xba\x83\xaf\x2f\x7e\x8c\x4b\xdf\x5c\
\x44\x72\x71\x9a\x6a\x47\xda\xa0\x06\x5a\x07\xf5\x0f\xc3\xf7\x52\
\x51\x14\x3c\xbb\x27\x8e\xc0\xdc\x1a\x6e\x4f\xae\xe0\xf8\xd1\x7e\
\x1c\x39\x3a\x84\xc1\xbd\xfb\xe0\x55\x65\x74\x76\x76\x62\xb5\xb2\
\x50\x6d\xab\x00\x21\x42\xd8\xa6\x4d\x9b\x70\x60\x57\x2f\xee\x4c\
\x4d\x60\x39\x67\xe2\x89\xde\x3e\xc4\x6a\xa0\xdb\x62\xdb\x0c\xa1\
\x50\xca\x6b\xab\x00\x59\x96\x79\x1a\x86\x87\x87\xa9\x16\xf8\xba\
\xa3\xa3\x03\xa6\xae\x08\x61\x9c\xdc\xb0\xa9\x5e\xa8\x57\xb4\xa9\
\x0f\x08\x84\x42\x21\xc4\xe3\x71\x9e\x86\x72\xb9\x4c\x35\xc3\x53\
\xe1\x54\x25\xe8\x26\x60\x3b\x1c\x30\x18\x40\x7a\x98\x0b\xb4\x35\
\x02\x54\x7c\x24\x80\xf2\x4b\x91\xa0\xb5\x6d\xdb\x98\x48\x27\xe1\
\x56\x79\x87\x84\xe9\x70\x72\x98\x5c\x44\x9b\x23\x40\x57\x2d\x1c\
\x0e\x63\xeb\xd6\xad\x88\xc5\x62\x88\x46\xa3\x3c\x05\x90\x02\x30\
\x98\xc4\x05\x04\xea\x4e\x37\xec\xb6\x0a\x68\x2c\x42\xaf\xea\xc1\
\xf3\x3c\x30\x62\x06\x50\x34\x78\x0a\xb8\x6d\x0e\x53\xdb\x6e\xb3\
\x00\x22\x17\xa3\xeb\xba\x90\x20\xf1\xb9\xc7\xf9\x29\xfc\x7e\x1a\
\x18\xf0\xa8\x00\x68\x36\xf0\x9f\x5c\x43\x02\x79\x2e\xd6\xb2\x2c\
\x41\xb3\x80\x80\xcd\x23\xc0\xbd\xf7\x78\x4d\xb4\x31\x02\xc2\x7b\
\x22\x16\x23\xed\xf1\x37\xc0\xf6\x38\xa1\xc5\x80\xbc\xc6\x53\xc1\
\xe7\x26\x6b\x73\x04\x28\xec\x44\x2c\x0a\x92\xe6\x74\x0d\x5d\x57\
\x46\x41\x03\x5c\x05\xe8\xd9\xcc\x3d\x47\x38\xd8\xc6\x6b\x28\xc2\
\x4e\xa4\x34\xd2\xa3\x24\x04\xf1\x74\x54\x5d\x44\x82\x40\xbc\x1b\
\xdc\xd2\x45\xa0\x33\x44\x51\xaa\xd2\x17\x1a\x05\xb4\x1a\x76\x41\
\x26\x42\x4e\xf7\x9f\x44\x04\x83\x41\x7a\xc4\xf8\x35\xac\x58\xc0\
\xec\x1a\x10\xed\x20\x72\x17\x77\x67\x73\x60\x96\x26\x79\x1e\x0b\
\xd4\x84\xcb\x74\x9c\x7f\x66\x55\x69\x35\xe7\x22\x02\xd4\x7c\x68\
\x4d\x22\x28\x1a\x14\x7e\xea\x8e\x24\x8e\x3a\x63\x39\xb7\x88\x5f\
\xc6\xc7\x90\x79\x94\x00\x24\xd9\xb4\xe4\xee\x05\xa3\xb4\x96\x06\
\x10\x24\x1f\xe8\x38\xfe\xbd\x56\x88\x69\xa4\x9e\x4f\x73\xd3\x34\
\x89\x94\x04\x50\x43\xa2\x91\xef\xcd\x8e\x5d\xc3\xc8\x95\x87\xc8\
\x96\xf4\x45\x25\xa4\x4e\x31\x44\x16\x59\x35\xb8\xc8\xcc\xd4\xf8\
\xcc\x8d\xef\x0a\x00\x22\x00\x98\x0f\x57\xd9\xa8\xc8\x88\x8c\x4c\
\xe4\x5c\xb4\x5c\xea\xff\xba\xae\x43\x55\x55\x12\xc4\x3f\x33\x74\
\x9d\xb7\x62\xe6\x38\xc5\xe5\x8a\xfa\x7f\xdb\xb2\xc7\xad\x7c\x7a\
\x41\xcb\x2f\xa5\x0a\xc9\x89\xac\xef\x75\x27\x00\x0b\x80\x21\x7c\
\x54\x9a\x79\x2e\x44\x08\xaf\xe9\x70\x91\x6b\x12\x42\xcf\x6f\xa9\
\x54\x12\x62\xc9\x7b\x1a\xa9\x35\xaf\x9b\xb7\x7e\xbb\xfe\xf0\xde\
\xf5\x19\x00\x9e\x8f\x2e\x00\x0e\x00\x5b\xd4\x9d\x2f\xc8\x91\xd1\
\x68\x44\x2a\x72\xcc\x51\x28\x14\x88\x80\x3c\xa6\x5f\xbc\x24\x90\
\xf6\xa8\xf7\x93\xf7\x24\x8e\xa3\x5c\x2e\x81\x31\xd3\x75\x99\x15\
\xf2\x43\xad\xfa\x88\xd4\x81\x3e\x0b\xfa\x42\x64\xa1\xa6\xa9\x08\
\xf2\x9a\x22\x10\x89\x44\xa8\xca\xc9\x73\xda\xe3\x8f\x4f\x32\x99\
\xe4\x7b\x73\x73\x73\x18\x1b\x1b\x83\x27\x29\xf6\x6a\x46\xb2\x2b\
\x85\xd5\x02\x1a\xac\x85\x3e\x20\x88\x2d\xd3\x44\x30\x14\xaa\x17\
\xc4\x09\x13\xf7\x13\x98\x7c\x30\x89\xf9\xf9\x79\xa4\x32\x45\xc3\
\xf2\x42\x65\x2b\x10\xcd\x9b\x0e\x56\xca\xf9\x95\x9b\xf9\xf4\x5c\
\xca\xbf\x6a\x9e\x80\x48\x81\x0f\xe6\xaf\xbd\x26\x11\x90\x28\xdc\
\x3c\xa7\x8c\x31\x1e\xf2\x44\x22\x81\xd1\xd1\x51\x4e\x9a\xce\x95\
\x35\x37\x18\xcb\xba\xe1\xf8\x3a\x0b\xef\x98\x35\xb4\xc2\x54\x6a\
\xf6\xee\xc8\xfc\xd8\x70\x12\xc2\x1a\x05\xb8\x44\x2c\x8a\x70\x43\
\x01\xba\xae\x61\x69\x69\x09\x0b\x0b\x0b\x9c\x78\x7a\x7a\x1a\xf9\
\x32\xab\x78\x6a\x7c\x15\x1d\x07\xf2\x88\x87\x1f\x58\xe5\xdc\xaf\
\xcb\x53\x7f\xfd\x9d\x18\xb9\x9c\x05\x20\xfb\x90\xea\x05\x10\xea\
\x05\xf8\x60\x02\x4d\x05\xcc\xcc\xcc\xe0\xf7\x2b\x97\xb0\x96\xd7\
\x2b\x91\x6d\xbb\xd3\xc1\xee\x63\xd9\xe0\xb6\xae\x09\x87\xd9\xd7\
\x4a\xb9\xe5\x91\xab\xdf\x5e\x10\xa4\x02\x92\x40\x83\x80\xe6\x42\
\x68\x5e\x15\x7f\xcf\x1b\xfe\x19\x01\x38\x05\x60\x16\xc0\x55\x00\
\x37\x7f\xf8\xf2\x4c\x5a\xaa\x99\x20\xf2\x89\xd1\x84\xbc\x5e\x04\
\x1a\x84\xd4\xb5\xe2\x7f\x00\x12\xab\x82\xc2\x52\x64\x01\xcd\x00\
\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\xd2\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x06\x64\x49\x44\x41\x54\x58\xc3\xed\
\x56\x0b\x4c\x95\x65\x18\x46\xb4\x92\x72\x2e\x53\x67\x6e\xea\x32\
\x4d\x52\xcc\x4b\x4e\x41\x42\xa4\x04\x34\x38\x20\x77\xe1\x98\x5c\
\x04\x01\x15\x11\x31\xe0\x80\x5c\xbd\x00\x02\xde\x41\x44\x40\x49\
\x11\x6f\x04\x89\x01\x79\x03\x0b\x02\x2f\x28\x6a\x71\x92\x05\x23\
\xe1\x44\x63\xd0\xdc\x8e\xd2\x76\x36\xb6\xa7\xe7\x3f\x7c\x78\x41\
\x45\x72\x36\xb7\xd6\xd9\x9e\x71\xce\xff\xff\xef\xf7\x3e\xef\xf3\
\x3e\xef\xfb\xa3\x03\x40\xe7\x55\x42\xe7\x7f\x02\xff\x59\x02\x9f\
\xca\xe3\x66\x11\xbe\x44\x0a\x91\x21\x10\x43\xd8\xfc\x6b\x04\x78\
\xb8\x81\x48\x52\xee\x15\x9a\x57\x1f\x9a\x58\xdd\x1a\xb5\xad\xf1\
\x6e\x74\x8a\x4a\xbd\x71\xa7\x4a\x1d\x9f\xa6\xec\x08\x4d\x28\x6d\
\xe2\xfd\x3c\xc2\xe1\xa5\x11\xe0\x61\x16\x52\x85\xf2\xb5\xd9\x4a\
\x45\x92\xb2\x63\x7d\x82\xa6\xcb\x53\x01\x38\x04\x00\x8b\x7c\x00\
\x73\x77\x60\xa1\x27\xe0\xb2\x1a\x88\x4a\x01\x72\x0b\xda\x3b\xad\
\xbd\x93\x6b\x19\x33\xee\xa5\x24\xf6\x0c\xc9\xab\x0f\x4b\x52\xa9\
\x7d\xa2\x00\x1b\x26\x9d\xef\x0d\xcc\x5e\x06\x4c\x77\x03\xa6\x3a\
\x03\x93\xed\x81\x49\xd6\xfc\x2e\x03\x2c\x3d\x80\x2d\x7b\x80\x1d\
\xd9\xb5\x6d\x8c\x0d\x7e\xd1\xc4\xe3\x08\x85\x54\x71\x18\xe5\xf5\
\x8a\x04\xac\xd6\x00\x9f\xac\x60\x62\x26\x9f\xe3\x47\xac\x22\x48\
\x66\xb6\x3f\x30\x8d\xd5\xeb\xbb\x02\x13\x6d\x81\x19\x8e\x80\x37\
\xd5\xc9\x2f\xd1\x74\x49\xad\x7a\x91\xe4\xab\xad\x96\x27\xd7\x06\
\xc7\xd7\xb6\xf9\x6f\x04\x64\x6b\x01\xd3\x95\x80\x31\xe5\x35\x5d\
\x4f\x22\x31\x94\x9a\x32\x7b\xec\x02\xdc\x77\x03\x4e\xc9\x94\x9f\
\xca\x18\x91\xe0\x54\xb6\x62\x06\x89\xc8\x43\x80\x63\xdf\x02\x52\
\x1b\xfe\x71\xd5\xbe\x11\x85\x0d\xeb\x93\x35\x5d\x4e\x3c\xe4\x33\
\x1e\x6a\x12\xc8\xbf\xac\xc8\x2e\x11\xf0\xcb\x04\x62\xbf\x06\xd2\
\xce\x03\x5f\x55\x02\x99\xdf\x03\xf1\x45\x80\x2f\xaf\x5b\x91\xac\
\x21\x9f\x9f\x43\x95\x96\x46\x90\x40\x09\xe0\x1f\x99\x57\xdf\xdf\
\xe4\x0e\xd6\x52\xd5\x09\xb5\x6d\x2b\xe2\x68\xac\x75\xec\x73\x50\
\x77\xe2\xc5\x4c\xec\x9b\x05\x6c\x66\xa2\x23\x97\x81\x1f\x1a\x80\
\xd3\x97\x54\xea\xe4\x9c\xf2\xe6\x80\x4d\x79\xf5\xf1\x39\xd5\xad\
\xc9\x67\x81\xe5\xfb\x80\x05\xd1\x8c\x09\x66\xe2\xad\xc0\xa9\x72\
\x80\xe7\xd6\xf4\x4b\x72\x87\x95\xa9\xb7\xc2\xb6\xb5\x77\xba\x92\
\xb9\x39\x0f\x30\x0b\x63\x45\x5b\x28\x73\x3a\x10\xce\x8a\x0f\x54\
\x01\x15\x8d\x40\xe9\x55\x95\xda\x2d\x28\xf5\x96\x98\x79\xb9\xd8\
\x05\x31\xc9\x27\x38\x7e\xc7\x01\xc7\x6d\x80\xfd\x26\x4e\x02\x09\
\x9f\xf9\x51\x78\xe0\x91\xd9\x35\x78\x4a\x72\x85\x07\x1d\x1e\x94\
\xa4\xe9\xb2\x0b\x65\x72\xca\x6e\x11\x0b\x38\xef\x00\x02\x8e\x00\
\xdb\x2f\x00\xc5\x75\x40\x65\xbd\x5a\x13\xbe\xb3\xb0\x41\x24\xb6\
\xe8\x75\x86\x59\x50\x52\x61\xc3\x16\x4a\xee\x99\xc1\xea\xf7\x92\
\x30\xbf\x67\xe6\x2b\x3b\xa4\xbc\xd2\x03\x31\xfb\x72\xbb\x7f\xf4\
\x90\xe8\xe9\xf7\xca\xe8\xd2\xa6\x55\x94\x58\xc6\x8a\xcd\xc3\x69\
\x9a\x04\x56\xcd\x7e\x6e\x38\x05\xe4\x5c\x01\xaa\xee\x00\x45\x55\
\x8d\x77\x6d\x7c\xb5\x33\xed\xfe\xac\x8d\xe8\x1f\x97\x57\x9f\x72\
\x0e\x58\x97\xc7\x11\xcc\x07\xca\x6a\x69\xd4\x35\x5a\xa5\x0c\xa4\
\x07\x6a\xca\x68\x98\x3d\x39\x0f\x49\x48\x7f\x43\x92\xd9\xef\x78\
\x26\x67\x62\x0b\x3a\xdb\x9e\x55\xfb\xe5\x02\x89\x34\x58\x01\xab\
\xbe\x7a\x47\xd3\xb5\x79\xbf\x76\xab\x49\xab\xd6\xa8\x8f\x16\xca\
\x63\x33\xcb\x9b\x77\x96\x01\x09\x74\x7e\xc1\x25\x60\xef\x31\xed\
\x0e\x50\x68\x37\xa1\x44\x20\xfd\x10\xb0\x91\x63\x13\x9a\xa8\x25\
\x51\x14\x18\xaf\xec\xf0\x64\x8f\xad\xa5\xf9\xde\x0c\xb8\xa6\x01\
\x6b\x4f\x02\xbb\x2a\xd8\xbb\x5f\x81\x4b\x8d\x6a\x8d\x4f\x64\xb6\
\x52\xf2\x47\x3f\x3c\x94\x92\x5e\xdc\x78\x37\x83\xb1\xc7\x98\xfc\
\xfc\x35\xb5\x46\xe6\xd3\xbd\x05\x1f\x10\x88\x92\xcc\xc1\xa3\x16\
\x73\x4c\x5c\x14\x6a\x8d\x23\x2b\x96\xd1\xed\xb6\x49\xc0\x32\x4a\
\x1e\x42\xc9\xf7\x4b\x0e\xa7\xe4\x95\xb7\xdb\x3b\xfb\x92\xbc\xf7\
\xbb\x61\x09\x4d\x79\xea\x67\x56\x4e\xd9\x2b\x94\x9a\x2e\xaf\x30\
\x2d\xf1\x07\xb1\x5a\x02\x21\x5c\x16\x66\x3e\xdd\x5b\xcc\x8c\x2e\
\x5f\x18\xdb\x2d\xb9\x57\x0e\x10\x41\xc3\x1c\xbc\x06\x54\xab\x80\
\x93\xe5\xca\x0e\xdb\xee\xe4\x0e\xfd\x1c\xdf\x98\x83\xa5\xca\x8e\
\x0b\xb7\xd9\xb2\xdf\x80\x98\x54\x6d\xcb\x1e\x53\x4d\x4b\x40\xc1\
\xdd\x6c\xce\xb9\x36\x22\xcc\x99\xdc\x81\xed\xf0\x3a\xcc\xe4\xa5\
\x40\xd6\x75\x4a\xfe\x3b\x57\xe7\xc5\xc7\x8d\xda\x9f\xdd\xe1\x1d\
\x91\xad\xbc\xc9\xd8\x9b\x24\x1f\x9b\xa6\x4d\xae\x78\xe2\xff\x01\
\x89\x40\xec\x01\x6e\x32\x4a\x6e\xc9\x7e\x3b\xa6\x32\x39\xcd\xb6\
\x8e\x86\xd9\x5e\xcd\x31\xe3\x7c\xef\x2b\xa8\x6e\x35\x73\x8b\x89\
\x33\x75\x89\xf8\x48\x47\x47\x67\x20\x31\xe8\x19\x90\xee\x0d\x34\
\xb2\x09\x1c\x29\xbd\x72\x2f\xfe\xd4\xde\x59\xd7\xfa\x30\xb9\xce\
\xd3\x3e\x12\x81\x44\x1a\x6c\x19\xe7\xd3\x85\x8b\xc5\xe7\x28\x0d\
\xc7\xe4\xb1\x5c\xa3\xe9\xec\x5b\x6e\x95\x4a\x3d\xdf\x35\x3a\xcb\
\xc8\x36\xe8\x63\x3e\xae\x47\xbc\x49\xbc\xf5\x0c\x48\xf7\xf4\xe6\
\xb9\x6c\x58\x9d\x7a\xbc\xea\x8f\x6b\x4d\x9a\xae\xe5\xe1\x59\x4a\
\x33\xb7\xe8\x0d\x82\x9c\x2e\x31\xe0\x09\x02\xd9\x17\xba\x37\x5a\
\x70\x21\xb7\x14\xd7\x66\x02\xc7\x72\x37\xa5\x3f\xf4\x0b\x67\x96\
\xf2\x9d\x28\xaf\xfb\xd3\xc4\x31\x2c\xe9\x43\x23\xbb\x99\x0c\x19\
\x45\xbc\x2b\x30\x5a\xa0\xe7\xf7\x28\x43\x59\xc0\xd2\xd8\xb4\xe2\
\xe6\xb2\x1b\xed\x7f\xb9\x04\xee\xae\x33\x71\x52\x7c\xc9\xeb\x43\
\x88\xc1\xc4\xeb\x42\x29\xdd\xc7\x08\x54\xd4\x73\x44\x6a\x98\x90\
\x49\x8f\x73\xc6\xbf\xe1\xa8\x9d\x6e\x02\xce\xb5\x00\x57\xda\x80\
\x26\x35\x5f\x2e\xc5\x35\x1d\x73\xac\x03\x12\x19\x32\x99\x98\x42\
\x18\x10\x53\x05\xa4\xef\x53\xde\x9f\x6e\xfe\xb9\x67\x68\x46\xc3\
\xae\xbc\xca\xb6\x79\x4e\x8a\xa2\x59\x8b\x7c\xfd\x78\x7d\xac\x20\
\x37\x9c\x18\x2a\x54\x7c\xed\x01\x09\x69\x7d\x96\x5c\x56\xa9\x89\
\x7b\x25\x57\x5b\xee\x7d\x77\xbd\xe5\xde\x99\xeb\x2d\xf7\xcf\xd6\
\x12\x37\x5a\xee\x9f\xbf\xd1\xdc\x29\xe1\x5c\x6d\x73\xa7\x67\x68\
\x7a\xd3\x98\x49\x86\x4b\x19\x66\x26\x85\xf6\x82\x74\xcd\x74\x8c\
\xbe\xa1\x7c\xc6\x02\xcf\xad\xc3\x46\x8d\xb7\xe0\xef\x59\xc4\x34\
\x41\x7a\xbc\x50\xeb\x6d\x41\x62\x90\xb6\x1d\x34\x97\x25\x7b\x94\
\x65\xba\x24\xf2\xe0\x3c\xe7\x88\xc3\x26\x0e\xa1\x47\x8d\xed\x82\
\xf3\xe7\xda\x06\x15\x1a\xda\x04\x9e\x36\x94\xad\x29\x36\xb4\x0e\
\x28\x95\x30\x61\xa6\x65\x34\x83\xec\x09\x47\xc2\xa9\x17\x1c\xc5\
\xbd\xc5\x84\x8c\xb0\x22\x2c\x05\xb1\xb9\xc4\x74\x62\xa2\x50\x43\
\x52\xe2\x8d\x1e\x15\x06\x8a\xfe\x0c\x13\x72\x49\xf2\x1a\x11\x0b\
\x08\x6b\x71\xa8\x33\xe1\x4a\xc8\x89\x2f\x08\x77\xc2\xa3\x17\xdc\
\xc5\x3d\xb9\x78\xd6\x59\xc4\x5a\x8b\xb3\x8c\xc4\xd9\x63\x45\xae\
\xc1\x22\xf7\xab\x27\xa0\x2b\xe4\x18\x2a\xe4\x99\x28\xe4\x9a\x2b\
\xe4\xb3\x14\x72\xca\x84\xbc\x2f\xbd\x05\x03\x84\x21\xf4\x84\x41\
\x46\x0b\xc3\x4c\x16\x06\x92\x8c\x64\x48\x18\x13\x26\x92\xd1\xfa\
\x32\xa1\x78\xc6\x58\xc4\x3c\xdf\x84\xe2\xa3\x2b\x46\x43\x4f\xb0\
\x1b\x2e\x98\x4a\x72\xbd\x47\x4c\x20\x3e\x20\xf4\xfb\x1a\x43\x71\
\x4f\x5f\x3c\x3b\x41\xc4\xf6\x3d\x86\x8f\x7c\x74\x05\xab\xd7\x45\
\x7f\x86\x88\x00\xa9\x5f\xef\x10\x23\x88\x91\xcf\x5b\x44\xe2\x99\
\x11\x22\x66\x98\x38\xe3\x89\x45\xd4\xf3\x2e\xf8\x1b\x95\x0d\x18\
\x5b\x26\xd0\x37\x16\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
\x82\
\x00\x00\x04\xbf\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x04\x86\x49\x44\x41\x54\x78\x5e\xed\x97\x4b\x68\x5c\x55\
\x1c\xc6\x7f\xe7\x3e\xe6\xce\x9d\x4c\xdb\x74\xa6\x51\x62\x1f\x31\
\xb5\x3e\xaa\x56\x14\x6d\x4b\xc5\xa0\x45\x5c\x88\x42\xd7\x45\x44\
\x5d\x98\x4d\x57\xd2\xba\x13\x44\x5c\x88\xa5\xd2\x45\x49\x17\x51\
\x5a\xdc\xb9\x11\x8a\x62\x17\x15\x74\x40\x25\x62\x6c\xa8\x24\xe9\
\xcb\x3c\x6c\x4c\x5b\xd3\x47\xd2\xc9\x64\x3a\xaf\x7b\xef\xf1\xe4\
\xdc\x99\x0c\x32\x99\x6b\x4b\x07\x5d\xe8\x07\x3f\xce\xdc\x33\x7f\
\xbe\xf3\xdd\x73\xce\x7d\xf1\x9f\x97\xa0\xaa\xde\xde\xde\x97\x80\
\xad\xfc\x33\x1a\xec\xef\xef\xff\x0a\xc0\xa2\xae\xad\x9d\x6b\x37\
\xbc\xbb\x71\x63\x37\xa6\x69\x72\xfa\xa7\x32\x67\x06\x0b\x2c\x64\
\x7d\xee\x44\xc9\x55\x26\x9b\xb7\xba\x3c\xbc\x2d\x86\xef\xfb\x4c\
\x4c\x4c\x72\xf9\xe2\xd4\x7b\x40\x43\x00\xbe\xf9\x36\xc3\xf0\xe8\
\x19\x52\xa9\x35\x5c\xb9\x60\xf1\xc6\xbe\x67\x68\x85\x8e\xf6\x7f\
\xcf\x95\xa2\xc7\xc0\x0f\x19\x52\xe9\x0e\x36\x3f\xb0\x11\x80\x86\
\x00\xb6\x65\xd3\xde\x9e\x22\xbd\xa6\x03\xd7\x74\x89\xc7\xe3\xb4\
\x42\x5d\xf7\xdd\x43\x62\x55\x41\x9f\x98\x1a\x03\x60\xf9\x00\x31\
\x27\x8e\xeb\x26\x48\x24\x92\x38\x66\x1b\xe7\xce\x8d\x83\x65\x81\
\x1d\x03\xc7\x41\x25\x02\x55\xa3\xdb\x98\xa3\x88\x85\xff\x7b\x1e\
\x94\xcb\x8a\x12\x14\x8b\x50\x52\xe8\xb6\x04\x95\x32\xab\xd3\x2b\
\x31\x1d\x93\xc7\x1e\x7f\x8a\xf1\xb1\xf3\xcd\x03\x18\xa6\xa1\xb0\
\x14\x26\xea\x80\xed\xdb\x9f\xc4\xda\xb5\x0b\xb9\x76\x2d\x48\x89\
\xc8\xe5\x08\x76\xec\x20\xd8\xb3\xa7\xde\xef\xfb\x3a\x9c\xbf\x77\
\x2f\x74\x75\xa9\xfe\xdd\x61\x3f\x84\xfd\x07\x0f\x72\xe2\xc4\x19\
\xed\x19\x7a\x8b\xe6\x01\x02\x3f\x50\xf8\xf8\x9e\x22\xf0\xf4\x12\
\xf8\xed\xed\x58\x47\x8e\x22\x90\xc8\xb9\x59\xfc\x37\x7b\x71\xf6\
\xed\xc3\x53\xfd\xf6\xd1\x23\x48\x40\x9e\x1c\xc2\xfc\xe8\x00\xc6\
\xc7\x9f\xe8\x7a\x5b\xd5\x4b\x01\x02\x00\x89\xa7\xbc\x4c\xe5\x1b\
\x68\x64\x44\x00\x29\xf1\x03\x3f\xc4\xf3\x19\x19\xf9\x8d\x4d\xd7\
\x66\xc9\xbf\xf2\x2a\xc2\x10\x04\x2a\xd0\xf5\xb7\xde\xe6\x66\x60\
\xd0\x2d\x04\x93\xc9\x95\x60\x5b\xf0\xec\x73\x74\xef\xdf\xcf\xa4\
\x34\xd8\x74\x23\x4b\xfe\xb5\xd7\x21\x08\xc8\x6d\xdb\xc1\xdc\x0b\
\x2f\x6b\x2f\xac\xd0\x37\x90\x11\x01\x64\x20\x09\x34\x01\x81\x0c\
\xe8\xe9\x79\x82\xb9\xbb\x3b\xe8\x3c\xfe\x25\x35\xdd\x4b\xa8\x39\
\xc3\xa0\xc7\x32\x41\x4a\x2a\x43\x27\x29\x74\x77\xd3\xb3\x7a\x25\
\x73\xe9\x14\x9d\x5f\x1c\xa3\x2e\x18\x1d\x9e\x42\x04\x81\xf6\x96\
\x41\x44\x00\x90\x21\x32\xc4\x71\x1c\x84\x10\x61\x0b\x48\x04\x08\
\x89\x40\x40\x36\xcb\xfc\xee\xdd\xba\xce\x48\xa7\x49\x7d\xb8\x1f\
\xb3\x5a\x1f\x77\xe2\x48\x21\x41\xa2\x6b\x6b\x7e\xa0\x89\x0a\x20\
\x42\x44\xc8\xc9\x91\x29\x64\xdf\xa7\x4c\x4f\xfc\x01\x31\x1b\xe5\
\x0c\x8e\xad\x88\xc1\xd0\x29\xb0\x6d\x85\x09\x9e\x8f\xac\x78\x88\
\x62\x19\x8e\x1d\x67\xfa\x5a\x0e\xd4\x6f\x59\xae\x20\xca\xde\x92\
\x1f\x68\x9a\x07\x10\xa2\x86\x20\xd9\x6e\xb3\xf3\xe9\x47\xb9\x25\
\x99\x66\x18\x2a\x99\x60\x39\x9d\x1a\x1c\xa2\x58\x14\x35\xff\xe6\
\x01\x10\x02\xa1\x31\x58\xbf\xbe\x03\xdb\xb6\x69\x81\xb4\xd7\xd8\
\x58\x4e\xfb\x22\x22\x67\x40\x60\x18\xa6\x42\x90\x70\x5d\x7e\x3e\
\x75\x9a\x55\x2b\x92\xfa\xfe\x70\xfb\x0a\x2f\xeb\x6c\x6e\x41\x7b\
\x19\x86\xa1\x11\x51\x01\x0c\x21\x10\x86\xd0\x85\x17\x2f\xcd\x70\
\xf5\x7a\xb6\x1a\x0c\x90\x20\xa1\xe1\x58\x84\x7b\x4c\x4b\xd0\x28\
\x09\x94\x4a\x45\x4c\xc3\x08\xbd\xa3\x02\x84\x05\x3a\xa9\xc2\xd4\
\x4f\xc5\x56\xc8\x54\x5e\x42\xa1\xbc\x55\xfb\xb7\x4b\x60\xe8\x81\
\x2f\x4c\x8e\x31\x3d\x3d\x45\xa1\x90\xe7\x4e\xe4\xba\x6d\xac\x5b\
\xb7\x81\x74\xc7\x5d\xb7\xb2\x04\x46\x18\x40\x11\x48\xc9\x07\xef\
\xbf\xc3\xfc\xfc\x3c\xf9\x7c\x9e\x4a\xa5\xb2\x14\xd0\xb2\xac\x25\
\x6c\xdb\xd6\xad\x0a\xad\xc3\x03\xfa\x46\x56\x2e\x97\x97\xf8\xec\
\xf3\xe3\xda\x53\xa1\xc7\xa8\x0b\x8c\xc6\x19\x10\x08\x55\xb8\x3a\
\x95\xa6\xa6\x81\x81\x01\xfa\xfa\xfa\x38\x7c\xf8\x30\x87\x0e\x1d\
\xd2\xc7\xb7\x21\xed\xa5\x3c\x15\xfa\x2a\x8b\x0a\x50\xdf\x84\xae\
\xeb\x52\xd3\xc8\xc8\x08\xa9\x54\x8a\x74\x3a\xad\x19\x1e\x1e\x26\
\x4a\x52\x4a\xea\x42\x7b\xd5\x4e\x4c\x44\x5f\x86\xb5\x65\x10\x48\
\x59\x2f\x4c\x24\x12\xfa\xc9\x58\x9d\x62\xdd\x46\xa8\x61\x90\xb0\
\x5e\x52\xed\x8d\x98\x01\xaa\x09\x17\x43\xd4\x4d\xea\x9b\x27\x34\
\xbf\xfd\xab\x43\x82\x44\x11\x3e\xe4\xa2\xee\x84\x20\xaa\x80\xa0\
\x55\xf2\x03\x4f\xbf\x0b\x94\xcb\x25\x4d\xd3\x19\xf0\xbc\x32\xa5\
\x52\x89\x52\xb1\xa8\x77\x76\xcb\x24\x21\xb7\x90\x63\x66\xe6\x32\
\x37\xe6\x66\x9b\xcf\xc0\xcd\x85\x9b\xcc\x67\xb3\x38\x4e\x9c\x15\
\xc9\xb6\x16\x06\xf0\xb9\x30\x3e\xc6\xd8\xf9\xb3\xb4\x25\xdc\x0c\
\x30\xb8\x6c\x80\x42\xa9\xc0\xd5\xab\x33\x78\xbe\xa7\x03\x64\xbe\
\xfb\x91\x64\x32\xc9\xce\xe7\x5f\x6c\x78\x8e\x4f\x4d\xcf\xd0\x5c\
\x02\x89\xc4\x57\x3e\xb3\xb3\x37\x50\xdf\x01\x8c\x8e\xfe\x42\x3c\
\x66\x67\x1e\x7a\xf0\xfe\x03\x40\x66\xd9\x00\x97\xa6\x7f\xe7\xd7\
\xb3\xa7\xf5\xa6\xfb\xda\xb2\xf4\x86\xbb\x13\x49\x19\xbe\x5d\xf9\
\x9e\x47\x57\x57\x57\x66\xcb\x96\x47\xf4\xe0\xea\xab\x28\xff\x6f\
\x7c\x9a\x0d\xd6\x07\xaf\xeb\x7f\xfd\x09\x8d\xfd\xd4\x8a\xd6\x19\
\x48\x3f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\x7e\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x06\x45\x49\x44\x41\x54\x58\xc3\xc5\x57\x79\x50\xd5\x55\
\x14\xfe\x3d\x78\x8b\x5b\x91\xcb\xa4\x19\x0a\xa8\x21\xe6\x08\x82\
\x21\xb2\x48\xa1\x52\x9a\xe2\x40\xb8\xc5\x26\x25\x0a\xa5\xe8\x28\
\x28\x35\x28\x04\x62\x46\xac\xef\xb9\xa0\x82\x90\xca\xa2\x20\xc3\
\x08\x6a\x21\x20\x13\x30\x88\x06\x21\xbb\x3a\x98\xd8\x60\x8e\xd3\
\x1f\x2d\xc8\xa8\x85\xef\x74\xbe\xdf\x5c\x8c\x99\xca\x1e\x96\xf5\
\x66\xbe\xb9\x9c\x73\xbe\x73\xee\x77\xd7\xdf\x45\x22\x22\xe9\xff\
\xc4\xe3\x83\x92\xa4\x60\x4c\x66\xb8\x31\x7c\x18\x1b\x18\x11\xa2\
\xf5\x11\x7e\xc4\x15\xff\xaa\x00\xd1\xf1\x24\xc6\xd2\xe5\xcb\x97\
\x1f\x48\x4b\x4b\x3b\xcf\xbf\xce\x8e\x8e\x8e\x9f\xbb\xbb\xbb\xf5\
\x68\x61\xc3\x8f\x38\x78\x82\xaf\xf8\xc7\x02\xf8\x67\xc4\xb0\x73\
\x75\x75\x8d\x4a\x4f\x4f\xaf\x69\x6b\x6b\xeb\x61\xd0\x99\x33\x67\
\x28\x2a\x2a\x8a\x42\x43\x43\xe5\x16\x36\xfc\x88\x83\x07\x3e\xf2\
\x90\xff\xc4\x02\x44\xe7\xb3\x3c\x3d\x3d\xb5\xc5\xc5\xc5\x57\x5b\
\x5b\x5b\x29\x33\x33\x93\x56\xf9\x07\x5e\xb7\x5b\xb8\xa2\x72\xc2\
\xe2\xf7\x4e\x8e\xf0\x8a\x3e\x8a\x16\x36\xfc\x88\x83\x07\x3e\xf2\
\x90\x3f\x18\x11\x7f\x58\x6f\x27\x27\xa7\x98\xa2\xa2\xa2\xab\x8d\
\x8d\x8d\x14\x1d\x13\x7b\xc7\x79\x59\x50\x99\x89\x4f\x42\x96\xe4\
\x9f\xa1\x95\xd6\xe4\x24\x4b\xeb\xf2\x13\xe5\x96\x6d\xf8\x11\x07\
\x0f\x7c\xe4\x21\x7f\x30\xfb\x62\xa0\x00\x25\xc3\x5b\xab\xd5\xd6\
\x36\x37\x37\x53\xaa\x6e\xcf\x1d\x87\xc0\xc8\x02\x69\x75\x66\xaa\
\xb4\xe1\xf4\x27\x52\xc4\x85\x58\x29\xba\x25\x4a\x8a\xbd\xb2\x43\
\x6e\x61\xc3\xcf\x71\xf0\xc0\x47\x1e\xf2\x51\x07\xf5\x0c\x16\x20\
\x46\x6f\xe5\xe1\xe1\x71\xb8\xb6\xb6\xf6\x6e\x49\x49\x09\xbd\xbd\
\x65\xe7\x39\xe9\xdd\xec\x64\x69\x6b\xf5\xce\xb1\xa9\x5d\x31\x2b\
\x8b\x7f\xd0\x45\x5d\xb8\x77\x64\x7f\xf3\xaf\x05\x68\x61\xc3\x8f\
\x38\x78\xe0\x23\x0f\xf9\xa8\x83\x7a\x86\xcc\x42\xbf\x00\x63\xc6\
\xc2\xb8\xb8\xb8\xea\x86\x86\x06\x4a\xd2\xed\xbf\x3e\x36\xe4\xf0\
\x21\xb9\x78\xfc\xad\x0f\x03\xca\xee\xeb\x74\x2d\xfa\xbc\xd4\x16\
\xca\xe9\x07\x6c\xf8\x11\x97\x45\x32\x1f\x79\xc8\x47\x1d\xd4\x43\
\x5d\x43\x05\xa8\x19\x6b\x72\x73\x73\x6f\xd4\xd5\xd5\xd1\x96\xf8\
\xb4\x0a\x4c\xef\xb4\xb4\x9b\xbb\xc3\xaa\xef\xa7\x9f\xbf\x45\x55\
\x95\xb7\xa8\xba\xa2\x9b\xbe\xec\x07\x6c\xf8\x11\x07\x0f\x7c\xe4\
\x21\x1f\x75\x50\x0f\x75\x0d\x15\x30\x94\xf1\x41\x69\x69\x69\x4f\
\x55\x55\x15\xbd\xb9\x3d\x33\x0f\x6b\xbc\xa9\xfc\xc7\xc3\x92\x55\
\x10\x59\x2e\xd9\x45\x2e\x01\x3a\x9a\xe3\x9b\x42\x0e\x3e\x29\x72\
\x0b\x1b\x7e\xc4\x65\x1e\xf3\x91\x87\x7c\xd4\x41\x3d\xd4\x35\x54\
\xc0\x30\x46\x5c\x79\x79\xb9\xbe\xa6\xa6\x86\x26\x87\x9d\x38\x88\
\x8d\x96\xd4\x70\xef\x84\xe4\x7e\x92\xd4\x2b\x9b\x68\x74\x60\x2b\
\x99\xae\x6b\xa3\x49\xef\xb7\xcb\x2d\x6c\xf8\x11\x97\x79\xcc\x47\
\x1e\xf2\x51\x07\xf5\x50\xd7\x50\x01\xc3\x19\x91\x3c\x75\x3d\xf5\
\xf5\xf5\xe4\x93\x7a\xfa\x18\x76\x7b\x78\xcd\x2f\x87\x24\xef\xcb\
\x24\xad\x65\xd2\x1a\xc6\x3b\x03\x00\x1b\x7e\x8e\xcb\x3c\xe6\x23\
\x0f\xf9\xa8\x83\x7a\xa8\x3b\x98\x19\x58\x9f\x98\x98\x78\x13\x9b\
\x48\x9b\x5f\xf6\x05\x46\x34\x23\xfb\x6e\xec\xb6\x3a\x3a\x18\x56\
\x4d\xa7\x83\xca\xa8\x7c\x5d\x05\x9d\x0b\x66\xa0\x85\x0d\x3f\xe2\
\xe0\x81\x8f\x3c\xe4\xa3\x0e\xea\x0d\x66\x06\xb0\x07\xbc\x43\x42\
\x42\x2e\xf0\x31\xa2\xca\x9a\xba\x6b\x93\x3f\xbe\x98\x24\x25\x7f\
\x1f\x21\xa5\xf5\x85\x49\x09\x94\x29\x23\x91\x32\x1e\xa1\xdf\x87\
\x38\xf3\xc0\x47\x1e\xf2\x51\x47\xdc\x05\x43\x07\x73\x0a\x5e\xb1\
\xb7\xb7\xcf\xcd\xc8\xc8\xe8\x6d\x6a\x6a\x22\x6d\x51\xcd\x29\x29\
\xee\x7a\xa4\xb4\xef\x5e\xb8\x94\x42\xa9\x52\x3c\xe5\x49\x9f\x52\
\xce\x23\xc0\x86\x1f\x71\xe6\x81\x8f\x3c\xe4\xa3\x0e\xea\x0d\xe6\
\x14\xe0\x1e\x78\x8e\xb1\xd6\xd7\xd7\xb7\x81\xef\x75\xaa\xff\xfa\
\xf2\xed\x2d\x79\x5f\xa5\xcb\xe7\x5c\x77\x2f\x52\x4a\xd6\x27\xf3\
\x88\xb3\xb8\xe3\x7c\xb9\x85\x0d\x3f\xc7\xc1\x03\x1f\x79\x3e\x3e\
\x3e\x8d\xa8\x23\xea\x19\x0f\xe6\x26\xc4\x32\x38\x58\x58\x58\xe8\
\x78\x0a\x6f\x54\x56\x56\x52\x53\x4b\xeb\x77\x19\x15\xcd\x85\x96\
\x7b\xbf\xd9\x2d\x2f\x87\xae\x67\xab\xb4\xef\x7e\xb8\xdc\xb2\x0d\
\x3f\xe2\x97\x9b\x5b\x6e\x83\x1f\x1c\x1c\xdc\x6b\x6e\x6e\x7e\x91\
\xeb\x04\x30\x5e\x34\xf8\x26\x1c\xf0\x2d\x30\x61\x2c\xb6\xb2\xb2\
\x3a\xe6\xe7\xe7\x77\x23\x3f\x3f\x9f\xda\xdb\xdb\xa9\xb1\xed\x6a\
\xc7\xf1\x9a\x8e\x53\xa1\x85\x57\x0e\xd8\xec\xbf\x16\x8f\x16\x36\
\xfc\x88\x83\xc7\xfc\x5e\x2f\x2f\x2f\xf2\xf7\xf7\xff\xc9\xc4\xc4\
\x24\xd7\x7a\x9c\xd1\x51\x3c\x58\x06\xfb\x35\xc4\x5e\x18\xcd\x58\
\x62\x6a\x6a\xba\xcf\xc5\xc5\xa5\x91\x67\xa3\x97\x8f\x15\xe1\x43\
\xd3\xd9\xd9\x49\x5d\x5d\x5d\x72\x0b\x1b\x7e\xc4\x99\xd7\xc4\xfc\
\x4b\xe8\x9c\x6d\xda\xf8\xc6\xd4\x07\x47\xbc\x34\x0f\x97\x4d\x57\
\x96\xfc\x9d\x88\x3f\x7b\x0f\x68\x84\x08\x57\x46\xa8\x99\x99\x59\
\xa1\xb5\xb5\xf5\x25\x47\x47\xc7\x6f\xdd\xdc\xdc\xee\xba\xbb\xbb\
\xeb\xd1\xc2\x86\x1f\x71\xf0\x18\x41\x3c\xf2\xe3\x81\x73\x2d\x1f\
\xc4\xbf\xaa\xa2\x03\x8b\xd4\x94\xcd\x22\xfc\x6c\x94\x39\x8f\x13\
\xf1\x57\x2f\x22\xb5\x58\x0e\x53\xc6\x02\x71\xaf\xe3\x62\x49\x60\
\xec\x65\x24\x32\xb6\x8b\xcd\xf6\x3a\x63\x22\x63\xca\xb8\xa1\x8a\
\xec\xd0\x19\x4a\xfd\x8e\xd9\x2a\x4a\x78\x4d\x45\x07\x59\x44\xce\
\x5b\x9a\xbe\x80\x99\x4a\x2c\xc7\xbc\x3f\xdb\x13\x8f\x7b\x13\x2a\
\xc5\xc6\xc4\x6e\x1e\x2b\x3a\xc1\x43\xe3\x25\x81\x49\x42\xe0\xf3\
\x82\x33\x82\xb1\xc8\x7a\xa4\xe2\xec\x26\x6b\xa5\x3e\xda\x41\x45\
\x49\x6e\x2a\x4a\x5f\xac\xa6\x3c\x6f\x4d\x9f\xff\x4c\xe5\x31\x31\
\x18\x23\x51\x5f\x61\xe8\xab\xd8\x58\xcc\x08\x6e\xcb\x67\x19\x23\
\xc5\x12\x8d\x11\xed\x28\xe1\x1b\x29\xfe\xf6\xb4\x1b\xa5\x28\xd8\
\xcc\x22\x3e\x9a\xa3\xa2\xe4\x79\x2a\xca\x58\xa2\xa6\x13\xcb\x34\
\x7d\xab\x6d\x95\xd9\xe2\x33\xad\x7c\x24\xc4\xa0\x57\xcb\xef\x33\
\x32\x84\xf1\x8c\xe8\x08\x23\x7f\x41\x1c\xb7\x09\x0c\x33\x86\xb9\
\x80\x2f\x8b\x28\x0c\xb3\x51\xea\x63\x1c\x55\x94\x32\x5f\x4d\x99\
\x1e\x6a\x2a\x58\xa1\x79\xc8\xcb\x81\x4b\x6a\x11\x43\x25\x8b\x30\
\xb0\x73\x63\xd1\xb9\xc9\x80\xe5\x98\x22\x5e\x3d\x2f\x33\x66\x30\
\x6c\x18\x33\x07\x60\xad\xed\x28\x45\x71\xb8\xad\x52\xbf\xd3\x49\
\x45\xda\x05\x6a\xca\x62\x11\x27\x57\x68\xf4\xfe\xb6\xca\x3c\x21\
\x42\x69\x88\x00\x23\x31\xfa\xe1\x62\xd4\x16\xa2\x53\x5b\xc6\x6c\
\xc6\x1c\x86\x33\x63\xae\x38\x39\xfd\x80\xbd\xd1\x76\xb4\xe2\xec\
\x36\x16\xb1\xcb\x59\x45\x7b\xdc\xd5\xf4\xd9\x52\x0d\x15\xae\xd4\
\xe8\x1d\x4c\x8d\xf0\x82\x1e\x67\xa8\x00\x95\x58\xff\xf1\x8c\xa9\
\xe2\xfd\xef\x28\x3a\xc2\x7f\x47\xf3\x19\xee\xe2\x44\xf4\xc3\x5d\
\x6c\xba\x30\x16\x51\x1a\x61\xc7\x22\x5c\x54\xb4\x97\x45\xac\xb7\
\x57\x55\x61\xaf\xc8\xb3\xfa\x1f\x08\xc0\xf1\xdb\xcc\x22\x3e\x8f\
\x98\xa5\xd4\xaf\x9a\x6a\x8c\x57\xb3\xaf\x38\x41\x43\x9e\xf6\x12\
\x38\x0b\xa1\x0e\x8c\x90\x09\xc3\x15\x59\xe2\x3b\x31\x45\x0c\x48\
\xfd\x34\x37\xa1\x8d\xf0\x4f\x67\x4c\x63\x58\x8a\x99\x1b\x2f\x8e\
\xec\x30\x83\x36\xe1\x13\x1e\x43\x73\x61\x4f\x14\x53\x3d\x5e\x08\
\x1f\x23\x06\x31\xac\xff\x18\xfe\x06\xa3\xbf\x6b\x5c\x6e\x71\x2e\
\x0b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\x94\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x04\x26\x49\x44\x41\x54\x58\x85\xc5\
\x96\x6d\x4c\x53\x57\x18\xc7\x3b\xc5\xa9\x73\x4e\x21\xc6\x45\x65\
\xbe\xc4\xf8\xc2\xc8\xc4\x84\x2d\x43\x08\x74\x33\x6a\xf4\x83\x73\
\xcb\x14\x4c\x8c\x89\xc9\x8c\xc9\xa2\x26\x66\x89\x19\x59\x50\xdc\
\xa7\xc5\x84\x7d\x33\xc6\x97\xf8\x61\x5b\xf4\x83\x13\xfc\x60\x8c\
\x41\x37\xd4\x11\xa7\x20\x82\x88\xa0\x85\xad\xa5\xb5\x40\x5b\x4a\
\x69\x7b\x5b\x5a\x28\xf2\xec\xf9\xf7\x9c\xb3\x7b\x21\x8a\x55\xae\
\x91\xe4\x97\x73\xee\xe9\xbd\xe7\xff\x7b\x9e\x7b\x7b\x8b\x85\x88\
\x2c\x6f\x92\x37\x1a\x9e\xb2\xc0\x67\xdb\x8f\xe4\x1a\xd8\x33\x86\
\x72\xe6\xa4\xa4\x82\xc9\x33\x55\x80\x37\x2c\x2d\x3d\x7a\xd6\xa6\
\x38\x7f\xf9\x76\xb7\x91\x9b\x75\x6d\xfe\xd6\x76\x57\xb8\xdd\xee\
\x8e\x34\xb7\x39\xc2\x5f\xec\x3e\xda\xc4\xd7\xac\x37\x53\xa0\x81\
\x47\x1a\x19\x21\x52\xa3\x9a\xab\xbf\x58\x2c\x4e\x1e\x8f\x97\x86\
\x87\x87\xa9\xb9\xb5\x23\x6a\x2d\x3e\x7c\x8a\xaf\xcb\x36\x4d\x40\
\x85\x3e\x0f\x4d\x8b\x50\x4b\xcb\xc3\xa4\x4c\x22\x91\xa0\xea\x1b\
\x0d\x01\x6b\xc9\xe1\x23\xa9\x48\xa4\x24\xf0\xf4\x29\x71\x75\x3a\
\x63\x8f\x83\x41\x8d\xea\xeb\xef\xfe\xdf\x91\x48\x24\x42\xd7\x6a\
\x1b\x93\x12\xa6\x09\x0c\x25\x9e\x4f\xa0\x5f\xa3\xdb\x77\xea\x47\
\xdd\x96\x48\x34\x4a\x85\x5b\x7f\x68\x34\x45\x20\x31\x3c\x3a\x70\
\x70\x68\x34\xc1\x50\x94\x6e\xfe\xf5\x37\x5d\xbd\xfa\x07\x5d\xa8\
\xac\xa4\xaa\xaa\x8b\xf4\x67\xcd\x75\xda\xb8\xa3\xec\xa1\xc5\x62\
\x79\x6b\xc2\x02\x08\x1d\x88\x0b\x62\x83\x02\x04\x63\xc4\x9a\x16\
\x4d\xd0\x23\x9b\x83\x2a\x2f\x5e\xa2\xd3\x67\x7e\xa1\xb3\xe7\x7e\
\xa7\xda\x5b\x77\x28\xff\xcb\x83\xf7\x4d\x11\x88\x4b\x81\x48\x5c\
\x17\x31\x12\x8d\x8d\x50\x5f\x28\x4e\xae\x6e\x3f\x75\xba\x3c\xe4\
\xe6\xb1\x8f\x6f\x0b\x3f\x03\xf7\x4c\x11\x88\x71\xb5\xa1\x01\x6e\
\x75\x54\x48\x18\xe7\x18\x81\x16\x13\xeb\x18\x93\x62\x7c\x8d\xfc\
\x0a\x4f\xfc\x19\x88\x0e\x8a\x8d\x55\x90\x31\x10\xf3\x40\x44\x5f\
\xc3\x1c\xeb\x90\x33\x4d\x40\x93\x55\xf7\x69\x22\x00\x8c\x9d\xab\
\x4e\xa8\x75\x48\x9b\x26\x10\xe6\xca\x7a\xc3\x62\x63\x8c\xbe\x90\
\x08\xf2\x04\xf5\x40\xac\xe1\x58\x8d\xb8\xc6\x34\x81\x20\x57\xdf\
\xd3\xaf\x87\x63\x04\xc6\x40\x88\xe0\x9c\xd7\x22\x10\xe0\xd6\xba\
\xfb\x88\xba\x02\x22\x04\x01\x4a\x06\x6b\x00\x6b\x6a\xee\xf2\xf3\
\xed\x18\x30\x59\x00\x9b\x22\x1c\x38\x7b\xc5\x31\xa4\x30\xfe\xe3\
\xd5\xe7\x10\x80\x18\xae\x31\x55\x00\xa1\xd8\x1c\x63\x87\x47\x88\
\x20\xd0\xd1\xab\x77\x07\x73\x25\xe7\xd7\x4c\x14\xf0\x86\xc5\xc6\
\x08\x40\xb5\x10\x30\x0a\x19\x3b\x82\x35\x5b\x8f\xc9\x02\x5d\x41\
\xbd\x3a\xbb\x8f\xe8\x71\xb7\x10\x41\x28\x64\x94\x18\x3e\xc3\x1c\
\x02\x3d\x21\x21\x80\x37\xe1\x78\x6f\xc3\x94\x04\x50\x0d\x42\x11\
\xd6\xd6\x25\xc2\x70\xac\x50\xc7\x10\x50\x1d\x72\xf7\x43\xa0\x1c\
\xaf\xe2\x29\x4c\x1a\x33\xe9\x59\x32\x29\x09\xf4\xb2\x40\xab\x5b\
\x60\x0c\x57\x32\x00\x55\xe3\x58\x75\x01\x1d\xe0\xdf\x82\x26\x0e\
\x7c\x97\x79\x87\x99\x6a\x14\x49\x49\x00\x27\xa2\x0a\xdc\x02\x04\
\x22\x44\x85\xb7\x3c\x11\x42\x08\x55\xe1\x4e\xd9\xfe\xfb\x4e\x7e\
\x16\xf8\x9a\xa2\xe2\x43\xcd\xbc\xc7\xfb\xcc\x1c\x66\x96\x14\x41\
\x47\x26\xbd\x50\x40\xb6\x6b\xb2\xb5\xa4\xbc\x11\xed\x6c\xea\x24\
\x7a\xe0\x12\x41\x08\x86\x00\xc0\x31\x3e\xfb\x97\xbb\xe0\xe4\x87\
\xb0\xc3\x2b\xaa\x77\x7a\x82\x43\x05\x5f\x97\xd6\xf0\x1e\xcb\x99\
\x25\xcc\x7c\x26\x5d\x4a\xa4\xa9\x2e\x8c\x27\x80\x56\xa5\x41\xc0\
\xe1\xd7\xab\x6e\xb0\xeb\xed\x6f\x76\x8a\x96\x23\x34\x29\xd9\xee\
\x8d\x9f\xbf\x52\x17\xf8\xe6\xfb\xe3\x8e\x82\xaf\x0e\xd6\xe6\x7c\
\xbe\xf3\x47\xde\x23\x97\xf9\x88\x59\x26\x25\xde\x63\xde\x56\x5d\
\x78\x91\xc0\x14\xdc\xc7\x27\xfd\x7a\xbb\xdb\xb9\xc5\x75\x76\x11\
\x8a\xf5\x7b\x36\x6f\xfc\xd8\xaf\xd5\xbe\x92\xbd\x15\x8e\xbc\xcd\
\x07\x6a\x56\xaf\xdd\x75\x62\xfe\xd2\xdc\x5d\x7c\xed\x5a\xc6\xca\
\x14\x30\x9f\x30\xd9\xcc\x22\x26\x83\x99\xf6\x52\x02\xa8\xee\x11\
\x57\xdd\xc9\x9d\x70\xf1\xf7\xbc\x11\xa1\xbf\x55\xfb\x8a\xf7\x56\
\xd8\x11\x9a\x9d\xbf\xed\xa7\x8c\x79\xcb\xb6\xf3\xf9\x1b\x98\xf5\
\xcc\x3a\xb3\x04\x92\xb7\x20\xc4\x3f\xad\x0d\x36\x5f\xec\xf8\xb9\
\x6b\x3d\x25\xfb\x7e\xee\xc8\xdf\xf2\x5d\xf5\x2a\xeb\x8e\x43\x73\
\x32\xb3\xb6\xf0\x39\x85\x4c\x91\x81\x42\x19\xba\x86\xf9\x74\x22\
\xb7\x20\xf9\x10\x16\x6d\x2b\x2b\x43\x17\xf8\x3f\xdc\xaa\x8f\x37\
\x7d\xbb\x3f\x73\x45\x1e\x36\x5e\xc9\x7c\x28\x37\xce\x61\x56\x1b\
\xc8\x91\xeb\xa8\x38\xeb\x95\x1f\x42\x83\x44\x9a\x6c\xd9\x4c\xd9\
\xbe\xb9\xcc\x3c\x66\x01\xf3\x81\x6c\xeb\x62\x03\x38\x5e\xc8\x64\
\xca\xd0\x57\xfb\x1a\x3e\x43\x02\x6d\x9b\xce\xcc\x90\x32\xd8\x70\
\xb6\xac\x2a\xc3\x40\xba\x5c\x9f\x25\xdb\x3d\xee\x8b\xe8\x3f\x61\
\x3e\xe0\x61\x6f\x4e\x8f\x30\x00\x00\x00\x00\x49\x45\x4e\x44\xae\
\x42\x60\x82\
\x00\x00\x06\xfb\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x06\x8d\x49\x44\x41\x54\x58\xc3\xed\
\x57\x79\x54\x8d\x69\x1c\xbe\x46\xe6\x18\x63\x16\x63\x3b\x0d\x33\
\xd9\xc2\xd1\x62\x89\x44\x1b\x52\x88\x5b\x42\x8b\xf6\xb2\x84\xb4\
\x58\xba\x2a\x57\x8b\xa5\xba\x15\xe9\xa6\x28\x7b\x22\xd7\x70\x42\
\xf6\x90\xce\xb1\x4b\x24\x0d\x47\x0d\x31\xb2\x9e\x28\xe4\x4a\xcb\
\x33\xcf\xc7\xe5\xcc\x41\xca\x31\x73\x66\xfe\xf0\x9d\xf3\x9c\x7b\
\xce\xfd\xbe\xf7\xf7\x3e\xdf\xf3\x3c\xbf\xdf\x7b\xaf\x08\x80\xe8\
\xbf\x84\xe8\x0b\x81\xff\x15\x01\x53\x87\x10\x6b\x13\xdb\xe0\x08\
\x63\xdb\xe0\x54\xe3\x09\x81\x69\x86\xe3\x24\xc9\x83\xac\xfc\x03\
\xf4\x46\x4c\x19\x2a\x12\x89\xbe\x21\xbe\xfa\xe4\x0d\x1a\x73\x99\
\xda\x4b\x6d\x4d\x1d\x16\xfc\xe6\x13\x9a\x79\x3b\x58\x76\xa9\x42\
\x2a\x2b\x51\x4a\x63\x4a\x94\x61\x71\x57\x2b\x25\x91\xd9\x8f\xdd\
\x66\xaf\x2b\x35\x1a\x3f\x2f\x8f\x64\xe4\xba\x43\x9c\x8c\xb9\xa4\
\x05\xd1\x44\xf4\x4f\x5c\xa6\xf6\x0b\x34\x2c\xdd\xa3\x0a\x16\xc5\
\xdf\x57\xba\xcd\x06\x46\xb9\x01\x66\x2e\x80\x85\x3b\x20\x9e\x06\
\x38\xcd\x05\x7c\x16\x01\x8b\x12\x95\x75\xe1\xf2\xbc\x4a\x7b\xef\
\x84\xdb\x24\xb2\xb3\xaf\x99\x87\x33\x97\x7f\x47\x34\xfd\x4c\x02\
\x52\x49\x90\x2c\xb7\xcc\x6e\x06\xa0\x6b\x09\x68\x5a\x10\xa3\x81\
\x5e\x36\x80\x8e\x1d\xa0\xe7\x0c\x18\x79\x92\x98\x37\xe0\x12\x04\
\x04\xc5\x01\x51\x2b\xaf\x57\xb9\xcd\x5a\x73\xcf\x40\xec\x9b\xd9\
\x67\x98\x9b\xeb\x67\x11\xa1\xf4\xc7\x83\xa2\x5e\xd4\x0e\xb6\x05\
\x34\xcc\x81\xce\x63\x80\x9e\x13\x81\xde\x1e\xc0\x40\x92\x1a\x38\
\x13\xd0\xe7\xe6\x06\x54\xc3\x90\x30\xf7\x01\x1c\x83\x49\x64\x39\
\x10\xbd\xfa\x7a\x95\xdd\x8c\xf8\xbb\x7a\x16\x53\x52\xba\xf6\xb5\
\x18\xc8\x72\xcd\x3f\xd9\x9a\x51\x6e\x91\x85\x7e\x94\x78\x80\x3d\
\xd0\xcd\x1a\xd0\x76\xe5\x1b\xfb\x03\x56\x0b\xb9\x11\xdf\xd6\x3d\
\x01\x70\xe6\xa7\x4d\x14\x6d\x91\x02\x26\x73\x08\x3f\x2a\x32\x8b\
\xf7\x42\x69\x4d\x32\x10\x1a\x77\xa2\xd2\xdc\x39\xbc\x84\x44\x64\
\x2c\xd9\x8e\x50\x6b\x34\x01\x4f\xc9\xc6\x1b\xfe\x91\xc0\x20\x7a\
\xaf\x45\xef\x0d\x59\xd8\x2e\x06\x98\xb7\x05\x48\xcc\x02\x36\x1c\
\x07\x56\xe7\x00\xb2\x3d\xc0\x9c\x34\x92\x21\x21\xcb\xc5\xc0\xb0\
\x79\xcc\x0a\xc9\x8c\x0d\x04\x66\x92\x5c\x7c\x9a\xb2\x6e\x6a\xd0\
\xa6\xb2\x3e\x66\xee\xa9\x9d\x75\x87\x19\x36\x5a\x0d\x13\x3b\xe9\
\x65\xa9\x1c\x18\x4e\x69\x0d\x28\xb5\xd5\x12\x20\x30\x1d\xd8\x96\
\x0b\x2c\x49\x39\x50\xe5\x31\x37\xa1\x32\x44\x9e\xa1\x4c\x3f\x52\
\x5c\xbd\xab\x00\x90\x1f\x05\xe6\x6e\x65\x38\x13\x49\x84\xcf\x0e\
\x67\x2e\x46\x91\x8c\x73\x38\xb0\x38\x05\x08\x8f\xa7\x1a\x4e\x61\
\x37\x75\x4d\x9d\x02\x58\xbe\x75\x83\x6a\xb0\xef\xcf\x2c\xdd\xf4\
\xa2\xd6\x36\x84\xfe\xd2\x5b\xf7\x24\x20\xe9\x08\xb0\x72\xfb\xd9\
\x97\xdd\x07\x8c\xbe\xd6\xfa\x67\xcd\xcc\x4e\xda\xa6\x07\x7a\x0f\
\x75\x29\x14\x7b\x2e\x7c\xac\x38\x56\x5c\xbd\x23\x9f\xfe\x1f\x02\
\xbc\xa9\x88\x5d\x3c\x09\x50\x91\x11\xb4\x47\xa8\x31\x87\xd9\x88\
\xdf\x58\x5a\x2d\xf6\x88\xbc\xcb\x35\x89\xdc\xa2\xc3\xdf\x49\x70\
\xd6\x68\xf3\xa5\x17\xf7\x33\x9f\x64\xf0\xaa\x9d\x07\x59\xcf\x5e\
\x2e\x5b\x7d\xe1\x99\xff\x0a\x16\x8b\x06\x7c\x53\x01\xc5\x39\x16\
\x0f\x5d\xf3\xbc\x9d\x86\xce\x41\x3e\xe4\x4b\x58\x12\x56\x1a\x5a\
\xc6\x72\xa6\xfe\xa2\xcf\xc2\xf5\x4f\x77\xe7\x3d\xaa\x5d\x77\x1a\
\x90\x66\x02\x1e\xeb\x98\x91\xa5\xc0\x48\xe6\xc6\x86\x24\xa6\xb3\
\x8e\x7c\xb3\xb2\xce\xc5\x6f\x55\x19\x9f\xdf\xc4\xb5\x1a\x44\xb3\
\x57\x9b\x73\xd0\x25\xa5\x16\x3c\xd6\x1b\x31\x75\x03\xbf\xd3\x12\
\x09\x83\xc5\x7a\x72\xf4\xad\x15\xbb\xb8\x29\x25\x0c\xdc\x06\xec\
\xb8\xc0\xa2\x01\x09\x95\x6d\x3a\xf6\x48\x17\x72\x4a\xb4\x27\x7e\
\x22\xba\x10\x43\xbb\x0f\x18\xb3\x61\xb8\xe3\xfc\x07\x69\x87\x0a\
\x5e\x66\x14\x02\xb1\xd9\x9c\x15\x0a\x60\xe2\x4a\x60\x34\xf3\x60\
\x4d\x3b\x3c\xf9\x19\xbd\x91\x35\x17\x28\x2a\xf4\x2d\xbd\x8f\xf5\
\x1e\xe6\xea\xc5\xc9\x1a\x13\xbf\xb6\xa0\x3c\xe7\x24\x30\x78\xec\
\xec\x3b\xac\x65\x2f\xa8\xd2\xa2\xff\x48\xaf\xa4\x88\x94\x93\xcf\
\xa2\x77\xd2\x43\x12\x51\xd0\xff\xd0\x84\x0c\x65\x27\xed\x21\xfb\
\x84\x0d\x89\x96\x2a\x05\x9b\xaa\x7a\xbe\x1b\xd5\x90\xe8\x0e\x71\
\x3e\x11\x18\xbb\xf5\xe9\x81\x42\x65\xdd\xaa\x33\x24\xcf\xa0\xba\
\xaf\xa7\x0a\xec\x1a\x31\x6d\x71\x89\x60\x98\x99\x95\x85\x89\x7f\
\xbe\x34\xb0\xf2\xbf\xe2\x1d\x9a\xff\x24\x96\x2f\xb9\x9f\x84\x0d\
\xc4\x7e\x8f\x58\x67\x8e\x50\xb4\x89\xa6\xde\xa8\x01\x16\x2e\xe1\
\x25\x9b\x0e\x3f\xaa\x4d\x60\xf2\xd3\x58\x2c\x75\x7f\x41\xb5\xb6\
\xb1\xfd\x45\xde\x17\x13\xad\xde\x89\x8e\x9a\x4a\x95\xc1\xbd\x06\
\x8f\xdf\xe2\xe8\xbf\xac\x6c\x7f\xc1\xa3\xda\x54\x2a\x17\xc6\x6c\
\x4c\xdd\x4c\x3b\x69\xa9\x15\xbb\x6b\x3c\x89\x4c\x24\x26\x48\x9e\
\xd6\x8d\xf5\x05\x66\x84\x51\xe1\xfd\x9c\x2f\x62\xdf\x72\xae\x97\
\xbe\x29\xd8\x9c\xed\x13\xe2\xe0\x13\xf7\x60\xfb\x29\x65\xdd\x56\
\x66\xe0\xc4\x0d\xbe\x05\x43\xd7\xee\x57\xed\x50\x95\x87\xef\xb6\
\xd4\x57\xc4\xb7\x82\x1a\x24\x21\x37\x77\x92\xde\xcf\x3c\x5f\x5a\
\xa3\xa0\x25\x11\xec\x94\x69\xb4\xd2\x69\xf5\x6b\x35\x46\xd2\x12\
\x63\xb6\xb7\xd1\x74\x5a\xcb\xd9\xb1\xfd\xe0\xfb\x04\x84\xe2\x6d\
\x29\xe9\xca\x00\xd9\xb6\xf2\x23\x57\x80\x9c\x22\x60\xdd\xae\x73\
\x55\x5a\x86\xb6\x39\xbc\x37\x48\x75\x00\x7d\xe8\x12\xd4\xe8\xd8\
\x73\xa0\x75\x84\x85\x93\xf4\x5e\x32\xd7\xa4\x93\xc4\x12\xce\x0e\
\x5f\x5a\xea\xca\x1c\xd8\xb0\x53\xcc\xc2\x5e\xcf\x0e\x2f\x06\x34\
\xe3\xe8\xfb\x04\xde\x16\x12\x52\x2b\x91\x29\x2a\xf2\x6e\x02\x85\
\x77\x01\x07\x9f\xd8\xf2\x6e\xfd\x46\xca\x55\x2a\xa8\x7d\x84\x84\
\x7a\x07\x4d\x7d\x2f\xe6\x29\x5f\x71\xa6\xb4\x3a\xf9\x22\x10\x42\
\xaf\x67\x32\x53\xee\x6c\xd7\xf1\xb4\xc4\x9a\x9b\xfb\x73\x72\x66\
\x9e\xf8\x30\x81\x37\x85\x34\xd8\xbf\x5b\x24\xd1\x8a\x8a\xc2\x3b\
\x40\x16\x65\xed\x67\x31\xf9\xf7\xef\xdb\x74\x1c\xc7\x7b\x3f\x7e\
\x64\xba\x09\x6b\xdb\x6a\x19\xd9\xcd\x27\x89\x0b\xf1\xd9\xa5\xd5\
\x51\x6c\xd3\xf9\x7c\x5b\x3f\x86\x73\x32\x87\x9b\xdb\x5a\xb6\x2d\
\xbb\xe5\xc0\xf9\xfa\x09\x08\x57\x33\xa2\x93\x40\xc2\xc1\x67\x59\
\xd9\xb9\x3f\x94\x75\x31\xeb\x0f\x3d\xef\xa1\x6f\xa5\x78\xd5\xb7\
\x22\xd1\xd7\xf5\x0d\x35\xc3\x71\x01\x9d\x0d\x6d\xe6\x2e\x4d\xde\
\x97\xff\x44\x51\x0c\xac\xe2\xe4\x8c\x63\x47\x45\x72\x9c\x2f\x60\
\x38\x83\x39\x33\x12\x38\xe4\x8e\x5f\xf9\x38\x81\xb7\x24\x74\x4c\
\x26\xae\xb1\x9a\xb4\xf8\xe1\xa1\xb3\xa5\x35\x81\x4b\x15\x15\xec\
\x96\x28\xc1\xa6\xfa\x8e\x5e\xe1\x68\xdf\xb0\x37\xb7\xec\x52\x19\
\x90\x5d\x0a\xec\xa3\x8d\xbb\xaf\xd3\x73\xe6\x49\x08\xa7\x82\x13\
\xf4\xf0\x55\xe0\xd2\xad\x86\x09\xbc\x21\xa1\xd1\x43\x5f\x2c\xe3\
\x4f\xb2\xcb\xd1\x6b\xb3\x2a\x1d\xfd\xe2\x1e\xaa\x77\xe9\x3b\x99\
\xdf\xb7\x79\xd7\x0a\x1e\xeb\x3d\x3c\x83\x53\xae\x65\xe5\x95\x3c\
\x3f\x98\x7b\xbd\x6a\xef\xd9\xe2\xea\x3d\x67\x8a\x6a\xf6\x9c\x2e\
\xaa\xc9\x3c\x55\x54\xb3\x9b\xd8\x75\x9c\x9f\x44\x46\x4e\x51\x8d\
\xb6\xb1\x43\x09\x97\x49\x1a\x3a\xab\x04\x5f\x3b\xfc\xd0\xe6\x97\
\xb1\x4c\x79\x7a\xab\xf6\x9d\x85\x30\x3a\x09\xea\x7c\x40\x85\xa6\
\xbd\x87\xba\xba\x71\xc4\xe6\x08\xe7\x86\x8e\xa9\x63\x91\x8e\x89\
\x63\x71\x7d\x50\xef\xda\x6f\x0f\xd7\xb8\x37\xe6\xc4\x56\x53\x85\
\x4f\xf0\x7f\x08\xd1\xb7\x9e\x30\x36\x51\x9d\x7e\x46\x84\x0b\xe1\
\xd5\x00\x1c\x89\xfe\x8d\xfd\xd9\xd0\x44\x15\xbe\x96\x0d\x9c\xf3\
\x6f\x46\xb5\xba\x2a\x2b\x1f\x83\xba\xea\xd9\x7f\xf7\xfa\xf2\xcf\
\xe8\x0b\x81\x86\xf0\x17\xce\x95\x4e\x3d\xa5\x4e\x62\x58\x00\x00\
\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x07\x68\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x07\x2f\x49\x44\x41\x54\x58\xc3\xcd\x97\x09\x54\x54\x65\
\x14\xc7\x9f\x80\x88\x20\x04\x0d\x28\x9b\x6c\x02\xb2\x0c\x33\x2c\
\x6e\xa0\xc0\x11\xe8\xc4\xa8\x84\x6c\xb9\xa0\x64\x66\xb9\xe6\x12\
\x5a\x96\x29\x89\x5a\x4a\x08\xa7\x52\x3a\x99\x51\x83\x10\x03\xea\
\x00\x03\x1a\x10\x20\x8c\xc0\x40\x12\x01\xa3\x43\xc0\x60\x25\x21\
\xab\x02\x31\x0c\xdb\xcc\xbb\xdd\x37\x3d\x3b\xed\x82\xc9\xa9\x77\
\xce\xef\x0c\xe7\xfb\xee\x7b\xf7\x7e\xf7\xfb\xbe\xff\xbd\x10\x00\
\x40\xfc\x97\x4c\xc8\xc8\xdd\xdd\x9d\xe9\xe6\xe6\x76\xdc\xd5\xd5\
\x95\xeb\xe2\xe2\xf2\xd6\xfc\xf9\xf3\xfd\x09\x82\xd0\x46\xd4\x1e\
\xea\xe0\xdf\x3e\xe8\xd8\x2b\x24\x24\xe4\x56\x61\x41\x7e\x7f\x7d\
\x5d\xad\xfc\x62\x66\xe6\xc0\xf6\xed\xdb\xda\x99\x4c\x66\xb6\xbd\
\xbd\xfd\x06\x34\xd1\x45\xd4\x89\xa9\x7a\x30\x80\xf7\x44\xa5\xe9\
\x32\x68\xdd\x08\xd0\xe8\x03\xf0\xfd\x2e\x80\xfe\x02\xa8\xad\x11\
\x8d\x7a\x7b\x7b\xdf\xd1\xd6\xd6\x0e\x40\x33\x83\x29\x0b\x00\xd3\
\x5f\x0f\xcd\x2b\xa1\x86\x4b\xc0\x86\x15\x04\xbc\x14\x4a\x80\xf0\
\x1c\x66\xb7\x71\x19\x24\xc4\x1d\x1e\x32\x37\x37\xbf\x80\x66\xce\
\xc8\xf4\x29\x09\x80\xcd\x66\x7f\x2e\xe1\x11\xc0\x4b\x60\x2a\x4c\
\x4c\x4c\xc4\x16\xa6\x3a\x85\x6b\x38\x86\xa3\x50\x45\x40\x45\xce\
\x66\x85\x8d\x8d\xcd\x37\x68\xc6\x41\x9e\x98\x8a\xd5\x3f\x1d\xb5\
\x61\x8d\x74\xe8\xc6\x22\xb2\x98\x17\xa9\xb0\xb4\xb4\x14\xe3\xf0\
\xab\xae\x2c\xfb\xda\xd6\x5c\x53\x10\x0b\x96\x90\xb6\xb6\xb6\xcd\
\x38\x16\x85\x18\x4f\xc5\xfe\x27\x37\x5c\x4f\x18\x86\x6a\x5d\xe8\
\xaa\xdd\x0d\x5e\x9e\x4b\xee\xa3\xc3\x2b\x78\x00\xcb\x5a\x0a\x9f\
\x22\x6f\xf2\x9d\xc9\x79\xf3\xe6\xb5\xa2\xe9\x56\xc4\xfc\xb1\x07\
\xe0\xe4\xe4\x14\x7e\x64\x9b\xd1\x48\x7e\x02\x01\xf7\x84\x1e\xd0\
\x71\xbb\x98\xcc\xcf\xf9\x68\xa4\x40\x70\x4e\xde\xfd\xf5\x76\xc8\
\x88\xb3\x54\x9a\x9a\x9a\xde\x40\xd3\x17\x10\xd3\x09\x2c\xc8\x8f\
\x3a\xd4\x2c\x16\xeb\x88\xb5\xb5\x35\x0b\x87\x66\x3c\xec\x1d\xdd\
\xdd\xeb\xf5\x12\xa2\xa3\x74\xee\x1c\xdb\x3e\x83\xec\xae\x5a\x0f\
\x77\xeb\xe2\x54\x74\x55\xae\x83\xca\x0c\x8e\x12\x3f\x24\x41\xbb\
\x8d\xc8\x9c\x7f\x70\xfc\x7c\x58\x58\x58\x69\xdd\x37\x55\xb2\xf1\
\xb1\x11\xb2\xef\x7e\x97\xc2\xce\xce\xee\x13\x9c\xb2\x7f\x58\x00\
\xd4\xfd\x36\x43\x56\x72\x7c\xe6\xdc\xc8\x8f\x27\x60\xac\x8c\x01\
\x23\x65\x26\xa0\x2c\xd5\x04\x59\xc5\x62\xc0\x2c\x75\xe1\xfc\x96\
\xbf\xca\x00\xe5\x38\x34\x34\xb4\xb4\xae\xb6\x62\x68\x64\x64\x04\
\x54\x0c\xcb\xa0\x49\xfc\xa5\x02\xb7\xae\x06\x4d\x82\x26\xb2\x13\
\x1a\xc8\x93\x46\x46\x46\x2b\x22\x02\x67\x0f\x76\x67\xe1\x15\x2c\
\xa1\x29\xd3\x81\x7d\x3b\x23\x64\x38\xf7\x11\xda\x38\x50\x01\x7b\
\x78\x78\xe8\x52\x8e\x51\xbc\xca\x6e\x54\x97\x0c\xf5\xf7\xf7\xc3\
\x2f\x0c\xc0\xbd\x6e\x29\xf9\xda\x2b\x91\x72\x9f\xc5\x73\xee\xea\
\xeb\xeb\x67\xa1\x7d\xc4\x64\x8e\x84\xf6\x42\x37\xab\xb8\xb7\x5e\
\x9a\xa9\x84\x22\x74\x7e\x6b\x13\x90\xf2\xdb\x20\xf8\x6c\xdb\x38\
\x6a\x41\xe1\xac\x59\xb3\x82\xf0\xca\x1e\x58\xbf\x36\xac\xa9\x42\
\x98\x3f\xd4\xd1\xd1\x01\x0f\xe8\xea\xb8\x03\xd7\x8b\x2e\x28\x7c\
\x97\xba\xc8\xd8\x4e\x86\xd4\x4d\x3a\x8b\x6c\xa3\x2e\xda\x64\x02\
\x98\x46\xed\x73\xb0\xbf\x49\x91\x54\x14\x0f\xa3\xa3\xa3\x2a\x7a\
\x6f\xe7\x92\x28\xc9\xad\xe1\x61\xab\xda\x45\xd7\x05\x23\x52\xa9\
\x14\x28\x5a\xa5\xad\xaa\xdf\x16\x49\x05\xb9\x7f\x77\xf8\x30\xcb\
\xc9\x44\x3a\xd7\x58\x4b\x80\xdf\x88\x45\xc2\x91\xf9\xb4\x8c\x4f\
\xea\xd1\x30\x36\x36\xf6\xe5\x70\x38\x8d\x83\x83\x83\xa0\x62\xa0\
\x1b\x2e\xf3\x92\x94\x99\x99\x99\x50\x59\x59\x09\xf5\xf5\xf5\x2a\
\x6e\x36\xd4\x40\xee\xa5\xc4\x71\x67\x47\x9b\x4e\x57\xa7\x27\x6b\
\xf1\xdd\x44\xfa\xac\x78\x22\x26\x8f\xac\x9c\xb8\x5a\x07\x47\x47\
\xc7\x0f\xbf\xaa\xbc\x3a\xde\xd3\xd3\x03\x5c\x2e\x17\x62\x62\x62\
\x80\xcf\xe7\x43\x72\x72\x32\x08\x72\x04\x20\x12\xf2\xc9\x17\x37\
\x05\xca\xed\xe7\x99\x36\x6b\x6a\x6a\x52\x52\xfd\x2a\x75\x90\x11\
\x1b\xba\x8a\x4e\x7b\x14\x51\x5a\x48\x95\xe4\x15\x81\xbe\x8d\xe9\
\xdc\xb8\xb1\xb4\xb4\x34\x55\x8a\x3d\x3d\x3d\x41\x4f\x4f\x0f\xda\
\xda\xda\xa0\xa0\xe0\x2a\xbc\x1f\xbf\x6f\x1c\xe5\xb9\xcd\xda\xc2\
\xa0\x1c\x5f\x7b\x17\xa1\x2a\x26\x1b\x61\xd0\x07\x7a\x52\x4e\xcd\
\x90\x1d\x48\xfe\xae\x2d\x3e\xb7\x0b\x52\x9f\x1d\xcc\xbb\x9c\x04\
\xe9\xe9\xe9\x90\x98\x98\x08\x67\xcf\x9e\x05\x1e\x8f\x07\x39\xd9\
\x39\xd0\xdc\xdc\xac\xa2\xb3\xbd\x89\x0c\x5a\xe9\xf7\x13\x6e\x55\
\x0e\x7d\xca\x6d\x68\xc1\x99\xf8\xaa\xb1\x06\x04\xa3\xd3\x4f\x57\
\xaf\x5c\xdc\x98\x92\x10\xd0\xd3\x79\x6d\x99\x02\x84\x96\x30\x96\
\xa3\x09\x82\xd3\xda\x90\xce\x3d\x09\xbc\xcf\x93\xe1\x9d\xd8\x97\
\x15\x27\x8e\xee\x57\x66\x65\x9c\x51\x36\xd4\x57\xe1\xde\xd7\x81\
\xf8\xa6\x18\x7e\x1a\xb8\x07\x27\x8f\xed\x1d\xc4\xbb\x9e\x8c\x9f\
\xb3\x9c\xd0\xca\xb1\xdb\x61\xa0\xe3\xdd\x48\xf9\xc9\x83\x4b\x7f\
\x6c\xc8\xf5\x91\x83\xc8\x01\x3a\xd3\x66\x02\xff\x4d\x02\x4e\xef\
\x50\x27\xfb\x2e\x59\xc0\xdd\x14\x02\x72\x12\xcc\xc0\xdf\xd7\x4d\
\x86\x32\xdc\x80\x1a\x70\x6d\xee\xdc\xb9\xd5\x21\xab\xbc\xfa\x2b\
\x8a\x3e\x21\x45\x22\x11\x50\x74\x75\xfe\x08\x5f\x5e\xbd\x30\x8a\
\x8a\x97\xc6\x60\x30\xdc\xfe\x31\x0b\xb8\xda\x08\x3f\x5f\x0f\x71\
\x4a\xfc\xa2\x1e\x59\x39\x93\x84\xe2\xd9\x50\x83\xfa\x1f\xbb\x59\
\x9d\x0c\x7d\x4a\x7f\xc8\xcb\x9d\xd1\x84\x6d\xd8\xdd\xb6\x3c\x77\
\x52\x91\xa5\x0b\xe7\xf6\x10\xe0\xb7\xc4\xf0\x0e\xbe\xfa\x01\x7d\
\xb2\x43\x9c\xec\x18\xf1\x58\xa8\xaa\x4e\x1d\x8d\x1a\x2e\x2b\xb9\
\x02\xc5\xc5\xc5\x20\x91\x48\xa0\xa5\xb1\x5a\x89\x41\xf0\x31\xc8\
\x55\x68\xa7\xf3\xa7\x20\xa8\x92\xeb\xe7\xeb\x2e\x6e\xcd\x73\x18\
\x85\xab\xb3\x40\xf8\x0e\x01\x3b\xc3\xa7\x2b\x23\x02\x0d\x7a\x2d\
\xcc\xf4\xae\xa3\xc9\x39\x2b\x2b\xab\x92\xf3\x6f\xb3\x06\xfb\x4a\
\x56\xc0\xc7\x7b\xa7\xc3\xce\xb5\x3a\x7d\x38\x9e\x82\x6c\x46\xec\
\xe8\x8e\xc8\x02\xf1\xc1\xda\x90\x1e\xb0\x7c\x51\x6f\x7e\xd6\xbb\
\xca\xbc\xbc\x3c\x10\x0a\x85\xd0\xfe\x83\x84\x5c\x1d\xe4\xdf\x8e\
\x5b\x72\x10\x6d\x8c\x7e\xb7\x25\xaa\x92\x9b\x61\x33\x0c\x97\xd5\
\xe0\xfc\x01\x03\x32\x24\xc0\xa0\x13\x55\xad\x10\xa7\xce\xe0\xef\
\x71\x2a\x85\x27\xa2\x99\x5d\xf2\x4a\x2f\x28\x4f\x62\xc3\xde\x0d\
\xda\x03\x38\x97\x81\xec\x43\x98\xbf\xa9\x68\xea\xb4\xb0\xd8\xe1\
\x01\x3c\x88\xd9\x10\x1d\x3f\x14\x26\xcf\xbe\x7c\x01\xb2\xb3\xb3\
\xa1\xbd\xad\x19\x9e\x8b\x0a\xef\xc5\xf1\x24\xba\x74\xff\x12\xc4\
\x6a\x0e\xbb\x11\xb2\xa7\x43\x4b\xaa\x07\x2c\x5b\x68\xd6\x8b\x4e\
\xaf\xe0\xf0\xeb\x98\xb2\x37\xb0\x03\xe6\xf3\xdf\xb7\xbd\x3f\x5c\
\xce\x86\xa6\x8c\x40\xd8\xb5\x76\xc6\x18\xce\x17\xe1\xfc\x1b\xc8\
\x02\x64\xe6\xdf\xd4\x0e\x4a\x68\x96\x51\xd9\xf0\xf7\x5d\xd0\x9b\
\xf9\xe9\x7e\x65\x6a\x6a\x2a\x48\x6e\xd5\x41\xec\xe1\x2d\x83\x28\
\xdd\x31\x74\x91\x53\x27\x96\x7b\xb3\x25\x43\xd8\xef\x75\x17\x46\
\x40\xee\x19\xf3\xb1\x35\x41\x0e\xf7\x51\xd3\xbf\x7b\xe6\x69\x66\
\x6b\xfd\x25\x33\xb9\xbc\x84\x0d\xdf\x5e\x0c\x85\x17\x83\x35\x48\
\x96\xa3\x81\x98\xbe\xdb\x7e\x0f\x91\x51\x35\x7a\xbf\x6d\x0d\x0d\
\x0d\xf7\xa0\x2e\x94\x46\xef\x08\x18\x4a\xe3\x9e\x06\x61\x51\x0a\
\x25\xdd\x54\x1b\xb7\x5c\xf5\x0d\x67\x67\xe7\x98\xfd\xeb\x66\x8c\
\xb7\x70\x59\xd0\xfb\x45\x10\xc8\x85\x2e\xa0\xfc\x4a\x1f\x94\xd5\
\x06\xd0\x97\xbf\xfc\x57\xe7\x5e\xee\x4f\x34\xe2\x0b\x49\xf4\xdd\
\x36\x99\xe0\xbd\xd6\xa0\xfb\x84\x25\xd8\xce\x9d\xc7\xb3\xd6\xb3\
\x39\x72\xa9\x0c\x6f\xc5\x17\x38\xf6\x2c\x62\x48\x19\x31\xdc\x98\
\x66\x89\x5b\x23\x66\xca\x0f\x45\xaa\x01\xef\x10\x03\x04\xb1\xa6\
\x2a\x92\xa3\xf5\xe0\x40\x94\x9a\x92\x76\xfe\x21\x12\x89\x58\x4d\
\x52\xd1\xa6\xd1\xf2\x6b\xad\xa5\xa5\x15\x81\xaa\x19\x87\x7f\x47\
\x23\xde\x0f\xb2\xa8\x41\x9f\xe0\xe0\xc5\x2c\x9d\xcf\x9e\x0b\xd6\
\x95\xec\x5a\xa7\xd3\x8e\x74\x6c\x0a\xd6\x91\x1a\x33\x88\x8b\x38\
\x77\x8a\x8e\xd8\x9a\x78\xf4\xf6\x5b\x83\x96\x63\xaa\x6f\x70\xa2\
\x57\xaf\xfe\xc7\x49\xea\x54\x73\xe8\x1e\x6f\x2f\xb2\x87\xd6\x72\
\x4f\x3a\x95\x8f\xa3\xf7\x57\xa7\xfd\x4d\xfb\xbb\x49\x5d\x7a\x8f\
\xad\x68\x19\x9d\x8d\x68\x3d\x52\x05\xfb\x3f\x3c\x8f\xe5\xbf\xe3\
\xa9\xe4\x67\x2f\x79\x73\x70\x22\x76\x00\x17\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\xb5\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x04\x7c\x49\x44\x41\x54\x78\x5e\xb5\x94\xdd\x6b\x1c\xd5\
\x1f\xc6\x3f\xe7\x65\x66\x67\x5f\xf2\x6e\xd2\xb4\x69\xc1\x37\xea\
\x0b\xe2\x4d\xf4\xce\x4b\xa1\x88\x82\x48\x41\xe8\x95\x7a\x21\xbd\
\xf4\xc7\xef\x0f\xf0\x46\xf4\x52\xf0\xd2\x4b\x11\x5b\x14\x2d\x8a\
\x8a\x42\xac\x28\xc1\x68\x6d\xda\x9b\x94\x26\x6d\x9a\xb6\x49\x37\
\x4d\x9a\xee\x6e\x76\x67\x77\x67\x77\x66\x67\xe6\x38\x3d\x84\xb0\
\xa1\x90\x80\xe0\x03\xcf\xce\x7e\x99\x99\xe7\xf3\x3d\xdf\x39\x33\
\xc2\x18\xc3\x7f\x29\xcd\x8e\xa6\xa7\x4f\xbf\x02\xe6\x0d\x30\x47\
\x8d\x41\xf2\xef\x24\x8d\x49\x56\xe2\xb8\xfb\xcb\x95\x2b\x67\x7f\
\x04\x22\xcd\xae\xcc\x9b\xef\x7d\xf4\xbf\x93\x7a\xf8\x91\xfc\xc5\
\xb9\x59\xb9\xf0\xd7\x8c\xe8\x76\x9a\x42\x22\x11\x02\x84\xfd\x01\
\x29\x44\xdf\x7f\x89\x76\x5d\xa6\x9e\x78\x96\x27\x5f\x3c\xc1\xf8\
\xe4\x61\xe6\x67\xe7\x5e\x9a\xfb\xec\x8b\xe3\xc0\x25\xe0\x5e\x1f\
\x80\xe3\xce\xf0\x98\xf7\x6b\x59\xe9\xaf\xbf\x3c\xc7\x07\xef\xbe\
\xca\xe3\x47\x27\x91\x52\x62\x00\x23\x52\x24\xc2\xd6\x02\x01\x18\
\xa4\x52\xd8\xda\x29\x70\xe6\xd2\x26\xdf\x2e\x6b\xf4\x1f\x3f\x68\
\xe0\x08\x30\x05\x34\x76\x01\xc6\x98\x66\xa5\xea\xa7\x37\x36\xf3\
\xd4\xb7\x7d\x06\x3d\x45\xc1\x15\xf4\xe2\x08\x00\x89\x44\x6b\x9d\
\x59\xd9\x15\xf4\x7a\x11\x69\x9a\x20\x52\x81\xe7\x2a\xa2\xc5\x9f\
\xf1\x07\x5e\x63\x20\x8c\x93\x24\xe9\x45\x40\x01\x50\x9a\x3e\x49\
\x09\x45\x47\xda\x80\xd2\xe0\x10\x85\x62\x91\x38\x8e\xc9\xee\xb0\
\xa1\x4a\xd9\x70\xeb\x9d\xee\xf1\x3c\x8f\x52\x69\x80\xe9\x97\x4f\
\x72\xfd\x5a\x1e\x29\x15\x20\x00\x0c\x40\x3f\xc0\x86\x68\x47\xa2\
\xa4\x60\x28\x03\x0c\x0f\x0f\x13\x86\x21\xbd\x5e\x6f\x17\xb2\x23\
\x5b\x67\xa6\xdd\x6e\x13\x85\x21\xc5\xe1\x49\xf2\xf9\x88\x68\xf7\
\x9a\x87\x01\x68\x21\xc8\x69\x89\x56\x92\x7a\xbd\xce\x60\xc1\xf2\
\x6d\xe7\xae\xeb\xda\x11\x29\xdb\xb9\x5d\xa5\xad\x9d\xcc\xf9\x42\
\x9e\xdb\xab\x0a\xcf\xa9\xd3\x13\x86\x7e\xed\x1d\x91\x10\xb8\x8e\
\x44\x1a\xc3\xc4\xe4\x04\x47\xa6\x0e\x13\xf7\x7a\x76\x4c\x3b\xb2\
\xe1\x80\x5d\x55\xa7\xd3\x21\x30\x86\x7a\x7d\x9b\x38\x1c\xa3\xe0\
\x28\xda\x42\xec\x03\x90\x90\xd7\x12\xc7\x73\x09\x3b\x1d\x3a\x41\
\x60\x3b\xf4\xbc\x1c\x8e\xe3\xe2\x68\x85\xd2\x1a\x21\xec\x18\x11\
\x52\x61\x57\xe7\x68\x5a\xb7\x23\xf2\x2b\x15\x84\xdc\x07\xa0\xa5\
\x24\xa7\x05\x03\x87\x9f\xe6\xa9\x67\x9e\xe3\xd8\xc4\x10\x08\x30\
\x69\x4a\x6a\xc8\x6c\x48\x52\xe8\x25\x86\x4e\x02\x61\x04\x51\x22\
\x41\xc0\x76\xd7\x90\x77\x25\x12\xf6\x01\x08\x70\x94\xe1\xd1\x17\
\x4e\x30\x73\x4b\xf0\x58\x60\xb2\x5a\xd2\x89\x15\x9d\x28\xa5\x19\
\x26\x04\x9d\x88\x7a\xab\x8b\xdf\x6c\x53\x6f\x36\x69\x36\x7c\x8c\
\x72\xd0\x03\x87\xc8\xe5\x73\x28\x79\xc0\x88\x72\x0a\x26\x8e\x4c\
\xf1\xe9\xf7\xf3\xe4\x13\x1f\x11\xb5\xe9\x76\x03\xa2\x4e\x40\x1a\
\x77\x51\x26\xc6\x73\x04\x43\xc5\x1c\x23\x25\x8f\xb1\x91\x12\x13\
\x13\x87\xa8\xb9\x63\x24\xba\x80\x14\xfb\xac\x40\x09\x41\x21\xe7\
\xd2\xb8\x35\xcf\xf3\x4e\x8d\x63\x53\xc3\x94\xbc\x7c\x16\x36\x42\
\x31\x27\x19\x1d\x2c\x32\x92\xb9\x54\x2c\xe0\xe5\x5c\x94\x94\x44\
\x71\x4c\xd0\x6a\x72\xd9\x77\xb9\x19\x68\x84\xdc\x6f\x44\x4a\x90\
\x73\x35\x7e\xf9\x1a\xa7\xff\xff\x3a\xbf\xcd\xfc\xc4\xd6\x5a\x85\
\xbb\x71\xc2\xa9\x53\xa7\x30\xc6\x90\xcb\x39\x28\x25\x31\x40\x62\
\xc0\xa4\x86\x14\x41\xc9\x53\x14\x13\xbd\xff\x33\x10\x02\x3c\x47\
\xe2\x3a\x8e\xdd\x2d\x8b\x4b\x4b\xf6\x65\x1b\x1f\x1f\x27\x4d\x53\
\x80\xec\x68\x76\x2d\xa5\xc1\x60\x65\x77\x58\xde\xd3\x64\x70\x91\
\x69\x97\xb3\x07\xa8\xa4\xc8\x00\x1a\x2f\xe7\xd0\x09\x7b\x94\x4a\
\x25\xc6\xc6\xc6\x18\x1d\x1d\xb5\x80\xfd\x94\x73\x14\x3d\x7f\x83\
\x34\x0a\x30\x26\x8d\x01\xf1\x10\x40\x4b\x81\xa3\x1e\x58\xee\x7c\
\x96\xad\x39\x50\x42\xa2\xe2\x36\xcb\xb3\xdf\x98\xca\x7a\x54\xad\
\xd7\x6f\xfd\x0e\x74\x81\x64\x0f\x40\x0a\x70\x1d\x81\x94\x80\x31\
\x1c\x20\x0b\xd7\x5a\xd9\xe7\x12\x6c\x5d\x63\xe5\xf2\xed\xee\x8d\
\xeb\x17\x3e\x5f\x5f\xff\xfb\x3c\xb0\x05\x74\xf7\xee\x22\xad\x18\
\x2a\x91\x8d\x65\x14\x37\xe7\xda\x0f\x5d\x16\x62\xdf\x64\xa5\x04\
\xae\xab\xb3\x30\x3b\x67\x82\x20\x34\xf5\x7a\xc0\xfd\xfb\x0d\x6a\
\xb5\x16\xeb\xeb\x95\xf6\xca\xd2\xc2\xb9\x6a\x75\xe9\x22\x70\x13\
\xd8\x00\xc2\x7e\x80\x74\x5d\x21\xb7\xca\xcb\x24\xfe\x1a\x5a\x4d\
\xf3\xf6\x3b\x6f\xd1\x6a\x76\x4d\xbb\xdd\xe3\xea\xd5\x4d\x1a\x8d\
\xae\xa9\x56\x5b\x61\xa5\x52\xf3\x6b\xb5\xda\xa6\xef\xd7\xd6\x7d\
\xff\xde\x6a\xb5\x5a\x5e\x5d\x5c\xbc\x7c\xc7\x98\xb4\x01\xdc\x01\
\xca\x40\xcb\x64\xea\x03\x98\xd6\xfc\x85\x2b\xcd\xb9\xf3\x33\xc5\
\xf2\xea\xa6\xf9\xb0\x7c\x36\x2a\x16\xf2\x61\x1c\x87\xd5\x56\xab\
\xb1\xe1\xfb\x95\x72\xa5\xb2\xbe\x56\x2e\x5f\x5f\xab\x56\xef\xd6\
\x80\x2e\xd0\x01\x82\x3e\xb7\x80\x26\x10\x98\x4c\x7b\xb6\x69\x1c\
\x77\xbe\xfa\xe4\xfd\x8f\x37\x21\x74\xc3\xde\x76\x65\xf9\xea\xec\
\xc6\xf6\xf6\xea\x5d\x63\xd2\x10\xe8\xf4\x39\xb0\xb5\x05\xd0\xeb\
\x73\x4c\x66\x1b\xbc\xab\x3e\xc0\xc2\xc2\x99\xef\x80\x3f\x81\x11\
\x40\x00\x36\x78\xe7\x18\x01\x71\x7f\x98\xc9\xc8\x1c\x2c\xfe\x01\
\xd1\x4f\x0f\x88\x96\x78\xff\x51\x00\x00\x00\x00\x49\x45\x4e\x44\
\xae\x42\x60\x82\
\x00\x00\x06\x7e\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x06\x45\x49\x44\x41\x54\x48\x89\x9d\x95\x7b\x6c\x95\x77\
\x19\xc7\x3f\xbf\x73\xde\x73\xeb\xe5\x9c\x5e\xe0\x40\x69\xbb\xb2\
\x5e\x28\xe5\x0e\x45\x1c\x63\x83\x11\xc9\x14\xc7\x60\x5b\x34\x38\
\x63\x66\x22\x53\x11\x63\x44\x37\x35\x26\xc6\x7f\x66\x48\x34\x26\
\x6a\x36\x5d\x30\x64\x71\x19\xc8\x28\x0e\xc4\xae\x60\x69\x59\xa1\
\xe1\x3a\x2a\xd4\xf5\xc2\xb5\xd0\xd3\x3b\xbd\x9d\x9e\xeb\x7b\xf9\
\xbd\xef\xfb\xf3\x1f\x34\xa8\x98\xcc\x3d\xc9\xf3\xef\xe7\xf3\xe4\
\xfb\xc7\xf3\x15\x4a\x29\x3e\xc9\xbc\xfd\x43\x51\x5c\x51\x1a\xda\
\x3e\xbb\x6c\xc9\xf7\x95\xeb\xe8\x23\xb1\xce\x57\x8f\xb6\xbb\x6d\
\x5f\xdd\xc4\xd2\xb4\xc5\xe0\xa6\x57\xd5\x38\x80\xf6\xff\x82\xff\
\xf0\x23\x11\x2a\x29\x60\xeb\xb2\xfa\xb5\xdf\xa9\xa8\x7b\x6e\x5d\
\x51\x71\x2d\xae\x27\x48\x76\xf2\xd9\x9f\x6f\x79\xb2\xb8\x2f\x53\
\xf0\xe4\x0b\xc1\x64\xe3\x7e\x21\xc4\xd7\x94\x52\xf2\x63\x0b\x84\
\x10\xe2\xf8\x1e\xd6\xd5\x56\x45\x5f\x99\xbf\x62\xc7\x33\xd1\x79\
\x6b\x7c\x22\x79\x8d\xcc\xdd\xc3\xa8\xbc\xc5\x8c\xfb\xbf\xb8\x3c\
\xbf\xfe\xc5\xe5\x95\xb5\x9f\xe6\xc6\xe1\x13\xf3\x40\x86\x80\x87\
\x0b\x3a\xde\x14\x1a\x8a\xc0\xea\x5d\x2a\x03\xd0\xf8\x9a\xa8\x3c\
\xf3\x46\xf1\x37\xcb\x17\x6e\xfa\x56\xd9\x82\x17\xf3\xbd\xd9\x3e\
\xec\xe1\x26\x46\xc6\xa7\xe9\x9f\x09\x23\x8b\xca\x59\xf5\xec\x2e\
\xc2\x91\x08\x72\xea\x12\x77\x86\xad\x2e\xc0\xfb\x5f\x11\xfd\xe4\
\x2b\xc2\xf7\xc4\x22\x9e\x88\xce\x5f\xbe\x53\xf3\x87\x0b\x9a\x7e\
\x26\xf6\xf9\x7c\x62\x56\xcd\xaa\xad\xaf\x94\xd5\x6c\xa9\xca\xf5\
\xf9\xb1\xee\xb5\x12\x9f\x99\xe4\xc6\x10\xa4\x73\xd6\x32\x6f\xc5\
\xe7\xa8\x5e\xb0\x08\x5c\x89\x02\xe2\x77\x0e\xd9\xad\x97\x9c\x0f\
\x00\x09\x20\x94\x52\x08\x21\xc4\xb1\xd7\x58\x38\x2b\x3a\x7b\x77\
\xc5\xb2\x1d\x2f\xcd\x9e\xb7\x3a\x28\xac\x19\xe2\x89\x61\xdd\x17\
\x88\x68\x91\x48\x89\x4f\x4d\x5f\x65\x66\xa2\x8f\xc1\x29\x41\x5f\
\xba\x8a\xea\x95\x2f\x50\x5a\xb5\x84\x70\xae\x1f\x5d\xd7\x51\xca\
\x8b\x2b\xbc\x74\xbf\xbb\x66\x7c\xf8\xef\x9d\x57\xfd\xc2\x17\xd0\
\xa2\xf2\x07\xa2\xf5\x97\x62\xa5\xc7\x17\x5e\x5b\x51\xf7\xf4\x9e\
\x92\x05\xdb\x23\x41\x6b\x18\x95\xba\x89\x47\xd3\x20\x10\x45\xd9\
\x3a\xfa\xcc\x00\x77\x46\x52\x0c\x66\x4a\x09\x94\x6d\x66\x79\xfd\
\x06\x42\xb9\x21\x5c\xdb\x42\x4a\x89\xeb\x7a\x49\x26\x27\x18\xe9\
\xda\x8f\xd1\x7b\x50\x2e\x5c\xbf\x43\xcb\x8f\x56\x88\x0b\xef\xec\
\x8a\x69\x91\xa2\x92\xd7\xa3\x8f\x6e\xae\x7f\x64\xc1\xb6\xa0\x1a\
\x6f\x45\x39\x3a\x1e\x6f\x00\x29\x25\xb6\x11\x63\x62\x32\xc9\xb5\
\xd1\x20\x9e\x39\xdb\xa8\x7b\x6c\x33\x25\x25\x51\xa4\x65\x60\x19\
\x59\xa4\xed\x60\x18\x16\x77\x7b\x9a\xe9\xee\x38\x46\x6d\xc5\x1c\
\xd6\xef\xd8\xeb\xf3\x05\xe3\xa4\xa7\x53\x28\x22\xb3\x34\x8f\xd7\
\x57\xe5\xf7\x79\x82\xe9\xa1\x76\x42\x9e\x14\xc2\x9b\x8b\x61\x5a\
\x24\xd2\x3a\xd7\x06\x1d\xd2\x39\x8f\x51\xbd\xfe\x19\xca\xca\x2b\
\xf1\x0a\x07\x23\x9b\xc6\x51\x02\xcb\xb4\x18\x1d\xe8\xa2\xe3\xf4\
\xef\x40\xf9\xf8\xcc\xd3\x5b\xa9\xae\x8a\x20\x93\xed\x4c\x8f\x19\
\xdc\xbc\xf0\x11\xbd\x03\x37\x0f\x69\xca\x75\x3d\x42\xd9\x38\x2e\
\x58\xca\x83\x2d\x2d\xee\x8c\x18\xf4\xa7\xca\xa9\x58\xf1\x05\x56\
\xd6\x2c\x21\xe0\xf7\x22\x2d\x13\x43\x4a\x6c\x57\x23\x3e\xd5\xcf\
\xd5\xd3\xfb\x18\x1f\xe9\x61\xe9\x8a\xc7\xd9\xb0\xbe\x1e\xd7\x9a\
\x22\x11\x6b\x24\x9e\x01\x3d\x91\xc3\xb5\xcb\x2d\x83\xef\x5f\xe1\
\x3d\x0d\xc0\x55\x60\x49\x85\x61\x59\x0c\x8c\x26\xb9\xeb\x3e\xc5\
\xc6\xe7\x76\x92\x17\xd2\x90\xb6\xc4\xd0\x4d\x2c\xdb\xc1\x34\x2c\
\xae\x77\xbc\xc3\x8d\x8f\x5a\x29\x2d\xab\xe1\xa5\x97\xbf\x4d\x24\
\x34\xc4\xcc\xd0\x71\x46\x46\x06\x11\xde\x10\xc1\xf0\x62\xae\xb4\
\x1d\x4c\xef\x6b\xcb\xfc\xea\xf2\x2d\xba\x35\x57\x81\x6d\x3b\x18\
\x52\x92\x8c\x67\x68\xbb\x3c\xca\x86\x2f\x7f\x8a\x82\x70\x90\x6c\
\x26\x83\xe3\x80\x61\x5a\x0c\xf5\x5d\xe0\xea\xd9\x03\xf8\x7d\x41\
\x3e\xbb\x79\x0b\xd5\xb5\xc5\xe8\x63\xe7\xe8\xbf\x13\xc3\xb4\x6c\
\x14\x5e\xfc\x79\x95\x4c\x75\x7f\xc8\xdf\x7a\x6e\xb4\x5d\xbe\xc5\
\x49\x60\x52\xb3\x6d\x17\x4b\xda\x24\x93\x26\x7d\xfd\x53\x64\xc4\
\x5c\xf2\x0b\xa2\x98\xa6\xc4\xb2\x3d\x4c\x0c\x75\xd1\x79\xb1\x81\
\xf8\xf8\x5d\x56\x3f\xbe\x99\x35\xf5\x95\x08\xd9\xc7\x48\x77\x03\
\x99\xac\xc4\xb4\x24\x8e\x23\x09\x86\xcb\x48\xde\x4b\xd0\xf0\x97\
\xb6\x9e\xbd\x2d\xfc\x02\x18\x05\x74\x4d\x3a\x0a\xc3\xb4\x89\xa7\
\x4c\x7a\x6f\xdf\x43\x9b\xb3\x84\x70\x64\x16\x89\xf8\x04\x9d\xe7\
\xff\x48\xec\xfa\x39\x1e\xa9\x78\x84\xcf\x7f\x7d\x37\x05\xc1\x61\
\x12\x03\x87\x89\xc7\x13\x64\x75\x13\xdb\x96\x64\x32\x29\xfc\xa1\
\x42\x84\x98\xcb\xd0\x95\xb7\xf5\xbd\x27\xf5\xdf\x98\x92\xbb\x40\
\x52\x29\xa5\x34\x69\x29\x0c\x43\x12\x4f\x1a\xc4\xee\x19\x2c\x5d\
\x54\x81\x50\x16\xef\x1f\xf8\x31\x01\x9f\x60\xdb\xf6\x97\x29\x2d\
\xcf\x41\x1f\x6e\x62\x2c\x36\x42\x3a\x63\x91\x48\x26\x40\xb9\x68\
\xbe\x20\xbe\xdc\x72\x72\x72\x4b\xe9\x3f\x77\x82\x33\x57\x63\x47\
\x93\x3a\xed\xc0\x94\x52\xca\x06\xd0\x4c\xe9\x92\xd1\x25\x93\xd3\
\x12\x6f\xa0\x90\x39\xa5\x35\x9c\x6a\xda\xc7\x9d\xbe\x5e\x76\x7f\
\xf7\x1b\x94\xe4\xf5\x30\xd4\xd9\x4d\x36\x9b\x41\x08\x0d\xdb\x96\
\x58\x86\x81\x37\x27\x4a\x7e\xfe\xa3\x88\x89\x31\x9a\xdf\xfb\x7d\
\xe6\x50\xfb\xf4\xc9\x8b\xb7\xf9\x35\x70\x0f\x30\xff\xf9\x7e\x34\
\xdd\x52\x08\x5d\x32\x35\x63\x61\x11\xc6\x36\xa6\xe9\xb8\xf4\x01\
\x9b\x9e\x5a\xc5\xe8\xad\x23\x64\xc3\xf9\x48\xdb\xc1\x34\x4d\x5c\
\x57\xc7\xa3\xe5\x90\x17\x5d\x8e\x13\xcf\xd2\xd3\xd6\xe8\xec\x3f\
\xd6\xdb\xfb\xd7\x1e\x0e\x65\x4d\x5a\x80\x7e\x20\xa5\x1e\x28\x19\
\xcd\x30\x5c\x54\x56\x92\xd2\x5d\x24\x7e\xae\x9c\x6f\x60\x41\x75\
\x31\xb3\x82\x23\x44\xc2\x61\x10\x1e\x92\xc9\x38\xae\xf2\x10\x0c\
\x97\xe3\x15\x05\x8c\x76\x7e\xa8\xda\xda\x2f\x8d\xbe\xd9\x6c\x1d\
\x9d\xc9\xd2\x0c\xdc\x06\xc6\xee\xc3\x9d\x07\x1f\xa8\x66\x58\x0a\
\xd7\x90\x38\xca\x4f\x2a\x99\xa0\xb6\x6a\x2e\x0b\x2b\x04\x79\x41\
\x17\xc7\xb1\x71\x1c\x45\x30\x52\x8e\x10\x85\x98\xa3\x03\x9c\x69\
\x69\x48\xfd\xb6\x39\x75\xea\xd6\x18\x7f\x02\x7a\xef\x83\x67\x00\
\x43\x3d\xa4\x1e\x35\x47\x81\xab\x04\xca\x4c\x53\x56\x68\xb1\xac\
\xae\x80\x90\x88\xe1\x0f\x14\x92\x36\x20\xaf\xa8\x0e\x73\x74\x94\
\xc1\xae\x46\xf7\x8d\xc3\xb7\x3a\x4e\xdf\xa4\xc1\x92\x5c\x04\x86\
\x80\x29\x40\xff\xcf\xab\xff\x4d\x10\xf0\x7b\xc9\xc9\xd1\x28\x0c\
\x1a\x2c\x5d\x59\x8d\x9b\xee\x21\x2f\x5a\x8e\xed\x99\x47\x20\x10\
\x22\x76\xb6\x85\x23\xcd\x57\x06\x0e\x9c\x75\x8e\xa6\x4c\x8e\x03\
\x31\x60\x1c\x48\x2b\xa5\xe4\xff\x02\xff\x4b\x10\x9f\x9c\xec\x96\
\xd9\xee\x95\x75\xab\x9f\x2f\x34\xac\xeb\x44\x8a\x4a\x08\xe6\xd4\
\x92\x88\xf5\xd2\x72\xe2\xd4\xf4\xbb\xe7\xb3\xad\xdd\x03\x1c\x05\
\xae\xdd\x8f\x23\x01\x98\x0f\x8b\xe3\xa1\x82\xb7\x9a\xdc\x3f\x57\
\x17\x8f\x8b\x9d\x8b\xed\x8d\x73\x2b\x37\x10\x4e\x0f\xd2\xd1\x74\
\xd0\x7a\xfd\xc8\xc0\xb9\xce\x01\x9a\x4c\xc9\x59\x60\x04\x98\xbe\
\x1f\x87\xfb\x71\xc0\x0f\xce\xfc\xb9\x45\x3c\xff\xd6\xf7\xf2\xae\
\x37\xfe\x74\x91\xfa\xd2\xba\x60\x57\xae\x9f\x3d\xc0\x46\xa0\x06\
\x28\x00\x34\xa5\x14\x9f\x64\xff\x01\x38\xa4\x6e\x5f\x55\x49\x82\
\xf9\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\xb8\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x04\x4a\x49\x44\x41\x54\x48\xc7\xc5\
\x56\x61\x4c\x5b\x65\x14\xfd\x6c\x32\xd3\x69\x20\x0e\x65\x24\x4b\
\x37\x56\x5a\x8a\xb3\xd2\x4e\xa5\x42\x71\x43\xc0\xb5\x94\x10\xe6\
\x02\x42\x13\xaa\x63\xa3\x63\x63\xd9\x18\x59\xb7\xa6\x01\xa3\x08\
\x88\x61\x0b\x29\xb2\xcd\x29\x66\xba\x81\x84\xda\x8a\x89\xd4\x00\
\x29\x43\x33\x1c\x20\xa5\x50\xd7\x6a\x57\x4a\x23\xc4\x6c\x51\x59\
\x94\x31\xbb\xf8\xc3\x6e\xbb\xde\xbb\xbc\x45\xd4\x15\x12\x33\xb5\
\xc9\xc9\x4b\x5f\xdf\xbd\xe7\xfb\xce\x3d\xe7\x7d\x65\x00\xc0\xfe\
\x4d\xb0\xff\x8d\x00\x3f\x31\x08\x85\x4a\xa5\x32\x28\x14\x8a\x23\
\x3c\x1e\xef\x65\xfc\xbe\x1f\x51\x8c\x50\x22\xe2\x10\xbc\x7f\x44\
\x80\x9f\x8d\x52\xa9\xb4\xb2\xae\xae\xee\xe3\xfe\xfe\xfe\x4b\x1e\
\x8f\xe7\x46\x30\x18\xbc\x35\x3e\x3e\x7e\xd5\x66\xb3\xf9\x4c\x26\
\x93\x5d\x22\x91\x18\x39\xa2\xfb\x97\x22\xba\x5b\xf3\xf4\xb2\xb2\
\xb2\x77\x1d\x0e\x87\x3f\x10\x08\x80\xd3\xe9\x84\xb6\xb6\x36\x30\
\x9b\xcd\xd0\xd1\xd1\x01\x13\x13\x13\xe0\xf5\x7a\xc1\x62\xb1\x04\
\x0b\x0b\x0b\x3b\xf1\xf9\x1c\xc4\xca\x48\x24\x7f\x5b\x39\x35\x1f\
\x19\x1d\xfd\xde\xed\x76\x83\xe9\x95\xda\xdf\xf2\xf7\x1b\xaf\x15\
\x34\x1c\x0b\x6b\xdf\xb6\xc2\xd6\xba\x37\x43\xbb\x1b\xcd\x3f\x77\
\x5a\x3f\x0a\xe3\x6e\xc0\x6a\xb3\x5d\xd1\x68\x34\x16\xac\xcb\x8c\
\x44\xf2\x27\xcd\x49\x16\x5a\x39\x35\x2f\x3d\x5c\x73\xf5\xe9\x43\
\xaf\x4f\xa5\x34\x77\x06\x59\x4c\x1a\xb0\xd8\xcd\xc0\x56\x67\x82\
\xac\xd9\x32\xf3\xc2\x89\xae\xe9\xf6\xbe\xb3\x0b\x93\x93\x93\x50\
\x5f\x5f\x3f\x23\x10\x08\xea\xb0\x5e\x4c\x72\x2d\x45\xa0\x20\xcd\
\x49\x16\x5a\x39\x35\x97\x1f\xfd\xc0\xa9\x3e\xd5\xe7\x79\x76\x5b\
\x25\x3c\x5f\x56\x0b\xcf\x14\x18\x20\xf3\xcc\xe0\xcc\xa3\x6d\x03\
\x5f\x96\x7f\x78\xd6\x37\x3c\x3e\x11\xee\xee\xee\x86\xdc\xdc\xdc\
\x41\xac\xcf\x47\x44\xfd\x75\x17\x8b\x09\x0a\xec\x76\xbb\x97\x34\
\xd7\x54\x1c\xfc\x51\xd4\xf0\xfe\x68\x71\xa7\xe3\x2b\xe3\x39\x9f\
\xf7\xc5\x7d\x47\x60\xbb\xa1\x15\x4a\x4d\x27\xe1\xc0\xc8\xcc\x45\
\x79\x8f\xff\xb3\x64\xab\x7b\xe0\xd4\xb9\xf1\x1f\x48\xaa\x92\x92\
\x92\x20\xd6\x57\x21\x62\x11\x2b\x22\x11\xec\x45\x69\xe6\x69\xa0\
\x4a\x43\xfd\x34\x8b\x51\xc2\xc6\xac\x72\x78\xae\xa8\x1a\xb6\xe8\
\x5e\x83\xac\x97\x1a\x21\xa7\xbc\x19\x32\x74\x0d\xc0\xe2\x0b\x81\
\xad\xc9\x83\xc3\x03\x6e\xaf\xcf\xe7\x83\x8a\x8a\x8a\x6b\x58\xff\
\x06\x42\x80\xe0\x47\x22\x30\xa1\x15\x6f\x92\x5b\xe4\xb5\x6f\xb9\
\x59\x6c\x06\xac\x4c\x2a\x86\x98\x94\xdd\xb0\x3e\xdb\x00\xa2\x1c\
\x13\xac\xdb\x62\x84\x28\xc5\x5e\x60\x49\xdb\x81\x25\xea\x60\x6b\
\xef\xd7\xe7\xa7\xa6\xa6\x88\xe0\x26\xd6\x1f\x47\x08\x11\x0f\x44\
\x22\xd8\xe7\x72\xb9\xe6\xc9\x8a\xaa\x57\xcd\xd3\x34\x50\x96\x50\
\x04\x6c\xc3\x4e\x84\xfe\x0f\x3c\x86\x90\xd2\x75\x27\xd4\x8c\x04\
\x2f\xf8\xfd\x7e\xd0\x6a\xb5\xb4\x83\xa3\x88\x04\xc4\x83\x91\x08\
\x8a\x29\x44\xe4\xf3\x8a\xa6\xd6\xb9\xa4\x63\x3d\x43\xc2\xf7\xbe\
\x19\x13\xda\x7e\x1a\x63\x22\x5c\xb1\x04\x89\x24\x7a\x10\xdb\x43\
\xc3\x8a\xb1\x5f\x7a\x9e\x1a\x9a\xfb\xd4\xea\xf9\xf6\x32\x39\x09\
\xd3\x4e\x33\xa8\x5e\x6e\x07\x4a\x4a\x28\x85\x88\x7c\x5e\x7c\xd2\
\x7a\x31\xfe\x84\xcb\xb5\xf6\xf4\xe5\x49\xb6\x06\x35\x17\x92\x2c\
\x7a\x10\x7d\x12\x1a\x4d\x19\x99\xb7\x1b\xc7\x66\xdd\x9e\xa9\x40\
\xb8\xa5\xa5\x05\x64\x32\xd9\x10\xd6\xef\x58\x6e\x06\x71\x14\x7f\
\x4a\x28\x39\xa3\xbd\x6f\x70\x41\xdf\xf5\xb9\x3f\xb1\xfd\xc2\x17\
\x2c\x2e\x0f\xd8\x7a\xdd\xed\x5d\x24\x3b\xe6\x1c\xd4\xbc\xd7\xed\
\xfb\x75\x78\x78\x18\xd4\x6a\xf5\x42\x74\x74\xf4\x19\xac\xdf\xbc\
\x9c\x8b\x78\xb4\x0b\x8a\x3f\x25\x94\xb6\x4e\x3e\x27\x2b\x92\x5b\
\x68\xa0\xa4\x39\xc9\xe2\xf1\x07\xc2\xd4\x5c\xbf\x6b\xd7\xad\xf4\
\xf4\xf4\xeb\x58\xd7\x8b\xa0\xb0\xc9\x23\xe6\x80\x23\xa1\x17\x57\
\x0e\xc5\x9f\x12\x4a\x21\xa2\xdd\x90\x15\xc9\x2d\x34\x50\x22\x26\
\x59\xf0\x99\x05\xa5\x52\x19\x4a\x4d\x4d\x85\xfc\x34\xe1\xf5\x83\
\xdb\x36\x5c\xc1\xda\x03\x94\xe8\xa5\x08\x78\xdc\x3b\x25\x93\xe2\
\x4f\x09\xa5\x10\x91\xcf\xc9\x8a\xe4\x16\x1a\x28\x69\x8e\xb2\x9c\
\xe6\xf3\xf9\xce\xac\xc7\xe3\x6f\xd4\xe4\x25\xc2\x3b\x7b\x52\xa0\
\x56\x27\xbb\x44\x6e\x5c\x4c\x72\xb7\xb7\xe9\x1d\x12\x31\x17\xff\
\x2a\x2e\x44\xc7\x39\x2b\x56\x73\x03\xcd\xb8\x8f\xb1\xd1\x4d\x6b\
\x57\x85\x2a\x37\xad\x83\xa6\x22\x29\x74\x54\xa5\x41\xe3\x8e\x27\
\x66\x17\x93\x44\x3a\x0f\x78\x9c\x5c\x51\xdc\xe0\x04\x9c\x05\x13\
\xb8\xab\x80\xbb\x2f\x47\x92\xf3\xd9\xa2\x47\x42\xc6\x6c\x21\x98\
\x4b\x92\xa1\xeb\x50\x3a\x34\xe9\x9f\xbc\x4d\xb2\xec\x91\xc9\x11\
\xad\x20\xeb\x91\xbf\x29\x44\xdc\x95\xcf\xdd\xa7\xdf\xc5\x48\xd2\
\xaf\x12\xae\xfa\xae\x5a\x2d\x82\xd6\x52\x39\xec\xd1\x88\x7d\x78\
\x5f\x7b\xcf\xce\x64\x8e\xa4\x5b\x23\x7e\x78\x36\x2f\x79\x35\x35\
\x2f\x47\x3c\x74\x4f\x0f\x7d\x6e\x66\xa4\xbd\xf6\x4e\xf3\xff\xe4\
\x5f\xc5\xef\x49\x57\xd6\xb7\x03\x79\xba\xe9\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\xb0\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x05\x77\x49\x44\x41\x54\x48\xc7\x95\x55\x7b\x4c\x53\x77\
\x14\xfe\x0a\x2d\x7d\xf0\x1c\x94\x67\x79\xad\x16\x61\x20\x0c\x21\
\x19\xf1\x31\xdc\x26\x81\xe1\x24\x4e\xc4\x2d\x19\x8b\xd1\x18\x47\
\x32\x97\x98\x2d\x66\xce\x18\x97\x91\x68\xd8\xf6\xc7\xfe\x71\x4c\
\xb7\xb8\x64\x13\x1d\x99\x64\x66\x59\x8c\xc9\x04\x8c\x03\xff\x90\
\x81\x0a\x4c\x10\xf7\xc0\x29\xe3\xfd\xa8\xb4\xb4\xbd\x6d\x6f\x7b\
\x77\xce\x0f\x0a\x3a\x75\x73\x27\x3d\xf9\xdd\x7b\x7b\xef\xf7\x9d\
\xf3\x9d\xef\x77\xaf\x4a\x51\x14\x94\x96\xed\x85\x5f\xf6\x69\xb2\
\x73\x0a\x3e\x8e\x7a\x42\x1d\x91\x9f\x9b\x7c\x57\xf2\xf8\x8b\x64\
\xd9\x27\x5b\xcc\x89\x06\xaf\xec\x5b\xa1\x09\xd1\xea\xbd\x6e\xd5\
\xd4\xd6\xaa\x97\x0b\x26\x67\xfa\x86\xf0\xb8\xc1\x04\x1b\x36\xec\
\x47\x59\xd9\xbb\xd8\x52\xb5\xff\xa4\xf2\x1f\xf1\xd5\x89\x16\x85\
\x1e\x4b\xfd\x5f\x04\x80\x9a\x52\xc5\xa7\xaa\xfa\x63\x97\x05\x90\
\x83\x72\xda\xb5\x94\x56\xf7\x3c\x81\x97\xd2\x64\x5a\xf9\xcd\xe3\
\xe2\x07\xcd\x2f\x4c\xa0\x11\x7c\x0d\x5f\x7f\x51\x77\x6b\x06\x70\
\xd3\x89\x4d\x5a\xca\xbb\x4e\x60\x4c\x9a\xbf\x73\x53\xd5\xeb\x95\
\xb4\xa4\x3f\x36\x41\x72\xc2\x53\x30\x25\x64\x23\xde\xb8\x02\x7d\
\xd7\x5a\xbf\xff\xfd\xd7\x39\xb8\x7c\x80\xcb\x0b\x38\x3c\x4b\x69\
\x9d\x03\xe8\x87\xc2\x55\xeb\xb4\xb4\x14\xff\x13\x2c\x29\x29\x09\
\xd1\xd1\xd1\x0f\x12\x78\x65\x2f\x64\xaf\x17\x3e\x1f\xa1\xaa\x54\
\x3f\x77\xb4\x5f\xb6\xce\xd1\xa1\x83\xd4\x73\x78\x97\x72\x8e\x48\
\x26\xfc\x40\x56\x41\x21\x3d\xa5\x7d\x4e\xaf\x8b\x81\x5e\x1f\x8b\
\xca\xca\x4a\x1c\x3e\x7c\x18\xb2\x2c\x2f\x48\xbe\x14\xdc\x31\x9e\
\x59\xbb\x51\xfc\xe1\x27\x02\x99\xc8\x9a\xcf\x7e\xdb\xb1\xf1\xad\
\x92\x17\x5d\x32\x20\xfb\x02\xe3\x61\x6e\x3a\x9f\x05\x24\xaa\x3f\
\x3c\xfc\xc9\x82\x30\xfd\x38\xd2\xcc\x19\xf0\x52\x71\x0c\xee\xf7\
\xfb\x1f\x20\x10\x1d\x84\xea\x06\xa1\x56\xf5\x63\xeb\x16\x8b\x48\
\xaf\xa4\x34\xdd\xf8\x8d\x74\xa7\x6a\x27\xed\xc0\xf0\x14\x70\x6b\
\x0c\x18\xf8\x13\x18\x1a\x99\x2f\xeb\xfd\xda\x0f\x9e\x96\x24\x69\
\xb7\xc7\xe3\x79\x24\xf8\x62\x07\x7c\xdd\xef\x57\x81\x15\x92\x65\
\x7f\xf9\xae\x9a\xf5\x5f\xaa\x46\x25\x58\x87\x75\x88\x30\x00\xe6\
\x44\xc0\x40\x55\xeb\x82\x9c\x54\x91\x0b\x6a\xba\xf1\x85\xb7\x5f\
\x85\x2c\xfd\xf1\xe9\x89\x86\x93\x31\x44\xf2\x19\xc9\x3b\xc5\x04\
\x0f\x95\x28\x70\xad\xa5\xe5\x22\x91\x78\x93\x4e\x9f\x66\x17\x86\
\xc0\x35\x67\x43\xcf\xb5\x2e\x48\x23\x5e\xd8\x65\x37\x82\x78\x26\
\x92\x84\xa0\x20\x2d\x6e\xdd\x8e\x80\xc5\x92\x81\xe3\xc7\x8f\xd7\
\x4e\x4f\x4f\xd7\xb6\xb5\xb5\xdd\x24\xa2\xd5\xf4\xe0\xcc\x43\x08\
\x14\x1e\x30\x15\xe6\x3b\x90\x90\x90\x54\xd9\xdc\xfc\x13\x22\xc3\
\x43\x41\x12\xa0\xb3\xb3\x13\x92\xdb\x0d\x63\x6c\x3c\x22\xc2\xc2\
\xa0\xd1\x6a\x60\x30\x68\xe0\x71\xfb\xb1\x6a\xf5\x6a\xe1\x9c\xf1\
\xf1\x71\x64\x64\x64\x64\x46\x44\x44\x4c\x1f\x3a\x74\xa8\x80\x20\
\xaf\xdd\x47\x40\xc0\x45\xd9\xd9\xd9\x5f\xed\xda\xf5\x46\x96\xcb\
\xe5\x84\xc3\xe1\x80\xe4\xf1\xa2\xbb\xf7\x3a\x2c\x99\x59\x28\x24\
\xd7\xb0\xce\xa1\xa1\xa1\x88\x89\x89\xa1\x0e\xe6\xb7\x8f\xcd\x66\
\x07\x55\x4f\xc3\x57\x61\x64\x64\x04\xdb\xb6\x6d\x63\xb2\xce\xfa\
\xfa\xfa\xb8\x40\x27\x82\xc0\x60\x30\x7c\x58\x5d\x5d\x9d\x95\x91\
\x61\xc1\xf0\xf0\x30\x34\x1a\x0d\x74\x3a\x1d\x72\x72\x72\xd0\xdf\
\xdf\x8f\xf8\xf8\x78\x71\x8d\x63\x72\x72\x12\x56\xab\x55\x74\x37\
\x3b\x3b\x0b\xa7\xd3\x49\x8e\x0a\x87\xd9\x6c\x46\x5a\x5a\x1a\xca\
\xcb\xcb\x83\x9b\x9a\x9a\x3e\x9f\x98\x98\xd8\xba\x48\x40\x0e\x30\
\x04\x00\xb8\x1a\x3e\x66\x10\xde\x17\x99\x99\x99\x68\x6d\x6d\x85\
\xd1\x68\x14\x76\x54\xab\xd5\xc2\x31\x54\x14\xcb\x22\x8e\x9d\x4e\
\x17\x24\xa7\x1b\xd7\x7b\xae\xe3\xce\xed\x3b\xfc\x7c\x3e\x41\x19\
\xb9\x0b\x41\x30\x36\x36\xa6\xd0\xb0\x40\x5d\x20\x35\x35\x15\x51\
\x51\x51\x08\x09\x09\x11\xed\xeb\xf5\x7a\x14\x16\x16\x92\x1c\x36\
\x41\x4c\x3a\x83\xad\x39\x3a\x3a\x8a\xde\xde\x5e\xd8\xed\x76\x3a\
\x1e\xc3\xf0\xd0\x10\xa6\xac\x33\x88\x8b\x89\x43\x30\xd4\xb4\x83\
\xa0\xe3\x7a\x05\x01\x81\xfc\x95\x97\x97\x57\xc4\x72\x9c\x39\x73\
\x46\x00\x66\x65\x65\x21\x25\x25\x45\x00\x30\x19\x77\xc3\x3a\x0f\
\x11\x10\x13\xb3\x34\x81\xd5\x9c\x66\x41\xee\xca\x5c\x5c\x8c\x3c\
\x06\x7b\xb7\x0f\x3e\xb7\x10\x83\xb7\xa8\x5f\x10\xb8\xdd\xee\x1b\
\xc9\xc9\xc9\x28\x29\x29\x11\x1a\x33\x09\xbb\x87\x35\x2d\x2e\x2e\
\x46\x57\x57\x17\x06\x06\x06\xc4\xf0\x59\x26\xad\x56\x8b\x30\x72\
\x54\x6e\x6e\x2e\x96\x2f\x5f\x8e\xe8\xc8\x68\x38\x3d\x0e\xa8\x9c\
\xaf\xc1\x99\xac\x42\x93\x72\xee\x7e\x9b\x06\x07\x07\x47\xb2\x14\
\x1c\xb1\xb1\xb1\xa8\xa9\xa9\xc1\xe0\xe0\x20\xba\xbb\xbb\xd1\xd0\
\xd0\x20\x2a\x8f\x8b\x8b\x13\x69\x32\x99\xc0\xc5\x30\x01\xeb\xcf\
\x5d\xf4\xf4\xfc\x82\x53\x0d\xa7\xf0\x52\x49\x05\xe2\x92\x8d\xb0\
\x4b\x36\xff\x42\x07\x8a\x20\x20\x19\x26\xce\x9f\x3f\x8f\x35\x6b\
\xd6\x2c\x32\xa7\xa7\xa7\x0b\x20\xbe\xd6\xdc\xdc\x42\x32\x69\x10\
\x19\x19\x29\xe6\x30\x3d\x3d\x89\xab\x57\xaf\x0a\xb9\xdc\xbc\x47\
\xc8\x00\x55\xaf\x54\x22\x31\x31\x51\xb8\x6f\xd9\x32\x8b\x91\xe6\
\x13\x22\x4c\xc3\x9b\x8c\x7d\x4d\xeb\x3a\xd2\xbc\xb1\xae\xae\x2e\
\x91\x87\x1d\xd8\x80\x6c\xc7\x0b\x17\x2e\x08\x69\x74\xba\x10\x1c\
\x39\xf2\x09\x0d\xdc\x25\x86\x9d\x92\x92\x8a\x84\x84\x44\xe4\xe7\
\xe7\xa3\xa2\xa2\x82\x95\x80\x5f\xf1\x23\x2f\x37\xcf\xde\xd7\xd7\
\xf7\x3c\x41\xdc\x14\x20\x3c\xc4\x7b\x24\xab\x2d\x2a\x2a\x52\x5a\
\x5a\x5a\x16\x3f\x93\x34\x0f\xa5\xbd\xfd\xa2\xd2\xd6\x76\x45\xd9\
\xb3\xe7\x88\xb2\x73\xe7\x6e\x65\xdf\xbe\xbd\xca\xb9\x73\x67\x17\
\xef\xb9\x74\xe9\x92\x52\x5a\x5a\xca\xe3\xed\xa2\xfc\x88\x3f\x0f\
\x02\x8f\x09\xb8\x2d\xf6\xff\x3d\x91\x40\xf9\xc3\xe6\xcd\x9b\x15\
\xb2\xa3\xd2\xd1\xd1\xa1\x1c\x3c\x78\x40\x59\xbb\xf6\x59\x65\xc7\
\x8e\x5a\xe5\xe8\xd1\x2b\x8a\xcd\x36\x0f\xdc\xd8\xd8\xa8\x90\x19\
\xe8\x7b\x87\x1f\x29\xdf\xa1\x34\xdf\xf7\xb6\x0b\x10\x04\xb6\x7f\
\x20\xd8\x29\x14\xeb\xe9\xd5\x70\x83\x36\x1b\xbf\x0e\xad\x94\xdf\
\x51\xbe\x67\x32\xa5\xb7\x6f\xdf\xfe\xa6\x42\x3b\x98\x5f\x07\x8d\
\x94\xd5\x0b\x15\x3f\x18\x8f\x22\x60\x97\xdc\x13\x9b\x28\x4b\xb0\
\xf0\xe1\x5e\x88\xb2\x85\xd4\xe2\x5f\xe2\x6f\x80\x26\xfe\x87\xb0\
\x39\x3e\x91\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x2b\x93\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\
\x00\x00\x2b\x5a\x49\x44\x41\x54\x78\xda\xed\x9d\x07\x78\x15\x45\
\xd7\xc7\xe7\x55\x44\xc5\x8a\x4a\x55\x8a\x80\x88\x60\xa3\x0b\x0a\
\x48\x57\x04\xe5\xa5\x77\x11\x50\x04\x41\x8a\x02\x0a\xf2\xd1\x5b\
\x50\x7a\x91\x1a\x7a\x28\xa9\x84\x14\x08\x21\x90\x40\x28\x01\x02\
\x84\x24\x90\x9e\xd0\x6b\x48\xa3\x09\x9e\xef\x9c\xd9\xd9\xbd\xbb\
\x77\xf7\xe6\xde\x9b\xdc\x24\xc0\x9b\xfb\x3c\xbf\x07\x08\x7b\x37\
\x3b\xf3\xff\xcf\x99\x33\xb3\xb3\xb3\x8c\x15\x7e\x0a\x3f\x85\x9f\
\xc2\x4f\xe1\xc7\xda\x67\x36\xfb\x1c\xe9\x8b\x0c\x2f\xac\x8c\x27\
\x57\xe4\x57\x85\xd0\xc3\x91\xb9\x48\x10\x92\x88\x40\xe9\x65\x2f\
\x72\x9e\x99\xf3\x1f\x60\x33\xd9\x7a\x3c\xba\x48\x61\x85\x3d\xbe\
\x42\x7f\x8c\xb4\x47\x26\x22\xce\x42\x68\x20\xde\x5e\x55\x1c\x6a\
\x6e\x2a\x03\xcd\x3c\xde\x86\x7e\xfb\x6a\xc1\xe0\xd0\x7a\x30\x25\
\xa2\x19\xa7\x47\xe0\x07\xd0\xc2\xe7\x25\x78\x65\xd1\xd3\xc0\xa6\
\xb0\x2d\x78\xa6\x67\x0a\x2b\xf3\xf1\x08\xdb\x13\x85\xc8\xe1\x24\
\x72\xf1\x45\xcf\x71\xa1\x1b\x6e\x2b\x07\x6d\x76\x54\x85\xfe\xc1\
\xb5\x60\x5c\x78\x13\x98\x7a\xba\x79\xb6\xb4\xde\x5e\x09\xbe\x0e\
\x78\x05\xbe\xf4\x7f\x59\x32\xc1\x64\xb6\xb5\xd0\x04\x8f\xa6\xf0\
\x1e\x24\x74\x99\x65\x2f\x41\xf5\x75\x25\xa0\xb9\x67\x25\xe8\xb8\
\xb3\x06\x0c\x08\xae\x0d\xd3\x4e\xb7\xb0\x99\xd9\x51\xed\x60\x65\
\xdc\x8f\xfc\x4f\xfa\x77\x23\xf7\x32\xdc\x00\x85\x26\x78\xf4\x0d\
\x90\x3a\xf4\xe0\x27\x30\x3d\xb2\xa5\x21\xf3\xcf\x74\x81\x55\x28\
\x2c\xe1\x7d\x7e\x36\x78\x5f\x98\x0d\x41\x57\x56\x41\xd8\x0d\x0f\
\x4e\x5c\xc6\x11\x48\xc9\x8a\xe0\x9c\x43\xe6\x9f\xed\xca\xbf\xd7\
\x62\x7b\x69\xc5\x00\x39\x36\x81\xd4\xe5\x84\xf3\x7c\xa3\xf0\x93\
\x67\x89\x1c\xcc\x88\x6c\xc5\xf1\xbe\xe0\x04\x87\xaf\xbb\x72\x92\
\x32\xc3\x05\x27\x14\x92\x33\x4f\x9a\xc8\x32\x91\x92\x75\x4a\x41\
\x3e\xd7\xfb\x9b\x9e\xd3\x18\xc0\x6e\x13\xa0\xf8\x14\x95\x6a\xbb\
\x94\xa5\x44\x32\x02\x3b\xa7\x52\xf8\xd3\xff\x14\x8a\xe6\xc8\xcf\
\x2c\xd6\xb4\x2c\x56\xf2\xcc\xa8\xd6\x9c\xd3\xb7\x02\x21\x31\xf3\
\xb8\x82\xc9\x04\xe1\x1a\x43\x24\xcb\x18\x98\x80\xce\x33\xe6\x68\
\x63\xf8\xd4\xe3\x05\x9d\x01\x88\x26\xdb\xc5\xe8\x20\x3b\x13\xa0\
\xf8\x74\x5d\x13\x4f\x36\xe7\xe7\xab\xed\xf2\x26\xb0\x19\x2c\x8a\
\xf5\x66\xa5\x0b\x4d\xe0\xc8\xcf\x4c\xd6\xaf\xc6\xba\x52\x30\x2b\
\xea\x0b\x4e\x62\xe6\x31\x1d\x49\xdc\x08\x32\xe1\xba\xc8\x20\x19\
\x41\xe6\x24\x3f\xcf\xc0\x90\x7a\xbc\xb5\x1b\x19\x40\x63\x82\x3f\
\x70\xf8\x68\x6e\x02\x2e\xfe\xcb\x30\xe9\x64\x0b\xe5\xba\x88\x3a\
\x64\x82\xe9\x2c\xba\xd0\x04\x8e\xfc\xcc\x60\x53\x5b\x7a\xbd\x03\
\x4e\xd1\x5f\x82\x73\xc2\x60\x48\xc8\x3c\xaa\xa0\x37\x83\x1c\x15\
\x8c\x0d\x91\x8c\x9c\x4c\xf5\xe5\xe7\xa2\xd1\x82\x25\xf1\x75\x26\
\x18\xcd\x46\x28\xf3\x04\x42\xfc\xc9\xa7\x5a\xf2\xf3\x98\x53\xc7\
\xe5\xad\x42\x13\x38\xb8\x0b\x08\xee\x1b\x54\x1b\xfe\x8c\x6e\x03\
\x5b\x53\xc6\xa2\xf0\x61\x2a\x64\x23\x1c\x35\x8c\x0c\x46\x66\x08\
\xbb\xe1\xce\xcf\xf5\xc5\x8e\x8a\x56\x0d\xa0\x31\xc1\x58\xf6\x33\
\x73\x62\x6b\x48\xfc\x29\xa7\x5a\xf1\x73\x10\xc1\x57\xd7\x70\xe4\
\x7f\x13\x75\x36\x17\x9a\xc0\x71\x1f\x27\x96\x3c\xf2\x70\x23\xf8\
\xeb\x4c\x5b\xf0\xc1\xec\x3e\x1e\x33\xfa\xf8\xcc\x23\x66\x46\x30\
\x37\xc3\x51\x8b\x91\x21\xec\x86\x1b\x3f\x57\xbd\x2d\x65\x2d\xe6\
\x00\x96\x4c\x40\xe2\x4f\x8d\x68\xcd\xbf\x4f\x90\xf0\xe7\xc4\xc8\
\x82\xfe\x2e\xff\x9c\xa8\x5b\x68\x02\x87\x8d\x02\x60\xce\x99\x76\
\x9c\xc3\xd7\xb7\xa2\x01\x0e\x4b\x26\x50\x8c\x60\x6c\x86\x44\x1d\
\x92\x19\x42\xaf\x6d\x54\xce\x47\xfc\x76\xac\x09\x8c\x0d\x6f\x00\
\x83\x0f\x55\x87\x1e\x7b\xdf\xb4\x68\x82\xce\x81\x65\x61\x5a\xc4\
\x17\xfc\x3b\x0b\x63\x3a\xc3\xb1\x9b\x9e\x3c\xa1\x3c\xa7\x10\x01\
\x21\x68\x02\xf5\xb9\xeb\x6e\x2e\x57\x68\x82\xdc\xce\xfc\xbd\xb6\
\xb8\x18\xcc\x3d\xfb\x35\x27\xe2\xd6\x4e\x61\x00\x15\x99\x6a\x23\
\x58\x8f\x0c\x7e\x17\xff\x52\xce\x67\x04\x0d\x0f\x7f\x3e\x5c\x13\
\xda\xfa\x97\x56\x92\xc4\x66\xdb\x4b\xc2\xf4\xd3\x5f\xf2\xff\x5f\
\x14\xd3\x05\x4e\xdd\xf2\x47\xf1\x4f\xaa\x30\x0d\x31\xc9\x04\xea\
\xf3\xd5\xfb\x9f\x34\x81\x34\x76\xf7\xe0\xd3\xb6\xb9\x0b\xff\x93\
\xaa\x38\xbf\x01\xf3\xce\x7e\xc3\x89\xcb\x38\xa4\x10\xaf\xa0\x37\
\x43\x76\x91\x21\xec\x86\x2b\xb8\x9d\xfb\x3f\x4c\x28\x7f\x50\xce\
\x6b\x89\x51\x47\x3e\x87\x0e\xfe\xef\xc1\x8c\xd3\x6d\xf8\xbf\x17\
\xc7\x76\x45\xf1\xfd\x54\x23\x8a\x13\x28\xfa\x09\x33\x33\x9c\x84\
\x90\x6b\x6b\x34\xe7\xa9\xb7\xb9\xfc\xff\x90\x09\x24\xf1\xc3\x3f\
\xd8\x50\x06\x9e\x9f\xf7\x0c\x8d\xa5\x07\xe2\x4f\x9f\xb6\xf3\xfb\
\x34\xd7\x9f\xfa\xe6\xf2\x57\x60\x74\x58\x53\x98\x1f\xd3\x1e\x36\
\x24\xfd\x8c\xc2\x1f\x34\xc3\xcc\x10\x99\x87\x35\x24\x58\x88\x0c\
\x89\x9c\xa3\x10\x93\xbe\x1f\xfb\xee\x55\xb0\x25\x65\x0c\x2c\x89\
\xed\xc6\x7f\x8f\x25\xe8\xff\x25\xf1\xc3\x55\xa8\x4d\xa0\x35\xc3\
\x7e\x34\x81\xfa\xfb\xf5\xb6\xfc\x2f\x98\x40\x88\x5f\x1f\x0b\xbb\
\x20\xe6\xbf\x30\x26\xac\x99\x64\x82\x71\x6c\xa8\x55\x13\xa8\x84\
\xa7\xef\xff\x1c\xda\x88\x9f\x43\xc6\xef\xd2\x6c\x14\x3a\x54\xa0\
\x37\x42\xbc\x39\x8a\x09\x64\x8e\xe8\x48\x54\xcc\x20\x19\xe2\xe0\
\xf5\x8d\xe0\x71\x7e\x82\xe6\xf7\x12\x4b\xe3\xba\xf3\xe1\x63\x52\
\xd6\x71\x14\x5c\x26\x5c\x47\x8a\x99\x19\xf6\x5f\x5b\xab\x39\x4f\
\xfd\x27\xda\x04\x8a\xf8\x15\x60\x61\x6c\x07\x85\xdf\x8e\x36\xcf\
\xde\x04\x1a\xe1\x2b\xc0\xa4\x93\x5f\x68\xbe\xef\x7e\x7e\x3c\x6f\
\x79\xb1\x19\x07\x04\xa1\x1c\x63\x23\x1c\x44\xf1\x0f\x0a\x03\xc8\
\x1c\xb6\x62\x06\xf3\xc8\x10\xc6\x23\x43\xc8\xd5\xd5\xb0\x36\x71\
\x10\xac\x43\xe8\xf7\x26\x65\x1d\xd3\x91\x6c\xd1\x10\xa6\xc8\x40\
\x26\x50\x97\x87\xca\xf8\xe4\x99\x40\x88\xff\x09\x16\x6e\x51\x6c\
\x47\x1d\xbf\x5b\x32\x81\x74\x0f\x3f\xf1\x1d\xe7\x12\x30\xec\x60\
\x63\xcd\x77\x36\x25\x0f\x83\x93\xb7\x7c\x21\x26\x63\x3f\x27\x96\
\x73\xc0\x82\x11\x42\x75\xd1\x41\x1b\x0d\xf4\x86\xb0\x1c\x15\xf4\
\x91\x41\x26\x49\x8d\xc6\x0c\xc7\xcd\xa2\x83\xd6\x10\x64\x02\x75\
\xd9\xa8\x9e\xd8\x2c\x96\xfe\x64\x98\x40\x11\xbf\x22\x2c\x89\xeb\
\xa4\x40\x02\x06\x5c\x9e\xa7\xfc\x7b\xec\xb1\x16\x26\x13\x4c\x60\
\x95\xe9\x7e\xfe\xeb\x8b\x5f\x80\x81\x21\x0d\x35\xdf\x5b\x9d\xd8\
\x0f\x0e\xdf\x70\x41\xd1\x43\xcc\x90\x4d\x60\x6e\x84\x03\x28\xf8\
\x01\x43\x13\x28\x64\xa2\x21\x38\x5a\x23\x24\x18\x62\xa9\x8b\xd0\
\x1a\x22\x29\xeb\xa8\x85\xa8\xa0\x8f\x0c\x07\xae\xaf\x55\xca\xf7\
\x67\xf4\x37\xd0\xc0\xb5\x04\x94\x5b\x55\x54\x8a\x04\xdd\x59\x99\
\xc7\xd7\x04\x42\xfc\x06\x28\xfe\xd2\xb8\xce\x0a\xeb\x93\x06\x41\
\x44\x9a\x3f\x44\xa7\x07\x41\xd0\xd5\xa5\xca\xcf\xc7\x1e\x6b\x29\
\x99\xc0\x89\xdd\x6a\xe6\xfe\x0e\xfc\x15\xdd\x5e\xf9\xbf\x15\xf1\
\xbd\xc0\x1f\xfb\xf9\xb3\xe9\xc1\x9c\x98\x0c\x19\xad\x09\xb4\x46\
\xd8\x6f\xc5\x08\xe6\x51\x41\x90\xa9\x8d\x0a\x09\x1c\x7b\xf2\x85\
\x30\x6d\x54\xc8\x32\x36\x04\x19\x80\xc4\x97\xcb\x48\xe5\x6d\xe0\
\x5a\x52\x99\x5b\x50\x4c\xf0\x58\x46\x02\x59\xfc\xad\x15\xe1\xef\
\xf8\x2e\x0a\x1b\x92\x07\xa3\xf8\x7e\x28\xfe\x1e\x05\x32\x81\xfc\
\xff\xd3\x22\xda\x72\xd4\xdf\x71\x3d\x37\x06\x93\x2c\x6f\x14\x7e\
\x9f\x44\x06\x11\xcc\x31\x36\x42\x08\x0a\x1e\x62\x66\x04\x23\x33\
\xa8\x0c\x91\x19\xaa\x8a\x04\x6a\xcc\xcd\x60\x39\x2a\x24\x1a\x76\
\x11\x48\x16\xa1\x37\x02\x89\x2f\x97\x71\xce\x99\xff\x42\x43\x95\
\xf8\x8f\xb7\x09\x14\xf1\xdf\x86\x65\xf1\x5d\x15\x24\xf1\x7d\x51\
\xf4\x40\x81\xc9\x04\x7b\xd1\x04\xea\x63\x89\x55\x09\x7d\xb0\x7f\
\x74\x46\xd1\xf7\x9a\xb1\x4f\x8b\xc6\x08\x5a\x43\xc4\x5a\x34\xc3\
\x7e\x63\x23\x08\x33\xc4\x73\xac\x99\xe1\x90\xa1\x19\x12\x75\xa8\
\xcd\x20\x99\xe0\xc0\xf5\x35\x4a\x39\xe7\x9e\xe9\x60\x28\xfe\xe3\
\x69\x02\x21\x7e\x43\x14\x7f\x79\x42\x77\x85\x8d\x29\x3f\x09\xf1\
\x77\xab\x0c\xa0\x35\xc2\xde\xab\x7f\x2b\xc7\xfb\x5c\x9a\x06\xa7\
\xd3\x76\xc2\x19\xec\x26\x88\xb3\x1c\x95\x09\x32\xf6\xe9\x88\xe1\
\x68\x8d\x10\xab\x31\x81\xb1\x19\xe2\x34\x46\x38\x20\xa2\x81\x6c\
\x02\xcb\x66\x48\xd0\x60\x32\x41\xa2\x82\x30\x40\x96\x8c\x14\x0d\
\x48\x7c\xb9\x9c\xf3\xce\x76\xcc\x56\xfc\xc7\xcb\x04\x8a\xf8\x95\
\x60\x45\x42\x0f\x85\x4d\x29\x43\x70\xa8\xe6\x03\x51\xe9\x01\xc8\
\x6e\x61\x82\xdd\x86\x66\xd8\x77\xed\x6f\x38\x74\x63\x23\x8a\xbe\
\x47\x85\xda\x04\x41\xfa\x88\xa0\x33\x81\x91\x11\xac\x9b\x21\x2e\
\x1b\x33\xc4\x65\x63\x86\x04\x9d\x19\xf4\x91\x41\x36\x43\x28\x8a\
\x2f\xd7\xcb\xfc\xb3\x9d\xa0\xa1\x5b\x49\x9b\x6e\x38\x11\x7c\x25\
\xd2\x23\x6b\x02\x21\xfe\xa7\xdb\x2a\xc1\xca\xc4\x9e\x0a\x2e\x24\
\x7e\xda\x0e\x21\xbe\x89\x68\x4e\xf6\x66\xd0\x9a\x40\x42\x31\x41\
\x86\xcc\x5e\x33\xd4\x26\xd8\x07\x61\x37\x37\x43\xc8\xf5\x15\xb0\
\xfb\xca\x5c\x8e\xeb\xf9\x51\x0a\xf2\xcf\xf6\x5f\x5f\x09\xe1\xa9\
\x9e\x26\x13\x64\xca\x1c\xd0\x11\x6f\x21\x32\x24\x28\x58\x36\x03\
\x89\x2f\xd7\xcb\x82\x98\xce\xf0\xa9\x5b\x29\x9b\xc5\xd7\x2c\x47\
\x9b\xc0\xdc\xb1\xc6\x9f\x7f\x74\x4c\xa0\x12\x7f\x55\x62\x2f\x85\
\xb5\x49\xdf\x61\xcb\x47\xf1\xd3\x76\x49\xa4\xef\xb2\x60\x84\x00\
\x8b\x46\x38\xa3\x41\x6d\x04\x95\x19\xd2\x4d\x66\x38\x78\x63\x2d\
\xf8\x5f\x9e\x09\x5b\xce\x0d\xd3\x5c\xcb\xe8\x23\x2d\x61\xc8\x81\
\x26\xf0\x8d\xcf\x87\x86\xd0\xff\x4d\x0c\x6f\x03\x5e\x17\xfe\x40\
\x43\xac\xe2\xbf\x23\x4e\x63\x08\x73\x23\x18\x9b\x21\xc1\x82\x19\
\x42\xaf\x3b\x2b\xd7\xb2\x30\xa6\x8b\xdd\xe2\xeb\x4c\x30\x91\xb9\
\x61\xcd\x17\x7d\x64\xc4\xff\x6c\x5b\x65\x70\x4e\xea\xad\xb0\x2e\
\xb9\x1f\x84\xa5\xba\xa0\xc8\x3b\x05\xbb\x0c\xc8\xce\x04\x26\x33\
\x18\x9a\x20\x03\x0d\x20\x08\xbb\xb9\x09\x73\x86\xc9\xf8\x3b\xfb\
\x2b\xbf\x7f\x4c\x58\x2b\x68\xe9\x59\x0d\xaa\xad\x29\xc5\x1f\x00\
\xa1\xbb\x86\x74\xe3\xa8\xf5\xf6\x77\xa1\x95\x57\x55\xa0\x55\x44\
\x2d\x3c\xab\x40\x73\xcf\xca\xd0\xcc\xb3\x12\x7f\x6e\xe0\xd5\x45\
\xcf\x41\xb1\x79\x45\xa1\xe6\xa6\x72\x30\xe2\x60\x2b\xf0\xbd\x3c\
\x15\x4e\xa7\xfb\x59\x8c\x08\xf1\x16\x8d\x10\xaa\x31\x42\xe8\x0d\
\x67\x4d\xdd\x74\xda\xf9\x51\xb6\xcb\xcd\x6c\x36\x41\x81\x2f\x51\
\x57\x89\xbf\x26\xa9\x8f\xc2\x7a\x14\x22\xec\xa6\x0b\x44\xe2\x58\
\x3f\x32\x9d\xd8\x69\xc5\x08\xbb\x54\x26\xd0\x1b\xe2\x0c\x27\x50\
\x47\xc8\xb5\xe5\xd8\xc5\x0c\x56\x7e\xef\xe4\x13\x6d\x81\xae\x85\
\x44\xa4\x49\xa4\x66\x1e\xef\xc0\x0f\xc1\x0d\xc1\x29\xaa\x1d\xbf\
\xe1\x42\xb7\x5f\x69\x31\xc6\xec\xe8\x36\x7c\x8d\xde\x8c\xc8\xd6\
\x30\xed\x74\x4b\x98\x12\xd1\x1c\x26\x9d\x6a\x0a\x13\x4e\x35\x81\
\x9f\x0f\xd5\x85\x96\xdb\xdf\xc6\x0a\x7e\x16\xde\x58\xf2\x22\x0c\
\xdc\xd7\x14\xf6\x5c\x9d\xaf\x32\x81\xbe\x8b\xc8\xce\x08\xa7\x6e\
\x79\x6b\xea\x86\xf8\x33\xb2\x03\x14\x9b\xff\xd4\x63\x6e\x02\x45\
\xfc\x2a\xb0\x36\xf9\x5b\x85\x0d\x29\x03\x78\xcb\x8f\xc4\x96\x23\
\x89\x6f\x22\x4a\x63\x04\xbd\x21\x8c\x4d\x10\x20\x0c\x80\x64\x48\
\x84\x5c\x5f\x0e\x9b\xcf\xfd\xa4\xfc\xce\x01\xfb\x3e\x85\xf2\x2b\
\x5e\xe3\xc2\xb7\xf0\x78\x17\xfe\x38\xde\x1a\x96\xe2\xd8\x7a\x71\
\x5c\x27\x3e\xbf\x6e\xab\xf8\xe3\x4f\x36\x82\x71\x27\x3e\x85\xdf\
\xc3\x1b\xc0\x98\xe3\xf5\xa1\x5b\x60\x35\x28\xb9\xb4\x18\x3f\xf7\
\x9c\xd3\x7d\x79\x99\xe2\x32\x43\x04\x5a\x33\xc4\x6b\x8c\xa0\x35\
\xc3\xc6\x94\xef\x35\x75\x44\x54\x5b\x5b\x1a\x6a\x6e\x79\x3e\xc7\
\x06\x20\x68\xd9\x3a\x9b\xc9\x32\x51\x8d\xf2\xf9\x6b\x02\xe9\x59\
\xbb\xf0\x46\x28\xfe\xba\xe4\xbe\x0a\x54\x50\xa9\xe5\xfb\x69\x49\
\x37\x8a\x04\x5a\x13\x44\x1b\xa2\x8d\x06\x47\x6e\x6e\xc4\xbe\x7d\
\x88\xf2\xfb\xbe\xdf\xf7\x19\x6f\xa5\x44\xbf\xbd\x0d\x78\x66\xbd\
\x2c\xbe\x1b\x2c\x8d\xb3\x26\x7e\x2b\xab\xe2\x8f\x3a\x56\x17\x7e\
\x39\x5a\x1b\x46\x84\xd5\x84\x4f\xb6\x95\xe6\xe6\x1a\x14\xdc\x0c\
\x4e\xde\xf2\xcc\xc6\x04\x32\x5a\x23\xf8\x5f\x9e\xae\xa9\x27\xf9\
\xda\xa9\x05\xe7\x54\x7c\x5a\x86\xc6\x9f\x6f\xfc\x94\x2d\x45\x45\
\x5a\x22\xaf\xe5\xa7\xf8\xa9\x8d\x5c\xab\xc0\xfa\x94\xef\x14\x36\
\x9d\xfb\x01\x5b\xfe\x26\xde\x67\x46\x1a\x42\x11\xc0\x08\xeb\x46\
\x38\x9d\xe6\x03\xde\x97\xc6\x2b\xbf\x6b\xec\xd1\x2f\x79\xab\x24\
\xe1\xfb\xef\x6d\xc8\x13\xab\xbc\x12\x7f\xd8\x91\x8f\x60\xe8\xe1\
\x0f\xa0\xfd\xce\x8a\xf0\xec\xdc\xa7\x61\x50\x48\x73\x38\x99\xa6\
\x36\x81\x75\x23\x50\x8e\xa2\xae\x2b\x62\x59\x7c\x4f\x2e\x60\x4e\
\xba\x01\x65\x21\x6a\x1b\xe6\x8b\x8a\x4c\x40\x3a\x20\xa5\xf2\x43\
\xfc\x8a\x24\x7e\x63\xd7\x77\x30\xd4\xf7\x53\x70\x39\x37\x90\x17\
\x32\x32\xcd\xd7\x44\xba\x8c\xd6\x08\xd6\x4d\xb0\x13\x45\x97\xd9\
\x85\x59\xbd\x33\x9e\xff\x47\xfe\x7b\x96\xc7\xf7\x82\xda\x9b\x2a\
\xf0\xd6\xd8\x23\xa0\x1e\x26\x54\x7d\xf2\x45\xfc\x9f\x0e\xd5\x80\
\x41\x87\xde\x83\x4e\x01\x15\xa1\xe8\xdc\xa7\x60\xc2\xb1\xf6\xc2\
\x04\xc1\x66\x46\x30\x19\x22\x5e\x05\x8d\x50\xd4\xf5\x25\xf3\xde\
\xda\x32\x50\xcf\xb5\x58\x6e\xc4\x9f\x86\x0c\x42\xea\x21\x2f\xe6\
\xbd\x01\x66\xb0\xb7\xe9\x46\xcd\xc0\xe0\xc6\xb0\xf1\x5c\x7f\x85\
\x1d\x97\xc7\x63\xcb\xf7\xe1\x44\x72\x7c\x0d\x50\x9b\x40\x8d\xde\
\x08\xb2\x01\x02\xae\xce\x52\x7e\xc7\xc8\x43\x2d\x30\x71\x2a\x8a\
\x06\x28\x8f\x42\xf7\xc8\xa1\xf8\x2d\x72\x26\xfe\xc1\xf7\x60\xe0\
\xc1\x6a\xf0\x7d\x68\x55\x68\xec\x51\x92\x5f\xc7\xea\xc4\xfe\x28\
\xec\x6e\x61\x02\x35\x26\x23\xa8\x4d\xe0\x79\x71\x94\xa6\xce\x88\
\x8e\x7e\xb5\xa0\xd2\x9a\x67\xed\x4a\xfc\x28\x79\x64\xfd\xd8\x51\
\x21\xfe\x10\xa4\x11\xf2\x3a\xf2\x54\x7e\x74\x00\x4f\xb3\x1e\xe8\
\xbd\x99\x2c\xeb\xc7\xe0\x26\x18\xf6\x07\x28\xf8\x5f\x9e\xcc\x43\
\xb5\xc9\x04\x6a\x6c\x37\x41\x34\x72\x3a\xcd\x1b\x43\xfe\xef\xca\
\xb9\x1b\xbb\x56\xe5\xad\x7e\xf8\xc1\xe6\x3c\x81\x2a\x28\xf1\xfb\
\x1f\xa8\x02\xdf\xed\xaf\x04\xe5\x57\x15\xe3\xd7\xe4\x77\x79\x92\
\x81\x01\xcc\x4d\x20\xb1\xe7\xea\x1c\x4d\x7d\x11\xe3\x8f\x7d\x05\
\x6f\x2c\x2d\x62\x93\xf8\xca\x3e\x05\x83\x58\x04\xea\x30\x1d\x19\
\x86\x7c\x8e\x94\xb0\x6b\x49\x5d\xae\x0d\xc0\xb0\x1b\xf8\x84\xfd\
\x86\xd1\xe0\xce\x8f\x21\x4d\xc0\xe5\xfc\xf7\x0a\xfe\x57\xa6\x18\
\x88\xaf\x8f\x0a\x51\x1c\x3f\x03\xfc\x21\x22\xdd\x1b\x3c\x2f\x8d\
\xe2\xe7\x5b\x70\xb6\x3b\x54\x58\xf9\x3a\x0f\x95\xcb\xe2\x7a\x3e\
\x12\xe2\x7f\x1b\x52\x11\x3a\x04\x94\x85\xa2\x73\x9e\xe2\xd7\x17\
\x96\xba\x01\x85\xde\xa7\xc2\xd8\x0c\x47\x31\x3f\x52\xd7\x95\x5c\
\x3e\xca\x03\xcc\x43\x3c\x75\x0b\xef\xae\x7f\x8e\x8f\x12\x28\x42\
\xf0\x56\x4f\x09\xdf\x74\x76\x17\xc7\x5e\xf4\x28\xda\x2f\x48\x6b\
\xa4\x74\x7e\x8a\xcf\xc4\xd4\xe3\x4b\x48\x2d\x56\x87\x4d\x24\x13\
\x0c\x0a\xf9\x1c\xb6\x9c\x1f\xa8\xb0\xf3\xca\x54\x14\x79\x87\x40\
\x6f\x82\x28\x43\x24\x03\x1c\x4f\xdd\x0c\xdb\x2e\x0c\xe1\xe7\x99\
\x15\xd1\x11\x5e\xc0\x50\x4b\xf9\x06\x25\x4d\xb9\x13\xbf\x99\x24\
\xfe\x49\x7b\xc5\x7f\x57\x27\x7e\xef\xe0\xf2\xd0\x73\xdf\x5b\x50\
\xc9\xb9\x18\x34\xc1\x28\xe0\x71\x71\xa4\x99\x01\xb4\x26\x88\x17\
\x50\xf9\xd4\xf5\x24\x43\xc2\x52\x14\x90\x45\x2e\xb1\xe4\x25\xa8\
\xbe\xb6\x2c\x74\xf6\xaf\x03\xdf\x06\x36\x84\x09\xc7\xdb\xc1\xea\
\x84\xbe\xfc\x77\xf1\xbe\x7f\x0c\x4b\xc0\xfa\xff\x1a\x29\xc7\x0a\
\x68\xdb\x1a\xea\x6b\x5e\x56\x9b\x60\x70\x48\x53\xd8\x7a\xe1\x47\
\x85\x5d\x57\xd5\x26\xd0\x9b\x41\x67\x80\x0c\x5f\x38\x7e\x6b\x33\
\xb8\x5e\x1c\xca\xbf\x4f\xe7\x23\xf1\x29\xd7\x30\x89\xdf\x5b\x2f\
\x7e\x6c\xc1\x88\xdf\x7d\x6f\x59\x68\xbb\xb3\x04\xbf\x46\xba\xde\
\xc3\x37\x9d\x51\xec\xbd\x02\x63\x33\x90\x09\xd4\x75\x24\x43\x65\
\x1d\x75\xb8\x35\x4c\x08\xff\xda\xf0\xff\x65\xaa\xaf\x2b\xcb\x23\
\x03\xef\x06\x46\xf3\xed\x6a\x5e\x64\x05\xf8\xd1\x99\xe0\x27\x2c\
\xc8\xb6\x0b\x83\x14\x02\xaf\x39\x19\x98\x60\x87\xca\x04\x32\xbe\
\x10\x91\xe6\x85\x7d\xfe\x18\xfe\x3d\x3a\x4f\xb1\x02\x14\xbf\xd7\
\xde\x2a\xf0\xb5\x7f\x79\xbe\x2c\xab\xd6\xe6\xd7\xa0\xe6\xe6\xe2\
\xf0\xb1\xcb\xab\x50\x77\x6b\x71\x68\xb9\xa3\x04\x74\x0a\x2c\x0d\
\x5d\x83\x4a\x43\xe7\x3d\x25\xe1\xd5\xc5\x45\x60\x22\x0a\xb7\xe3\
\xf2\xef\x2a\x03\x58\x32\xc2\x3e\xf0\xbb\x32\x41\x53\x47\xf6\xf0\
\xc2\xfc\x67\x79\x1e\x40\xf0\x48\xf0\x2b\xef\x06\x8a\x3c\x1a\x26\
\x18\xc0\xbc\x4a\x62\xe8\x72\xbd\x38\x58\xe1\xd0\xcd\x55\x26\xd1\
\x33\x76\x60\x2b\xf7\x31\x24\x22\xdd\x13\x2b\xf0\x37\xfe\x9d\x9f\
\xf6\x37\xe3\xe2\x4f\x3f\xd5\x3e\xdf\xc4\xef\x17\x5c\x1d\x1a\xbb\
\x97\x85\x4a\xab\x5f\xe6\xe3\x7c\xde\xcf\x8e\x66\x29\x3c\xd9\xea\
\xc1\x0e\x28\x50\xe6\x4d\x3f\xc7\x30\x4d\xc2\xd7\xd9\xf6\x12\x54\
\x58\xfd\x2c\x74\xd9\x59\x97\x5f\x3b\x99\x39\x2e\x33\xc8\x64\x80\
\x2c\x35\xfb\x38\xfb\x6e\xcc\x03\xff\xab\x13\x39\x01\xd7\xa6\xc1\
\xfe\x9b\x4b\x38\x47\x52\xd7\xe2\xb0\xd2\x95\x13\x9d\xe1\x0f\x09\
\x59\x21\x18\x11\x5d\x94\xba\x5c\x9b\xd4\x5f\x93\x2b\x50\x24\xe0\
\x33\x80\x03\x58\xf3\xfc\xce\x01\xf4\x26\x68\x87\x7d\xd1\x2c\x96\
\x3e\xf9\x44\x7b\x70\xbb\xf8\x13\xc7\xef\xca\x78\x45\xfc\x28\x73\
\xcc\x0c\xe0\x77\x75\x3c\xff\xce\x90\xfd\xcd\x2d\x88\xdf\x33\x87\
\xe2\x7f\x9e\xad\xf8\xad\xbd\x2b\xc0\x5b\x2b\xc4\x6c\xda\x70\x16\
\xc3\xc7\xd5\xe5\xd8\x32\x46\xcf\x1b\xd3\x80\x97\xb1\xc9\xc8\x78\
\x64\x2c\xf2\xbb\xe0\x0f\xfe\xf3\xcf\x99\x9b\x6c\x86\x1a\xeb\xde\
\xe4\xd7\x7f\x24\xd5\x59\x18\x20\x48\x1f\x0d\xd0\x04\xf1\x9c\x7d\
\x06\x04\x2b\x24\x70\x42\x38\xa1\x37\x97\x2a\xf5\x39\x39\xbc\xbd\
\x6e\xb4\x40\x49\x22\x9b\x8a\xd7\xdd\x0a\x93\xf2\x7c\x1a\x02\x5a\
\x7a\x3c\xcb\xb3\xa9\x7b\x35\x70\xbf\x34\x44\x21\xec\xd6\x5a\x6c\
\xf5\xde\x0a\x51\x3c\x02\xa8\x91\xc4\x0f\xbc\x3e\x83\x1f\xff\x57\
\x54\x37\x1e\xe2\x46\x1c\x6c\x91\xa7\xe2\xff\x7c\xb8\x16\x34\x74\
\x2d\x2b\xb5\xf4\x3f\xd8\x15\x2e\xfa\x2b\x6c\xbe\x10\x9c\x66\xd4\
\x46\x89\xb1\x75\x3f\xa4\x2b\xd2\x4e\x64\xdb\x34\xd5\xda\x0a\xf9\
\x4a\xfc\xfc\x07\x9e\x89\xb7\x65\x9e\xef\xa3\x01\xa8\x0c\x41\xd7\
\x67\xa3\xd0\x41\x66\xec\xd5\x61\xd9\x08\xfb\x34\x46\x08\xbc\x36\
\x43\xa9\xcf\x7e\x41\x8d\xf8\x8a\x20\xf3\xa1\x61\xe9\xe5\xcf\xd0\
\x6d\xe1\x3d\x78\x2d\x2f\x14\xcc\xda\x80\xd9\xec\x73\x12\x6e\x43\
\xca\x0f\xe0\x71\x69\x28\x27\xe0\xda\x64\x6c\xf9\xdb\x11\x12\xde\
\x08\xc9\x04\x87\x52\x97\xf3\xe3\xe7\x08\xf1\xf5\x7d\xbe\xe3\xc4\
\x1f\x7e\xa4\x36\x7c\xea\xfa\xa6\x24\x3c\xb5\xdc\xba\xcc\x85\xd1\
\xde\x22\x8c\x4d\x12\xa2\xff\x20\xa6\x53\x69\x52\xe5\x7d\xe4\x6d\
\xa4\xac\x18\x63\xd3\x1c\x7b\x71\xc1\x1b\xe2\xe7\xef\x20\x0d\xd9\
\x7b\xec\x27\x8a\x02\x54\x8e\x5d\xd7\x68\x4e\x60\x8f\x8a\x20\x43\
\x43\xc4\x6b\x30\x36\x01\x19\xc0\x1f\x23\xa3\x5c\xa7\xed\xbc\x3f\
\xe6\x2d\xde\xe2\x1d\xc1\xdf\xd9\xc2\x82\x59\x1b\x30\x9b\x25\xf6\
\x0f\x6a\x0c\x9e\x97\x7f\x56\x38\x91\xbe\x15\x5b\xfd\x76\x81\x1c\
\x01\xb4\x84\xa7\xb9\x80\xf7\x95\x91\xb0\x31\x65\x20\xbc\xbd\xb2\
\x04\x7c\xe1\x55\xc3\x81\xe2\x37\xd6\x88\xff\x95\x4f\x65\x23\xe1\
\x27\x88\x89\x94\x6e\x48\x63\xa4\x9a\x18\x53\xbf\x24\xee\xaa\x59\
\x6b\x4d\x4f\x8b\x56\x57\x81\x0c\x40\xe5\xf6\xbd\xfa\x1b\x0a\xbc\
\xc7\x0c\xbd\x09\xe2\x75\x26\xd0\x9a\x21\x81\x13\xac\xa9\xd3\xf7\
\xd7\xbd\x65\x71\xca\x58\x99\x1a\x1e\x86\x19\x41\xbe\x26\x85\xb3\
\x59\xdf\x92\x4b\x5f\x86\xed\x97\x87\x29\x04\x5d\x9f\xc9\x85\x8f\
\xd2\xa1\x35\x80\xff\xd5\x3f\xf8\xf1\xcd\xdc\xab\xf3\x49\x1e\xbd\
\xf8\xdd\x73\x2e\xfe\x09\x49\xfc\xc1\xa1\xb5\xa0\xfc\xca\x97\x01\
\xdb\xf8\x2d\xec\xb3\x3d\x54\xc2\xff\x8c\x74\x12\xf3\xe7\xe5\x45\
\x22\x5b\x24\x87\x21\xf4\x19\x32\x80\x5c\xfe\xb8\xac\x40\x81\xde\
\x04\xf1\x3a\x2c\x1b\x21\x32\xc3\x4b\x53\xaf\x14\x21\x49\x68\x4b\
\xb3\x84\x3c\x29\x9c\xc5\x32\xd8\xf7\xac\x59\xfe\x25\x85\xd8\xfa\
\xa7\x9f\xea\x84\x2d\x79\xb8\xc2\xc9\xf4\x2d\x06\xe2\x6b\x0d\x10\
\x7c\x63\x0e\x3f\x76\x58\x68\x2b\x3e\xbd\x6b\x9a\xe1\x73\x9c\xf8\
\x2d\xbd\x2a\xc2\x73\x73\x8b\x48\x73\xe6\xaf\xb0\x79\x22\xa1\x1b\
\xae\x12\xfe\x2d\xa4\x58\xae\x93\xa7\x29\xd8\x2d\xa0\x01\xe4\xf2\
\x9b\x0c\x10\x68\x18\x0d\x6c\x35\xc1\x89\xb4\xcd\x9a\x7a\x35\x9f\
\x2d\x34\x82\x66\x0c\x79\x52\xf8\x05\x46\xa5\x3c\x4f\x0a\x67\xb3\
\xe1\x1f\xac\x7f\x0b\x76\x5c\x19\xa1\xb0\xfb\xfa\x24\x14\xd8\x4b\
\xb0\xdd\x90\x63\x69\xeb\xf8\xb1\xab\xe2\xfb\x73\x57\xd3\x6d\x5d\
\xc7\x89\xff\x19\xfc\x1a\x56\x1f\xaa\xae\x79\x4d\x6a\xf5\x52\xb8\
\xa7\x39\xf3\xdf\x90\xde\xbc\xcf\x96\x66\xcf\x8a\x39\xac\x82\x66\
\xb1\xa6\x95\x56\x95\x50\xea\x40\x6b\x00\xbd\x11\xe2\x35\x58\x36\
\xc2\xa1\xd4\x65\xca\x39\x67\x9c\xea\x6c\xf3\xba\x01\x1a\x29\xe0\
\xb8\xc5\x2b\xef\x93\x42\x27\x96\x34\xf3\x54\x17\xf0\xb9\x3a\x52\
\xe1\x78\xda\x5a\x14\xd9\x53\x65\x02\xbd\x11\x02\xae\xff\x1f\x3f\
\xf6\x83\xf5\xe5\xa0\xb5\x57\x75\x03\xf1\xbb\x9a\xc4\x8f\xb1\x4f\
\xfc\x01\x21\x1f\x43\xa9\xbf\x5f\x90\x86\x74\x52\xab\x9f\x24\x32\
\xfa\x2f\x91\xaa\x22\xd4\x3b\x36\x3c\xce\x60\xcd\xa8\x2c\x54\xa6\
\x5d\xd7\xc6\xa1\xc8\xbb\x2d\x98\x20\xd0\xc0\x00\x7b\xf4\x11\xe1\
\x76\x10\x24\x20\xc1\x37\x9d\x94\x7a\x1d\x11\xda\x9a\x67\xfb\x76\
\xdd\x2d\x1c\xc5\xef\x14\x16\xcd\xb3\xbe\xbf\xd2\xaa\x92\x98\xf4\
\xfc\xaa\xb0\xe7\xc6\x14\x03\xf1\xb5\x26\x38\x94\xba\x94\x1f\x3b\
\xfe\xe8\x37\x7c\x21\xc7\xd2\xd8\xee\x0e\x13\xbf\x77\xd0\xfb\x52\
\xc8\xa7\x09\x1b\x69\x48\x37\x56\xb4\xfa\xfa\x62\xa1\xc4\x33\x79\
\xd2\x22\x66\xb2\x29\xed\x7d\x6a\xf3\x72\x05\xdd\x98\x2e\x0c\xb0\
\xdb\xd0\x08\xf1\x9c\xec\x4d\x90\x20\x08\xbc\x3e\x59\xa9\xdb\x9e\
\x01\x0d\x0d\x47\x00\x56\xd7\x0b\x0c\xe6\xdd\x5d\x11\x47\x8b\x4f\
\xab\x81\x12\x47\x1e\xfc\x12\xfc\xae\x8d\x52\x38\x9a\xb6\x0a\xa2\
\x32\x3d\x05\x5e\x1a\xa2\x91\xc8\x0c\x77\xd8\x79\xfd\x37\x7e\x6c\
\xa9\xa5\xaf\xf0\x35\x7c\x8e\x12\xbf\x9d\xef\x3b\xd2\xec\x9d\xb4\
\x40\x62\xba\xb8\x53\xd6\x5e\x64\xf6\x2f\xe6\x69\x7f\x38\x8b\x6d\
\x1f\xb8\xaf\x19\x2f\xd7\xc1\xd4\x85\x28\x74\x80\x99\x09\x76\xa3\
\xb0\xbb\x85\xf8\xc8\x6d\x62\x8f\x05\xa4\xd6\x4f\xa8\xeb\xf6\x43\
\x8c\x30\xf6\x2e\x1a\xe1\x6b\x05\x27\xb2\x70\x31\x6c\x7d\xca\x5e\
\x91\x5f\x35\xd8\x76\x9d\xbf\x44\x81\xc4\x6b\xb8\xe5\x1d\xf0\xbf\
\x36\x5a\x61\xf7\xf5\xf1\xd8\xc2\x3d\x24\x14\x13\x78\x72\xe1\x65\
\x0e\xdd\x5a\xc8\x8f\xed\x15\xf0\x29\x54\x5b\x53\xda\x40\xfc\xce\
\xb9\x13\xbf\x3a\x73\xc6\x2b\x9f\x8a\x0c\x15\x93\x36\xe5\x44\x08\
\xcc\xdb\xc9\x11\x27\x96\xbc\xe4\x6c\x5f\x5e\x36\x6a\x04\x92\x01\
\x02\x0c\x0c\x60\x66\x04\x33\x33\x24\xa8\xa0\xfa\x52\xd7\x2f\xd5\
\xb9\xad\xdb\xd5\xc9\xd0\x6d\x64\xec\x06\x4e\xe0\x15\xd6\x16\x39\
\x8f\x55\xd1\xdb\x0b\xa1\x53\x49\xe8\x8f\xd6\x97\xe7\x42\xf7\xde\
\xfd\x19\x4c\x38\xde\x01\x66\x9f\xee\x8e\x2d\x78\x8c\x21\x61\x69\
\xcb\x51\x70\x73\xf1\x65\xb0\xf5\x67\xba\x41\xc0\x8d\xb1\xe0\x7e\
\x71\x18\xbc\x88\x89\x1f\xad\xd7\xcf\x03\xf1\x27\x89\xc9\x9c\x46\
\x22\xe4\x17\xc9\x87\x51\xd0\xc7\x54\x1e\xb9\x1e\xa2\x32\xdd\x21\
\xee\x76\x80\x86\xf8\xdb\xbb\x2d\x10\xa8\x90\xa0\x20\x19\x20\x22\
\x63\xb3\xa6\x7e\x6d\x19\x01\x18\x8e\x08\xfa\xf0\x19\xc2\xb6\x62\
\x32\xcb\xfa\x74\x6e\x07\xdf\xba\xfc\xb9\xfd\x5d\x18\xaa\x6d\x65\
\xf7\x8d\x71\x70\x3a\xd3\x55\x18\xc0\x43\x25\xbc\x89\xc3\xb7\x16\
\xf1\x63\x07\x05\x37\x87\x77\xd7\x94\xca\x2b\xf1\x69\xea\xb6\x8e\
\x98\xad\xcb\x9f\x71\xb0\x13\x1b\xd1\xca\xf3\x03\x51\x0f\x7f\xf0\
\x96\x1f\x7f\x5b\x66\xb7\x0d\x18\x99\x20\x10\x23\xc9\x0a\xa5\x7e\
\x97\xc6\x7c\xc7\x93\x3a\x7b\x0d\xc0\x47\x03\xcd\xd9\x26\xd1\x15\
\x96\xb4\xa5\x2f\x0b\xfe\x2b\xb2\x27\x16\xe4\x77\x85\xe0\xd4\xe9\
\xb0\x3f\x75\x16\x1c\x4e\x5b\xa8\x70\x14\x5b\xfb\x89\xf4\xb5\x0a\
\xd1\x5c\x74\x73\x4c\xe2\x47\x61\xeb\x0f\xc4\xca\xa1\xf3\x51\x28\
\xa3\xc7\xaf\xb4\xe2\x77\x74\x94\xf8\xb5\x44\x96\x9f\x7f\x37\x45\
\x9c\xd8\x89\x51\x87\xda\xf2\xb2\x1d\xba\x35\x5f\x25\xbe\x65\x23\
\x24\xe8\x08\xd4\x11\x7a\x6b\x8e\xa2\xc1\xa4\xe3\x1d\x6d\x5e\x32\
\xa6\x86\xdf\xe0\xaa\x88\x57\x28\x75\x87\xc5\x6d\x09\x67\xe0\x75\
\x69\x24\x04\xde\x1c\xcb\xd9\x7b\x73\x22\x17\x4f\x21\x8b\x70\xe7\
\x44\xeb\xf0\xb0\x80\x27\x1c\x4b\x5f\xc9\xcf\x37\x39\xbc\x13\x7f\
\x52\x27\xb7\xe2\xf7\xda\xf3\xfe\xa3\x21\xfe\x6c\x56\xf1\xc5\xf9\
\xcf\x29\x75\x16\x91\xb1\x09\x05\xde\x95\xad\x09\x0c\xc5\xbf\xa3\
\x27\x04\x1b\x9e\xac\x43\x9f\xdd\x8d\xec\x1a\x01\xc8\x6b\x07\x79\
\x1d\x31\x36\x12\xf9\x44\xcc\x09\x58\x2f\xcc\x9e\x9b\xe3\x14\x0e\
\xa2\x0b\xd5\x06\x88\x96\x31\x34\x80\xde\x04\x67\x04\x21\xa9\xd3\
\xf8\xf9\x3e\xdd\x5a\x15\xba\xee\xaa\xa5\x17\xff\xac\x7d\xe3\x7c\
\x3e\xd4\x6b\xc3\x7c\x0a\x54\x7c\xa9\xce\xe6\xb6\xf6\xfc\x90\x97\
\x2d\x38\x75\x8a\x10\x5f\x6f\x80\x04\x05\x49\xf4\x33\x59\x14\x15\
\x5d\xb1\xdb\xdc\x0c\xc7\xb1\x71\x10\x87\xd2\xe6\x61\xab\xff\x13\
\xf6\xdf\x9a\xa1\xd1\x40\xae\x37\x7b\x9f\x1e\xe2\xd3\xc2\xa3\x59\
\x32\x5e\xe5\x4f\x48\x0d\xeb\x4f\x0c\xcd\x62\x4d\x3f\xde\x50\x01\
\x82\x52\xff\x50\x38\x9e\xbe\x1c\x85\x74\x45\xdc\x2c\xa0\x35\xc0\
\x19\x8e\x87\x86\xc8\xcc\x2d\xfc\x5c\xde\x97\x7f\xe5\x21\x69\x7a\
\x44\xdb\x1c\x8b\xff\x4b\x58\x7d\x69\x92\x47\x1a\xe7\x4f\x15\x09\
\x5f\x9d\x02\x12\x9f\x46\x49\xa9\x2b\xe2\xbe\x17\x75\xb5\x02\xe2\
\xef\xec\x32\x03\x45\x47\x4e\x67\xba\xc0\xc1\xb4\x3f\x35\x75\x6b\
\x0f\x55\x56\x97\xb2\x7b\x04\xc0\xd7\x09\xf4\x64\x21\xa2\x81\xbc\
\x6d\x7d\x24\x34\x8b\x4d\xee\xe4\x57\x1f\xf6\xa6\x8e\x57\x38\x9d\
\xb9\x49\x18\xc0\xd5\xa2\x11\xce\x28\xc2\x9b\x23\x19\xe0\x78\xfa\
\x32\x7e\xae\xa9\x27\xba\xc0\x5b\xcb\x5f\x55\x89\xff\x5f\xbb\xc4\
\x1f\x17\xde\x10\x3e\xdc\x58\x42\x9a\xe1\x93\xc6\xf9\x43\x45\xb6\
\x5f\xbc\x40\x16\x42\xe0\xd0\x98\x1a\x8c\x5c\x57\x67\xb3\xb6\xab\
\x22\xc0\x2e\x14\xde\xc4\x21\x14\x5f\x5d\xaf\xd6\x58\x19\xf7\x03\
\xaf\xaf\xef\xf7\x36\x81\x5e\x81\xb5\xf9\x1a\x00\x7b\x9f\x1c\xe2\
\x09\x60\x33\xbe\x66\xb0\x33\x52\xc6\x96\xd9\xac\xf5\xdf\x05\x36\
\x81\x7d\xb7\xfe\x8f\xb3\xff\xd6\x54\x43\xe1\xcf\x28\xa8\xc4\xbe\
\xad\xc6\x43\xc3\xc1\x34\x27\x7e\xbe\x2f\xbc\x3e\x82\xaf\x76\x54\
\xcf\xb1\xf8\x6d\x7d\x2b\x9b\x2f\x87\x6e\x29\x86\x7a\x4f\x17\x80\
\xf8\xbc\xf5\xcf\x8f\xfa\x96\x97\xed\x68\xfa\x22\x6c\xed\x3b\x39\
\x6a\xe1\x89\x98\xdb\xde\x4a\x9d\x9a\x43\xdf\xff\xfd\xc8\x37\x30\
\x2c\xb4\x19\xb4\xf0\xac\x0c\x5f\xf9\x56\xe0\xa1\xde\xde\xd6\x6e\
\x04\x9f\x05\x94\x12\xc0\x56\xb6\x25\x80\x33\x59\xc8\x82\xe8\x6f\
\x21\xf8\xd6\x04\xce\x91\xf4\x79\x28\xae\xab\x0a\x37\x0b\xb8\xeb\
\xcc\x70\x96\xe3\xc1\x91\xcf\x57\xfa\xef\x57\xf9\x26\x8f\x39\x11\
\x7f\x70\x68\x4d\xa9\xdf\x97\x6e\xec\x8c\x13\xc3\x9a\x02\x5b\x0e\
\x4d\xad\xbf\xe6\x86\x8a\x4a\xd9\x62\x6f\x6f\x47\xb1\x77\xaa\x30\
\x19\xe0\x58\xc6\x62\xe5\x38\x35\x5f\x7a\x7d\xec\x10\xa1\x2d\x26\
\x80\x34\x02\xb0\x39\x01\x14\x23\x80\x6d\xe7\x87\x43\x48\xda\x44\
\xce\x89\xcc\x15\x28\xa6\xab\x01\x6e\x3a\xce\x72\xdc\x75\x9c\xce\
\x5c\xcf\xcf\xe5\x77\xf5\x37\x7e\x41\x92\xf8\xdf\xd8\x25\xfe\xef\
\xe1\x9f\x48\xf7\xf3\xa5\xc7\xa0\xe8\x76\xee\xb7\xc8\x7b\xac\xa0\
\x76\xc5\x10\xcf\x45\x3a\x27\xfc\xc8\xcb\x16\x9e\xb1\xcc\x4c\x7c\
\x13\xf1\x77\x7c\xe1\x40\xda\x54\xa5\x4e\x65\xe4\xfa\x20\xa1\xf2\
\xc2\x00\x22\x01\x4c\x11\x37\xc1\xde\xb7\x9e\x00\x8a\x57\xae\x1d\
\x48\x9b\xac\x10\x95\xb5\x89\x0b\x7e\x56\x83\x9b\x05\xf4\xe2\xc7\
\x60\xeb\x3f\x95\xb9\x9a\x9f\x6b\xe1\x99\xef\x80\x76\xf4\xb6\x5b\
\xfc\xe3\x9f\x40\x87\x9d\x55\xe5\xd0\x3f\x47\x14\xe8\x13\xb1\x62\
\xe7\x3f\x05\x64\x00\x8f\x2e\xfe\x0d\x78\xb9\x42\xd3\xa6\x41\xdc\
\x1d\x1f\x14\xdb\x5f\x27\x7e\x22\x72\x2a\x73\x95\xa6\x4e\x65\xfa\
\xed\x69\x6a\xb8\xb6\xcf\x51\xf0\x04\xb0\x1f\x0b\xc3\xab\xa5\xd5\
\x41\x95\x6c\x49\x00\x9b\xd6\xdc\xf8\x36\x84\xa6\x4f\xe1\x1c\x4a\
\x9f\x69\x26\xbc\x35\x13\x90\xe0\x2a\xee\x48\x9c\xc8\x5c\xc6\xcf\
\x37\x2e\xac\x03\xdf\x96\xc5\x5e\xf1\xc7\x1c\xaf\x07\xaf\x2c\x7c\
\x56\x1e\xf2\xd1\x6a\xdc\x36\xa2\xdf\x7f\xaa\x80\xc4\x6f\x4f\x43\
\xe5\x9d\xd7\xc6\xf2\x72\x45\x64\xad\x85\x84\xbb\xfe\x9c\x44\x85\
\x9d\x0a\x87\xd3\x67\x29\x75\x2a\x43\xdf\xa5\x73\xe4\x55\xf8\x57\
\x12\xc0\xaf\xf8\x7a\x80\xae\x62\xed\xa2\xd5\x19\xc0\x91\x5f\x6d\
\xaf\x09\x07\xd3\xa7\x72\x8e\x65\x2e\xb4\x2a\x7e\x8c\x21\x5a\x23\
\x1c\xcb\x98\xcf\xcf\xd7\x3f\xa8\x19\xdf\x93\xc7\x5e\xf1\x9b\x79\
\x96\x97\x43\x19\x0d\xf9\xfa\x8a\x3b\x7b\xcf\x14\x90\xf8\x3c\xf1\
\x9b\x75\xaa\x27\x2f\xd3\x51\x2c\x5b\x76\xe2\x47\xdd\xde\xa8\xd4\
\xa7\x1a\xaa\x8b\x9c\xcc\xea\xd9\x03\x5f\x0b\xf0\x01\x5b\x24\xd6\
\x40\xbc\x6e\xcb\x82\x86\x85\x03\xf0\xc2\x0e\x65\x4c\xe3\x44\x64\
\xad\x82\xb3\x77\x5c\x15\x62\x34\xb8\x19\x60\x6a\xf5\xb1\x2a\x8e\
\x65\xce\xe5\xe7\xa3\x73\xd3\x86\x4c\xf6\x88\x4f\xaf\x63\xe1\x8b\
\x38\xeb\xf2\xb9\xec\x91\x62\xd1\xe6\x2b\x05\x18\xfa\x83\xbe\xda\
\x5e\x8b\x97\xe7\x70\xc6\x4c\x0c\xfd\x5e\x2a\xe1\xf5\x26\x08\xcb\
\x98\xad\xd4\xa7\x4c\xc0\xf5\x3f\xf2\xbc\xf5\xd3\x70\x51\x24\x80\
\xbf\x22\x9f\xd9\xf6\xe8\x18\x8e\x00\x96\x9e\x1d\x80\x05\x9b\xce\
\x39\x73\x67\x13\x8a\xb9\xcd\x4c\x78\x63\x13\xc4\x6a\x30\x37\xc0\
\x3c\x7e\xbe\x01\x41\xcd\xf9\x6e\x5c\xb6\x8a\x3f\xea\x58\x1d\xfe\
\xba\x36\xd1\xfa\x27\x88\xb1\x6c\xf9\x02\x7b\xfa\x05\xb3\xfe\xaa\
\xce\x65\x60\xf7\x8d\xf1\xbc\x3c\xd1\xb7\x37\xa0\xc8\x7e\x02\xbd\
\x09\xa2\xb1\xf5\xcb\x75\xa9\x86\x0c\x94\x97\x7d\x3f\x41\xe6\x12\
\xf5\x46\x8b\x5e\x3f\xb2\x2d\x59\x76\x62\xb7\xe8\x55\x2b\x47\x32\
\x67\xc0\xd1\xcc\xd9\x16\xc5\x8f\xe5\xb8\x19\x73\xd7\x5d\xc7\xf1\
\xac\xf9\xfc\x9c\xdf\xa3\x01\x68\x2b\x36\x5b\xc5\xff\xe5\x68\x2d\
\x78\x79\x61\x51\xb9\xef\xff\x59\x2c\xe0\x2c\x56\x40\xe2\xf7\x7d\
\x69\xc1\x73\x20\xd7\xcf\xa9\xac\x65\x2a\xf1\xfd\x20\x89\xe3\x6f\
\xe2\x9e\x3f\x1a\xff\x2f\x7e\xac\x9a\x0d\x49\x43\xf3\x34\xf3\x37\
\x48\x00\xbf\x47\x2a\xdb\x96\x2f\xe1\x85\x85\x65\xce\xe4\x9c\xcc\
\x5a\x2c\x0c\xb0\x0d\x85\xdd\x26\x44\x37\x42\x6b\x80\x38\x8e\xbb\
\xc4\x5d\x89\x13\x59\x8b\xf8\x39\x7f\xd8\xdb\x82\xef\xc3\x67\xab\
\xf8\x9d\x03\xaa\x48\x0b\x3a\x19\x9b\x88\x74\x11\x63\xfe\x82\x98\
\xed\xe3\xfb\x20\xfd\x1d\xf3\x03\x2f\x47\x78\x16\xf5\xfb\x3b\x84\
\xe8\x06\xe2\xf3\xd6\xbf\x5e\xa9\x4b\x35\xb5\x37\x56\xb2\xfb\x86\
\x4e\x4e\xe0\x4f\x09\xd9\x95\x00\xce\x66\x9f\x57\x75\x2e\x0b\x47\
\xb3\x66\x71\xa2\xee\xac\xc6\xd6\x8b\xc2\xdf\x75\x35\xc0\x8d\x13\
\xa7\xc3\xdd\x90\xd3\xb7\x57\xf2\x73\x4e\x3c\xd6\x05\xde\x5b\x57\
\xc2\x26\xf1\x47\x84\x7d\x0c\xd5\xd7\xbf\x26\xbb\x98\xfa\xfe\x4f\
\x59\x41\x3c\x02\x2d\xc4\xa7\x6b\xa7\x32\x1c\xcb\xfa\x13\x12\xef\
\xa1\xf8\xf7\xfc\x0c\xf0\x57\x38\x8e\xc7\xc9\x75\x29\xf3\x4b\x68\
\xbb\x5c\xef\x07\x68\x6d\xfd\x1f\x85\x7e\x32\x18\x4f\x00\x1b\xb0\
\x95\xb6\x27\x80\xb3\xd8\x77\x9f\xbb\xd6\xc0\x02\x3a\x71\xa2\xee\
\x38\x63\x0e\xb0\x5e\xc5\x5a\x88\xbc\xb3\xc2\x8c\x95\xf8\xf3\x0d\
\x56\x8d\x10\x8d\xdf\xa5\x73\x2e\x8f\xfd\x11\x4a\x2f\x7b\xd1\x26\
\xf1\x87\x1d\xf9\x50\x4a\xfe\x6a\xb0\x15\x62\xd2\xa7\x72\xbe\xf7\
\xfd\x2a\xf1\xe9\xfa\x8f\x67\xfd\xc5\xcb\x63\x2c\xbe\x1f\x24\x73\
\xfc\x39\x31\x77\x5d\x94\xba\x24\xe8\x91\xf1\x97\x16\x38\x66\x7a\
\x97\xce\x41\x53\xc5\x24\x34\xb5\x74\xfe\x38\x98\xbc\x63\x08\xf5\
\xfb\x34\x59\xd6\x81\x05\x32\xe9\x31\xb7\x46\x62\xbe\xc4\xea\x08\
\x60\xea\xc0\xbd\xad\x20\xfc\xf6\x6c\xbb\x88\xbc\xb3\x1c\xe2\xef\
\xb9\x09\xdc\x0d\x89\xbd\xbb\x95\x1f\x4b\xb7\x4a\xe9\x42\xc7\x1c\
\x6b\x68\x55\xfc\x0e\xbb\x2a\xc9\xe1\x9f\x56\xf4\x7e\xc1\xf2\x6d\
\xdf\x3b\xad\xf8\x5f\x7b\xd7\xe1\xd7\x7e\xe2\xf6\x1c\x88\x47\xf1\
\x93\xef\xf9\x0a\xa1\xcd\xf1\xd7\x11\x8d\x8d\x48\xae\xa7\x49\xc7\
\xbb\xe6\xba\xf5\xf3\xc5\x9d\x24\x34\x3d\xc8\x4a\x42\xd3\xdd\x50\
\x5a\xfc\x2a\x4d\x8d\x3b\x31\xd3\x93\xcc\x93\xc4\x54\xf9\x77\x62\
\x06\xf0\x39\x9b\x56\x01\xcd\x8d\xec\x8b\x05\xfd\xd3\x2e\x4e\xde\
\x9e\xa7\x32\x80\x64\x82\x04\x03\x4e\xde\x9e\xcf\x8f\x7f\x17\xbb\
\x99\x2e\x01\xef\x99\xc4\x3f\xa6\x17\x9f\x36\x67\xa8\xb7\xb5\xa4\
\x1c\xfe\xe9\x6e\x5f\x4d\xdb\x0a\xe1\x58\xf1\x27\x1f\xef\x26\xca\
\x38\x17\xfb\x7c\x59\x7c\x5f\x9d\x09\x52\x34\xf8\x6b\xa0\x06\x22\
\xd7\xd5\xd7\xde\x75\xf9\xcd\x99\xec\x1e\xeb\xb2\x3a\xae\x37\x3d\
\xcf\x38\x4d\xe4\x46\x63\xc5\x50\x8f\x9e\x6d\xfc\x51\x88\xde\x45\
\x4c\x96\xd5\xb1\x7d\x25\xb0\x13\x4b\x5e\x15\x37\x18\x4e\xde\xf9\
\x4b\x03\xfd\x8c\x2a\xe2\xc7\x7d\xad\xa1\xce\xa6\xca\x5c\xc0\xb9\
\x91\xdf\x69\x8e\x89\xbb\xb7\x05\x45\x76\x33\x14\x5e\xc2\x03\xa2\
\xef\xae\xe6\xc7\x8e\x3a\xd4\x1e\x3e\xdc\x58\x52\x11\xff\x57\x03\
\xf1\x69\x67\x8e\xb2\xcb\x8b\x01\x6b\xca\xb6\x89\xf5\xfc\x15\xf2\
\x2d\xf9\x93\x56\x3f\xa7\x4e\xc1\x32\xd3\xf5\x9e\xba\x33\x8f\x97\
\x21\xf9\xbe\x2f\x27\x85\xe3\x67\x05\x7f\x85\xe4\xfb\x3e\x70\xfa\
\xce\x62\xa5\xae\xbe\xde\x91\x33\x13\xf0\x95\xbd\x52\x44\xa4\xc9\
\xb0\x11\xa2\x5b\xec\xc8\xa4\xc7\xd5\x3f\x13\x8d\xa4\xaa\xa8\xab\
\x32\xa2\xdf\x7f\xd1\xf6\x1b\x65\x18\x5a\x06\xa1\xc8\xbd\x76\x35\
\x46\xa1\xab\xf0\xfe\x8a\x7e\x46\x3b\x70\xd6\xda\x54\x8e\x6f\xa1\
\xfe\xd3\x81\xc6\x40\x6f\xfe\xa0\xe3\x4e\xdd\x99\xab\x70\xf6\xee\
\x1a\x45\xec\x44\x1d\x1e\x9c\xf8\x7b\xdb\xf8\xb1\xf4\x98\x33\x9d\
\x77\xe0\x81\x8f\xb8\xf8\x23\x51\xfc\xe1\x28\xfe\xcf\x28\xfe\x90\
\xc3\xef\x2b\x7b\xf2\xf0\xfe\x5f\x9a\xc5\x6a\x63\x5b\x12\xe3\x98\
\x71\x3e\x95\x7b\x5e\x64\x3f\x7e\xad\xa7\xef\x2c\xe4\x65\x48\x51\
\x84\xb7\x5d\xfc\x73\x2a\x92\xef\x7b\x43\xc4\x9d\xf9\x4a\x7d\x7d\
\xb3\xa3\x9e\xdd\x26\xe0\xad\x5f\x1a\x0e\x53\x42\xdc\x4c\x2c\xee\
\x28\x2d\xba\xc6\x97\x44\x84\xcc\x45\x23\x71\x62\x69\xb4\x23\x55\
\x27\xff\xda\x7c\xbf\xba\x79\xd1\x5d\x60\x5d\xca\x77\xb0\x26\xf9\
\x5b\x58\x9d\xd4\x9b\xbf\xd4\x80\x5e\x69\xf2\xed\x9e\x7a\xd0\xcc\
\xed\x03\x88\xb8\x3b\x4f\xe1\xf4\x5d\xac\xa8\xfb\xee\xd9\xe0\xc1\
\x89\xbe\xb7\x82\x1f\x4f\x15\x50\x63\xc3\xeb\x3a\xf1\x07\xa3\xf8\
\x3f\xa2\xf8\x3f\x84\xbe\x2b\xcf\x62\xd1\xfd\xfe\x86\xb6\xdd\xc6\
\xcc\xf5\xf4\x6e\x50\x35\xe7\x37\x61\xdb\xb9\x51\xfc\x1a\xa3\xef\
\x2e\xe3\xc2\x69\xc5\xd7\x9a\xe0\x9c\x0e\x21\xfa\x3f\x7a\x92\xee\
\x7b\x62\x3d\x2d\x50\xea\xcc\x1e\x13\xa8\x5a\x3f\xdd\x05\xed\x91\
\x37\x11\x51\x6c\xf8\x48\x1b\x1e\xd2\xb6\xa5\x46\xe2\xff\x1d\xdf\
\x95\xbf\xca\xed\xcd\x65\xaf\x61\x61\xe6\x6b\x88\xbf\xbf\x59\x23\
\x7a\x92\x82\x87\x42\xe2\x7d\x37\x88\xc4\x4a\xd8\x75\x75\x02\x8f\
\x30\x9d\x70\x9c\x6f\x24\x7e\xb7\x3d\x15\x65\x03\x50\xff\xff\x61\
\x9e\xde\xf2\x95\x9e\x81\x48\x6d\x8f\x82\x1c\x4c\x9b\xc9\xcb\x12\
\x73\x6f\x0d\x0a\xec\x83\x62\xfa\x1a\xe0\x67\x05\x7f\x1d\xe7\xff\
\x91\x48\xb8\xbf\x55\x53\x67\xed\x6d\x34\x81\xaa\xf5\xff\x22\xb2\
\xfa\x97\xf3\xa2\x2a\xca\xb2\x52\x98\x76\x8d\x67\x97\x68\xfb\xd5\
\x25\xb1\xdd\x75\xe2\x2f\x89\xeb\xcc\xdf\x64\x49\xe2\x04\x5c\x9b\
\x00\x91\xf7\x16\x28\x9c\xbd\xbf\x12\x92\xfe\x71\x37\xc3\x43\x47\
\xfc\xfd\x4d\xfc\xf8\xdf\x0e\x77\xe0\xb3\x7c\x3f\x1c\xa8\x8e\xe2\
\x57\x57\xc4\x1f\x70\xe0\x1d\x68\xe3\x5b\x56\x9e\xc6\xa4\x7d\x6f\
\xdf\xc9\x93\xfe\x5f\xbc\xb1\x9c\x8c\xb8\x30\x7a\x00\xbf\xa6\xe8\
\x7b\x4b\xd0\xa8\xae\xd8\x62\x7d\x54\xf8\x1a\xe0\x67\xc8\x79\x8e\
\x7f\xb6\xc4\xde\x5f\xa3\xa9\xb7\xba\x2e\x55\xb2\xbd\x29\x64\xd6\
\xfa\x7b\x8a\xd0\x9f\x27\xc3\x61\x0a\xb3\x1f\xb3\x12\x58\xe9\x63\
\x58\x62\xf9\x15\xc5\x61\x61\x4c\x67\x9d\xf8\xf4\x52\x63\xba\xa5\
\x3b\xfd\x44\x2f\x88\xba\xb7\x50\x21\xfa\xde\x62\x14\xd8\x8d\x0b\
\x9f\x8c\x42\x67\x47\xec\x7d\x67\xfe\x9d\xf6\x3b\xea\xc3\x1b\x4b\
\x9e\x83\x7e\x21\x55\x15\xf1\xfb\xed\xaf\x0c\x5f\xf8\x94\x91\x86\
\x3a\x8c\xf5\x67\x8c\x6f\x7a\xe4\x68\xf1\x87\x53\xab\x6f\xee\xf6\
\x21\x1c\x4e\x77\xe2\xd7\x12\x77\x7f\x1d\xa4\xfc\xe3\x6d\x28\xfc\
\x79\x0d\x7e\x56\xb0\x24\xfe\x4e\x8c\x80\xdb\x34\x75\x46\x75\x98\
\x5d\x04\xa0\x21\x23\x5f\xd2\x25\x65\xfe\x79\xda\xfa\x99\x68\x65\
\x2f\x8a\xa5\xc3\xdd\xd8\x10\x76\x8c\xd6\xee\xd3\xcb\x16\xd4\xe2\
\xd3\xfb\xed\xdb\xfb\xbd\x0f\xcd\xdd\x3f\x84\x33\xf7\x17\x69\x88\
\xbf\xbf\x1e\x05\xc6\xa4\x89\xe3\x61\x01\x4f\x4e\xec\xfd\xd5\xfc\
\x3b\xff\xf5\xf9\x04\x5e\x5f\xf2\x2c\xf4\x09\xae\xc4\xc5\xef\x1b\
\xf2\x36\xfe\xbd\x82\xdc\x05\x90\xe3\xdf\x72\x70\x86\x9f\xf8\xde\
\x9a\xb7\x60\x5d\xc2\x30\xfe\xfb\x63\x31\x72\x25\xa3\x71\xcf\x3f\
\xf0\x51\xe1\x6b\x91\x0b\x1c\x3f\x0b\xf8\x5b\x60\x27\x36\x8c\x6d\
\x9a\xba\xea\x13\xd0\xd4\x6a\xf8\xe7\x8f\x74\x49\x8b\x5f\x69\x5c\
\xdf\x5d\x34\x86\x3c\x9d\x0c\xa3\x5b\xac\xcf\x8b\xe1\x44\x07\x1c\
\x68\x04\xd0\xab\x5b\xe9\x8d\xde\xb2\xf8\x73\xce\xb4\x83\x71\xc7\
\x9b\xc1\xcb\x18\x3a\xe9\x56\xe7\xd9\xfb\x8b\x15\x62\xee\xff\x6d\
\x55\xfc\x73\x2a\xe2\x30\x12\xd0\xf7\xc8\x04\xb4\xed\x7a\xb3\xed\
\xa5\xb8\xf8\xbd\x82\xcb\x49\x06\x28\xc9\x06\x8a\xf9\xff\xdc\x86\
\x7a\x6a\xf1\x89\x6f\x2e\x7b\x1d\x66\x9e\xe8\x2d\xae\x75\x19\x8a\
\xb2\xc5\x4c\x78\x89\x0b\x1c\x5f\x0b\xd8\x26\xfe\x45\x15\xf1\xff\
\xac\xd3\xd4\x13\x95\xd7\x9a\xf8\xfc\x6e\x1e\xcd\xec\x95\x63\x4b\
\xc4\x8d\xb0\xfa\x79\x9e\x0c\xab\x4c\xf0\xac\x70\xdb\x57\x98\x22\
\xb9\x90\x09\x7a\xec\xae\xc5\xc5\xff\x33\xfa\x2b\x70\x8a\xfe\x12\
\x2a\xad\x7e\x0d\x66\x9e\xec\x03\x31\xff\x2c\xd1\x90\xfc\x60\x2b\
\x9c\x7b\xe0\x61\x86\xa7\x45\x12\x1f\x6c\xe4\xdf\x5b\x72\x66\x20\
\x90\x40\xa5\x96\x3d\x0b\x2d\xbc\xdf\x80\x92\x7f\x17\xa5\x9b\x19\
\x8b\x6d\x5b\xca\x64\x31\xb9\x73\x26\x23\xd5\x77\xa9\x0a\xeb\x13\
\x47\xf0\xdf\x13\xf7\x0f\xe6\x2a\x0f\xb6\x08\x91\x8d\xb0\x5d\xf8\
\x8b\x1a\xfc\x0d\x49\xf8\x67\xbd\xa6\x7e\x6c\x11\x5f\x79\x27\xa0\
\x34\x9d\x4b\x7b\x11\x7e\x23\xc6\xf6\xf9\x7a\x23\xec\x19\x11\x7e\
\x5b\xb2\x2f\xd8\x0a\xda\xfe\xb5\x5b\xc0\x47\x5c\xfc\x99\x51\xad\
\xa1\xd3\xce\x1a\x40\xa1\x34\xf6\x9f\xa5\x0a\x49\x0f\x36\x19\x88\
\x6f\x32\xc1\x79\x43\xbc\x20\xe5\x81\x2b\xb6\x92\xd5\x70\x2c\x73\
\x0e\xfc\x1c\xd2\x96\x1b\x81\x47\x80\xb1\x18\xfe\xfa\xf0\x09\x8f\
\x22\x36\x08\xfe\xb9\x68\xe9\x1e\xd4\xbf\xd3\xb5\x8d\x3b\xd2\x19\
\xf6\xde\x98\xca\xaf\x2d\x11\x5b\x61\xca\x03\x37\x14\x6e\x47\xb6\
\xe2\x5f\xcc\x16\x3f\x0b\x18\x8b\x9f\x88\xe2\xab\xeb\xa7\x83\x4f\
\x03\x9b\xc4\xe7\xad\x9f\xca\xff\x2a\xfb\x53\xac\xe7\xb3\x71\x3a\
\xd7\xf1\x9f\x22\x62\xed\x5d\x13\x56\x0b\x03\x12\x9a\xa0\xb6\xcb\
\x9b\x30\x3d\xb2\x25\xd4\xda\x54\x16\xbb\x81\x62\x10\xf7\xe0\x6f\
\x4e\xe2\x83\x75\x70\xfe\xa1\x87\x05\x3c\x2d\xe0\xa5\x21\xe5\xe1\
\x36\x48\x78\xb0\x9a\x9f\x6f\xe9\xd9\x41\xd0\x77\x77\x73\x34\x99\
\xe8\x0e\xa4\x3d\x09\x82\x0c\xe0\x8f\xb0\xd3\x71\x1d\xb1\x82\x9d\
\x4e\x7d\x0b\x7b\x6f\x4e\x13\xd7\xb4\x16\xcf\xb9\x15\x2e\x3c\xdc\
\x0e\x17\x1f\xee\x10\xf8\x58\xc1\xd7\x02\x7e\x1a\x2e\x29\xf8\x1b\
\x92\xf4\x60\x83\x52\x37\x84\xad\xe2\x6b\x5e\x0d\x3b\x9e\x5d\xc4\
\x26\xd8\x5e\x4c\xf6\x14\xd8\x4b\x21\x9f\x16\xf3\xc9\x0d\x70\x40\
\xf6\x1b\x0d\x13\x8b\x2f\x7a\x9e\x8b\xbf\xe3\xd2\x78\x88\x7f\x80\
\x7d\x29\x56\xb4\x25\xe1\x2f\xe8\xf0\xb2\xca\xf9\x87\x98\x47\x3c\
\x74\x41\x01\x9d\xf9\xf9\x09\xfa\x5d\x9b\x92\x7e\xd1\xb1\xef\xe6\
\x74\xe5\x98\xc4\x07\x6b\xb0\x0b\xda\x08\xe7\xd0\x48\xf6\x89\x2e\
\x09\x7f\xc9\x10\x3f\x2b\xe8\xc5\xa7\x6b\x90\xaf\x89\xe8\x68\xa7\
\xf8\x1a\x13\xd0\x4e\x5f\x1d\xd8\x9b\xac\x80\xdf\x0a\x4a\x26\x78\
\x95\xd1\x0e\x13\x23\x58\x08\x89\xef\x73\x79\x3c\x24\x3c\x5c\x0e\
\x49\x0f\x57\x63\x65\x7b\x98\xe1\x69\x01\x93\xc8\x17\x2d\xb2\x5d\
\xc7\x05\x34\xc4\xf9\x87\x38\x3e\xc7\xd6\x4c\xc6\x90\x39\xff\xd0\
\x8d\x73\xf1\x5f\x3c\xee\xdf\x1d\x0a\x97\x74\xf8\x58\xc1\xd7\x02\
\x7e\x3a\x2e\x6b\xf0\xd7\x40\xdf\x49\x79\xb8\x89\xd7\x8b\x4c\x47\
\xdf\x86\xbc\x3f\xcf\xe9\x0d\xa0\x47\xe9\x25\xd1\x4f\x61\x17\xb0\
\xa1\x3a\x86\xda\x93\xb7\x17\x40\xe2\xc3\x15\x28\xbe\x33\x17\xe7\
\x22\x8a\x6e\xc2\xd3\x02\x5e\x36\xa0\x17\xff\xd2\x43\x6f\x1b\xd8\
\xa1\xc5\x0e\x13\x5c\x46\xd1\xb2\xc7\xcf\x02\xfe\x66\xf8\x42\xf2\
\xc3\xb5\xbc\x5e\x64\x3a\x09\xf1\x73\xbb\x00\xe4\xd1\x30\x01\x66\
\xd4\xd5\xd7\x96\x83\x53\x77\x16\x42\xd2\xbf\xab\x20\xf9\x5f\x6c\
\xf9\xff\xba\x62\x8b\x43\xd1\xff\xf5\x34\xc0\xcb\x90\x4b\x1a\xb6\
\x5b\xc0\xdb\x0a\xc6\x22\x5f\xd6\xe0\x63\x81\xec\x05\xa7\x6b\x3f\
\xff\x2f\x46\x9a\x7f\xd7\x73\xa4\xb2\xae\xc1\x9f\x6d\x86\x2b\x28\
\xb4\x31\xd8\xf2\xff\x5d\xc7\x8f\x95\xe9\xe4\xfb\xa9\x43\xc4\x7f\
\x34\x4c\xc0\xc5\x2f\x0f\x11\x77\x16\x61\x41\x57\x23\xce\x58\x51\
\xae\x58\xe9\x9e\x86\x5c\x46\x71\xad\xb3\xdd\x02\xde\x56\x30\x89\
\x7c\xc5\x22\x3e\x16\xf0\x35\xe4\x12\x9a\xf8\xfc\xbf\x1b\x79\xb9\
\xa4\xf2\x19\x73\xe1\x5f\x17\xb8\x8a\x82\xab\xb9\x82\xd1\xe0\x1c\
\x37\x8b\xe9\x38\x47\x8b\xaf\x59\xe7\x37\x95\x1d\x66\xf9\xfa\xa6\
\x70\x14\xbf\x06\x8a\x7f\xfa\xee\x62\x38\x07\xce\x9c\x8b\xb0\x05\
\x2e\x83\xa7\x05\xbc\x6c\x60\x3b\xe7\x8a\x06\x6f\x1b\xd8\x61\x03\
\x3e\x3a\xae\x82\xaf\x0e\x3a\xdf\x45\xd8\x8a\xe5\x59\xa3\x94\xcb\
\x9c\x95\xb1\x43\xa1\xc1\xe6\x6a\xe0\x7f\x65\x92\xf2\xb3\x0b\xb0\
\x49\x9c\x03\x0d\x00\x7e\x70\x1e\xd6\x6b\xbe\xd3\xd9\x2f\x6f\xc4\
\x57\xf6\xfb\xeb\xce\x27\x86\xaa\x8a\xb9\x9a\xfc\x11\x3f\xd2\x66\
\xf1\x73\x66\x04\xfb\xcd\x90\x33\x23\x48\x60\x6e\x01\x9b\x2d\x8a\
\x4e\x1c\x4c\x9b\x0d\xad\x3d\x6a\xf1\x0a\xaf\xbb\xa2\x0e\x94\x58\
\x50\x52\x63\x82\xf3\xb0\x81\x9f\x8b\xfe\xd4\x8a\xff\x59\x9e\x88\
\xcf\x6f\x08\xd1\x50\x58\xba\x23\x38\x4a\xac\x07\x78\x35\xaf\xc5\
\x1f\xfe\xd6\xf2\x37\x34\xe2\x4b\x06\x70\x41\xc1\x3c\x0c\xb0\xdd\
\x14\x97\xc0\x9d\xe3\x38\x43\x58\x37\x05\x5d\xe3\x05\xd8\x98\xad\
\xf0\xc4\xc8\x03\xed\xf9\x10\x57\xb3\x19\xc3\xea\xae\x50\x79\xe1\
\x07\x1a\x13\x98\x93\x0f\xe2\xcb\x6f\x06\x1d\x2c\xa6\x85\xf3\x78\
\x85\xf4\x14\x1c\xf2\x39\xb1\xb4\x39\xa7\xfb\xeb\x0a\x7b\x01\x9d\
\x7f\x09\xdc\xb0\x52\xdd\x05\x1e\x36\x9b\xe2\x12\xb8\x2a\x61\xf7\
\x3c\xac\xc5\x73\xb9\xa0\xa9\xb6\x65\x13\x35\x72\x1f\x25\xa4\x50\
\x9f\xbd\xf0\x54\x4e\x32\x3c\xdd\x9a\x35\x5a\xb9\xdb\x63\xd5\x50\
\xa8\xb4\xe0\x7d\x43\x13\xe4\xa3\xf8\x43\xc4\xa3\x71\xf9\xf2\x72\
\xc8\xe7\x59\x5b\xd6\x0d\x87\x7e\xb7\xa9\x55\x98\x17\xfa\x3c\xac\
\xe3\xc2\x99\x5a\xb3\xbb\x55\x43\x50\xf7\x91\x9d\x08\x74\x4e\xc9\
\x10\x5b\x2d\x44\x88\x9c\x19\x82\xce\x69\x4d\x78\x5a\x74\x61\x6d\
\x03\xa6\xee\x2b\x87\xc0\x47\xf3\x9b\x6b\x4c\xf0\xa4\x8a\xcf\x44\
\x92\x51\x8d\xd5\x63\x7f\xd0\x14\x30\x15\x54\x5f\x81\x6b\x14\xb1\
\x8c\x50\x9b\x82\x92\x27\x6b\xad\xd0\xb2\x29\x36\xe2\xf9\x3c\x72\
\x9c\x4b\x5c\x30\xeb\xab\xa9\x5b\x9b\x78\xb4\xbb\xcd\xc2\xab\xe9\
\xb3\x62\x34\xd4\x9d\xdf\x8e\x9b\xe0\x49\x16\x5f\x5e\x1f\xa0\x79\
\x17\xa0\xb1\x09\x9c\x79\x0b\xa3\x2e\x41\x8b\xc9\x08\xb6\xf4\xbd\
\xd6\x90\x0c\x95\xb3\x91\x06\x75\x35\xea\x04\xef\xdd\xb5\xd2\xb3\
\xf3\xf6\x6e\xba\x2c\xd3\x7b\xf9\x28\x68\x30\xa3\xff\x13\x2d\x7e\
\x0e\x4c\xb0\x81\xf7\xef\x5a\x13\xb8\xf2\x16\xac\x3e\x6e\xc0\xde\
\xc6\x50\x63\x7d\x29\x1e\x7a\xcd\x13\xcc\xec\xc8\xcd\x88\x43\x7d\
\x9e\xad\x29\x63\x1c\x22\x5a\xdf\x39\x0b\xa0\xe7\xdf\xbf\x38\x5e\
\x7c\x5a\x03\x20\xad\x00\x2a\x70\xf1\xed\x36\x01\xb5\xb4\x4b\x3c\
\x2f\x70\xe5\x7f\x1a\x89\x4f\x95\x4f\xf0\xdd\x2b\xd0\xe9\x34\xdc\
\x22\x33\x50\xcb\xcc\xae\x1b\xc8\xf9\x88\xc3\x43\x97\xe5\x3b\x42\
\xac\x6f\xfc\xca\x40\x9f\x3f\xe7\x41\xf7\xa5\x23\x1d\x2b\xbe\xb4\
\xeb\xe9\x64\xb1\x1e\xb2\x51\x41\x8b\x6f\xb7\x09\xa4\xbc\xc0\x45\
\x37\xc1\x22\x8b\x6f\xbe\x8b\x15\x3d\xee\xc4\x67\xb8\xd0\x0c\xd4\
\x27\x93\x21\x48\x24\xf5\xe8\x83\x26\x5b\x72\x32\xe2\x30\x8d\x3a\
\x4c\xd7\x31\xe6\xc8\x97\x0e\x6b\xb1\x64\x82\x5e\xb3\xe7\x40\xb7\
\xc5\xc3\x1d\x29\xfe\x24\xb1\x06\xa0\xbe\x78\x1e\xa2\xc0\xc5\x37\
\x36\xc1\x64\x96\x6a\xd9\x04\xda\x84\xab\xed\xf6\xda\x36\x3d\x0f\
\x4f\xb3\x5d\xf2\x43\x8f\x94\x9c\x51\xb8\x96\x67\xdf\xb2\x4b\x30\
\xb3\x33\x84\xf9\x10\xb0\xcb\xae\x0f\x1c\x1a\xb6\xc9\x04\x3d\x66\
\xfd\x05\x5d\x17\x0d\x73\x94\xf8\xfd\x98\xb4\xaf\xff\x2b\xac\x40\
\xdf\x00\x6a\xcd\x04\x25\xd8\x4f\xb4\x36\x20\x3b\x13\x90\xf8\x1f\
\x6d\xa8\x90\xa3\x5b\xa1\x94\x60\x99\x0c\xe0\x62\x31\xc1\xb4\x66\
\x88\x8b\x66\x43\x40\x7a\xe9\xb3\xa3\x1f\xcb\x26\x13\xb4\x73\x1a\
\x0d\x55\x16\x55\xb6\x2b\xbf\xb0\x20\x7e\xc1\xec\x77\x9c\x03\x13\
\x7c\xcc\x17\x6d\x8e\x67\x17\x8d\x4c\x90\x1b\xf1\xe5\x2d\xce\xd5\
\xd3\xcf\xfa\x51\x46\xf6\x86\xb8\x64\x30\xfc\xa4\x6b\xca\x8b\x7d\
\x79\x28\x62\xf1\x79\xfa\x3f\xd8\x15\x5b\x47\x06\x8f\xab\xf8\x6a\
\x13\xd0\x0a\xd5\xea\xe2\x61\x12\x8d\x09\x72\x2b\xbe\xb9\x01\x2e\
\xf1\xb9\x06\x57\x15\x6e\x36\x20\x99\x40\x7d\xb3\x86\x22\x8a\x23\
\xb7\x66\x21\x33\xf1\xc5\x9b\xf4\x0c\x83\xfc\xd4\xee\x20\x76\xca\
\x9a\x09\x1e\x77\xf1\xcd\x97\x90\x57\x53\x9b\x80\xc4\xa7\x1b\x48\
\x39\x1d\x63\x1b\x1b\x60\x9b\x0a\x57\x03\x64\xd1\xb7\xf1\x3e\x9f\
\x5a\x3d\x09\xaf\x1e\xff\x13\x34\xf9\xe3\xa8\x2d\x58\xf9\x28\x86\
\x44\x94\x56\xee\xd2\xe3\xda\x13\x99\xfc\x88\xf6\x10\x76\xd4\x92\
\x09\x9e\x14\xf1\x2d\x9a\x80\x6e\xa4\xd8\xbb\xa7\x7d\x76\x06\x20\
\x11\x2f\x6a\x0c\x20\xb3\x95\xdf\xd5\x93\xc4\x5e\x97\xed\x6d\x5d\
\x47\x8d\x00\x48\x78\xb1\x30\xe3\x2e\xdf\x9c\x41\x7a\x1f\x21\x3d\
\xae\xfd\x2b\x93\xde\x3b\x5c\x5f\x3c\xcb\xd8\x8e\x0d\x65\x61\xe6\
\xeb\x00\x9f\x34\xf1\x2d\x9a\x20\x37\x6b\xe0\x64\xaa\xae\x29\xa9\
\x9a\x0a\x96\x85\xde\x60\xb3\xd8\x6a\x68\xda\x96\xee\xed\xd7\xdd\
\x52\x26\xc7\xa1\x9e\x0f\x55\x49\x3c\xd3\xeb\x67\x69\xa2\x86\xde\
\x42\x4a\x1b\x32\x7c\x2e\x9e\xa3\x78\x41\x4c\xa1\x97\xe7\xcf\x54\
\xa8\x4c\xf0\xa4\x8a\xaf\x37\x01\xed\x4a\xd5\x07\xc3\x22\xb6\xe0\
\xdc\xec\x86\xd5\x76\xc7\xfb\x76\x89\x4c\x5d\x0f\xf5\xf1\x34\x7f\
\x40\xf3\x08\xb4\x90\x83\xe6\x15\xe8\x3a\x68\x48\x99\xd3\xa9\x5f\
\x25\xd4\x9b\x5a\x3c\x09\xff\xbb\x10\x90\xb6\xaa\x7f\x57\xdc\x9b\
\x2f\x62\xf6\x4c\x85\xc6\x04\x4f\xb2\xf8\xe6\x26\xa0\x0a\xe9\xc8\
\x3e\x62\x73\x31\x39\xba\x9c\xd3\x68\x60\xc9\x00\x34\x63\x48\x42\
\x93\xc8\x94\x73\x90\xd0\xd4\xed\x90\xd0\x24\x16\xb5\x54\x32\x1e\
\x89\x9d\xdb\x28\x44\xdf\x17\x4f\xe6\xce\x52\xb5\x78\x7a\x60\x95\
\x76\xe5\x78\x4f\xac\xd7\xb7\xf4\x16\x52\x93\x09\xba\x31\x2f\x56\
\x83\xad\x7a\x92\xc5\x57\x9b\x80\x9e\x60\xa9\x20\x5a\xc7\x20\xd6\
\x9b\xed\xa5\x16\x40\x33\x7e\xf6\x54\x7e\x63\xb7\x4a\x3c\x6c\x93\
\xd0\x34\x3b\x48\x89\x25\x89\x4c\xe7\x22\xa1\xe9\xc1\x49\x12\x9a\
\xc2\x73\x1e\x6f\xb7\x4e\xef\xdb\xf9\x3f\x31\x3b\xd7\x42\x44\xb9\
\xd7\x99\x6d\xaf\x9f\x95\x4d\xd0\x46\x4c\xed\xf6\x79\x92\xc5\x37\
\x7f\xa2\xe8\x0d\x51\xd8\xae\x3c\x1a\x60\x4b\x22\xe1\xac\x89\x45\
\x99\xb3\xb2\xed\x99\xe8\x46\x1c\xf5\xf6\x8c\x1c\xed\xb6\x29\xbd\
\x6f\x67\xa0\x28\x4b\x71\x66\xff\x7b\x87\xe9\x78\x7a\xb0\xa3\xa6\
\x30\xcf\x13\x2f\xbe\x7a\xae\xa0\x98\x48\x8e\x5a\x62\x9b\xf9\x05\
\x83\xe7\xa1\xec\xa2\x01\x85\x5c\x2e\xfe\x20\x16\x81\x69\x95\x07\
\x99\xc6\x11\x09\x65\xae\x56\xe1\x76\x62\xfe\x78\xfd\xf4\xe2\xe5\
\xd2\xb9\x6c\x10\xcf\x8b\x04\xf1\x7f\x42\x7c\xa3\x68\x40\x5b\x96\
\xf5\x64\x0d\xd9\x72\x39\x1a\xa8\xc7\xc9\xca\xaa\x57\xe9\x8d\x20\
\x33\x44\xd8\x1d\xcb\x7a\xb1\x7d\x94\x40\x51\xc8\xcf\xab\x1d\x36\
\xb3\x4d\x00\x1b\xf0\x8d\x2a\xf3\x7f\x9f\xc2\x27\x30\x1a\xd0\x10\
\x89\xb6\x7b\xf9\x12\xa3\xc1\x28\x39\x1a\x50\x3f\x6b\xb6\x08\x42\
\x7e\xe3\xb7\xbc\x05\x5a\x4f\xf6\x36\x1a\x62\x34\x4b\xa2\x6c\x3e\
\xb7\x13\x4c\x76\xbf\x71\xb3\x38\x37\x62\x63\x96\x87\x3b\x73\xfc\
\xaf\x7c\xfe\x23\xfa\xc3\x52\x62\xc2\xa4\x17\x76\x0c\xeb\xe8\xd6\
\xb2\xd9\x22\x88\x61\x42\xf8\x0a\xa2\xd5\x55\x16\xc9\xd7\xf7\xfc\
\xfd\xb7\x78\xac\x2d\xb9\x84\x43\x5e\xb8\x24\xbd\x71\x73\xb8\xb8\
\x3b\xf7\x7c\xa1\x84\x8e\x8b\x06\x2f\x8a\x68\xd0\x06\xa3\xc1\x68\
\x94\x7a\x81\x6a\x11\x44\x13\xd1\xdf\x16\x51\x75\x21\xaf\x89\x19\
\xb6\x0e\xf8\xb7\xb1\x18\x3d\x0e\x53\xf4\xc8\xcb\x5d\xb7\xc5\x7e\
\xfb\x34\x02\x18\x2c\x92\xb7\xa7\x0b\xa5\x73\x7c\x34\x20\xa1\x69\
\x1f\xc0\x1e\x02\x4b\x8b\x20\xe4\xe1\x25\x6d\x58\x41\xbb\x62\x7e\
\x8b\x76\x58\x40\xf3\x0c\xd4\x2d\xe4\xd5\x1d\x3e\x34\xda\x11\x31\
\xd3\x57\x91\x15\xf0\x93\xb9\x4f\xea\xe7\x69\xd1\xb7\x56\x10\x58\
\x1b\x22\xc9\xc7\xbf\xcb\xa4\x6d\xd0\x07\xf3\x2c\x1d\x43\x75\x4e\
\xde\xaa\x99\xdd\x04\x10\x1f\x01\xf4\x66\x7b\x99\xb4\xef\x6e\x99\
\x42\xa9\xf2\x36\x1a\x3c\x25\xc4\xfd\x8f\x1d\xd1\xa3\xa4\xe8\x9b\
\xbb\x62\xb7\x30\x9e\x8d\x60\x67\xa8\x5b\xb0\xe7\x46\x14\x09\x4d\
\x49\xa5\x6e\xdb\x75\x9a\xfd\xa3\x7d\x0a\x2b\xf2\x2d\x5a\xbe\x12\
\xa3\x98\xc2\xcf\x23\x3a\xcf\x50\x41\xdc\x8c\xe9\xc7\x5f\x90\x20\
\x86\x98\xea\xb9\x03\x4a\xe8\x0c\x85\x56\xef\xaf\xaf\xdf\x76\x9d\
\x46\x23\xb4\x29\x73\x9e\xee\xcd\x57\xf8\x71\xcc\x3c\x03\xdd\x8c\
\xa9\x8e\x7c\x8d\x19\xc4\x18\x1e\xba\xc5\xbd\x01\xc3\x17\x29\x90\
\xd0\xaf\xb0\xf9\x4c\xbf\xbf\xfe\x28\x31\x0a\x19\xc8\xa4\xdd\xb8\
\xa9\x9b\xa1\x5d\xca\x8a\x16\x56\xf3\xa3\xdf\x8d\x14\x15\x7d\xf5\
\x27\x62\xee\x60\x26\xa6\x94\x1b\x2c\x08\x3d\x5a\x0c\xef\x06\x33\
\xd3\xfe\xfa\x5f\x8a\xd6\x5e\x53\x8c\x50\x68\x0e\xbf\x84\x48\x3e\
\x0b\x13\xc0\xc7\x6c\x88\x59\x85\x49\x6f\xcb\xa6\x3b\x77\x43\xcd\
\x84\x6e\x23\x86\x9a\xb5\xc5\xf0\xae\x22\x33\xed\xaf\xef\x80\x6d\
\xd7\x0b\x3f\x8f\xca\x10\x93\x04\xad\x2a\xe6\x0f\xcc\x85\x7e\x59\
\x4c\xec\x3c\x5d\xd8\xba\x9f\x6c\x23\x14\x11\x5d\x43\xa1\xd0\x85\
\x9f\xc2\x4f\xe1\xa7\xf0\x53\xf8\x29\xfc\x68\x3f\xff\x0f\x1d\xf6\
\x57\xee\x7c\x6e\x76\x4b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
\x60\x82\
\x00\x00\x05\xca\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x05\x91\x49\x44\x41\x54\x78\x5e\x8d\x95\x0b\x6c\x54\xc7\
\x15\x86\xbf\x99\xfb\xd8\xf5\x9a\xf5\xda\x06\xf3\x30\x8e\x1d\x13\
\x48\xf3\xb0\xdc\xd0\x84\xf4\x21\x4a\xd4\x9a\x10\x48\x1c\xea\xa4\
\x69\xe2\x84\x20\x28\x88\x47\x53\x09\x0a\x69\x52\x29\xa9\x2a\x48\
\x48\xab\x4a\x81\x54\x51\xc5\x2b\x85\xd0\x16\xb7\x29\xb8\x51\x12\
\x90\x5c\x2b\x34\xcd\x8b\x50\x4a\x95\xb5\xe5\x26\xc6\x50\x82\xed\
\xae\xb7\x36\xf5\xf3\x81\xbd\x8f\xbb\x73\xba\x8a\x56\xb8\x1b\x5a\
\xe8\x2f\xfd\x73\x74\x66\xa4\xf3\xcf\x3f\x47\xa3\xa3\x44\x84\x0c\
\xd8\xb7\x4e\x2d\xfd\x43\x98\x79\x6d\x11\x66\x8e\xc7\xf1\x23\x28\
\x40\x50\x08\xa0\xf2\x72\x29\xbc\xa9\x94\xf8\xd7\x6e\x66\x27\x9a\
\xe6\x55\xbb\xa4\x9b\xab\x41\x44\x3e\xe5\xee\xd5\x3c\xd2\x52\x77\
\xdb\xd0\xa6\x07\x27\x27\xe4\x7f\x20\xe6\x89\x3c\xfd\xed\x42\xf9\
\xdb\x1e\xf5\xaf\x23\x4f\x13\xdd\xfa\x00\x65\x22\xc2\x95\x68\x93\
\x81\xf1\x58\x59\x71\xfb\xbc\xbc\xe2\x93\xed\x74\x75\x75\x60\x3b\
\x01\x3c\x2f\x89\xa0\xd0\xca\x22\x85\xe2\xa7\x5b\x36\x53\x22\xfd\
\x9c\xe9\x20\x77\x74\x90\x84\x5f\xb3\x65\xe7\x0a\xd5\xa5\xe1\x5a\
\x81\x5c\xdb\x66\xff\x9a\x7d\x72\x84\x09\xa0\xc9\x40\x0c\x53\xb1\
\x87\xc0\xeb\xa5\xb3\xa3\x9d\xa6\x70\x33\xe1\x70\x13\xcd\x69\x7e\
\x18\x0e\xf3\xde\xe1\x2d\xcc\xcd\x0f\x53\x3e\xeb\x56\x42\xe5\xdf\
\xf2\xcd\xbe\x63\x63\xa8\xfa\xb1\xdd\x0f\xdd\xfb\x64\xc3\xa6\x65\
\xcf\x9f\xad\x5d\xbb\x3f\x51\x73\x73\xd5\xda\x03\x3b\x96\xa9\xef\
\xfe\xd7\x27\xfa\xf9\x23\x34\xc9\xe9\x6f\xca\x73\x1b\x02\xf2\xe2\
\x8b\x2f\xc8\xea\xd5\xdf\x91\xda\x87\x97\xc9\x3d\xd5\x35\xb2\x70\
\xd1\xbd\xf2\x54\x8d\x92\xc4\xd8\x90\x5c\x8e\xb8\x24\x92\x63\x97\
\xb2\x86\x9f\x2d\x8a\xee\x78\x94\x8d\x99\xba\x13\x0e\x8c\x42\xa5\
\x8c\x61\x4e\x65\x25\xc7\x8e\xd5\xf3\x51\xcb\x31\x22\x1d\x27\x19\
\xe8\x6d\x21\xe0\x6f\xc3\xe7\x0a\x82\x07\x24\x41\x06\xc0\xf4\x83\
\xe9\x25\x3e\x36\x40\xff\x85\x4e\xbc\x94\x07\xc0\xe2\x8d\x8d\x33\
\x5c\x8b\xe5\x4a\x29\x07\x98\xe8\x81\x32\x08\x28\xe6\x55\xe4\x31\
\x9a\xd0\x8c\x8c\xd8\xd8\xb6\x85\x42\x51\x5e\x1e\xe2\xc2\xf1\x0e\
\x14\x49\x60\x0c\x52\x17\x41\x04\x94\x22\x11\x1b\x66\xa0\xaf\x1b\
\x74\x80\xbc\xfc\xa9\x38\x8e\x8f\x50\xf1\x75\x45\x70\x6e\x1a\x10\
\xb9\x24\x20\x1a\x2c\x5b\x31\xa5\xc8\xc7\xdd\x8b\x4b\x89\x5d\x4c\
\x90\xf0\x52\x68\xad\xc8\xc9\xb1\x39\xd1\xec\x64\xec\xa6\x80\x18\
\x68\x0b\xc4\x43\x29\x43\xd2\x8b\xd3\xdc\xf4\x5e\x3a\x5a\x14\x4e\
\x2e\x21\xda\x71\x2e\x09\xe4\x65\x3b\x50\x08\x8e\xc6\xef\x6a\xb4\
\xed\x10\xf0\x6b\x40\xb0\x2d\x85\xdf\x67\xa5\x73\x0b\xcb\xd1\x80\
\x02\xdb\x01\x49\x81\xd1\xd8\x96\xa4\xcf\x40\x52\xe3\xc4\x63\x1e\
\x29\xaf\x88\xd8\x38\x06\xb0\xb2\x04\x04\x40\x2b\x6c\x5b\x61\x05\
\x1c\x94\xd2\x1c\x79\xe3\x0c\xaf\x1d\x6d\x65\x6c\x2c\x46\x57\xeb\
\x10\xbf\x09\xaf\x40\x69\x43\x61\x41\x90\xfb\x6b\xee\x64\xc1\xc2\
\xaf\x60\xeb\x04\xf9\xa1\x00\xe5\xa5\x93\x89\x7b\x3e\x82\xa1\xe9\
\x04\x5c\x3c\xc0\x7c\xd6\x01\x68\xf5\x29\x95\xa3\x89\xb4\x0f\x70\
\xf0\xe8\x38\x0f\x6f\xfe\x0b\xa7\x3a\x83\xcc\x1c\x18\xc6\x32\x2e\
\xae\x11\xe6\x96\x5e\xe0\xd5\xd7\x7f\xc0\x82\x45\x5f\xc4\x76\x85\
\xe0\x24\x07\x9f\x5b\x80\x51\x41\x7c\x39\xd3\xf0\xbb\x18\x20\x99\
\x25\x60\x5b\x08\xd6\xc4\xcf\xc8\x0d\x38\x78\xf1\x51\xfa\x47\x87\
\x69\xe8\x2a\xe4\xa3\xd6\xc9\x24\xfa\xc0\x17\x87\x4d\x4b\x82\x74\
\x76\x9e\x07\x46\x41\x3c\x5c\x3b\x85\x63\x81\x4a\x2f\xb8\xb9\xe9\
\x1c\x03\x98\xac\x8f\xe6\xda\x80\x23\x60\x03\x16\x14\x5c\x13\xe4\
\x89\x75\x33\x78\xfd\x99\x5b\xb8\x2d\xe7\x14\x3a\x07\xd0\x10\x57\
\xe0\x79\x43\x04\x73\x73\xc0\x18\x90\x4c\x10\x00\x05\x80\x12\x00\
\xc8\x72\xb0\xb5\x9e\xca\xfe\xa2\x30\x0f\xdc\x57\xcc\xb4\xb2\x11\
\xa2\xd1\x21\xce\xb6\xf5\x30\xbb\x62\x01\x3d\x6e\x11\xe2\x07\x72\
\x40\x01\x96\x0d\x22\x99\xca\x69\x8a\x08\x00\x64\x22\x64\x0b\xa0\
\x94\x7a\x70\xeb\x81\xdd\xd6\x94\xd9\x9f\xe3\xb9\xfd\x3f\x61\xb8\
\xe7\x38\x45\x25\xb3\x28\xbb\x7d\x2d\xd1\xfb\x56\xf2\xe6\x19\xf0\
\x5c\xc8\x9b\x0a\xf6\x18\xe0\x68\x8c\x11\x10\xc1\xa4\x0c\xc6\x98\
\xcc\xcd\x0d\x1a\xb9\x5c\x00\xe8\xee\x6d\xff\x3b\xd7\x57\xd7\x52\
\xb2\xbd\x91\x9e\x9e\x24\xed\x9e\x43\x63\x2f\x44\xbb\xc1\xe7\x87\
\xbb\x3e\x0f\x37\xfc\xf3\x4f\x78\xbe\x59\xcc\x29\x2f\xa3\xf5\x62\
\x02\x8c\x60\xc4\x20\x69\x02\x99\x98\x0d\x0d\x20\x22\xef\xc6\xde\
\x7c\xbe\xf3\x77\xcb\x2b\x09\x1e\xd9\x85\x52\x31\x86\x05\xf2\x7c\
\xf0\xd5\xc2\x38\x8f\x15\x9f\xe1\xa6\x77\x96\xf3\xf1\x6f\x1f\x67\
\xe0\xed\x27\x88\x45\x1a\x99\xff\xe5\x4a\xc4\x4b\x61\x52\x29\x44\
\x24\xe3\x48\x01\xf6\xa5\x56\x64\x35\xf9\x4b\x37\xd0\x77\x78\xcf\
\x17\x78\xeb\xc0\x8f\x71\x5f\xda\x4c\xcd\x89\xed\xac\x6b\xdf\x47\
\xd5\xc7\xcf\xd2\x73\x68\x25\x47\xeb\x0e\xd2\xd0\x70\x88\x6d\x4f\
\xad\xe0\xb5\x5f\x3d\xc3\xd2\xea\xf9\x24\x93\x1e\x06\x0d\xca\x45\
\xd9\x41\x2c\x77\x0a\xe0\x60\x69\x34\xa0\xb2\x9a\x1c\xf7\x50\xf6\
\x94\x20\x47\xf7\x46\xf8\xf3\x07\xbf\xe0\x83\x0f\xa1\x25\x02\x17\
\xc7\x41\x83\xb7\xe6\x4e\x48\xe1\xd8\xa5\xe5\x25\xd4\xa5\x2f\x50\
\x50\x90\x8f\x88\x83\xe5\x4c\x42\xdb\x79\x58\x6e\x88\xe4\x68\xdc\
\x74\xb7\xbd\x3c\x7a\xea\x3c\x9f\x00\x5e\x96\x03\x01\x0b\xaf\x8d\
\x37\x1a\xe1\x9d\x26\xe8\x1f\x24\x31\x33\x48\xdf\xad\x33\xe8\x9c\
\x3f\x9d\x56\xe3\x31\x60\x8c\x83\x31\x2e\x05\x85\x25\x68\x67\x3a\
\x6e\x70\x0e\xda\x2e\x26\x7a\xba\x69\xe8\xc4\xc1\xc7\xff\xf1\xfb\
\x1f\x95\x9f\xdd\xb2\x79\xd5\x5b\x0d\xcd\xd4\x03\x83\xd9\x23\x73\
\x15\x07\xce\xfd\x11\xd9\xba\x8a\xc1\x9d\xeb\xf9\xa4\x6e\x03\xa7\
\xd7\x57\x51\x7f\xf7\x2d\x6c\xcb\xf7\xb3\x64\x7b\x2d\xef\x4b\x2a\
\x2e\x22\xa3\x22\xa6\x4f\x06\x23\x27\xc7\xff\x5a\xbf\x21\xf2\xea\
\x0f\x4b\xda\x7e\xbd\x9e\xd6\xaa\x1b\xd9\x9e\x6b\xf3\x0d\xe0\x46\
\xa0\x00\xd0\x22\x32\x21\xb0\x6f\x1d\x5f\xdf\xbb\x86\x43\xdf\xbf\
\x87\x5d\xf3\x66\xf1\x64\x51\x90\x25\xc0\x6c\x20\x5f\x44\x78\x79\
\x2d\xbf\x4c\x8c\x74\x49\xdf\xf9\xe3\xb1\xb7\xf7\x2c\xed\x78\xe5\
\x7b\x56\xdb\xe2\x0a\x5e\x2a\x2b\x60\x25\x30\x17\x98\x0e\xe4\x7c\
\x76\x26\x73\xd9\x06\x84\x80\x7c\xc0\xf9\xcf\xfd\x57\x36\xb0\x70\
\xef\x6a\xea\x9f\xbd\x9f\xc3\xf3\xe7\xb0\x2d\xe0\x50\x0d\x5c\x07\
\x4c\xba\xd2\xd0\x57\x99\xa2\xff\x37\x94\x52\x21\xc0\x01\x46\x44\
\x24\xce\x55\xf0\x6f\x03\xe2\xf6\xe2\xcc\x69\x65\x93\x00\x00\x00\
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x05\x2d\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x04\xf4\x49\x44\x41\x54\x78\x5e\xa5\x96\x4b\x6c\x5c\x57\
\x1d\xc6\x7f\xe7\xdc\xc7\x78\x66\xfc\x9a\xc4\xaf\x3c\x5a\x16\xa1\
\x20\x12\xa8\xda\x80\x84\x28\xdb\x2e\x4a\xbb\x0e\x2c\x50\x14\x60\
\xd7\x05\x48\x48\x25\x8b\xb2\x41\x95\x80\x45\x5a\x09\x51\xd4\x76\
\x55\x44\x53\x15\xd5\x55\x9b\x84\x2a\x02\x16\x55\xa8\x68\x4b\xb1\
\x23\x53\x5c\xda\x18\xbf\x82\xe3\x57\xec\xf1\x8c\x3d\x1e\xcf\xcc\
\x7d\x9c\x73\xfe\x8d\xee\x5c\x09\x5b\x42\x10\x95\xdf\xe6\x7f\x75\
\x75\xf5\xff\xf4\x7d\xdf\xb9\xba\x57\x89\x08\x77\xc3\xa5\x9f\x9e\
\x7e\xd8\x99\xf4\xbc\x73\xe6\x7e\x11\x69\x23\xe2\xf8\x37\xea\x0e\
\xbd\x9e\xef\xbf\x5e\x2a\x86\x4f\x3f\xf2\xa3\xa9\x45\x72\x7c\x72\
\x5e\xf8\x9e\x7a\xd4\x39\xfa\x10\x12\x81\x2f\x20\x00\x08\xc2\x31\
\x11\x06\x0b\x25\xbe\xf1\xf5\x6f\xff\xfc\xd0\xe7\x1f\x3a\x43\xda\
\xde\xc1\x3a\x4b\x86\x73\xa0\x35\x41\xa1\x8f\xcd\xc5\xc9\xc7\xa7\
\xdf\xbc\xf0\x38\xa0\x0e\x08\x3c\xff\x5d\x75\xee\x81\x47\x7f\xf8\
\x6c\xa1\x54\x71\x36\x8d\xd2\xa1\x7b\x4f\x17\x51\x28\x40\x4a\x83\
\xf7\x04\xa5\xca\xbd\x7e\x1a\xb5\xf4\x9f\x5f\x3e\x47\x6a\x22\xee\
\xfb\xf2\xc3\x28\x4c\x66\x42\x10\x6c\x2a\x68\x7f\x80\xd2\xe1\xa3\
\x04\xe5\x43\xfc\xf2\xfb\x9f\x3d\xfb\x83\x67\xe7\x2f\x02\x20\x22\
\xfc\xea\x2c\xd7\xac\x4d\xe4\x3f\x11\x27\x56\x36\x36\xb7\xc4\x8a\
\x48\x75\x63\x55\x5e\xf9\xf1\x09\xb9\x76\xf1\x5b\xb2\x36\xfb\x92\
\xd4\x56\xdf\x90\xea\xd2\x6b\x32\x37\xfd\xa2\xb4\x5b\xdb\x52\xbd\
\xfd\x91\xac\xdd\x78\x55\xde\x7b\xe9\x8c\xbc\xf1\xd4\x17\x9f\x10\
\x11\x34\x80\x38\x8c\x4b\x3b\x80\x80\x44\x20\x06\x30\xd9\x75\xdc\
\xaa\xb2\xb6\xb2\x48\x1c\x25\x0c\x8d\x1c\xe5\xa1\xef\x5c\xa2\x32\
\xfc\x20\xff\x78\xe7\x77\xb4\xdb\x71\xe6\x62\x7b\xbb\xc1\xd6\xd6\
\x16\x43\xa3\x27\x91\xde\x13\x3c\xf0\xd8\x13\x28\xe4\x49\x00\x0d\
\xe4\x46\x0c\x10\x83\x8d\xc0\xc5\x60\x9a\xe0\xa2\x6c\x41\xa7\xbd\
\x47\x75\x63\x1d\x11\x38\xf2\x99\x53\x8c\xdd\xff\x4d\x56\x3f\x7a\
\x9b\xad\x5a\x83\xd4\x18\xb4\xd6\x5c\x1e\xbf\xc0\xcf\x7e\x72\x8e\
\xd9\x8f\xff\x42\x9c\x46\x58\x6b\x07\x94\x52\x15\x4d\x0e\x08\x60\
\xbb\x0e\x5c\xa3\x3b\xb1\x04\xbe\x41\x2b\xc3\x07\x7f\xbf\xce\xd5\
\xab\x6f\xf2\xde\xbb\x7f\xa2\x5e\xdf\x20\x8a\xcd\x9d\xb9\x8b\xb3\
\x8e\x81\xfe\x32\x5f\x39\xfd\x39\xbe\xf6\xd5\x93\x8c\x8e\x0c\x22\
\x62\xb0\x4e\x00\x0a\x3e\x39\x48\x0c\xa8\x3c\x1e\x47\x86\x33\x04\
\x9e\x61\x74\xb8\x4c\xad\x7a\x8b\xcd\xf5\x3a\xde\x91\xa3\x14\x8e\
\xde\x87\xb3\x42\x14\xc5\x24\x69\x82\xd6\x30\x32\x3c\x90\x39\x09\
\x7b\x8a\x94\xfa\x0e\xd3\x57\xf4\x35\xe0\xed\x13\xb0\x60\x5b\x60\
\x77\x41\x97\x40\x12\x70\x6d\x7c\xe0\xd8\xd8\x00\x95\xbe\x53\xa4\
\x56\x51\x28\xf4\xa2\x7d\x0d\x1a\xac\x75\x58\x6b\x33\x17\xce\x39\
\x40\x10\x55\xc8\xee\x81\x70\x50\x40\x59\x90\x0e\xb8\x0e\x5d\x14\
\xa8\x02\x88\x21\xf0\x2d\x03\x7d\x09\xe8\x5e\x08\x0b\x98\xc8\x22\
\xd6\x92\x24\x31\xc6\x18\xac\xb1\x58\x6b\x10\x11\x3c\xdf\x60\x5d\
\x0a\xa8\x83\x2f\x5a\xb6\xd8\xc6\x80\xce\x45\x52\x20\x00\x0c\x48\
\x00\x84\x20\x0a\xcc\x1e\x22\x3e\xa2\xc8\x0a\x8e\xa3\x98\x34\x4d\
\xbb\xcb\x3d\x0f\xb4\x26\xde\xab\xd3\xec\x58\x01\xd0\xe4\xa0\x7d\
\xd0\x01\xd8\x2d\x70\xbb\x40\x01\x70\xdd\xc8\xb0\x5d\x51\xb3\x05\
\x28\xc4\x39\xc4\x48\xb6\x38\x8a\x22\x80\x2c\xa2\x24\x49\x48\x93\
\x04\x71\xa0\xc8\xb0\xfb\x3a\x30\x60\xb6\xbb\xb1\x28\x1f\xcc\x3a\
\xd8\x36\x19\xfe\xa1\xac\x0f\x4c\x13\x82\x10\xa4\x17\x41\x50\x0a\
\x4c\x16\x55\x92\x39\xe8\x29\x16\xb1\x22\x88\x22\x57\xc0\x1d\x3c\
\x45\x4a\x83\x6b\x81\x2e\xe6\x91\xd5\xc0\xab\x40\x34\x0f\xde\x20\
\x78\x7d\xf9\x73\x3e\x22\x8a\x38\x4e\xf1\xfd\x00\xfc\x1e\xd0\x8a\
\x62\xb9\x9f\xca\xd0\x11\x7a\xfb\x07\xf0\xb4\x56\x79\x2e\x39\x08\
\x90\x80\xb9\x05\xce\x81\x3f\x02\x5e\x3f\x60\xc9\x48\x97\xbb\xe2\
\xe1\x29\x04\x85\xf6\x34\x85\x62\x99\xde\xc1\x11\x8a\x77\xa6\xe7\
\x07\x48\xd4\xc0\xd6\x16\x59\x9a\x5f\x66\x72\xa6\x79\x0d\x10\x1f\
\x72\x3b\xb2\x07\xc9\x2c\xe0\xe7\x2e\x7a\xba\x91\xc4\x73\xa0\xca\
\xe0\x95\xba\x51\x89\x41\xab\x90\x20\xec\x61\x74\xe4\x38\x65\x95\
\xd0\xbc\xf9\x21\x8d\xd5\x7f\x92\xb6\xeb\x4c\x7e\xb8\x36\x53\xdb\
\xb5\x33\x17\xc6\x57\x7e\x01\x34\x7d\x0e\x50\x02\xb7\x03\xe1\x18\
\xb4\x26\x41\x85\x79\x37\x4b\x20\x15\x08\x8f\x81\x12\xb4\x36\x48\
\xdc\x64\xe5\xfd\xdf\xe2\x1d\x36\xbc\x7e\x6d\xf9\xf2\x8d\xa5\xf6\
\xbb\xb7\x36\xa2\xe9\x85\xf5\x78\x1e\x68\x02\x2d\x11\x69\xef\xeb\
\xa0\x03\xd2\xca\x4f\x8a\x0f\xa4\xe0\x0f\x01\x7d\x60\x02\x08\x4a\
\xa0\x77\xa1\x38\x84\x17\xa7\xec\xd4\x3b\xcd\xe7\x2f\x5d\x7f\xa6\
\xd5\xb1\xbf\xaf\xef\xd9\x15\xa0\x01\x74\xe4\xe0\x87\x88\x83\x02\
\x66\x07\x82\x31\x88\x17\x21\x1c\x05\xb5\x07\xc5\x13\x10\x7e\x09\
\x3c\x8f\x76\x75\x27\x59\x9b\xba\xd2\xd9\xab\xad\xf0\xc1\x12\x6f\
\x2d\x57\x93\x71\x11\xb9\xc1\x7f\xc1\x27\x07\xd5\x03\xe1\x30\xa4\
\x0d\x28\xdf\x03\x85\x61\x08\xfb\xe9\x54\x37\xd3\xb9\x89\x2b\xb5\
\xb5\x99\xa9\x56\x63\x63\xce\xfc\x71\x22\x99\x6e\xa7\xac\x8f\x4f\
\x32\x0e\xac\x00\xfc\x4f\x01\xa5\x08\x7c\xcf\x41\x78\x18\xda\xbd\
\xec\x35\xe3\x78\xf9\xfa\xdb\x8d\xd9\x77\xae\xee\x34\x6e\x2f\x9b\
\xcb\x93\x4c\x2e\x6c\xf2\xb7\xb5\x6d\x3e\xde\x6a\x71\x33\x8f\xa3\
\x05\x74\xee\x4a\x40\x7b\xac\xc7\xad\x1a\x3d\xc1\x71\xe6\xa7\xae\
\xd4\xe7\xff\xfa\x87\xc6\xee\xed\x59\x73\xfe\xa2\x7b\x6e\xa9\xc6\
\x04\xb0\x0e\xd4\xf3\xe2\x2c\x77\x4d\x2e\x10\x86\xfc\xe6\xd7\xe7\
\xcf\xf6\x20\x1c\x9f\x58\x60\x61\xea\x5f\x4c\xdc\xdc\xe4\xfd\x66\
\xc2\x1c\x50\xcf\x8a\xfb\x94\x1c\xf8\x6d\x51\x4a\x55\x80\x12\xd0\
\x06\x1a\xd9\xe2\xff\x93\x4f\x00\xc2\x30\xec\x24\xf5\x72\x95\x25\
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x06\xe8\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x06\x7a\x49\x44\x41\x54\x58\xc3\xed\
\x57\x09\x4c\x54\x57\x14\x1d\x6a\xed\xa6\x4d\x69\x69\xb5\x2e\x15\
\xf7\x1d\xb1\x20\x8a\x0a\x28\x2a\xb2\xa9\x88\xc0\x20\x28\x22\xae\
\xe0\x30\x08\x6e\x6c\x23\x42\x01\xc5\x71\x41\x76\x71\xa1\x0a\x28\
\xe2\x5a\xc0\x0a\x5a\x91\x60\xc0\x15\xad\x88\x68\xcd\x18\xd4\xaa\
\xd4\x5a\xb1\x2e\xe8\x8c\x0a\x9e\x9e\x0f\x3f\x8d\x52\x29\x9a\x9a\
\x36\x69\x9c\xe4\x64\x32\x33\xff\xdd\x73\xef\x39\xf7\xde\xff\x47\
\x02\x40\xf2\x5f\x42\xf2\x36\x81\xff\x65\x02\x66\x52\x85\x91\x99\
\x34\x58\x66\xea\x14\x14\x6f\xea\x18\x98\x66\xea\x18\x90\x3e\xd4\
\x7e\xc1\xaa\x81\xb6\xde\x93\x25\x12\xc9\xc7\x44\x33\xc9\x9b\x7e\
\x0d\x9b\x18\xd2\x97\xc4\x11\xc3\x9c\x17\x17\x7b\x2c\xdc\x7c\x39\
\x60\xf9\xe1\xdb\xa1\xd1\x17\xab\x15\x2b\xae\xa8\x15\xcb\xaf\xa8\
\x03\xa3\xce\x3c\x90\x29\x76\xdf\x1a\x6c\xe7\x97\x6f\x60\x31\x5d\
\xc6\x23\x9f\x10\xef\xbe\x01\xe2\xc5\x96\x24\x4d\x99\x34\x37\x59\
\x15\x91\x50\x76\x37\x3c\x41\x53\x2b\x0f\x07\x26\x2d\x00\xc6\x7a\
\x02\xa3\xa7\x02\x23\xdd\x00\x6b\x77\xc0\x7d\x1e\x10\x16\x5d\xf9\
\xc4\xc2\x75\xc9\xb5\xd6\xba\x7a\x52\x1e\xd7\xf9\xc7\xc4\xd3\x17\
\xa5\x56\x28\x93\xaf\x3e\x0c\x8c\x06\xdc\x02\x49\x24\x03\x4c\xa6\
\x01\x86\x93\x01\x3d\x29\xd0\xdb\x1e\xe8\x66\x4b\x8c\x06\xfa\xd9\
\x00\xd2\x39\xc0\x82\xf0\x22\x75\xaf\xc1\x13\x72\x18\xc6\xe0\xf5\
\x89\x9d\x17\xeb\x12\x8a\x49\xbe\xc9\xaa\x95\x1b\x49\xbc\x06\x70\
\x0d\x02\x2c\xe4\xc0\x50\x56\x6c\x4c\x0c\x64\x12\x83\xbc\x09\x92\
\xe9\x7b\x00\x3d\x5d\x80\x4e\x63\x00\x5d\x0b\x60\x88\x13\x10\x10\
\xa5\x7e\x36\xd0\x56\x56\xc9\x70\x4e\xaf\x45\x3e\x7c\x62\x88\xdc\
\xc6\x23\xaa\x2c\x3c\xbe\xa4\x2a\x3c\x19\x98\xba\x84\x15\xfb\x01\
\x66\x73\x89\xf9\x94\x5b\x01\xd8\x47\x01\x93\xa9\xc6\xd4\x38\x26\
\xc6\xf7\x71\xdf\x50\x11\x5f\xa0\xef\x14\xa0\xab\x1d\x60\xe4\x0c\
\xcc\xa5\x45\xe6\x4e\x01\x77\x19\xd2\xf7\xb5\xaa\x96\x2d\xd9\x71\
\x35\x26\x5d\x53\xeb\x4d\x92\xf1\x01\xf4\x96\xa4\x23\xfc\x01\x9b\
\x08\x92\x92\x70\x7e\x3a\xb0\x7c\x2f\xb0\xbe\x10\xd8\x54\x04\x24\
\xfc\x00\xf8\x6f\xa5\xec\x2b\xa8\x0e\x13\xed\xc3\x5e\x18\xcc\x5e\
\xf0\x5d\xc6\xe4\xbc\xe3\xab\x19\x5a\xf1\x0a\xe4\x0a\x27\xa1\xea\
\xc8\xc4\x92\xaa\x88\x75\x24\x0a\x63\xd5\x24\x1d\x45\xbf\x6d\x22\
\xd9\x6c\x09\xf4\x74\x1b\x10\x7b\x08\xc8\x2a\x03\xb6\x1e\x54\xd5\
\x84\xc4\xee\x51\x7b\x2c\x88\x7b\x18\xb9\x2e\x4f\xb3\xbd\x84\x92\
\x67\x50\x09\x5e\x6b\x4c\x6b\x46\xd1\x2a\x45\x2c\xed\x19\x23\xbf\
\xc7\xf0\x4b\xfe\x1c\x1f\x8e\x86\x31\xbf\xf8\x88\xd0\x7a\x5e\x72\
\x07\xcf\x98\x0b\xb1\x69\x37\x35\xf3\xe9\xb5\x53\x08\x60\x49\x99\
\xad\x59\xb1\x34\x06\x90\xb1\x62\xe5\x01\x60\x57\x29\xb0\xad\x40\
\x55\x33\xc6\x23\xf4\x41\x5f\xd3\x89\x57\x3b\xf4\x1a\x5a\xac\xd3\
\xae\xfb\x4e\x36\xda\xb1\xb5\xbb\x4a\x34\x89\xf9\xb4\x24\x91\x7d\
\x12\x54\x1f\x63\x55\x9a\xfa\x99\x91\xb5\xe7\xed\x3a\x05\x04\xf2\
\xc4\xd4\xb2\xdf\x0d\x2d\x67\x6d\xea\xd2\xdf\x62\xbc\xb8\x28\xb4\
\x98\x58\xf0\x0c\xff\xd4\x8a\xd8\x2d\x9a\x5a\x2f\x25\xbd\xe5\x41\
\x2b\xfa\x69\xbf\x0a\xf0\x48\x61\x15\x39\x40\xca\x31\x20\xfb\xf4\
\x9d\x5a\x59\xe8\x86\x47\x02\xf1\x97\x9d\xf4\xf3\x79\x76\x39\xe1\
\x45\x8c\x63\x3c\x7f\xdf\xc8\xf4\xdf\x32\x4f\x02\x3e\xa9\x4c\x9a\
\x71\x7c\xe3\x81\xc8\xa4\x13\x4f\xba\x1b\x8d\x39\xcf\x6b\xfc\x04\
\x05\x4a\x0b\x8f\x30\xab\x75\xa7\x1f\xe9\x9b\xbb\x65\xe9\x99\xb9\
\xc8\xb9\xc1\xb6\xf9\x45\xe4\x5c\x57\x6e\x06\xa6\xd1\x6f\x3b\xca\
\x6e\xcb\x77\x97\x24\x40\x9e\x09\xac\x2c\x00\xf6\x94\x03\x69\xfb\
\xcb\x9e\x8e\x70\xf6\xbf\xdf\xa1\xb7\x49\x09\x83\xad\x21\x3c\x09\
\x73\xa2\x33\xf1\x59\xff\x11\xee\x16\x5e\x21\x29\xd7\x77\xfd\x48\
\x1b\xb6\x53\x31\x5a\x18\x9f\x45\x05\xdd\x42\x1f\x68\xb7\xea\xb8\
\x9b\xd7\xb8\x08\x0d\x56\x96\xcb\x80\x2b\xf9\xa3\x97\xe2\x94\xda\
\x78\x9c\xef\x85\xf0\xa4\xeb\x1a\x7f\x7a\xeb\xb6\x94\xcb\x84\x72\
\xdb\x0b\x5d\xfd\x2d\x83\xb0\xc1\xd6\x1e\x07\xf2\xca\xd5\xcf\x16\
\x29\xb7\x70\x96\xed\x2b\x3e\x6f\xdf\x63\x5f\x9d\x97\x12\x89\x1d\
\xd1\xf5\xf9\x55\x6b\xe2\xb0\x68\xda\xb2\x0d\xfb\x7f\xcd\x64\x1f\
\x84\x91\x58\xf9\x1d\x10\x9e\x74\xf8\x71\x57\x03\x2b\xa1\xfa\x30\
\xc2\x58\xb0\xe0\xdc\xae\x5c\x60\x4e\x28\x3b\xdb\x07\x70\x5c\x54\
\x5d\xeb\x42\x52\x07\x62\x1c\xbb\x55\x4a\xc9\x66\x6d\x01\x42\xe9\
\x75\x2a\x2b\xc9\x2d\xbb\x53\x3b\x51\xae\xac\xee\xd4\x6f\x44\x29\
\x03\xc4\x10\x33\x89\x21\x44\xeb\x86\xab\x55\xb8\x17\x64\x1c\xbc\
\x58\x9d\xce\xa4\xe3\x38\x11\x69\x07\xef\xd4\x9a\x3b\xf9\xdf\x6f\
\xa1\xdd\x3a\x93\x3f\xbb\x12\x6d\xeb\x12\xd8\xb9\x9f\xbe\x72\xa6\
\x4d\xbc\x00\x53\x8e\x8b\x55\x58\x7d\xd5\x93\xd6\x03\x9e\x94\x6e\
\x29\x3b\x3c\x93\x92\xe7\x9c\xba\x51\x23\x4a\x7e\x92\x87\x95\x84\
\x83\x58\x75\x0b\xe2\x9d\x86\xf7\x06\xa9\x3c\xe6\x42\xf1\x65\x36\
\x28\x7b\x60\xe7\x51\xf5\x33\x47\x2f\x65\xb5\x78\x36\x98\x30\x24\
\x3e\xa8\x4b\x60\x0f\x09\x66\x2b\xeb\x67\x7a\x24\x95\xb0\x67\x87\
\x4f\xa1\xff\x3e\x94\x2c\x92\x33\x9d\x41\xf2\xb5\x59\x27\x9e\x8c\
\x24\x79\xbb\x6e\x03\x8f\xf0\x60\x24\x31\x96\x68\xdf\xd8\x0d\x45\
\x68\xee\xf4\xbc\xb2\xbb\x85\x2a\x20\xff\x02\x30\x2f\x72\x8b\x5a\
\x54\x4d\x48\xdc\x96\xf8\xa2\x6e\xe2\x84\x04\x72\x8a\xd9\x9d\xdc\
\x6c\x76\x4c\xc2\x81\x92\x4f\xe5\x78\x79\xd3\xb3\x10\xf6\x46\xf2\
\x19\x56\x70\xec\x46\x0d\x1b\xb4\x52\xbb\x95\x6e\x8e\xb8\x3c\xac\
\x88\x36\x8d\x91\x0b\xbb\xc3\xc3\x3f\x59\x55\xfe\x0b\x70\xfa\x2a\
\xf7\xc4\xd2\xad\x8f\x44\xdf\x57\x13\x13\x5e\x48\x5c\x48\x20\xef\
\x14\xc7\x8a\xdd\xed\xbe\x11\x98\xc1\xa5\x31\x97\xcd\x16\x4c\x55\
\xa2\x38\x66\x6b\x0a\xea\xc9\xdb\x77\x1f\x54\xc8\xcb\x17\x0a\xd6\
\x8a\xd9\xbf\xbc\x72\xa7\x20\x1d\x26\xb0\xf3\x50\xe9\x4d\x4d\x79\
\x25\xc9\xa3\xb6\x3e\x14\xc9\x85\x7e\x11\xee\x80\xba\x2f\x9c\x15\
\x12\x28\xa2\x44\x71\x5c\x16\x41\x9c\xed\xc5\x6c\xb6\x65\x5c\xa3\
\xd1\xec\xdc\xb5\xdc\x6c\x99\x97\xb8\x52\xb3\x4e\x3e\xee\x3d\x64\
\xc2\x51\x9d\xb6\xdd\x3c\xc5\xec\x1b\x7d\xa0\x60\xbc\x39\x71\x19\
\x45\xb7\x4a\x2a\x34\xb5\xce\xb2\x15\xf7\xba\x19\x5a\x97\x8b\x23\
\xea\x4c\x74\x24\x9a\x37\x3c\x70\xee\xec\xcf\xc0\xc1\x9f\x48\x56\
\x5a\xdf\x6c\x7b\xe8\x5b\x76\x05\xb0\x8f\xf2\x15\xdc\x00\xce\x56\
\x01\xeb\x76\x17\xa9\xfb\x98\x48\x77\xf0\x48\x1f\xe2\xfd\x46\x1e\
\x4a\xec\x42\x13\xf7\x5e\xcb\x3f\x7d\x53\x33\x76\x7a\xc4\xed\xce\
\xfa\xa3\x84\xfd\xb0\x52\xbc\xeb\xfd\x95\x5c\x9c\xd5\x8c\xec\xa2\
\xcb\x9a\xec\xe2\x4b\x4f\xb3\x8a\x54\x35\xd9\x47\x55\x35\x39\xc4\
\xde\x63\xc4\x71\x55\xcd\xf7\x44\xee\x09\x01\x97\x9e\xba\xfa\xae\
\xae\x6a\xa5\xab\xe7\x23\xfa\xaf\xd5\xe0\xf9\xa0\x87\x47\xc0\xfa\
\x8b\xab\xd3\x0a\xab\x0c\x2d\x67\x9e\xfb\xaa\xe7\xe0\x03\xfc\x3a\
\x82\xb0\x17\x65\x6f\xfe\x52\xc9\x0c\x46\xcf\x70\x19\x60\x35\xbb\
\xa0\xdf\xf0\xc9\xe7\xf5\xcc\x5c\x2f\x35\x8a\x61\xae\xaa\x36\x5d\
\x0c\x72\xc4\xb9\xef\xf2\x12\x1b\x9a\x75\x37\xb2\x35\xef\x3d\xd4\
\x71\xe3\x87\x2d\x3f\x8d\xe2\x67\x39\x31\x92\x68\xd7\xd4\xa3\x97\
\xb0\xb9\x06\x88\x8b\x61\x76\x13\x70\x13\x44\x13\x1f\xa5\xb4\x1a\
\xc4\x11\x3e\x6b\x13\x5f\x0b\xf7\x31\xd1\x2a\xed\x57\x79\xee\x6b\
\x26\x26\xd1\x46\x6c\xb0\xbf\x43\x9b\x26\x9e\x6a\xb5\xea\x96\x8b\
\x44\xd2\x92\x78\xef\x25\x49\xfe\xfb\xaf\xb7\xff\x8c\xde\x26\xd0\
\x14\xfe\x00\xc6\x8f\x6d\x5f\x51\xaa\x96\x24\x00\x00\x00\x00\x49\
\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x04\x23\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\x2e\x6f\x72\
\x67\x9b\xee\x3c\x1a\x00\x00\x03\xb5\x49\x44\x41\x54\x48\xc7\xb5\
\x96\x4d\x4c\x5c\x55\x14\xc7\x7f\x6f\xbe\x87\x19\xa6\x83\x0c\xb4\
\x60\x1b\x09\x25\x4e\x44\x0c\x56\xa3\x4d\xb4\x8d\x35\x52\x8d\xc6\
\x60\xfd\x58\x10\x83\x2c\x48\x8c\x31\x76\xe1\xae\x6e\x4d\x77\x2e\
\xba\x6b\xba\xa8\xc4\x98\x36\xb3\x6e\x58\xd8\x26\x65\x23\xa6\xb8\
\x80\xa8\x69\x1b\x2d\xa5\x15\xaa\x7c\x07\xda\x0e\xf3\xc1\x9b\xf7\
\xee\xbd\xc7\xc5\x1b\x06\x86\x40\x03\x89\xdc\xc5\x7b\xf7\xde\x97\
\x7b\x7e\xf7\x9c\xff\x39\xf7\x3e\x4b\x44\xd8\xcb\xe6\x63\x8f\x5b\
\x60\xad\xf3\xe2\xa7\xe7\xfb\xf6\xa7\xf6\x7d\x5d\x13\x0e\x44\x98\
\x7d\xf0\x74\xb2\x94\xdd\x99\x05\xf1\x1e\x4b\x89\x03\xca\x57\xdf\
\x38\x5f\x2c\xda\x85\x7f\xa6\x17\x3f\x1b\x1f\x3c\x33\x5e\x05\x38\
\xd0\x90\x38\xf3\xcd\xe7\x6f\xb7\xdf\x99\xce\x92\xbb\x3a\xc5\xcb\
\x77\x7f\xdf\xd5\x4e\x7f\x69\xff\x84\xba\x57\x3b\x9f\xaa\x0d\xfb\
\x19\x1a\xfe\xe3\x7b\xe0\x78\x15\x20\x1a\x0e\x84\xff\x9c\x5e\xe1\
\xee\xcc\x0a\xcb\xbf\xde\xa4\x79\xf4\xda\xae\x00\xbf\x59\x2f\xd0\
\xd8\x90\xc6\x68\x4d\x3c\x12\x4a\xfd\xff\x1a\x08\x18\xad\xd1\xda\
\x20\x5b\x69\xb0\xb9\xc5\x5a\x5a\x78\x77\x6c\x8c\xe2\xec\x2c\x13\
\x17\x2e\x50\xd7\xd9\x49\xc3\xb1\x63\x68\xdb\xe6\xe7\xee\x6e\x5e\
\xcf\x64\xf0\x47\xa3\xe4\x27\x27\xb9\xd1\xd3\x83\x88\xa0\xb5\x41\
\x6b\xbd\x26\xcc\x93\x01\x00\x73\x43\x43\x8c\x9d\x3e\xcd\x6b\x97\
\x2f\x53\x98\x9a\x62\xa4\xb7\x97\x78\x5b\x1b\x87\xfb\xfb\x01\x18\
\xe9\xeb\xa3\xb4\xb4\x54\x76\x40\x30\x46\x7b\x00\xd9\x61\x9a\x36\
\x75\x75\xf1\xc6\xe0\x20\xf7\x2e\x5e\xac\xcc\x15\xa7\xa7\x09\xd7\
\xd7\x03\xd0\x79\xf6\x2c\x87\x4e\x9d\xaa\x84\x48\x29\x8d\x52\x7a\
\xeb\x34\xdd\xce\x83\x1b\x3d\x3d\x1e\xec\xe4\x49\x12\xe9\x34\xf5\
\x47\x8f\xf2\xe8\xd6\x2d\xea\x8e\x1c\x61\xa4\xaf\x0f\x63\xdb\x9e\
\x7d\x91\x0a\x40\x82\x3b\x08\x91\x9b\xcb\x31\x7f\xfd\x7a\x65\xbc\
\x38\x3c\x4c\xe3\x89\x13\xe4\x26\x26\x98\xbc\x74\x89\x50\x32\x89\
\x28\xb5\xae\xb1\x08\x5a\x69\xb4\xd2\x55\x56\xb7\x05\x38\xcb\xcb\
\xdc\x1f\x18\xa8\x8c\xa7\x32\x19\xa6\x32\x99\xca\xf8\xce\xb9\x73\
\xd5\x49\x54\x09\x91\x02\xac\xed\x01\x96\xcf\xc7\xe3\x78\x0a\xc7\
\x1f\xc2\x27\x66\x47\x19\xba\x1a\xaa\xc1\x0e\xd7\x60\x55\x34\x08\
\x3c\x01\x00\xa4\xde\xe9\xe6\x4a\x6b\x1a\xad\x3d\x80\x18\x83\x08\
\x88\xac\xbf\x8d\x08\x62\x04\x63\x04\xf1\xfb\x09\x36\x1d\x44\x29\
\xe5\x01\xc4\xbf\x35\x40\xc4\x5b\x10\x4d\xc4\x89\x3e\xd3\x4a\x2e\
\x57\x44\x8b\x29\x03\xbc\x6f\xc6\x18\x44\x0c\x5a\x7b\x42\x06\x83\
\x01\xc4\x08\x58\x82\x72\x0d\x4a\x29\x84\xd0\x16\x80\x0d\x3b\xba\
\x7d\x73\x9c\xda\x90\xe6\xa3\xe3\x07\xf1\x59\x82\x11\x83\x31\x06\
\xa5\x34\x46\x6b\x94\xd6\x28\x57\x31\xff\x68\x95\xdb\x73\x16\xb5\
\xa9\x7a\x1e\xfc\x3d\x43\x24\x1a\xc6\x75\xd5\xd6\x95\x2c\xe5\x62\
\xd1\xda\xa5\x26\x16\xa5\x39\x29\xbc\x94\xae\xe3\x87\x81\x1f\xb9\
\xfa\xd3\x35\x44\xe0\xcb\xaf\xbe\xe0\xf9\x8e\x76\x1c\xc7\xc1\x29\
\x29\x9a\x12\x7e\xc6\x17\x0c\x87\x0e\x35\x33\xf3\xef\x02\xae\xab\
\x70\x5d\x55\x55\x68\x81\xcd\x99\x60\x8c\x78\xe7\x8a\x31\xd8\x76\
\x89\xb9\xb9\x79\xee\x4d\xdc\x07\xe0\xe1\xf2\x43\x0a\xf9\x3c\x8e\
\xe3\x50\x2a\x95\xb0\xed\x12\x5a\x47\x2b\xe1\xf5\x00\xee\xf6\x85\
\x26\xc6\x60\xb4\xf1\xca\x5e\x1b\x6c\xdb\x2e\xa7\x5d\x39\x5b\xec\
\x55\xf2\xf9\x3c\xb6\x5d\xc2\xb6\x6d\x6c\xdb\xc6\xe8\x70\x79\xad\
\x54\x3c\xd8\x78\x4b\x06\xd6\x17\xbb\x56\x34\xec\x43\x1b\xaf\xd4\
\xb5\xd1\x14\x0b\x05\x0e\xb7\xb5\xf2\x56\xd7\x9b\x18\x63\x88\xc5\
\x62\x64\xb3\x2b\x15\xe3\xab\xab\x36\xda\xa4\xd6\x2b\xd9\x75\x51\
\xae\xaa\xf6\xc0\xb2\x2c\x0b\xb0\x3a\x3e\xf8\xae\x7f\x74\xf4\xaf\
\xc1\xfd\x4d\xa9\x44\x21\x16\x20\x12\x34\x2c\x3c\x76\x79\xb6\xe3\
\x15\x5a\xd2\x9d\xb8\x8e\x8b\xe3\xb8\x64\x6d\x07\xc7\x09\x52\x72\
\x0c\x8e\x82\x64\x3c\x4c\x50\x1c\x52\xc9\x08\xd1\x80\x66\x5f\x2c\
\xa4\x6a\x22\xc1\x49\xcb\xb2\xfc\x80\xb1\x80\x08\xd0\x0c\xc4\x1a\
\x9e\x7b\xaf\xe3\xfd\x0f\x3f\xee\x0d\x05\x03\xc1\x35\xa5\x84\xf5\
\xd3\x57\x36\x8a\xc5\xe6\x39\x6f\xda\x6f\xdc\xb9\x2b\x03\xdf\x9e\
\x5f\x5c\x9c\xc9\x02\xf3\x56\xf9\x44\x8d\x03\x21\xc0\xbf\xa1\xce\
\xad\xdd\x5f\x39\x55\x7d\x07\xc8\x59\x7b\xfd\xdb\xf2\x1f\x88\xe0\
\x23\xf6\xca\xd4\xed\xc7\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
\x60\x82\
\x00\x00\x04\xca\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x04\x5c\x49\x44\x41\x54\x48\xc7\xc5\
\x56\x0b\x4c\x5b\x05\x14\xad\x4d\x66\x98\x06\xe2\xe6\x67\x31\x96\
\xb1\xd2\x82\x9b\x08\x1d\x4a\x65\x6d\xdc\x84\x39\x4a\xc9\x02\x59\
\x40\xa8\xa9\x33\x5b\xda\xe1\x30\x8e\xb1\x8d\x35\x08\xc6\x91\x82\
\x43\x9c\x13\xdc\x4f\xc5\xec\x47\x45\xa0\x15\x32\xa9\x02\x29\x43\
\x03\xa3\xed\xa0\xa5\x6f\xb4\xae\x2b\xa5\x19\x6c\xb2\xa8\x2c\xc2\
\x8a\x25\xc6\xd8\x8d\xeb\xbd\xe6\x2d\xa2\xae\x90\x98\xa9\x4d\x4e\
\x5e\xfa\xfa\xee\x3d\xef\x9e\x7b\xce\x7b\xe5\x00\x00\xe7\xdf\x04\
\xe7\x7f\x23\xc0\xcf\x52\x84\x38\x2d\x2d\x6d\x8f\x58\x2c\x7e\x87\
\xcb\xe5\xbe\x81\xdf\x77\x20\xf2\x10\x12\xc4\x32\x04\xf7\x1f\x11\
\xe0\x67\x75\x5c\x5c\x5c\xa1\x56\xab\x6d\xed\xec\xec\x1c\x77\x3a\
\x9d\x37\x7d\x3e\xdf\xac\xcd\x66\xbb\x61\x30\x18\xdc\x25\x25\x25\
\xc6\xd8\xd8\x58\x0d\x4b\x74\xef\x7c\x44\x77\x6a\x2e\x55\xa9\x54\
\x1f\x9b\x4c\x26\x8f\xd7\xeb\x85\x81\x81\x01\xa8\xab\xab\x83\x9a\
\x9a\x1a\xd0\xe9\x74\x30\x38\x38\x08\x2e\x97\x0b\x9a\x9a\x9a\x7c\
\x39\x39\x39\x0d\x78\x7d\x3a\x62\x71\x28\x92\xbf\xdd\x39\x35\xb7\
\x58\xad\xdf\x31\x0c\x03\x25\x6f\x96\xff\x9a\xb9\x43\x33\x9d\x5d\
\x79\x38\xa8\xf8\x50\x0f\x59\xda\xf7\x03\xaf\xec\xaf\x99\x6c\xd0\
\x7f\x16\xc4\x69\x40\x6f\x30\x5c\x97\xcb\xe5\x4d\x58\x97\x12\x8a\
\xe4\x4f\x9a\x93\x2c\x74\xe7\xd4\x7c\xcb\xde\xb2\x1b\xcf\x14\xbf\
\x35\x9c\x74\xb0\xc1\xb7\xa9\xde\xf4\xcb\xe6\x56\x33\x28\x5b\x2d\
\xb3\x09\x07\x9b\x46\x5f\x38\xda\x38\x52\xdf\x71\xd6\xef\x70\x38\
\xa0\xa2\xa2\x62\x94\xc7\xe3\x69\xb1\x5e\x48\x72\xcd\x47\x20\x26\
\xcd\x49\x16\xba\x73\x6a\x2e\x3a\xf0\xc9\x80\xec\x78\x87\x53\x63\
\x72\x4c\x54\x9e\xbb\x38\x53\xd8\xe9\x98\x4e\x39\xdd\x3d\xba\xb2\
\xae\xeb\x7c\x7e\xf3\x59\xb7\xd9\x36\x18\x6c\x69\x69\x81\x8c\x8c\
\x8c\x6e\xac\xcf\x44\x84\xff\x75\x8a\xb9\x04\xd9\x46\xa3\xd1\x45\
\x9a\xcb\x0b\x76\xff\x20\xa8\x3c\x69\xcd\x6b\x30\x5d\xd0\xf4\xb8\
\x5d\x6f\x33\xe3\x9e\x2a\xe6\xdb\xcb\x55\x8e\xab\x57\x76\x5a\x46\
\x2f\x89\xda\x3c\x5f\xc5\xeb\x99\xae\xe3\x3d\xb6\xef\x49\x2a\xa5\
\x52\xe9\xc3\xfa\x22\xc4\xc3\x88\x45\xa1\x08\x5e\x45\x69\xa6\x68\
\xa1\x92\x3d\x15\x23\x31\xef\x36\xf7\xad\x7e\x4e\x05\xcf\xe7\x96\
\xc2\x86\x17\xf7\x41\x6a\x6e\x19\xa4\x2b\xcb\x61\x5d\xf6\xeb\xc0\
\x79\x2c\x0b\x12\x4d\x57\x3a\xf6\x76\x31\x2e\xb7\xdb\x0d\x05\x05\
\x05\xd3\x58\x5f\x85\xe0\x21\xc2\x42\x11\x94\xa0\x15\x6f\x91\x5b\
\x44\xe5\xc7\x98\xc7\x0f\xb7\xf5\x2e\x5e\x91\x09\x4b\x13\x55\xb0\
\x22\x75\x37\x08\x36\x14\xc3\xf2\x94\x5d\x10\x9e\x98\x0f\x9c\xd8\
\x97\xe1\xe9\xde\x89\x2f\xb2\xda\xbf\xe9\x1b\x1e\x1e\x26\x82\x5b\
\x58\x7f\x04\xc1\x47\xdc\x17\x8a\xe0\x35\xbb\xdd\x3e\x45\x56\x4c\
\xdb\x57\x33\xb2\xf2\xd8\x97\x3d\x9c\x47\xe5\xc0\x11\x6e\x06\xce\
\x2a\xf5\x1f\x78\x02\x11\xa7\x86\x24\xf3\xa4\xb1\xcc\xe2\x1b\xf2\
\x78\x3c\xa0\x50\x28\x68\x82\x03\x88\x68\xc4\xfd\xa1\x08\xf2\x28\
\x44\xe4\xf3\x82\xea\x43\x13\x34\x01\xff\xc4\xc5\x7e\xbe\xe1\xc7\
\x7e\xc1\x99\x80\x55\xd0\x16\xb0\x44\x9f\x09\x9c\x17\x1a\x03\x66\
\x71\xff\x4f\x6d\x34\x81\xde\x79\xf9\x1a\x39\x09\xd3\x4e\x3b\x28\
\x5d\x68\x02\x09\x25\x94\x42\x44\x3e\xcf\xfb\x40\x7f\x29\xea\xa8\
\xdd\x1e\x79\xea\x9a\x83\xf7\xa9\x7f\x88\xd7\x3c\xc3\x20\x2e\x08\
\x3e\x0f\x58\x93\x2c\x53\x46\x4d\xff\x18\xe3\x1c\xf6\x06\x6b\x6b\
\x6b\x21\x21\x21\xa1\x17\xeb\xb7\x2e\xb4\x83\x65\x14\x7f\x4a\x28\
\x39\xa3\xbe\xa3\xdb\xaf\x6e\xfc\xda\x13\x53\x3f\x74\x2e\x4a\x37\
\x6e\x8b\x6c\x98\x74\x08\x5a\xa7\xac\xf1\xa6\x09\x13\x35\x6f\x67\
\xdc\x3f\x9b\xcd\x66\x90\xc9\x64\xfe\x88\x88\x88\xd3\x58\xbf\x76\
\x21\x17\x71\x69\x0a\x8a\x3f\x25\x94\x46\x27\x9f\x93\x15\xc9\x2d\
\xb4\x50\xd2\x9c\x64\x71\x7a\xbc\x41\x6a\xae\xde\xb6\x6d\x56\x2a\
\x95\xce\x60\x5d\x3b\x82\xc2\x26\x0a\x99\x03\x96\x84\x1e\x5c\xe9\
\x14\x7f\x4a\x28\x85\x88\xa6\x21\x2b\x92\x5b\x68\xa1\x44\x4c\xb2\
\xe0\x35\x7e\x89\x44\x12\x48\x4e\x4e\x86\xcc\x35\xfc\x99\x5d\x9b\
\x56\x5d\xc7\xda\x9d\x94\xe8\xf9\x08\xb8\xec\x33\x25\x85\xe2\x4f\
\x09\xa5\x10\x91\xcf\xc9\x8a\xe4\x16\x5a\x28\x69\x8e\xb2\x9c\x0a\
\x0b\x0b\x1b\x48\x7d\x32\xea\x66\xd9\xc6\x18\xf8\x68\x7b\x12\x94\
\xbf\x94\x30\x4e\x6e\x9c\x4b\x72\xa7\xa7\xe9\x6d\x12\x21\x1b\xff\
\x22\x36\x44\x47\x58\x2b\x96\xb2\x0b\x5d\x77\x0f\x87\x63\x5d\x1b\
\xb9\x24\x50\xf8\xec\x72\xa8\xce\x8d\x03\x5d\xd1\x1a\xd8\xbf\x35\
\x71\x6c\x2e\x49\xa8\xf7\x01\x97\x95\x2b\x9c\x5d\x1c\x8f\xb5\x60\
\x34\x7b\xe4\xb1\xe7\x45\x48\xd2\xb7\x3e\xfa\xa1\x80\x66\x3d\x1f\
\xde\x53\xc6\x43\x63\xb1\x14\xaa\xd5\x4f\xfd\x4e\xb2\xe0\x2b\x93\
\x25\x5a\x44\xd6\x23\x7f\x53\x88\xd8\x63\x18\x7b\x9e\x7e\x17\x22\
\x49\x67\x1a\x7f\xc9\xd5\x52\x99\x00\x0e\x6d\x11\xc1\x76\xb9\xd0\
\x8d\xe7\x15\x77\xed\x9d\xcc\x92\xb4\xc8\x85\x0f\x8e\x6d\x8c\x7f\
\x84\x9a\xe7\x23\x1e\xb8\xab\x2f\x7d\x76\x67\xa4\xbd\xe2\x76\xf3\
\xff\xe4\x5f\xc5\x6f\x26\x4d\xee\x1d\xf0\xc3\x08\x75\x00\x00\x00\
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
\x00\x00\x03\x00\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
\x00\x00\x18\x00\x00\x00\x18\x08\x06\x00\x00\x00\xe0\x77\x3d\xf8\
\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xd6\xd8\xd4\x4f\x58\x32\
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
\x79\x71\xc9\x65\x3c\x00\x00\x02\x92\x49\x44\x41\x54\x48\xc7\xb5\
\x96\x4d\x4b\x54\x51\x1c\xc6\x7f\xe7\xde\x99\x3b\xbe\x0c\x86\x12\
\x96\xa6\x34\x44\x8a\x94\x42\x90\xd9\x62\x10\xfb\x0e\x6d\x6c\x97\
\x50\xab\x56\x2d\xdc\xf6\x2d\xa2\x45\x50\x14\xb8\xa8\x90\x12\x37\
\x51\x1b\xb5\x30\x2b\x2a\xad\xc1\x34\x4c\x57\xa1\xf9\x92\xa2\xce\
\x78\xe7\xde\x7b\xee\x69\x31\x67\x5e\x1a\xbd\xea\x38\x74\xe0\x70\
\x0f\x33\xdc\xe7\x77\xfe\xcf\xff\x65\x46\x28\xa5\xf8\x9f\x2b\x14\
\xf4\xc5\xdd\x3e\x61\x6d\x6e\x12\x4f\xed\xe0\xd4\xd4\xd1\xe9\xd8\
\x18\x4a\x21\xab\x22\xc4\x22\x95\x46\x53\xb5\x25\xe4\xab\x8f\xf2\
\xde\xf0\x67\xc6\x7c\x20\xa5\xef\x59\x7c\xe1\x40\x80\x30\xe9\x6f\
\xe9\xec\xbe\xb1\xb3\xb5\xb6\xde\xd4\xd6\x73\xca\xf3\x95\x81\x74\
\xbd\xda\x93\xad\xb5\xc7\xea\xcf\x44\x2c\x53\xb2\xb8\xd6\xdb\x3c\
\xf8\x89\xab\x02\x7e\x07\x86\xa0\x94\xda\x73\x3f\xb9\x73\x5e\x05\
\xad\xb4\x7e\x2e\xcd\xbe\x54\xbd\xed\x3c\x07\xaa\x82\xf4\x02\x01\
\x8f\xfa\x63\xa9\x20\x40\x62\x3a\xa1\x1c\x99\x39\x7f\x7f\xfb\x50\
\xdd\xea\xe1\x41\x10\xc0\x08\x8a\xcc\xf7\x3d\x2f\x73\xf2\x50\xa4\
\x80\x24\x60\x03\x2e\xd2\xdd\xc6\xd9\x49\x01\xd0\x16\xbf\x4e\xbc\
\xfb\x5c\x1f\x10\x87\xdd\x7a\xa1\x83\xeb\x20\x8d\xc0\x03\x14\xe0\
\x01\x16\xd1\x68\x05\x43\x43\x4f\x59\x59\xd9\xe6\xc2\xe5\x2b\xac\
\x27\x7d\x80\x76\x60\x8e\xa2\x7c\x18\x07\x03\x5c\x14\x2e\xe4\xb6\
\x4d\xf3\xe9\x13\xb4\x9c\x6d\xa0\xb5\xb5\x8e\x8e\x8e\x18\x21\xec\
\xec\x65\xcd\x12\x22\x50\x05\x11\x48\x40\xa1\x10\x08\x14\x61\x33\
\xc4\xa5\xae\x8b\x80\x05\x44\x39\x16\xb5\xd0\x74\x79\x24\x8b\x14\
\x3e\xe2\x1f\xa8\x0b\x08\x20\x0d\xd4\x90\xcd\x56\x49\x8d\x96\x5f\
\x36\x02\x85\xd2\x92\x99\x28\xd0\xd0\xac\xc3\xf2\x28\x80\xbc\x45\
\x00\x42\x23\x44\xb6\x11\xcb\x1d\x15\xf9\xfc\xdb\x45\xd2\x59\xbc\
\x2a\xf8\x44\x94\x63\x51\x5a\x5b\x91\x95\xcc\x98\x94\x91\xf4\xcb\
\x01\x88\x82\x24\x0b\x04\x46\xce\x26\x95\xcb\x84\x2c\xc7\x22\x00\
\x47\x77\xaf\x99\xcb\x42\x7e\x49\x9d\x27\xb7\x20\x5f\x25\x27\xd9\
\xd5\x10\xb3\x28\x2a\x89\xc2\xd0\x1d\xee\x80\x71\x24\x8b\x8c\x1c\
\x40\x10\xce\x95\xa5\x42\xea\x58\x0c\x20\x0c\x54\x53\x11\xae\xc8\
\xbe\x60\x94\x18\x81\xa3\xab\x48\x22\xf0\x01\x1f\x41\x15\x10\x03\
\x8e\xeb\x01\x38\xc7\xea\xea\x46\xe9\x00\x21\x30\xd0\x16\x08\x4c\
\x2d\xd8\x06\x78\x6c\x2d\x8c\x31\xfb\x61\x82\xd1\x91\xf7\xfe\xb3\
\xc1\xaf\xf3\x3f\x37\x99\xd1\x83\x2e\x79\x68\x40\xc4\xaa\x8c\x40\
\xa3\x1e\x92\x0d\xa4\x96\x12\x8c\xbf\xb8\xcd\x9b\xd1\x71\x7f\xe8\
\xf5\xf2\xb7\xa9\x35\x26\x81\x19\xe0\x0b\xf0\x03\x58\xd4\x15\x71\
\x38\x40\x63\x9d\x50\xb0\xc4\xc8\xc0\x63\x86\x07\xee\x3b\xe3\x93\
\x72\x61\x62\x91\x77\x5a\x30\x01\x4c\x03\xcb\x05\xcd\xb0\xb7\x13\
\x41\xff\x2a\xba\x9a\xc5\xb5\xe4\x06\x37\xe7\xb7\xf9\x63\xc3\x28\
\x30\x05\xcc\x03\xbf\xf6\xab\xcb\x5d\x7a\x41\x3f\x99\x3d\x2d\x00\
\x44\x81\xfa\xbd\xe6\xfc\x7e\x80\xc2\xfd\x17\xfb\xc6\x93\x82\x32\
\x2c\x7f\xcc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
"
qt_resource_name = "\
\x00\x04\
\x00\x06\xfa\x5e\
\x00\x69\
\x00\x63\x00\x6f\x00\x6e\
\x00\x04\
\x00\x07\x35\xdf\
\x00\x6c\
\x00\x6f\x00\x67\x00\x6f\
\x00\x06\
\x07\x03\x7d\xc3\
\x00\x69\
\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\
\x00\x08\
\x05\xe2\x5f\x07\
\x00\x6c\
\x00\x6f\x00\x67\x00\x6f\x00\x2e\x00\x6a\x00\x70\x00\x67\
\x00\x03\
\x00\x00\x7d\xfe\
\x00\x77\
\x00\x69\x00\x6e\
\x00\x03\
\x00\x00\x73\x73\
\x00\x6d\
\x00\x61\x00\x63\
\x00\x0c\
\x06\xc8\x40\x47\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x72\x00\x65\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x0a\x10\x36\x07\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x63\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x05\x68\x0e\x67\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x0b\x21\x0f\x87\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0a\
\x04\x11\x7b\x87\
\x00\x7a\
\x00\x6f\x00\x6f\x00\x6d\x00\x69\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x06\x52\xd9\xe7\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x08\
\x0e\xb6\x5a\xc7\
\x00\x65\
\x00\x78\x00\x65\x00\x63\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x0d\xc9\x3b\xe7\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x70\x00\x61\x00\x73\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x0b\x0e\x42\x07\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0c\
\x09\xc8\x40\xc7\
\x00\x65\
\x00\x64\x00\x69\x00\x74\x00\x75\x00\x6e\x00\x64\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0d\
\x0f\x47\x85\x87\
\x00\x65\
\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x70\x00\x64\x00\x66\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x07\xc5\x9b\xc7\
\x00\x7a\
\x00\x6f\x00\x6f\x00\x6d\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\
\x00\x0b\
\x04\x14\x52\xc7\
\x00\x66\
\x00\x69\x00\x6c\x00\x65\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\
"
qt_resource_struct = "\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x05\
\x00\x00\x00\x0e\x00\x02\x00\x00\x00\x01\x00\x00\x00\x03\
\x00\x00\x00\x1c\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\
\x00\x00\x00\x2e\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x1c\x00\x02\x00\x00\x00\x02\x00\x00\x00\x06\
\x00\x00\x00\x50\x00\x02\x00\x00\x00\x0d\x00\x00\x00\x15\
\x00\x00\x00\x44\x00\x02\x00\x00\x00\x0d\x00\x00\x00\x08\
\x00\x00\x00\xd2\x00\x00\x00\x00\x00\x01\x00\x00\x96\x82\
\x00\x00\x01\xba\x00\x00\x00\x00\x00\x01\x00\x00\xe7\x69\
\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x8b\x47\
\x00\x00\x00\xec\x00\x00\x00\x00\x00\x01\x00\x00\x9b\x3e\
\x00\x00\x00\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x7c\xdc\
\x00\x00\x01\x9e\x00\x00\x00\x00\x00\x01\x00\x00\xe2\x9b\
\x00\x00\x01\x60\x00\x00\x00\x00\x00\x01\x00\x00\xd7\x88\
\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x83\xdb\
\x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x00\xd2\x57\
\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x90\x00\
\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\xcc\x89\
\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xa0\xf2\
\x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x00\xde\x74\
\x00\x00\x00\xd2\x00\x00\x00\x00\x00\x01\x00\x00\x1e\x8d\
\x00\x00\x01\xba\x00\x00\x00\x00\x00\x01\x00\x00\x78\x44\
\x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x11\x57\
\x00\x00\x00\xec\x00\x00\x00\x00\x00\x01\x00\x00\x25\x31\
\x00\x00\x00\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x04\x8f\
\x00\x00\x01\x9e\x00\x00\x00\x00\x00\x01\x00\x00\x71\xc2\
\x00\x00\x01\x60\x00\x00\x00\x00\x00\x01\x00\x00\x66\x29\
\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x6b\
\x00\x00\x01\x42\x00\x00\x00\x00\x00\x01\x00\x00\x60\x69\
\x00\x00\x00\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x16\x11\
\x00\x00\x01\x22\x00\x00\x00\x00\x00\x01\x00\x00\x58\xf3\
\x00\x00\x01\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x2d\x5c\
\x00\x00\x01\x7e\x00\x00\x00\x00\x00\x01\x00\x00\x6c\xff\
"
def qInitResources():
QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
| 0423htebazile-repository | yaraeditor/ui/yaraeditor_rc.py | Python | gpl3 | 252,235 |
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'yaraeditor.ui'
#
# Created: Tue Feb 26 07:52:45 2013
# by: PyQt4 UI code generator 4.9.1
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_YaraEditor(object):
def setupUi(self, YaraEditor):
YaraEditor.setObjectName(_fromUtf8("YaraEditor"))
YaraEditor.resize(1117, 609)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/logo/images/logo.jpg")), QtGui.QIcon.Normal, QtGui.QIcon.Off)
YaraEditor.setWindowIcon(icon)
YaraEditor.setUnifiedTitleAndToolBarOnMac(True)
self.centralwidget = QtGui.QWidget(YaraEditor)
self.centralwidget.setObjectName(_fromUtf8("centralwidget"))
self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget)
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.MainWidget = QtGui.QWidget(self.centralwidget)
self.MainWidget.setObjectName(_fromUtf8("MainWidget"))
self.horizontalLayout = QtGui.QHBoxLayout(self.MainWidget)
self.horizontalLayout.setMargin(0)
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.widgetEditor = QtGui.QWidget(self.MainWidget)
self.widgetEditor.setObjectName(_fromUtf8("widgetEditor"))
self.horizontalLayout.addWidget(self.widgetEditor)
self.verticalLayout.addWidget(self.MainWidget)
YaraEditor.setCentralWidget(self.centralwidget)
self.menubar = QtGui.QMenuBar(YaraEditor)
self.menubar.setGeometry(QtCore.QRect(0, 0, 1117, 25))
self.menubar.setObjectName(_fromUtf8("menubar"))
YaraEditor.setMenuBar(self.menubar)
self.statusbar = QtGui.QStatusBar(YaraEditor)
self.statusbar.setObjectName(_fromUtf8("statusbar"))
YaraEditor.setStatusBar(self.statusbar)
self.dockWidgetYara = QtGui.QDockWidget(YaraEditor)
self.dockWidgetYara.setMinimumSize(QtCore.QSize(300, 208))
self.dockWidgetYara.setObjectName(_fromUtf8("dockWidgetYara"))
self.dockWidgetContents = QtGui.QWidget()
self.dockWidgetContents.setObjectName(_fromUtf8("dockWidgetContents"))
self.verticalLayout_5 = QtGui.QVBoxLayout(self.dockWidgetContents)
self.verticalLayout_5.setObjectName(_fromUtf8("verticalLayout_5"))
self.widgetYara = QtGui.QWidget(self.dockWidgetContents)
self.widgetYara.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.widgetYara.setObjectName(_fromUtf8("widgetYara"))
self.verticalLayout_2 = QtGui.QVBoxLayout(self.widgetYara)
self.verticalLayout_2.setMargin(0)
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
self.label_3 = QtGui.QLabel(self.widgetYara)
self.label_3.setObjectName(_fromUtf8("label_3"))
self.verticalLayout_2.addWidget(self.label_3)
self.pathYara = QtGui.QLineEdit(self.widgetYara)
self.pathYara.setMaximumSize(QtCore.QSize(300, 16777215))
self.pathYara.setReadOnly(False)
self.pathYara.setObjectName(_fromUtf8("pathYara"))
self.verticalLayout_2.addWidget(self.pathYara)
self.yaraTree = QtGui.QTreeView(self.widgetYara)
self.yaraTree.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.yaraTree.setObjectName(_fromUtf8("yaraTree"))
self.verticalLayout_2.addWidget(self.yaraTree)
self.verticalLayout_5.addWidget(self.widgetYara)
self.dockWidgetYara.setWidget(self.dockWidgetContents)
YaraEditor.addDockWidget(QtCore.Qt.DockWidgetArea(1), self.dockWidgetYara)
self.dockWidgetMalware = QtGui.QDockWidget(YaraEditor)
self.dockWidgetMalware.setMinimumSize(QtCore.QSize(310, 231))
self.dockWidgetMalware.setObjectName(_fromUtf8("dockWidgetMalware"))
self.dockWidgetContents_2 = QtGui.QWidget()
self.dockWidgetContents_2.setObjectName(_fromUtf8("dockWidgetContents_2"))
self.verticalLayout_4 = QtGui.QVBoxLayout(self.dockWidgetContents_2)
self.verticalLayout_4.setObjectName(_fromUtf8("verticalLayout_4"))
self.widgetMalware = QtGui.QWidget(self.dockWidgetContents_2)
self.widgetMalware.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.widgetMalware.setObjectName(_fromUtf8("widgetMalware"))
self.verticalLayout_3 = QtGui.QVBoxLayout(self.widgetMalware)
self.verticalLayout_3.setMargin(0)
self.verticalLayout_3.setObjectName(_fromUtf8("verticalLayout_3"))
self.pathMalware = QtGui.QLineEdit(self.widgetMalware)
self.pathMalware.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.pathMalware.setReadOnly(False)
self.pathMalware.setObjectName(_fromUtf8("pathMalware"))
self.verticalLayout_3.addWidget(self.pathMalware)
self.malwareTree = QtGui.QTreeView(self.widgetMalware)
self.malwareTree.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.malwareTree.setObjectName(_fromUtf8("malwareTree"))
self.verticalLayout_3.addWidget(self.malwareTree)
self.verticalLayout_4.addWidget(self.widgetMalware)
self.dockWidgetMalware.setWidget(self.dockWidgetContents_2)
YaraEditor.addDockWidget(QtCore.Qt.DockWidgetArea(2), self.dockWidgetMalware)
self.dockWidgetInspector = QtGui.QDockWidget(YaraEditor)
self.dockWidgetInspector.setObjectName(_fromUtf8("dockWidgetInspector"))
self.dockWidgetContents_4 = QtGui.QWidget()
self.dockWidgetContents_4.setObjectName(_fromUtf8("dockWidgetContents_4"))
self.verticalLayout_6 = QtGui.QVBoxLayout(self.dockWidgetContents_4)
self.verticalLayout_6.setObjectName(_fromUtf8("verticalLayout_6"))
self.tabWidget = QtGui.QTabWidget(self.dockWidgetContents_4)
self.tabWidget.setObjectName(_fromUtf8("tabWidget"))
self.tab_properties = QtGui.QWidget()
self.tab_properties.setObjectName(_fromUtf8("tab_properties"))
self.verticalLayout_8 = QtGui.QVBoxLayout(self.tab_properties)
self.verticalLayout_8.setObjectName(_fromUtf8("verticalLayout_8"))
self.treeMalwareProperties = QtGui.QTreeWidget(self.tab_properties)
self.treeMalwareProperties.setObjectName(_fromUtf8("treeMalwareProperties"))
self.verticalLayout_8.addWidget(self.treeMalwareProperties)
self.tabWidget.addTab(self.tab_properties, _fromUtf8(""))
self.tab_strings = QtGui.QWidget()
self.tab_strings.setObjectName(_fromUtf8("tab_strings"))
self.verticalLayout_7 = QtGui.QVBoxLayout(self.tab_strings)
self.verticalLayout_7.setObjectName(_fromUtf8("verticalLayout_7"))
self.tabWidget.addTab(self.tab_strings, _fromUtf8(""))
self.verticalLayout_6.addWidget(self.tabWidget)
self.dockWidgetInspector.setWidget(self.dockWidgetContents_4)
YaraEditor.addDockWidget(QtCore.Qt.DockWidgetArea(2), self.dockWidgetInspector)
self.dockWidget = QtGui.QDockWidget(YaraEditor)
self.dockWidget.setObjectName(_fromUtf8("dockWidget"))
self.dockWidgetContents_3 = QtGui.QWidget()
self.dockWidgetContents_3.setObjectName(_fromUtf8("dockWidgetContents_3"))
self.verticalLayout_9 = QtGui.QVBoxLayout(self.dockWidgetContents_3)
self.verticalLayout_9.setObjectName(_fromUtf8("verticalLayout_9"))
self.outputEdit = QtGui.QTextEdit(self.dockWidgetContents_3)
self.outputEdit.setMinimumSize(QtCore.QSize(0, 100))
self.outputEdit.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.outputEdit.setReadOnly(True)
self.outputEdit.setObjectName(_fromUtf8("outputEdit"))
self.verticalLayout_9.addWidget(self.outputEdit)
self.dockWidget.setWidget(self.dockWidgetContents_3)
YaraEditor.addDockWidget(QtCore.Qt.DockWidgetArea(8), self.dockWidget)
self.actionNouveau = QtGui.QAction(YaraEditor)
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap(_fromUtf8(":/icon/images/win/filenew.png")), QtGui.QIcon.Normal, QtGui.QIcon.On)
self.actionNouveau.setIcon(icon1)
self.actionNouveau.setObjectName(_fromUtf8("actionNouveau"))
self.actionExit = QtGui.QAction(YaraEditor)
self.actionExit.setObjectName(_fromUtf8("actionExit"))
self.actionEnregistrer = QtGui.QAction(YaraEditor)
self.actionEnregistrer.setObjectName(_fromUtf8("actionEnregistrer"))
self.retranslateUi(YaraEditor)
self.tabWidget.setCurrentIndex(0)
QtCore.QMetaObject.connectSlotsByName(YaraEditor)
def retranslateUi(self, YaraEditor):
YaraEditor.setWindowTitle(QtGui.QApplication.translate("YaraEditor", "Yara-Editor", None, QtGui.QApplication.UnicodeUTF8))
self.label_3.setText(QtGui.QApplication.translate("YaraEditor", "Yara Browser", None, QtGui.QApplication.UnicodeUTF8))
self.dockWidgetMalware.setWindowTitle(QtGui.QApplication.translate("YaraEditor", "Malware Browser", None, QtGui.QApplication.UnicodeUTF8))
self.dockWidgetInspector.setWindowTitle(QtGui.QApplication.translate("YaraEditor", "Inspector", None, QtGui.QApplication.UnicodeUTF8))
self.treeMalwareProperties.headerItem().setText(0, QtGui.QApplication.translate("YaraEditor", "Name", None, QtGui.QApplication.UnicodeUTF8))
self.treeMalwareProperties.headerItem().setText(1, QtGui.QApplication.translate("YaraEditor", "Value", None, QtGui.QApplication.UnicodeUTF8))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_properties), QtGui.QApplication.translate("YaraEditor", "Tab Properties", None, QtGui.QApplication.UnicodeUTF8))
self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_strings), QtGui.QApplication.translate("YaraEditor", "Strings", None, QtGui.QApplication.UnicodeUTF8))
self.actionNouveau.setText(QtGui.QApplication.translate("YaraEditor", "New", None, QtGui.QApplication.UnicodeUTF8))
self.actionNouveau.setShortcut(QtGui.QApplication.translate("YaraEditor", "Ctrl+N", None, QtGui.QApplication.UnicodeUTF8))
self.actionExit.setText(QtGui.QApplication.translate("YaraEditor", "Exit", None, QtGui.QApplication.UnicodeUTF8))
self.actionExit.setShortcut(QtGui.QApplication.translate("YaraEditor", "Ctrl+Q", None, QtGui.QApplication.UnicodeUTF8))
self.actionEnregistrer.setText(QtGui.QApplication.translate("YaraEditor", "Save", None, QtGui.QApplication.UnicodeUTF8))
self.actionEnregistrer.setShortcut(QtGui.QApplication.translate("YaraEditor", "Ctrl+S", None, QtGui.QApplication.UnicodeUTF8))
import yaraeditor_rc
| 0423htebazile-repository | yaraeditor/ui/yaraeditor.py | Python | gpl3 | 10,722 |
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'rules_generator.ui'
#
# Created: Tue Feb 26 07:52:45 2013
# by: PyQt4 UI code generator 4.9.1
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
_fromUtf8 = lambda s: s
class Ui_DialogGenerator(object):
def setupUi(self, DialogGenerator):
DialogGenerator.setObjectName(_fromUtf8("DialogGenerator"))
DialogGenerator.resize(728, 610)
self.verticalLayout = QtGui.QVBoxLayout(DialogGenerator)
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout"))
self.label = QtGui.QLabel(DialogGenerator)
self.label.setObjectName(_fromUtf8("label"))
self.verticalLayout.addWidget(self.label)
self.label_4 = QtGui.QLabel(DialogGenerator)
self.label_4.setObjectName(_fromUtf8("label_4"))
self.verticalLayout.addWidget(self.label_4)
self.label_5 = QtGui.QLabel(DialogGenerator)
self.label_5.setObjectName(_fromUtf8("label_5"))
self.verticalLayout.addWidget(self.label_5)
self.widget = QtGui.QWidget(DialogGenerator)
self.widget.setObjectName(_fromUtf8("widget"))
self.horizontalLayout = QtGui.QHBoxLayout(self.widget)
self.horizontalLayout.setMargin(0)
self.horizontalLayout.setObjectName(_fromUtf8("horizontalLayout"))
self.widget_3 = QtGui.QWidget(self.widget)
self.widget_3.setObjectName(_fromUtf8("widget_3"))
self.verticalLayout_2 = QtGui.QVBoxLayout(self.widget_3)
self.verticalLayout_2.setMargin(0)
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
self.widget_4 = QtGui.QWidget(self.widget_3)
self.widget_4.setObjectName(_fromUtf8("widget_4"))
self.horizontalLayout_3 = QtGui.QHBoxLayout(self.widget_4)
self.horizontalLayout_3.setMargin(0)
self.horizontalLayout_3.setObjectName(_fromUtf8("horizontalLayout_3"))
self.label_2 = QtGui.QLabel(self.widget_4)
self.label_2.setObjectName(_fromUtf8("label_2"))
self.horizontalLayout_3.addWidget(self.label_2)
self.btnBrowseNewFile = QtGui.QToolButton(self.widget_4)
self.btnBrowseNewFile.setObjectName(_fromUtf8("btnBrowseNewFile"))
self.horizontalLayout_3.addWidget(self.btnBrowseNewFile)
self.verticalLayout_2.addWidget(self.widget_4)
self.listFiles = QtGui.QListWidget(self.widget_3)
self.listFiles.setObjectName(_fromUtf8("listFiles"))
self.verticalLayout_2.addWidget(self.listFiles)
self.horizontalLayout.addWidget(self.widget_3)
self.treeWidget = QtGui.QTreeWidget(self.widget)
self.treeWidget.setObjectName(_fromUtf8("treeWidget"))
self.treeWidget.headerItem().setText(0, _fromUtf8("1"))
self.treeWidget.header().setVisible(False)
self.horizontalLayout.addWidget(self.treeWidget)
self.widget_5 = QtGui.QWidget(self.widget)
self.widget_5.setObjectName(_fromUtf8("widget_5"))
self.verticalLayout_3 = QtGui.QVBoxLayout(self.widget_5)
self.verticalLayout_3.setMargin(0)
self.verticalLayout_3.setObjectName(_fromUtf8("verticalLayout_3"))
self.widget_6 = QtGui.QWidget(self.widget_5)
self.widget_6.setObjectName(_fromUtf8("widget_6"))
self.horizontalLayout_4 = QtGui.QHBoxLayout(self.widget_6)
self.horizontalLayout_4.setMargin(0)
self.horizontalLayout_4.setObjectName(_fromUtf8("horizontalLayout_4"))
self.label_3 = QtGui.QLabel(self.widget_6)
self.label_3.setObjectName(_fromUtf8("label_3"))
self.horizontalLayout_4.addWidget(self.label_3)
self.btnBrowseNewFamily = QtGui.QToolButton(self.widget_6)
self.btnBrowseNewFamily.setObjectName(_fromUtf8("btnBrowseNewFamily"))
self.horizontalLayout_4.addWidget(self.btnBrowseNewFamily)
self.verticalLayout_3.addWidget(self.widget_6)
self.listFilesFamily = QtGui.QListWidget(self.widget_5)
self.listFilesFamily.setObjectName(_fromUtf8("listFilesFamily"))
self.verticalLayout_3.addWidget(self.listFilesFamily)
self.horizontalLayout.addWidget(self.widget_5)
self.verticalLayout.addWidget(self.widget)
self.buttonBox = QtGui.QDialogButtonBox(DialogGenerator)
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Cancel|QtGui.QDialogButtonBox.Ok)
self.buttonBox.setObjectName(_fromUtf8("buttonBox"))
self.verticalLayout.addWidget(self.buttonBox)
self.retranslateUi(DialogGenerator)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), DialogGenerator.accept)
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), DialogGenerator.reject)
QtCore.QMetaObject.connectSlotsByName(DialogGenerator)
def retranslateUi(self, DialogGenerator):
DialogGenerator.setWindowTitle(QtGui.QApplication.translate("DialogGenerator", "Dialog", None, QtGui.QApplication.UnicodeUTF8))
self.label.setText(QtGui.QApplication.translate("DialogGenerator", "1 - Adding elements in the \"Same Family\", the strings will be retained only those that are found in each element.", None, QtGui.QApplication.UnicodeUTF8))
self.label_4.setText(QtGui.QApplication.translate("DialogGenerator", "2 - Adding elements in the \"Other Malware\", the strings in these files will not be selected to build the rule.", None, QtGui.QApplication.UnicodeUTF8))
self.label_5.setText(QtGui.QApplication.translate("DialogGenerator", "3 - In the middle part, you can see only the strings used for the detection.", None, QtGui.QApplication.UnicodeUTF8))
self.label_2.setText(QtGui.QApplication.translate("DialogGenerator", "Other Malware (False positive)", None, QtGui.QApplication.UnicodeUTF8))
self.btnBrowseNewFile.setText(QtGui.QApplication.translate("DialogGenerator", "...", None, QtGui.QApplication.UnicodeUTF8))
self.label_3.setText(QtGui.QApplication.translate("DialogGenerator", "Same Family", None, QtGui.QApplication.UnicodeUTF8))
self.btnBrowseNewFamily.setText(QtGui.QApplication.translate("DialogGenerator", "...", None, QtGui.QApplication.UnicodeUTF8))
| 0423htebazile-repository | yaraeditor/ui/rules_generator.py | Python | gpl3 | 6,388 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
__all__ = []
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | yaraeditor/ui/__init__.py | Python | gpl3 | 219 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
__all__ = []
# vim:ts=4:expandtab:sw=4
| 0423htebazile-repository | yaraeditor/__init__.py | Python | gpl3 | 219 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
@author: Ivan Fontarensky
@license: GNU General Public License 3.0
@contact: ivan.fontarensky_at_gmail.com
"""
import os
VERSION = "0.1.5"
DEBUG = 1
AUTHOR = "Ivan Fontarensky"
NAME = "yara-editor"
LOG_FILE = "./%s.log" % (NAME)
CONF_PATH = "%s/.yara/%s" % (os.path.expanduser('~'),NAME)
CONF_FILE = "conf"
CONF_LANG = "lang"
CONF_LANG_PATH = "%s/i18n/i18n_en.qm" % (CONF_PATH)
CONF_PREFERENCE = "preference"
CONF_PATH_YARA = "path_yara_rules"
CONF_PATH_MALWARE = "path_malwares"
ERROR_LOADING_CONTROLLEUR = 1
#
# Message in log file
#
MSG_LAUNCH_APPLICATION = "Application start..."
MSG_INFO_READ_CONFIG_FILE = "Reading Configuration"
MSG_ITEM_DELETE = "Item deleted"
MSG_TRY_ITEM_DELETE = "Trying to delete"
MSG_COMPRESSION = "Compressed data with password 'infected'"
MSG_ERROR_WRITTING_CONFIG_FILE = "Error when writing configuration file"
MSG_ERROR_READING_CONFIG_FILE = "Error when reading configuration file"
MSG_ERROR_STOP_APPLICATION = "Error unknow, application stop now "
MSG_INFO_MALWARE_IDENTIFIED = "File identified"
MSG_TRY_ITEM_ADD = "Trying to add"
MSG_ITEM_ADD = "Item added "
MSG_ITEM_SET = "Item setted "
MSG_ORPHELIN = "Orphan detected "
MSG_ERROR_RUN_MODULE_FAILED = "Error during execution of the function run"
MSG_ERROR_REPORT = "Can't read report for this file"
MSG_WARNING_DELETE = "Are you really really sure you want to delete that project ? y@m be careful."
MSG_WARNING_DELETE_CLEAN = "Are you really really sure you want to delete that object ?"
TEMPLATE_YARA="""
rule Generated_Rules
{
meta:
author="Generated by Yara-Editor"
comment="Yara Editor"
strings:
###STRINGS###
condition:
###CONDITION###
}
"""
# vim:ts=4:expandtab:sw=4 | 0423htebazile-repository | yaraeditor/constante.py | Python | gpl3 | 1,776 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Database")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Hewlett-Packard")]
[assembly: AssemblyProduct("Database")]
[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("b7a629e5-8302-4554-a924-06a21aa148a1")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Database/Properties/AssemblyInfo.cs | C# | asf20 | 1,458 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HtmlAgilityPack;
namespace Database
{
public class GalaxyData
{
public static void UpdateFilm(Galaxy film)
{
FilmContainer db = new FilmContainer();
var f = (from p in db.Galaxies where p.Url == film.Url select p).FirstOrDefault();
if (f == null)
{
db.Galaxies.Add(film);
}
else
{
f = film;
}
db.SaveChanges();
var lst = LayURLThongTinGheNgoi(film.Url);
if (lst.Count > 0)
{
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
foreach (var str in lst)
{
ds = hw.Load(str);
var d = ds.DocumentNode.SelectNodes("//div[@class='book-info-content-item-content']");
var lc = new LichChieuGalaxy();
lc.GalaxyId = film.Id;
lc.Rap = d[1].ChildNodes[1].InnerHtml;
lc.Ngaychieu = d[2].ChildNodes[1].InnerHtml;
lc.Giochieu = d[3].ChildNodes[1].InnerHtml;
lc.Phongchieu = d[4].ChildNodes[1].InnerHtml;
lc.Url = str;
var l = (from p in db.LichChieuGalaxies where p.Url == lc.Url select p).FirstOrDefault();
if (l == null)
{
db.LichChieuGalaxies.Add(lc);
}
else
{
l = lc;
}
db.SaveChanges();
}
}
}
public static List<string> LayURLThongTinGheNgoi(string url)
{
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
ds = hw.Load(url);
var d = ds.DocumentNode.SelectNodes("//a[@class='mov_sc_hour btnShowtime']");
var lst = new List<string>();
if (d != null)
{
foreach (var i in d)
{
lst.Add(i.Attributes[1].Value);
}
}
//if (lst.Count > 0)
//{
// foreach (var str in lst)
// {
// ds = hw.Load(str);
// d = ds.DocumentNode.SelectNodes("//div[@class='book-info-content-item-content']");
// var j = d[2].ChildNodes[1].InnerHtml;
// }
//}
return lst;
}
public static List<Galaxy> LayDsFilm()
{
var db = new FilmContainer();
DateTime today = DateTime.Now;
var d = (from p in db.Galaxies select p).ToList();
var list = new List<Galaxy>();
foreach(var f in d)
{
if (DateTime.Compare(today.Date, LayNgay(f.Khoichieu)[1].Date) == -1 || DateTime.Compare(today.Date, LayNgay(f.Khoichieu)[1].Date) == 0)
{
list.Add(f);
}
}
return list;
}
public static List<DateTime> LayNgay(string khoichieu)
{
var d = new List<DateTime>();
var bd = "";
var kt = "";
var str = "";
foreach (var i in khoichieu)
{
if (i == '0' || i == '1' || i == '2' || i == '3' || i == '4' || i == '5' || i == '6' || i == '7' || i == '8' || i == '9')
{
str = str + i;
}
}
bd = str.Substring(0, 8);
kt = str.Substring(8, 8);
var year = Int32.Parse(bd.Substring(4, 4));
var month = Int32.Parse(bd.Substring(2, 2));
var day = Int32.Parse(bd.Substring(0, 2));
DateTime ngaybd = new DateTime(year, month, day);
year = Int32.Parse(kt.Substring(4, 4));
month = Int32.Parse(kt.Substring(2, 2));
day = Int32.Parse(kt.Substring(0, 2));
DateTime ngaykt = new DateTime(year, month, day);
d.Add(ngaybd.Date);
d.Add(ngaykt.Date);
return d;
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Database/GalaxyData.cs | C# | asf20 | 4,528 |
-- --------------------------------------------------
-- Entity Designer DDL Script for SQL Server 2005, 2008, and Azure
-- --------------------------------------------------
-- Date Created: 12/16/2013 12:50:20
-- Generated from EDMX file: D:\Studying\Lessons\2013\Chu de nang cao trong CNPM\Bai Tap\Bai tap 5\0912200_0912198_BT5\Database\Film.edmx
-- --------------------------------------------------
SET QUOTED_IDENTIFIER OFF;
GO
USE [FilmCinema];
GO
IF SCHEMA_ID(N'dbo') IS NULL EXECUTE(N'CREATE SCHEMA [dbo]');
GO
-- --------------------------------------------------
-- Dropping existing FOREIGN KEY constraints
-- --------------------------------------------------
IF OBJECT_ID(N'[dbo].[FK_GalaxyLichChieuGalaxy]', 'F') IS NOT NULL
ALTER TABLE [dbo].[LichChieuGalaxies] DROP CONSTRAINT [FK_GalaxyLichChieuGalaxy];
GO
-- --------------------------------------------------
-- Dropping existing tables
-- --------------------------------------------------
IF OBJECT_ID(N'[dbo].[Galaxies]', 'U') IS NOT NULL
DROP TABLE [dbo].[Galaxies];
GO
IF OBJECT_ID(N'[dbo].[MegaStars]', 'U') IS NOT NULL
DROP TABLE [dbo].[MegaStars];
GO
IF OBJECT_ID(N'[dbo].[LichChieuGalaxies]', 'U') IS NOT NULL
DROP TABLE [dbo].[LichChieuGalaxies];
GO
-- --------------------------------------------------
-- Creating all tables
-- --------------------------------------------------
-- Creating table 'Galaxies'
CREATE TABLE [dbo].[Galaxies] (
[Id] int IDENTITY(1,1) NOT NULL,
[Ten] nvarchar(max) NOT NULL,
[Khoichieu] nvarchar(max) NULL,
[Theloai] nvarchar(max) NULL,
[Phienban] nvarchar(max) NULL,
[Nuocsanxuat] nvarchar(max) NULL,
[Cumrap] nvarchar(max) NULL,
[Mota] nvarchar(max) NULL,
[Url] nvarchar(max) NOT NULL,
[Trailer] nvarchar(max) NULL,
[Hinhanh] nvarchar(max) NULL
);
GO
-- Creating table 'MegaStars'
CREATE TABLE [dbo].[MegaStars] (
[Id] int IDENTITY(1,1) NOT NULL,
[Ten] nvarchar(max) NOT NULL,
[Khoichieu] nvarchar(max) NULL,
[Theloai] nvarchar(max) NULL,
[Phienban] nvarchar(max) NULL,
[Nuocsanxuat] nvarchar(max) NULL,
[Cumrap] nvarchar(max) NULL,
[Mota] nvarchar(max) NULL,
[Url] nvarchar(max) NOT NULL,
[Trailer] nvarchar(max) NULL,
[Hinhanh] nvarchar(max) NULL
);
GO
-- Creating table 'LichChieuGalaxies'
CREATE TABLE [dbo].[LichChieuGalaxies] (
[Id] int IDENTITY(1,1) NOT NULL,
[Ngaychieu] nvarchar(max) NOT NULL,
[Giochieu] nvarchar(max) NOT NULL,
[Phongchieu] nvarchar(max) NOT NULL,
[Rap] nvarchar(max) NOT NULL,
[GalaxyId] int NOT NULL,
[Url] nvarchar(max) NOT NULL
);
GO
-- --------------------------------------------------
-- Creating all PRIMARY KEY constraints
-- --------------------------------------------------
-- Creating primary key on [Id] in table 'Galaxies'
ALTER TABLE [dbo].[Galaxies]
ADD CONSTRAINT [PK_Galaxies]
PRIMARY KEY CLUSTERED ([Id] ASC);
GO
-- Creating primary key on [Id] in table 'MegaStars'
ALTER TABLE [dbo].[MegaStars]
ADD CONSTRAINT [PK_MegaStars]
PRIMARY KEY CLUSTERED ([Id] ASC);
GO
-- Creating primary key on [Id] in table 'LichChieuGalaxies'
ALTER TABLE [dbo].[LichChieuGalaxies]
ADD CONSTRAINT [PK_LichChieuGalaxies]
PRIMARY KEY CLUSTERED ([Id] ASC);
GO
-- --------------------------------------------------
-- Creating all FOREIGN KEY constraints
-- --------------------------------------------------
-- Creating foreign key on [GalaxyId] in table 'LichChieuGalaxies'
ALTER TABLE [dbo].[LichChieuGalaxies]
ADD CONSTRAINT [FK_GalaxyLichChieuGalaxy]
FOREIGN KEY ([GalaxyId])
REFERENCES [dbo].[Galaxies]
([Id])
ON DELETE NO ACTION ON UPDATE NO ACTION;
-- Creating non-clustered index for FOREIGN KEY 'FK_GalaxyLichChieuGalaxy'
CREATE INDEX [IX_FK_GalaxyLichChieuGalaxy]
ON [dbo].[LichChieuGalaxies]
([GalaxyId]);
GO
-- --------------------------------------------------
-- Script has ended
-- -------------------------------------------------- | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Database/Film.edmx.sql | TSQL | asf20 | 4,122 |
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Client.Models.LocalPasswordModel>" %>
<p>
You do not have a local password for this site. Add a local
password so you can log in without an external login.
</p>
<% using (Html.BeginForm("Manage", "Account")) { %>
<%: Html.AntiForgeryToken() %>
<%: Html.ValidationSummary() %>
<fieldset>
<legend>Set Password Form</legend>
<ol>
<li>
<%: Html.LabelFor(m => m.NewPassword) %>
<%: Html.PasswordFor(m => m.NewPassword) %>
</li>
<li>
<%: Html.LabelFor(m => m.ConfirmPassword) %>
<%: Html.PasswordFor(m => m.ConfirmPassword) %>
</li>
</ol>
<input type="submit" value="Set password" />
</fieldset>
<% } %>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/_SetPasswordPartial.aspx | ASP.NET | asf20 | 855 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="externalLoginFailureTitle" ContentPlaceHolderID="TitleContent" runat="server">
Login Failure
</asp:Content>
<asp:Content ID="externalLoginFailureContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>Login Failure.</h1>
<h2>Unsuccessful login with service.</h2>
</hgroup>
</asp:Content>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/ExternalLoginFailure.aspx | ASP.NET | asf20 | 486 |
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Threading;
using System.Web.Mvc;
using WebMatrix.WebData;
using Client.Models;
using Database;
namespace Client.Filters
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class InitializeSimpleMembershipAttribute : ActionFilterAttribute
{
private static SimpleMembershipInitializer _initializer;
private static object _initializerLock = new object();
private static bool _isInitialized;
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
// Ensure ASP.NET Simple Membership is initialized only once per app start
LazyInitializer.EnsureInitialized(ref _initializer, ref _isInitialized, ref _initializerLock);
}
private class SimpleMembershipInitializer
{
public SimpleMembershipInitializer()
{
// Database.SetInitializer<UsersContext>(null);
try
{
using (var context = new UsersContext())
{
if (!context.Database.Exists())
{
// Create the SimpleMembership database without Entity Framework migration schema
((IObjectContextAdapter)context).ObjectContext.CreateDatabase();
}
}
WebSecurity.InitializeDatabaseConnection("DefaultConnection", "UserProfile", "UserId", "UserName", autoCreateTables: true);
}
catch (Exception ex)
{
throw new InvalidOperationException("The ASP.NET Simple Membership database could not be initialized. For more information, please see http://go.microsoft.com/fwlink/?LinkId=256588", ex);
}
}
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/Filters/InitializeSimpleMembershipAttribute.cs | C# | asf20 | 2,063 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Client.Models.LocalPasswordModel>" %>
<asp:Content ID="manageTitle" ContentPlaceHolderID="TitleContent" runat="server">
Manage Account
</asp:Content>
<asp:Content ID="manageContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>Manage Account.</h1>
</hgroup>
<p class="message-success"><%: (string)ViewBag.StatusMessage %></p>
<p>You're logged in as <strong><%: User.Identity.Name %></strong>.</p>
<% if (ViewBag.HasLocalPassword) {
Html.RenderPartial("_ChangePasswordPartial");
} else {
Html.RenderPartial("_SetPasswordPartial");
} %>
<section id="externalLogins">
<%: Html.Action("RemoveExternalLogins") %>
<h3>Add an external login</h3>
<%: Html.Action("ExternalLoginsList", new { ReturnUrl = ViewBag.ReturnUrl }) %>
</section>
</asp:Content>
<asp:Content ID="scriptsContent" ContentPlaceHolderID="ScriptsSection" runat="server">
<%: Scripts.Render("~/bundles/jqueryval") %>
</asp:Content> | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/Manage.aspx | ASP.NET | asf20 | 1,159 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Client.Models.RegisterExternalLoginModel>" %>
<asp:Content ID="externalLoginConfirmationTitle" ContentPlaceHolderID="TitleContent" runat="server">
Register
</asp:Content>
<asp:Content ID="externalLoginConfirmationContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>Register.</h1>
<h2>Associate your <%: ViewBag.ProviderDisplayName %> account.</h2>
</hgroup>
<% using (Html.BeginForm("ExternalLoginConfirmation", "Account", new { ReturnUrl = ViewBag.ReturnUrl })) { %>
<%: Html.AntiForgeryToken() %>
<%: Html.ValidationSummary(true) %>
<fieldset>
<legend>Association Form</legend>
<p>
You've successfully authenticated with <strong><%: ViewBag.ProviderDisplayName %></strong>.
Please enter a user name for this site below and click the Confirm button to finish
logging in.
</p>
<ol>
<li class="name">
<%: Html.LabelFor(m => m.UserName) %>
<%: Html.TextBoxFor(m => m.UserName) %>
<%: Html.ValidationMessageFor(m => m.UserName) %>
</li>
</ol>
<%: Html.HiddenFor(m => m.ExternalLoginData) %>
<input type="submit" value="Register" />
</fieldset>
<% } %>
</asp:Content>
<asp:Content ID="scriptsContent" ContentPlaceHolderID="ScriptsSection" runat="server">
<%: Scripts.Render("~/bundles/jqueryval") %>
</asp:Content>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/ExternalLoginConfirmation.aspx | ASP.NET | asf20 | 1,690 |
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Client.Models.LocalPasswordModel>" %>
<h3>Change password</h3>
<% using (Html.BeginForm("Manage", "Account")) { %>
<%: Html.AntiForgeryToken() %>
<%: Html.ValidationSummary() %>
<fieldset>
<legend>Change Password Form</legend>
<ol>
<li>
<%: Html.LabelFor(m => m.OldPassword) %>
<%: Html.PasswordFor(m => m.OldPassword) %>
</li>
<li>
<%: Html.LabelFor(m => m.NewPassword) %>
<%: Html.PasswordFor(m => m.NewPassword) %>
</li>
<li>
<%: Html.LabelFor(m => m.ConfirmPassword) %>
<%: Html.PasswordFor(m => m.ConfirmPassword) %>
</li>
</ol>
<input type="submit" value="Change password" />
</fieldset>
<% } %>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/_ChangePasswordPartial.aspx | ASP.NET | asf20 | 908 |
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<ICollection<Microsoft.Web.WebPages.OAuth.AuthenticationClientData>>" %>
<% if (Model.Count == 0) { %>
<div class="message-info">
<p>There are no external authentication services configured. See <a href="http://go.microsoft.com/fwlink/?LinkId=252166">this article</a>
for details on setting up this ASP.NET application to support logging in via external services.</p>
</div>
<% } else {
using (Html.BeginForm("ExternalLogin", "Account", new { ReturnUrl = ViewBag.ReturnUrl })) { %>
<%: Html.AntiForgeryToken() %>
<fieldset id="socialLoginList">
<legend>Log in using another service</legend>
<p>
<% foreach (Microsoft.Web.WebPages.OAuth.AuthenticationClientData p in Model) { %>
<button type="submit" name="provider" value="<%: p.AuthenticationClient.ProviderName %>" title="Log in using your <%: p.DisplayName %> account"><%: p.DisplayName%></button>
<% } %>
</p>
</fieldset>
<% }
} %>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/_ExternalLoginsListPartial.aspx | ASP.NET | asf20 | 1,062 |
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<ICollection<Client.Models.ExternalLogin>>" %>
<% if (Model.Count > 0) { %>
<h3>Registered external logins</h3>
<table>
<tbody>
<% foreach (Client.Models.ExternalLogin externalLogin in Model) { %>
<tr>
<td><%: externalLogin.ProviderDisplayName %></td>
<td>
<% if (ViewBag.ShowRemoveButton) {
using (Html.BeginForm("Disassociate", "Account")) { %>
<%: Html.AntiForgeryToken() %>
<fieldset>
<%: Html.Hidden("provider", externalLogin.Provider) %>
<%: Html.Hidden("providerUserId", externalLogin.ProviderUserId) %>
<input type="submit" value="Remove" title="Remove this <%: externalLogin.ProviderDisplayName %> credential from your account" />
</fieldset>
<% }
} else { %>
<% } %>
</td>
</tr>
<% } %>
</tbody>
</table>
<% } %>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/_RemoveExternalLoginsPartial.aspx | ASP.NET | asf20 | 1,246 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Client.Models.RegisterModel>" %>
<asp:Content ID="registerTitle" ContentPlaceHolderID="TitleContent" runat="server">
Register
</asp:Content>
<asp:Content ID="registerContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>Register.</h1>
<h2>Create a new account.</h2>
</hgroup>
<% using (Html.BeginForm()) { %>
<%: Html.AntiForgeryToken() %>
<%: Html.ValidationSummary() %>
<fieldset>
<legend>Registration Form</legend>
<ol>
<li>
<%: Html.LabelFor(m => m.UserName) %>
<%: Html.TextBoxFor(m => m.UserName) %>
</li>
<li>
<%: Html.LabelFor(m => m.Password) %>
<%: Html.PasswordFor(m => m.Password) %>
</li>
<li>
<%: Html.LabelFor(m => m.ConfirmPassword) %>
<%: Html.PasswordFor(m => m.ConfirmPassword) %>
</li>
</ol>
<input type="submit" value="Register" />
</fieldset>
<% } %>
</asp:Content>
<asp:Content ID="scriptsContent" ContentPlaceHolderID="ScriptsSection" runat="server">
<%: Scripts.Render("~/bundles/jqueryval") %>
</asp:Content>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/Register.aspx | ASP.NET | asf20 | 1,453 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<Client.Models.LoginModel>" %>
<asp:Content ID="loginTitle" ContentPlaceHolderID="TitleContent" runat="server">
Log in
</asp:Content>
<asp:Content ID="loginContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>Log in.</h1>
</hgroup>
<section id="loginForm">
<h2>Use a local account to log in.</h2>
<% using (Html.BeginForm(new { ReturnUrl = ViewBag.ReturnUrl })) { %>
<%: Html.AntiForgeryToken() %>
<%: Html.ValidationSummary(true) %>
<fieldset>
<legend>Log in Form</legend>
<ol>
<li>
<%: Html.LabelFor(m => m.UserName) %>
<%: Html.TextBoxFor(m => m.UserName) %>
<%: Html.ValidationMessageFor(m => m.UserName) %>
</li>
<li>
<%: Html.LabelFor(m => m.Password) %>
<%: Html.PasswordFor(m => m.Password) %>
<%: Html.ValidationMessageFor(m => m.Password) %>
</li>
<li>
<%: Html.CheckBoxFor(m => m.RememberMe) %>
<%: Html.LabelFor(m => m.RememberMe, new { @class = "checkbox" }) %>
</li>
</ol>
<input type="submit" value="Log in" />
</fieldset>
<p>
<%: Html.ActionLink("Register", "Register") %> if you don't have an account.
</p>
<% } %>
</section>
<section class="social" id="socialLoginForm">
<h2>Use another service to log in.</h2>
<%: Html.Action("ExternalLoginsList", new { ReturnUrl = ViewBag.ReturnUrl }) %>
</section>
</asp:Content>
<asp:Content ID="scriptsContent" ContentPlaceHolderID="ScriptsSection" runat="server">
<%: Scripts.Render("~/bundles/jqueryval") %>
</asp:Content>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Account/Login.aspx | ASP.NET | asf20 | 2,009 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="aboutTitle" ContentPlaceHolderID="TitleContent" runat="server">
About - My ASP.NET MVC Application
</asp:Content>
<asp:Content ID="aboutContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>About.</h1>
<h2><%: ViewBag.Message %></h2>
</hgroup>
<article>
<p>
Use this area to provide additional information.
</p>
<p>
Use this area to provide additional information.
</p>
<p>
Use this area to provide additional information.
</p>
</article>
<aside>
<h3>Aside Title</h3>
<p>
Use this area to provide additional information.
</p>
<ul>
<li><%: Html.ActionLink("Home", "Index", "Home") %></li>
<li><%: Html.ActionLink("About", "About", "Home") %></li>
<li><%: Html.ActionLink("Contact", "Contact", "Home") %></li>
</ul>
</aside>
</asp:Content> | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Home/About.aspx | ASP.NET | asf20 | 1,154 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexTitle" ContentPlaceHolderID="TitleContent" runat="server">
Home Page - My ASP.NET MVC Application
</asp:Content>
<asp:Content ID="indexFeatured" ContentPlaceHolderID="FeaturedContent" runat="server">
</asp:Content>
<asp:Content ID="indexContent" ContentPlaceHolderID="MainContent" runat="server">
<div id="header">
<img src="/images/logo.png" style="width: 237px; height: 140px; margin-left: 30px; margin-top: 10px;" align="left"/>
<form name="form" method="post" action="/home/index">
<input type="text" name="tenphim" id="tenphim" style="width: 400px; height: 25px; margin-top: 25px;" placeholder="Nhập tên phim có dấu để có được thông tin chính xác"/>
<input type="button" value="Tìm Kiếm" id="timkiem"/><br />
<label style="color: #fff; float:left">Chọn ngày</label>
<input type="text" name="ngay" id="ngay" placeholder="dd/mm/yyyy" style="margin:auto;margin-left:15px; width: 200px; height:15px;"/></form>
</div>
<div id="body">
<div class="cinema">
<label>Galaxy Cinema</label>
</div>
<% if(ViewBag.Galaxy != null){
if (ViewBag.Galaxy.Count > 0)
{%>
<table>
<%
foreach (var film in ViewBag.Galaxy)
{ %>
<tr><td>
<img src="<%=film.Hinhanh %>" style="width: 200px; height: 200px;" align="left" hspace="20"/>
<label style="font-size: 20px;color:#FF9900"><%=film.Ten %></label><br />
<input type="button" value="Play Trailer" id="playtrailer" onclick="return playtrailer('<%=film.Trailer %>')" style="background-color: #FF9900" youtube="<%=film.Trailer %>"/>
<input type="button" value="Đặt Vé" onclick=" return DatVe('<%= film.Url%>')" style="background-color: #FF9900" /><br />
<label style="color:#D35F00">Khởi Chiếu: </label> <label style="color:white"><%=film.Khoichieu %></label><br />
<label style="color:#D35F00">Thể Loại: </label> <label style="color:white"><%=film.Theloai %></label><br />
<label style="color:#D35F00">Phiên Bản: </label> <label style="color:white"><%=film.Phienban %></label><br />
<label style="color:#D35F00">Nước Sản Xuất: </label> <label style="color:white"><%=film.Nuocsanxuat %></label><br />
<label style="color:#D35F00">Cụm Rạp: </label> <label style="color:white"><%=film.Cumrap %></label><br />
<label style="color:#D35F00">Mô Tả: </label> <label style="color:white"><%=film.Mota %></label><br />
</td></tr><tr><th><br /><br /></th></tr>
<%}%>
</table>
<%
} else{%>
<label style="font-size: 20px; color:#dedede">Không có bộ phim nào được hiển thị ở đây</label>
<%}}else if(ViewBag.Galaxy == null) {%>
<label style="font-size: 20px; color:#dedede">Không có bộ phim nào được hiển thị ở đây</label>
<%}%>
</div>
<script type="text/javascript">
$(document).ready(function () {
});
function DatVe(url)
{
window.location = "/home/datve?url=" + url;
}
</script>
<script type="text/javascript">
$("#timkiem").click(function(){
var tenphim = document.getElementById("tenphim").value;
var ngay = document.getElementById("ngay").value;
if (tenphim == "" || /^\s*$/.test(tenphim)) {
alert("Xin vui lòng nhập tên phim");
return false;
}
if (!(ngay == "" || /^\s*$/.test(ngay))) {
if(KiemTraDinhDangNgay(ngay) == 0)
{
alert("Xin vui lòng nhập ngày theo định dạng được yêu cầu");
return false;
}
}
form.submit();
});
function KiemTraDinhDangNgay(str)
{
debugger;
var s= str[0];
if(str[0] == '0' || str[0] == '1' || str[0] == '2' || str[0] == '3' || str[0] == '4' || str[0] == '5' || str[0] == '6' || str[0] == '7' || str[0] == '8' || str[0] == '9')
if(str[0] == '1' || str[1] == '1' || str[1] == '2' || str[1] == '3' || str[1] == '4' || str[1] == '5' || str[1] == '6' || str[1] == '7' || str[1] == '8' || str[1] == '9')
if(str[2] == '/')
if(str[3] == '0' || str[3] == '1' || str[3] == '2' || str[3] == '3' || str[3] == '4' || str[3] == '5' || str[3] == '6' || str[3] == '7' || str[3] == '8' || str[3] == '9')
if(str[4] == '0' || str[4] == '1' || str[4] == '2' || str[4] == '3' || str[4] == '4' || str[4] == '5' || str[4] == '6' || str[4] == '7' || str[4] == '8' || str[4] == '9')
if(str[5] == '/')
if(str[6] == '0' || str[6] == '1' || str[6] == '2' || str[6] == '3' || str[6] == '4' || str[6] == '5' || str[6] == '6' || str[6] == '7' || str[6] == '8' || str[6] == '9')
if(str[7] == '0' || str[7] == '1' || str[7] == '2' || str[7] == '3' || str[7] == '4' || str[7] == '5' || str[7] == '6' || str[7] == '7' || str[7] == '8' || str[7] == '9')
if(str[8] == '0' || str[8] == '1' || str[8] == '2' || str[8] == '3' || str[8] == '4' || str[8] == '5' || str[8] == '6' || str[8] == '7' || str[8] == '8' || str[8] == '9')
if(str[9] == '0' || str[9] == '1' || str[9] == '2' || str[9] == '3' || str[9] == '4' || str[9] == '5' || str[9] == '6' || str[9] == '7' || str[9] == '8' || str[9] == '9')
{
return 1;
}
return 0;
}
function playtrailer(str)
{
window.open(str);
}
</script>
</asp:Content>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Home/Index.aspx | ASP.NET | asf20 | 6,295 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="contactTitle" ContentPlaceHolderID="TitleContent" runat="server">
Contact - My ASP.NET MVC Application
</asp:Content>
<asp:Content ID="contactContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1>Contact.</h1>
<h2><%: ViewBag.Message %></h2>
</hgroup>
<section class="contact">
<header>
<h3>Phone:</h3>
</header>
<p>
<span class="label">Main:</span>
<span>425.555.0100</span>
</p>
<p>
<span class="label">After Hours:</span>
<span>425.555.0199</span>
</p>
</section>
<section class="contact">
<header>
<h3>Email:</h3>
</header>
<p>
<span class="label">Support:</span>
<span><a href="mailto:Support@example.com">Support@example.com</a></span>
</p>
<p>
<span class="label">Marketing:</span>
<span><a href="mailto:Marketing@example.com">Marketing@example.com</a></span>
</p>
<p>
<span class="label">General:</span>
<span><a href="mailto:General@example.com">General@example.com</a></span>
</p>
</section>
<section class="contact">
<header>
<h3>Address:</h3>
</header>
<p>
One Microsoft Way<br />
Redmond, WA 98052-6399
</p>
</section>
</asp:Content> | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Home/Contact.aspx | ASP.NET | asf20 | 1,636 |
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<% if (Request.IsAuthenticated) { %>
Hello, <%: Html.ActionLink(User.Identity.Name, "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" }) %>!
<% using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm" })) { %>
<%: Html.AntiForgeryToken() %>
<a href="javascript:document.getElementById('logoutForm').submit()">Log off</a>
<% } %>
<% } else { %>
<ul>
<li><%: Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })%></li>
<li><%: Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })%></li>
</ul>
<% } %> | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Shared/_LoginPartial.aspx | ASP.NET | asf20 | 819 |
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Web.Mvc.HandleErrorInfo>" %>
<asp:Content ID="errorTitle" ContentPlaceHolderID="TitleContent" runat="server">
Error - My ASP.NET MVC Application
</asp:Content>
<asp:Content ID="errorContent" ContentPlaceHolderID="MainContent" runat="server">
<hgroup class="title">
<h1 class="error">Error.</h1>
<h2 class="error">An error occurred while processing your request.</h2>
</hgroup>
</asp:Content>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Views/Shared/Error.aspx | ASP.NET | asf20 | 545 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace Client
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/App_Start/RouteConfig.cs | C# | asf20 | 597 |
using System.Web;
using System.Web.Mvc;
namespace Client
{
public class FilterConfig
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/App_Start/FilterConfig.cs | C# | asf20 | 272 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace Client
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/App_Start/WebApiConfig.cs | C# | asf20 | 475 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Web.WebPages.OAuth;
using Client.Models;
namespace Client
{
public static class AuthConfig
{
public static void RegisterAuth()
{
// To let users of this site log in using their accounts from other sites such as Microsoft, Facebook, and Twitter,
// you must update this site. For more information visit http://go.microsoft.com/fwlink/?LinkID=252166
//OAuthWebSecurity.RegisterMicrosoftClient(
// clientId: "",
// clientSecret: "");
//OAuthWebSecurity.RegisterTwitterClient(
// consumerKey: "",
// consumerSecret: "");
//OAuthWebSecurity.RegisterFacebookClient(
// appId: "",
// appSecret: "");
//OAuthWebSecurity.RegisterGoogleClient();
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/App_Start/AuthConfig.cs | C# | asf20 | 982 |
using System.Web;
using System.Web.Optimization;
namespace Client
{
public class BundleConfig
{
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
"~/Scripts/jquery-ui-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
"~/Content/themes/base/jquery.ui.core.css",
"~/Content/themes/base/jquery.ui.resizable.css",
"~/Content/themes/base/jquery.ui.selectable.css",
"~/Content/themes/base/jquery.ui.accordion.css",
"~/Content/themes/base/jquery.ui.autocomplete.css",
"~/Content/themes/base/jquery.ui.button.css",
"~/Content/themes/base/jquery.ui.dialog.css",
"~/Content/themes/base/jquery.ui.slider.css",
"~/Content/themes/base/jquery.ui.tabs.css",
"~/Content/themes/base/jquery.ui.datepicker.css",
"~/Content/themes/base/jquery.ui.progressbar.css",
"~/Content/themes/base/jquery.ui.theme.css"));
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/App_Start/BundleConfig.cs | C# | asf20 | 2,169 |
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Threading;
using System.Web.Mvc;
using WebMatrix.WebData;
using Client.Models;
namespace Client.Filters
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public sealed class InitializeSimpleMembershipAttribute : ActionFilterAttribute
{
private static SimpleMembershipInitializer _initializer;
private static object _initializerLock = new object();
private static bool _isInitialized;
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
// Ensure ASP.NET Simple Membership is initialized only once per app start
LazyInitializer.EnsureInitialized(ref _initializer, ref _isInitialized, ref _initializerLock);
}
private class SimpleMembershipInitializer
{
public SimpleMembershipInitializer()
{
Database.SetInitializer<UsersContext>(null);
try
{
using (var context = new UsersContext())
{
if (!context.Database.Exists())
{
// Create the SimpleMembership database without Entity Framework migration schema
((IObjectContextAdapter)context).ObjectContext.CreateDatabase();
}
}
WebSecurity.InitializeDatabaseConnection("DefaultConnection", "UserProfile", "UserId", "UserName", autoCreateTables: true);
}
catch (Exception ex)
{
throw new InvalidOperationException("The ASP.NET Simple Membership database could not be initialized. For more information, please see http://go.microsoft.com/fwlink/?LinkId=256588", ex);
}
}
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Filters/InitializeSimpleMembershipAttribute.cs | C# | asf20 | 2,044 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Web;
using System.Web.Mvc;
using Database;
namespace Client.Controllers
{
public class HomeController : Controller
{
HttpClient client;
public ActionResult Index()
{
return View();
}
[HttpPost]
public ActionResult Index(string tenphim, string ngay)
{
ViewBag.Message = "Modify this template to jump-start your ASP.NET MVC application.";
client = new HttpClient();
client.BaseAddress = new Uri("http://localhost:1818/");
// Add an Accept header for JSON format.
client.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
tenphim = tenphim.ToUpper();
var str = LayChu(tenphim);
var products = new List<Galaxy>();
var list = new List<Galaxy>();
HttpResponseMessage response = client.GetAsync("api/galaxy").Result; // Blocking call!
if (response.IsSuccessStatusCode)
{
// Parse the response body. Blocking!
products = response.Content.ReadAsAsync<List<Galaxy>>().Result;
if (ngay == "")
ngay = "10/10/1001";
var d = 10;
var m = 10;
var y = 1001;
d = Int32.Parse(ngay.Substring(0, 2));
m = Int32.Parse(ngay.Substring(3, 2));
y = Int32.Parse(ngay.Substring(6, 4));
//var d = 10;
//var m = 10;
//var y = 1000;
DateTime date;
try
{
date = new DateTime(y, m, d).Date;
}
catch (Exception ex)
{
date = new DateTime(1001, 10, 10).Date;
}
foreach (var f in products)
{
foreach (var s in str)
{
if (f.Ten.IndexOf(s) >= 0)
{
if (ngay == "10/10/1001")
{
DateTime today = DateTime.Now.Date;
d = today.Day;
m = today.Month;
y = today.Year;
DateTime d1 = new DateTime(y, m, d + 1).Date;
DateTime d2 = new DateTime(y, m, d + 2).Date;
DateTime d3 = new DateTime(y, m, d + 3).Date;
DateTime d4 = new DateTime(y, m, d + 4).Date;
if (((DateTime.Compare(today, GalaxyData.LayNgay(f.Khoichieu)[0]) == 1 || DateTime.Compare(today, GalaxyData.LayNgay(f.Khoichieu)[0]) == 0) &&
(DateTime.Compare(today, GalaxyData.LayNgay(f.Khoichieu)[1]) == -1 || DateTime.Compare(today, GalaxyData.LayNgay(f.Khoichieu)[1]) == 0)) ||
((DateTime.Compare(d1, GalaxyData.LayNgay(f.Khoichieu)[0]) == 1 || DateTime.Compare(d1, GalaxyData.LayNgay(f.Khoichieu)[0]) == 0) &&
(DateTime.Compare(d1, GalaxyData.LayNgay(f.Khoichieu)[1]) == -1 || DateTime.Compare(d1, GalaxyData.LayNgay(f.Khoichieu)[1]) == 0)) ||
((DateTime.Compare(d2, GalaxyData.LayNgay(f.Khoichieu)[0]) == 1 || DateTime.Compare(d2, GalaxyData.LayNgay(f.Khoichieu)[0]) == 0) &&
(DateTime.Compare(d2, GalaxyData.LayNgay(f.Khoichieu)[1]) == -1 || DateTime.Compare(d2, GalaxyData.LayNgay(f.Khoichieu)[1]) == 0)) ||
((DateTime.Compare(d3, GalaxyData.LayNgay(f.Khoichieu)[0]) == 1 || DateTime.Compare(d3, GalaxyData.LayNgay(f.Khoichieu)[0]) == 0) &&
(DateTime.Compare(d3, GalaxyData.LayNgay(f.Khoichieu)[1]) == -1 || DateTime.Compare(d3, GalaxyData.LayNgay(f.Khoichieu)[1]) == 0)) ||
((DateTime.Compare(d4, GalaxyData.LayNgay(f.Khoichieu)[0]) == 1 || DateTime.Compare(d4, GalaxyData.LayNgay(f.Khoichieu)[0]) == 0) &&
(DateTime.Compare(d4, GalaxyData.LayNgay(f.Khoichieu)[1]) == -1 || DateTime.Compare(d4, GalaxyData.LayNgay(f.Khoichieu)[1]) == 0)))
{
list.Add(f);
}
}
else
{
if (((DateTime.Compare(date, GalaxyData.LayNgay(f.Khoichieu)[0]) == 1 || DateTime.Compare(date, GalaxyData.LayNgay(f.Khoichieu)[0]) == 0) &&
(DateTime.Compare(date, GalaxyData.LayNgay(f.Khoichieu)[1]) == -1 || DateTime.Compare(date, GalaxyData.LayNgay(f.Khoichieu)[1]) == 0)))
{
list.Add(f);
}
}
break;
}
}
}
ViewBag.Galaxy = list;
}
else
{
}
return View();
}
public ActionResult About()
{
ViewBag.Message = "Your app description page.";
return View();
}
public ActionResult Contact()
{
ViewBag.Message = "Your contact page.";
return View();
}
public List<string> LayChu(string str)
{
var lst = new List<string>();
for (int i = 0; i < str.Length;)
{
var t = 0;
var count = -1;
for (int j = i; j < str.Length - 1; j++)
{
count++;
if (str[j] == ' ' && str[j+1] != ' ')
{
var tr = str.Substring(i, count - t);
lst.Add(tr);
i = j + 1;
break;
}
else if (str[j] == ' ' && str[j + 1] == ' ')
{
t++;
}
else {
if (j == str.Length - 2)
{
var tr = str.Substring(i, count - t + 2);
lst.Add(tr);
i = str.Length;
}
}
}
}
return lst;
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Controllers/HomeController.cs | C# | asf20 | 7,116 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Transactions;
using System.Web;
using System.Web.Mvc;
using System.Web.Security;
using DotNetOpenAuth.AspNet;
using Microsoft.Web.WebPages.OAuth;
using WebMatrix.WebData;
using Client.Filters;
using Client.Models;
namespace Client.Controllers
{
[Authorize]
[InitializeSimpleMembership]
public class AccountController : Controller
{
//
// GET: /Account/Login
[AllowAnonymous]
public ActionResult Login(string returnUrl)
{
ViewBag.ReturnUrl = returnUrl;
return View();
}
//
// POST: /Account/Login
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
{
return RedirectToLocal(returnUrl);
}
// If we got this far, something failed, redisplay form
ModelState.AddModelError("", "The user name or password provided is incorrect.");
return View(model);
}
//
// POST: /Account/LogOff
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult LogOff()
{
WebSecurity.Logout();
return RedirectToAction("Index", "Home");
}
//
// GET: /Account/Register
[AllowAnonymous]
public ActionResult Register()
{
return View();
}
//
// POST: /Account/Register
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Register(RegisterModel model)
{
if (ModelState.IsValid)
{
// Attempt to register the user
try
{
WebSecurity.CreateUserAndAccount(model.UserName, model.Password);
WebSecurity.Login(model.UserName, model.Password);
return RedirectToAction("Index", "Home");
}
catch (MembershipCreateUserException e)
{
ModelState.AddModelError("", ErrorCodeToString(e.StatusCode));
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
//
// POST: /Account/Disassociate
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Disassociate(string provider, string providerUserId)
{
string ownerAccount = OAuthWebSecurity.GetUserName(provider, providerUserId);
ManageMessageId? message = null;
// Only disassociate the account if the currently logged in user is the owner
if (ownerAccount == User.Identity.Name)
{
// Use a transaction to prevent the user from deleting their last login credential
using (var scope = new TransactionScope(TransactionScopeOption.Required, new TransactionOptions { IsolationLevel = IsolationLevel.Serializable }))
{
bool hasLocalAccount = OAuthWebSecurity.HasLocalAccount(WebSecurity.GetUserId(User.Identity.Name));
if (hasLocalAccount || OAuthWebSecurity.GetAccountsFromUserName(User.Identity.Name).Count > 1)
{
OAuthWebSecurity.DeleteAccount(provider, providerUserId);
scope.Complete();
message = ManageMessageId.RemoveLoginSuccess;
}
}
}
return RedirectToAction("Manage", new { Message = message });
}
//
// GET: /Account/Manage
public ActionResult Manage(ManageMessageId? message)
{
ViewBag.StatusMessage =
message == ManageMessageId.ChangePasswordSuccess ? "Your password has been changed."
: message == ManageMessageId.SetPasswordSuccess ? "Your password has been set."
: message == ManageMessageId.RemoveLoginSuccess ? "The external login was removed."
: "";
ViewBag.HasLocalPassword = OAuthWebSecurity.HasLocalAccount(WebSecurity.GetUserId(User.Identity.Name));
ViewBag.ReturnUrl = Url.Action("Manage");
return View();
}
//
// POST: /Account/Manage
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Manage(LocalPasswordModel model)
{
bool hasLocalAccount = OAuthWebSecurity.HasLocalAccount(WebSecurity.GetUserId(User.Identity.Name));
ViewBag.HasLocalPassword = hasLocalAccount;
ViewBag.ReturnUrl = Url.Action("Manage");
if (hasLocalAccount)
{
if (ModelState.IsValid)
{
// ChangePassword will throw an exception rather than return false in certain failure scenarios.
bool changePasswordSucceeded;
try
{
changePasswordSucceeded = WebSecurity.ChangePassword(User.Identity.Name, model.OldPassword, model.NewPassword);
}
catch (Exception)
{
changePasswordSucceeded = false;
}
if (changePasswordSucceeded)
{
return RedirectToAction("Manage", new { Message = ManageMessageId.ChangePasswordSuccess });
}
else
{
ModelState.AddModelError("", "The current password is incorrect or the new password is invalid.");
}
}
}
else
{
// User does not have a local password so remove any validation errors caused by a missing
// OldPassword field
ModelState state = ModelState["OldPassword"];
if (state != null)
{
state.Errors.Clear();
}
if (ModelState.IsValid)
{
try
{
WebSecurity.CreateAccount(User.Identity.Name, model.NewPassword);
return RedirectToAction("Manage", new { Message = ManageMessageId.SetPasswordSuccess });
}
catch (Exception e)
{
ModelState.AddModelError("", e);
}
}
}
// If we got this far, something failed, redisplay form
return View(model);
}
//
// POST: /Account/ExternalLogin
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult ExternalLogin(string provider, string returnUrl)
{
return new ExternalLoginResult(provider, Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl }));
}
//
// GET: /Account/ExternalLoginCallback
[AllowAnonymous]
public ActionResult ExternalLoginCallback(string returnUrl)
{
AuthenticationResult result = OAuthWebSecurity.VerifyAuthentication(Url.Action("ExternalLoginCallback", new { ReturnUrl = returnUrl }));
if (!result.IsSuccessful)
{
return RedirectToAction("ExternalLoginFailure");
}
if (OAuthWebSecurity.Login(result.Provider, result.ProviderUserId, createPersistentCookie: false))
{
return RedirectToLocal(returnUrl);
}
if (User.Identity.IsAuthenticated)
{
// If the current user is logged in add the new account
OAuthWebSecurity.CreateOrUpdateAccount(result.Provider, result.ProviderUserId, User.Identity.Name);
return RedirectToLocal(returnUrl);
}
else
{
// User is new, ask for their desired membership name
string loginData = OAuthWebSecurity.SerializeProviderUserId(result.Provider, result.ProviderUserId);
ViewBag.ProviderDisplayName = OAuthWebSecurity.GetOAuthClientData(result.Provider).DisplayName;
ViewBag.ReturnUrl = returnUrl;
return View("ExternalLoginConfirmation", new RegisterExternalLoginModel { UserName = result.UserName, ExternalLoginData = loginData });
}
}
//
// POST: /Account/ExternalLoginConfirmation
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult ExternalLoginConfirmation(RegisterExternalLoginModel model, string returnUrl)
{
string provider = null;
string providerUserId = null;
if (User.Identity.IsAuthenticated || !OAuthWebSecurity.TryDeserializeProviderUserId(model.ExternalLoginData, out provider, out providerUserId))
{
return RedirectToAction("Manage");
}
if (ModelState.IsValid)
{
// Insert a new user into the database
using (UsersContext db = new UsersContext())
{
UserProfile user = db.UserProfiles.FirstOrDefault(u => u.UserName.ToLower() == model.UserName.ToLower());
// Check if user already exists
if (user == null)
{
// Insert name into the profile table
db.UserProfiles.Add(new UserProfile { UserName = model.UserName });
db.SaveChanges();
OAuthWebSecurity.CreateOrUpdateAccount(provider, providerUserId, model.UserName);
OAuthWebSecurity.Login(provider, providerUserId, createPersistentCookie: false);
return RedirectToLocal(returnUrl);
}
else
{
ModelState.AddModelError("UserName", "User name already exists. Please enter a different user name.");
}
}
}
ViewBag.ProviderDisplayName = OAuthWebSecurity.GetOAuthClientData(provider).DisplayName;
ViewBag.ReturnUrl = returnUrl;
return View(model);
}
//
// GET: /Account/ExternalLoginFailure
[AllowAnonymous]
public ActionResult ExternalLoginFailure()
{
return View();
}
[AllowAnonymous]
[ChildActionOnly]
public ActionResult ExternalLoginsList(string returnUrl)
{
ViewBag.ReturnUrl = returnUrl;
return PartialView("_ExternalLoginsListPartial", OAuthWebSecurity.RegisteredClientData);
}
[ChildActionOnly]
public ActionResult RemoveExternalLogins()
{
ICollection<OAuthAccount> accounts = OAuthWebSecurity.GetAccountsFromUserName(User.Identity.Name);
List<ExternalLogin> externalLogins = new List<ExternalLogin>();
foreach (OAuthAccount account in accounts)
{
AuthenticationClientData clientData = OAuthWebSecurity.GetOAuthClientData(account.Provider);
externalLogins.Add(new ExternalLogin
{
Provider = account.Provider,
ProviderDisplayName = clientData.DisplayName,
ProviderUserId = account.ProviderUserId,
});
}
ViewBag.ShowRemoveButton = externalLogins.Count > 1 || OAuthWebSecurity.HasLocalAccount(WebSecurity.GetUserId(User.Identity.Name));
return PartialView("_RemoveExternalLoginsPartial", externalLogins);
}
#region Helpers
private ActionResult RedirectToLocal(string returnUrl)
{
if (Url.IsLocalUrl(returnUrl))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
}
public enum ManageMessageId
{
ChangePasswordSuccess,
SetPasswordSuccess,
RemoveLoginSuccess,
}
internal class ExternalLoginResult : ActionResult
{
public ExternalLoginResult(string provider, string returnUrl)
{
Provider = provider;
ReturnUrl = returnUrl;
}
public string Provider { get; private set; }
public string ReturnUrl { get; private set; }
public override void ExecuteResult(ControllerContext context)
{
OAuthWebSecurity.RequestAuthentication(Provider, ReturnUrl);
}
}
private static string ErrorCodeToString(MembershipCreateStatus createStatus)
{
// See http://go.microsoft.com/fwlink/?LinkID=177550 for
// a full list of status codes.
switch (createStatus)
{
case MembershipCreateStatus.DuplicateUserName:
return "User name already exists. Please enter a different user name.";
case MembershipCreateStatus.DuplicateEmail:
return "A user name for that e-mail address already exists. Please enter a different e-mail address.";
case MembershipCreateStatus.InvalidPassword:
return "The password provided is invalid. Please enter a valid password value.";
case MembershipCreateStatus.InvalidEmail:
return "The e-mail address provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.InvalidAnswer:
return "The password retrieval answer provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.InvalidQuestion:
return "The password retrieval question provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.InvalidUserName:
return "The user name provided is invalid. Please check the value and try again.";
case MembershipCreateStatus.ProviderError:
return "The authentication provider returned an error. Please verify your entry and try again. If the problem persists, please contact your system administrator.";
case MembershipCreateStatus.UserRejected:
return "The user creation request has been canceled. Please verify your entry and try again. If the problem persists, please contact your system administrator.";
default:
return "An unknown error occurred. Please verify your entry and try again. If the problem persists, please contact your system administrator.";
}
}
#endregion
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Controllers/AccountController.cs | C# | asf20 | 15,776 |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity;
using System.Globalization;
using System.Web.Security;
namespace Client.Models
{
public class UsersContext : DbContext
{
public UsersContext()
: base("DefaultConnection")
{
}
public DbSet<UserProfile> UserProfiles { get; set; }
}
[Table("UserProfile")]
public class UserProfile
{
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int UserId { get; set; }
public string UserName { get; set; }
}
public class RegisterExternalLoginModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
public string ExternalLoginData { get; set; }
}
public class LocalPasswordModel
{
[Required]
[DataType(DataType.Password)]
[Display(Name = "Current password")]
public string OldPassword { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "New password")]
public string NewPassword { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm new password")]
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}
public class LoginModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[Display(Name = "Remember me?")]
public bool RememberMe { get; set; }
}
public class RegisterModel
{
[Required]
[Display(Name = "User name")]
public string UserName { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm password")]
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}
public class ExternalLogin
{
public string Provider { get; set; }
public string ProviderDisplayName { get; set; }
public string ProviderUserId { get; set; }
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Models/AccountModels.cs | C# | asf20 | 2,919 |
<%@ Application Codebehind="Global.asax.cs" Inherits="Client.MvcApplication" Language="C#" %>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Global.asax | ASP.NET | asf20 | 98 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Client")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Hewlett-Packard")]
[assembly: AssemblyProduct("Client")]
[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("48b95014-c2c7-4ba1-9b34-ae720cbcde1f")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Properties/AssemblyInfo.cs | C# | asf20 | 1,413 |
html {
background-color: #fff;
margin: 0;
padding: 0;
}
body {
background-color: #fff;
color: #333;
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
margin: 0;
padding: 0;
}
a {
color: #333;
outline: none;
padding-left: 3px;
padding-right: 3px;
text-decoration: underline;
}
a:link, a:visited,
a:active, a:hover {
color: #333;
}
a:hover {
background-color: #c7d1d6;
}
header, footer, hgroup,
nav, section {
display: block;
}
mark {
background-color: #a6dbed;
padding-left: 5px;
padding-right: 5px;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.clear-fix:after {
content: ".";
clear: both;
display: block;
height: 0;
visibility: hidden;
}
h1, h2, h3,
h4, h5, h6 {
color: #000;
margin-bottom: 0;
padding-bottom: 0;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.75em;
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 1.1em;
}
h5, h6 {
font-size: 1em;
}
h5 a:link, h5 a:visited, h5 a:active {
padding: 0;
text-decoration: none;
}
/* main layout
----------------------------------------------------------*/
.content-wrapper {
margin: 0 auto;
max-width: 960px;
}
#header {
background-color: #000;
margin: auto;
width: 80%;
height: 150px;
}
#body {
background-color: #330000;
clear: both;
padding-top: 20px;
margin: auto;
width: 80%;
min-height: 400px;
}
#body .cinema{
background-color: #CC0000;
height: 40px;
padding-top: 5px;
padding-left: 20px;
font-size: 20px;
color: #FF9900;
}
.main-content {
background: url("../Images/accent.png") no-repeat;
padding-left: 10px;
padding-top: 30px;
}
.featured + .main-content {
background: url("../Images/heroAccent.png") no-repeat;
}
header .content-wrapper {
padding-top: 20px;
}
footer {
clear: both;
background-color: #e2e2e2;
font-size: .8em;
height: 100px;
}
/* site title
----------------------------------------------------------*/
.site-title {
color: #c8c8c8;
font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
font-size: 2.3em;
margin: 0;
}
.site-title a, .site-title a:hover, .site-title a:active {
background: none;
color: #c8c8c8;
outline: none;
text-decoration: none;
}
/* login
----------------------------------------------------------*/
#login {
display: block;
font-size: .85em;
margin: 0 0 10px;
text-align: right;
}
#login a {
background-color: #d3dce0;
margin-left: 10px;
margin-right: 3px;
padding: 2px 3px;
text-decoration: none;
}
#login a.username {
background: none;
margin: 0;
padding: 0;
text-decoration: underline;
}
#login ul {
margin: 0;
}
#login li {
display: inline;
list-style: none;
}
/* menu
----------------------------------------------------------*/
ul#menu {
font-size: 1.3em;
font-weight: 600;
margin: 0 0 5px;
padding: 0;
text-align: right;
}
ul#menu li {
display: inline;
list-style: none;
padding-left: 15px;
}
ul#menu li a {
background: none;
color: #999;
text-decoration: none;
}
ul#menu li a:hover {
color: #333;
text-decoration: none;
}
/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
background-color: #fff;
}
.featured .content-wrapper {
background-color: #7ac0da;
background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6));
background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
color: #3e5667;
padding: 20px 40px 30px 40px;
}
.featured hgroup.title h1, .featured hgroup.title h2 {
color: #fff;
}
.featured p {
font-size: 1.1em;
}
/* page titles */
hgroup.title {
margin-bottom: 10px;
}
hgroup.title h1, hgroup.title h2 {
display: inline;
}
hgroup.title h2 {
font-weight: normal;
margin-left: 3px;
}
/* features */
section.feature {
width: 300px;
float: left;
padding: 10px;
}
/* ordered list */
ol.round {
list-style-type: none;
padding-left: 0;
}
ol.round li {
margin: 25px 0;
padding-left: 45px;
}
ol.round li.zero {
background: url("../Images/orderedList0.png") no-repeat;
}
ol.round li.one {
background: url("../Images/orderedList1.png") no-repeat;
}
ol.round li.two {
background: url("../Images/orderedList2.png") no-repeat;
}
ol.round li.three {
background: url("../Images/orderedList3.png") no-repeat;
}
ol.round li.four {
background: url("../Images/orderedList4.png") no-repeat;
}
ol.round li.five {
background: url("../Images/orderedList5.png") no-repeat;
}
ol.round li.six {
background: url("../Images/orderedList6.png") no-repeat;
}
ol.round li.seven {
background: url("../Images/orderedList7.png") no-repeat;
}
ol.round li.eight {
background: url("../Images/orderedList8.png") no-repeat;
}
ol.round li.nine {
background: url("../Images/orderedList9.png") no-repeat;
}
/* content */
article {
float: left;
width: 70%;
}
aside {
float: right;
width: 25%;
}
aside ul {
list-style: none;
padding: 0;
}
aside ul li {
background: url("../Images/bullet.png") no-repeat 0 50%;
padding: 2px 0 2px 20px;
}
/* login page */
#loginForm {
border-right: solid 2px #c8c8c8;
float: left;
width: 55%;
}
#loginForm .validation-error {
display: block;
margin-left: 15px;
}
#loginForm .validation-summary-errors ul {
margin: 0;
padding: 0;
}
#loginForm .validation-summary-errors li {
display: inline;
list-style: none;
margin: 0;
}
#loginForm input {
width: 250px;
}
#loginForm input[type="checkbox"],
#loginForm input[type="submit"],
#loginForm input[type="button"],
#loginForm button {
width: auto;
}
#socialLoginForm {
margin-left: 40px;
float: left;
width: 40%;
}
#socialLoginForm h2 {
margin-bottom: 5px;
}
#socialLoginList button {
margin-bottom: 12px;
}
#logoutForm {
display: inline;
}
/* contact */
.contact h3 {
font-size: 1.2em;
}
.contact p {
margin: 5px 0 0 10px;
}
.contact iframe {
border: 1px solid #333;
margin: 5px 0 0 10px;
}
/* forms */
fieldset {
border: none;
margin: 0;
padding: 0;
}
fieldset legend {
display: none;
}
fieldset ol {
padding: 0;
list-style: none;
}
fieldset ol li {
padding-bottom: 5px;
}
input, textarea {
border: 1px solid #e2e2e2;
background: #fff;
color: #333;
font-size: 1.2em;
margin: 5px 0 6px 0;
padding: 5px;
width: 300px;
}
textarea {
font-family: inherit;
width: 500px;
}
input:focus, textarea:focus {
border: 1px solid #7ac0da;
}
input[type="checkbox"] {
background: transparent;
border: inherit;
width: auto;
}
input[type="submit"],
input[type="button"],
button {
background-color: #d3dce0;
border: 1px solid #787878;
cursor: pointer;
font-size: 1.2em;
font-weight: 600;
padding: 7px;
margin-right: 8px;
width: auto;
}
td input[type="submit"],
td input[type="button"],
td button {
font-size: 1em;
padding: 4px;
margin-right: 4px;
}
/* info and errors */
.message-info {
border: 1px solid;
clear: both;
padding: 10px 20px;
}
.message-error {
clear: both;
color: #e80c4d;
font-size: 1.1em;
font-weight: bold;
margin: 20px 0 10px 0;
}
.message-success {
color: #7ac0da;
font-size: 1.3em;
font-weight: bold;
margin: 20px 0 10px 0;
}
.error {
color: #e80c4d;
}
/* styles for validation helpers */
.field-validation-error {
color: #e80c4d;
font-weight: bold;
}
.field-validation-valid {
display: none;
}
input.input-validation-error {
border: 1px solid #e80c4d;
}
input[type="checkbox"].input-validation-error {
border: 0 none;
}
.validation-summary-errors {
color: #e80c4d;
font-weight: bold;
font-size: 1.1em;
}
.validation-summary-valid {
display: none;
}
/* tables
----------------------------------------------------------*/
table {
border-collapse: collapse;
border-spacing: 0;
margin-top: 0.75em;
border: 0 none;
}
th {
font-size: 1.2em;
text-align: left;
border: none 0px;
padding-left: 0;
}
th a {
display: block;
position: relative;
}
th a:link, th a:visited, th a:active, th a:hover {
color: #333;
font-weight: 600;
text-decoration: none;
padding: 0;
}
th a:hover {
color: #000;
}
th.asc a, th.desc a {
margin-right: .75em;
}
th.asc a:after, th.desc a:after {
display: block;
position: absolute;
right: 0em;
top: 0;
font-size: 0.75em;
}
th.asc a:after {
content: '▲';
}
th.desc a:after {
content: '▼';
}
td {
padding: 0.25em 2em 0.25em 0em;
border: 0 none;
}
tr.pager td {
padding: 0 0.25em 0 0;
}
/********************
* Mobile Styles *
********************/
@media only screen and (max-width: 850px) {
/* header
----------------------------------------------------------*/
header .float-left,
header .float-right {
float: none;
}
/* logo */
header .site-title {
margin: 10px;
text-align: center;
}
/* login */
#login {
font-size: .85em;
margin: 0 0 12px;
text-align: center;
}
#login ul {
margin: 5px 0;
padding: 0;
}
#login li {
display: inline;
list-style: none;
margin: 0;
padding: 0;
}
#login a {
background: none;
color: #999;
font-weight: 600;
margin: 2px;
padding: 0;
}
#login a:hover {
color: #333;
}
/* menu */
nav {
margin-bottom: 5px;
}
ul#menu {
margin: 0;
padding: 0;
text-align: center;
}
ul#menu li {
margin: 0;
padding: 0;
}
/* main layout
----------------------------------------------------------*/
.main-content,
.featured + .main-content {
background-position: 10px 0;
}
.content-wrapper {
padding-right: 10px;
padding-left: 10px;
}
.featured .content-wrapper {
padding: 10px;
}
/* page content */
article, aside {
float: none;
width: 100%;
}
/* ordered list */
ol.round {
list-style-type: none;
padding-left: 0;
}
ol.round li {
padding-left: 10px;
margin: 25px 0;
}
ol.round li.zero,
ol.round li.one,
ol.round li.two,
ol.round li.three,
ol.round li.four,
ol.round li.five,
ol.round li.six,
ol.round li.seven,
ol.round li.eight,
ol.round li.nine {
background: none;
}
/* features */
section.feature {
float: none;
padding: 10px;
width: auto;
}
section.feature img {
color: #999;
content: attr(alt);
font-size: 1.5em;
font-weight: 600;
}
/* forms */
input {
width: 90%;
}
/* login page */
#loginForm {
border-right: none;
float: none;
width: auto;
}
#loginForm .validation-error {
display: block;
margin-left: 15px;
}
#socialLoginForm {
margin-left: 0;
float: none;
width: auto;
}
/* footer
----------------------------------------------------------*/
footer .float-left,
footer .float-right {
float: none;
}
footer {
text-align: center;
height: auto;
padding: 10px 0;
}
footer p {
margin: 0;
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Content/Site.css | CSS | asf20 | 14,041 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace Client
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Client/Global.asax.cs | C# | asf20 | 850 |
@{
Layout = "~/Views/Shared/_Layout.cshtml";
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Views/_ViewStart.cshtml | HTML+Razor | asf20 | 55 |
<header>
<div class="content-wrapper">
<div class="float-left">
<p class="site-title">
<a href="~/">ASP.NET Web API</a></p>
</div>
</div>
</header>
<div id="body">
<section class="featured">
<div class="content-wrapper">
<hgroup class="title">
<h1>Welcome to ASP.NET Web API!</h1>
<h2>Modify the code in this template to jump-start your ASP.NET Web API development.</h2>
</hgroup>
<p>
ASP.NET Web API allows you to expose your applications, data and services to the
web directly over HTTP.
</p>
<p>
To learn more about ASP.NET Web API visit
<a href="http://go.microsoft.com/fwlink/?LinkID=238195" title="ASP.NET Web API Website">http://asp.net/web-api</a>.
The page features <mark>videos, tutorials, and samples</mark> to help you get the most from ASP.NET Web API.
If you have any questions about ASP.NET Web API, visit
<a href="http://go.microsoft.com/fwlink/?LinkID=238196" title="ASP.NET Web API Forum">our forums</a>.
</p>
</div>
</section>
<section class="content-wrapper main-content clear-fix">
<h3>We suggest the following steps:</h3>
<ol class="round">
<li class="one">
<h5>Getting Started</h5>
ASP.NET Web API is a framework that makes it easy to build HTTP services that reach
a broad range of clients, including browsers and mobile devices. ASP.NET Web API
is an ideal platform for building RESTful applications on the .NET Framework.
<a href="http://go.microsoft.com/fwlink/?LinkId=245160">Learn more…</a>
</li>
<li class="two">
<h5>Add NuGet packages and jump-start your coding</h5>
NuGet makes it easy to install and update free libraries and tools.
<a href="http://go.microsoft.com/fwlink/?LinkId=245161">Learn more…</a>
</li>
<li class="three">
<h5>Find Web Hosting</h5>
You can easily find a web hosting company that offers the right mix of features
and price for your applications.
<a href="http://go.microsoft.com/fwlink/?LinkId=245164">Learn more…</a>
</li>
</ol>
</section>
</div>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Views/Home/Index.cshtml | HTML+Razor | asf20 | 2,555 |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
@RenderBody()
@Scripts.Render("~/bundles/jquery")
@RenderSection("scripts", required: false)
</body>
</html>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Views/Shared/_Layout.cshtml | HTML+Razor | asf20 | 386 |
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Error</title>
</head>
<body>
<h2>
Sorry, an error occurred while processing your request.
</h2>
</body>
</html> | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Views/Shared/Error.cshtml | HTML+Razor | asf20 | 269 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
namespace Server
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/App_Start/RouteConfig.cs | C# | asf20 | 597 |
using System.Web;
using System.Web.Mvc;
namespace Server
{
public class FilterConfig
{
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/App_Start/FilterConfig.cs | C# | asf20 | 272 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace Server
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/App_Start/WebApiConfig.cs | C# | asf20 | 475 |
using System.Web;
using System.Web.Optimization;
namespace Server
{
public class BundleConfig
{
// For more information on Bundling, visit http://go.microsoft.com/fwlink/?LinkId=254725
public static void RegisterBundles(BundleCollection bundles)
{
bundles.Add(new ScriptBundle("~/bundles/jquery").Include(
"~/Scripts/jquery-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include(
"~/Scripts/jquery-ui-{version}.js"));
bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include(
"~/Scripts/jquery.unobtrusive*",
"~/Scripts/jquery.validate*"));
// Use the development version of Modernizr to develop with and learn from. Then, when you're
// ready for production, use the build tool at http://modernizr.com to pick only the tests you need.
bundles.Add(new ScriptBundle("~/bundles/modernizr").Include(
"~/Scripts/modernizr-*"));
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css"));
bundles.Add(new StyleBundle("~/Content/themes/base/css").Include(
"~/Content/themes/base/jquery.ui.core.css",
"~/Content/themes/base/jquery.ui.resizable.css",
"~/Content/themes/base/jquery.ui.selectable.css",
"~/Content/themes/base/jquery.ui.accordion.css",
"~/Content/themes/base/jquery.ui.autocomplete.css",
"~/Content/themes/base/jquery.ui.button.css",
"~/Content/themes/base/jquery.ui.dialog.css",
"~/Content/themes/base/jquery.ui.slider.css",
"~/Content/themes/base/jquery.ui.tabs.css",
"~/Content/themes/base/jquery.ui.datepicker.css",
"~/Content/themes/base/jquery.ui.progressbar.css",
"~/Content/themes/base/jquery.ui.theme.css"));
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/App_Start/BundleConfig.cs | C# | asf20 | 2,169 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using Server.Models;
using Database;
namespace Server.Controllers
{
public class GalaxyController : ApiController
{
// GET api/values
public List<Galaxy> Get()
{
var list1 = new List<Galaxy>();
list1 = GalaxyData.LayDsFilm();
return list1;
}
// GET api/values/5
public string Get(int id)
{
return "value";
}
// POST api/values
public void Post([FromBody]string value)
{
}
// PUT api/values/5
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/values/5
public void Delete(int id)
{
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Controllers/GalaxyController.cs | C# | asf20 | 902 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Server.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Controllers/HomeController.cs | C# | asf20 | 300 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Timers;
using System.Web;
using Database;
using HtmlAgilityPack;
namespace Server.Models
{
public class GalaxyCinema
{
public static List<string> LayURL(int type)
{
var list = new List<string>();
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
if (type == 0)//lay phim dang chieu
{
ds = hw.Load("https://www.galaxycine.vn/vi/phim/nowshowing");
}
else if (type == 1) // lay phim sap chieu
{
ds = hw.Load("https://www.galaxycine.vn/vi/phim/comingsoon");
}
var d = ds.DocumentNode.SelectNodes("//div[@class='rel']");
foreach (HtmlNode link in d)
{
HtmlNodeCollection ls = link.ChildNodes;
HtmlNode l = ls[1];
var value = "";
if (l.Attributes.Count > 0)
value = l.Attributes[0].Value;
if (value.IndexOf("/vi/thong-tin-phim") == 0)
{
list.Add("https://www.galaxycine.vn" + value);
}
}
return list;
}
public static Galaxy ThongTinFilm(string url)
{
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
ds = hw.Load(url);
var d = ds.DocumentNode.SelectNodes("//span[@class='content']");
var film = new Galaxy();
film.Ten = (ds.DocumentNode.SelectSingleNode("//div[@class='title-article']")).InnerHtml;
film.Khoichieu = d[0].InnerHtml;
film.Theloai = d[1].InnerHtml;
film.Phienban = d[5].InnerHtml;
film.Nuocsanxuat = d[7].InnerHtml;
film.Cumrap = d[8].InnerHtml;
// var dsd = (ds.DocumentNode.SelectSingleNode("//img[@class='img-movie-detail']"));
film.Mota = (ds.DocumentNode.SelectSingleNode("//div[@class='content']")).ChildNodes[0].InnerHtml;
film.Trailer = (ds.DocumentNode.SelectSingleNode("//input[@id='txtTrailerDetail']")).Attributes[2].Value;
film.Url = url;
film.Hinhanh = "https://www.galaxycine.vn" + (ds.DocumentNode.SelectSingleNode("//img[@class='img-movie-detail']")).Attributes[0].Value;
return film;
}
public static List<Galaxy> DsThongTinFilm(List<string> urllst)
{
var list = new List<Galaxy>();
foreach (var url in urllst)
{
var film = ThongTinFilm(url);
list.Add(film);
}
return list;
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Models/GalaxyCinema.cs | C# | asf20 | 2,850 |
<%@ Application Codebehind="Global.asax.cs" Inherits="Server.WebApiApplication" Language="C#" %>
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Global.asax | ASP.NET | asf20 | 101 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Server")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Hewlett-Packard")]
[assembly: AssemblyProduct("Server")]
[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("f1b22fc6-959d-4015-ba35-766e6125fa4b")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Properties/AssemblyInfo.cs | C# | asf20 | 1,413 |
html {
background-color: #e2e2e2;
margin: 0;
padding: 0;
}
body {
background-color: #fff;
border-top: solid 10px #000;
color: #333;
font-size: .85em;
font-family: "Segoe UI", Verdana, Helvetica, Sans-Serif;
margin: 0;
padding: 0;
}
a {
color: #333;
outline: none;
padding-left: 3px;
padding-right: 3px;
text-decoration: underline;
}
a:link, a:visited,
a:active, a:hover {
color: #333;
}
a:hover {
background-color: #c7d1d6;
}
header, footer, hgroup,
nav, section {
display: block;
}
mark {
background-color: #a6dbed;
padding-left: 5px;
padding-right: 5px;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.clear-fix:after {
content: ".";
clear: both;
display: block;
height: 0;
visibility: hidden;
}
h1, h2, h3,
h4, h5, h6 {
color: #000;
margin-bottom: 0;
padding-bottom: 0;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.75em;
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 1.1em;
}
h5, h6 {
font-size: 1em;
}
h5 a:link, h5 a:visited, h5 a:active {
padding: 0;
text-decoration: none;
}
/* main layout
----------------------------------------------------------*/
.content-wrapper {
margin: 0 auto;
max-width: 960px;
}
#body {
background-color: #efeeef;
clear: both;
padding-bottom: 35px;
}
.main-content {
background: url("../Images/accent.png") no-repeat;
padding-left: 10px;
padding-top: 30px;
}
.featured + .main-content {
background: url("../Images/heroAccent.png") no-repeat;
}
header .content-wrapper {
padding-top: 20px;
}
footer {
clear: both;
background-color: #e2e2e2;
font-size: .8em;
height: 100px;
}
/* site title
----------------------------------------------------------*/
.site-title {
color: #c8c8c8;
font-family: Rockwell, Consolas, "Courier New", Courier, monospace;
font-size: 2.3em;
margin: 0;
}
.site-title a, .site-title a:hover, .site-title a:active {
background: none;
color: #c8c8c8;
outline: none;
text-decoration: none;
}
/* login
----------------------------------------------------------*/
#login {
display: block;
font-size: .85em;
margin: 0 0 10px;
text-align: right;
}
#login a {
background-color: #d3dce0;
margin-left: 10px;
margin-right: 3px;
padding: 2px 3px;
text-decoration: none;
}
#login a.username {
background: none;
margin: 0;
padding: 0;
text-decoration: underline;
}
#login ul {
margin: 0;
}
#login li {
display: inline;
list-style: none;
}
/* menu
----------------------------------------------------------*/
ul#menu {
font-size: 1.3em;
font-weight: 600;
margin: 0 0 5px;
padding: 0;
text-align: right;
}
ul#menu li {
display: inline;
list-style: none;
padding-left: 15px;
}
ul#menu li a {
background: none;
color: #999;
text-decoration: none;
}
ul#menu li a:hover {
color: #333;
text-decoration: none;
}
/* page elements
----------------------------------------------------------*/
/* featured */
.featured {
background-color: #fff;
}
.featured .content-wrapper {
background-color: #7ac0da;
background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6));
background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
color: #3e5667;
padding: 20px 40px 30px 40px;
}
.featured hgroup.title h1, .featured hgroup.title h2 {
color: #fff;
}
.featured p {
font-size: 1.1em;
}
/* page titles */
hgroup.title {
margin-bottom: 10px;
}
hgroup.title h1, hgroup.title h2 {
display: inline;
}
hgroup.title h2 {
font-weight: normal;
margin-left: 3px;
}
/* features */
section.feature {
width: 300px;
float: left;
padding: 10px;
}
/* ordered list */
ol.round {
list-style-type: none;
padding-left: 0;
}
ol.round li {
margin: 25px 0;
padding-left: 45px;
}
ol.round li.zero {
background: url("../Images/orderedList0.png") no-repeat;
}
ol.round li.one {
background: url("../Images/orderedList1.png") no-repeat;
}
ol.round li.two {
background: url("../Images/orderedList2.png") no-repeat;
}
ol.round li.three {
background: url("../Images/orderedList3.png") no-repeat;
}
ol.round li.four {
background: url("../Images/orderedList4.png") no-repeat;
}
ol.round li.five {
background: url("../Images/orderedList5.png") no-repeat;
}
ol.round li.six {
background: url("../Images/orderedList6.png") no-repeat;
}
ol.round li.seven {
background: url("../Images/orderedList7.png") no-repeat;
}
ol.round li.eight {
background: url("../Images/orderedList8.png") no-repeat;
}
ol.round li.nine {
background: url("../Images/orderedList9.png") no-repeat;
}
/* content */
article {
float: left;
width: 70%;
}
aside {
float: right;
width: 25%;
}
aside ul {
list-style: none;
padding: 0;
}
aside ul li {
background: url("../Images/bullet.png") no-repeat 0 50%;
padding: 2px 0 2px 20px;
}
.label {
font-weight: 700;
}
/* login page */
#loginForm {
border-right: solid 2px #c8c8c8;
float: left;
width: 55%;
}
#loginForm .validation-error {
display: block;
margin-left: 15px;
}
#loginForm .validation-summary-errors ul {
margin: 0;
padding: 0;
}
#loginForm .validation-summary-errors li {
display: inline;
list-style: none;
margin: 0;
}
#loginForm input {
width: 250px;
}
#loginForm input[type="checkbox"],
#loginForm input[type="submit"],
#loginForm input[type="button"],
#loginForm button {
width: auto;
}
#socialLoginForm {
margin-left: 40px;
float: left;
width: 40%;
}
#socialLoginForm h2 {
margin-bottom: 5px;
}
#socialLoginList button {
margin-bottom: 12px;
}
#logoutForm {
display: inline;
}
/* contact */
.contact h3 {
font-size: 1.2em;
}
.contact p {
margin: 5px 0 0 10px;
}
.contact iframe {
border: 1px solid #333;
margin: 5px 0 0 10px;
}
/* forms */
fieldset {
border: none;
margin: 0;
padding: 0;
}
fieldset legend {
display: none;
}
fieldset ol {
padding: 0;
list-style: none;
}
fieldset ol li {
padding-bottom: 5px;
}
label {
display: block;
font-size: 1.2em;
font-weight: 600;
}
label.checkbox {
display: inline;
}
input, textarea {
border: 1px solid #e2e2e2;
background: #fff;
color: #333;
font-size: 1.2em;
margin: 5px 0 6px 0;
padding: 5px;
width: 300px;
}
textarea {
font-family: inherit;
width: 500px;
}
input:focus, textarea:focus {
border: 1px solid #7ac0da;
}
input[type="checkbox"] {
background: transparent;
border: inherit;
width: auto;
}
input[type="submit"],
input[type="button"],
button {
background-color: #d3dce0;
border: 1px solid #787878;
cursor: pointer;
font-size: 1.2em;
font-weight: 600;
padding: 7px;
margin-right: 8px;
width: auto;
}
td input[type="submit"],
td input[type="button"],
td button {
font-size: 1em;
padding: 4px;
margin-right: 4px;
}
/* info and errors */
.message-info {
border: 1px solid;
clear: both;
padding: 10px 20px;
}
.message-error {
clear: both;
color: #e80c4d;
font-size: 1.1em;
font-weight: bold;
margin: 20px 0 10px 0;
}
.message-success {
color: #7ac0da;
font-size: 1.3em;
font-weight: bold;
margin: 20px 0 10px 0;
}
.error {
color: #e80c4d;
}
/* styles for validation helpers */
.field-validation-error {
color: #e80c4d;
font-weight: bold;
}
.field-validation-valid {
display: none;
}
input.input-validation-error {
border: 1px solid #e80c4d;
}
input[type="checkbox"].input-validation-error {
border: 0 none;
}
.validation-summary-errors {
color: #e80c4d;
font-weight: bold;
font-size: 1.1em;
}
.validation-summary-valid {
display: none;
}
/* tables
----------------------------------------------------------*/
table {
border-collapse: collapse;
border-spacing: 0;
margin-top: 0.75em;
border: 0 none;
}
th {
font-size: 1.2em;
text-align: left;
border: none 0px;
padding-left: 0;
}
th a {
display: block;
position: relative;
}
th a:link, th a:visited, th a:active, th a:hover {
color: #333;
font-weight: 600;
text-decoration: none;
padding: 0;
}
th a:hover {
color: #000;
}
th.asc a, th.desc a {
margin-right: .75em;
}
th.asc a:after, th.desc a:after {
display: block;
position: absolute;
right: 0em;
top: 0;
font-size: 0.75em;
}
th.asc a:after {
content: '▲';
}
th.desc a:after {
content: '▼';
}
td {
padding: 0.25em 2em 0.25em 0em;
border: 0 none;
}
tr.pager td {
padding: 0 0.25em 0 0;
}
/********************
* Mobile Styles *
********************/
@media only screen and (max-width: 850px) {
/* header
----------------------------------------------------------*/
header .float-left,
header .float-right {
float: none;
}
/* logo */
header .site-title {
margin: 10px;
text-align: center;
}
/* login */
#login {
font-size: .85em;
margin: 0 0 12px;
text-align: center;
}
#login ul {
margin: 5px 0;
padding: 0;
}
#login li {
display: inline;
list-style: none;
margin: 0;
padding: 0;
}
#login a {
background: none;
color: #999;
font-weight: 600;
margin: 2px;
padding: 0;
}
#login a:hover {
color: #333;
}
/* menu */
nav {
margin-bottom: 5px;
}
ul#menu {
margin: 0;
padding: 0;
text-align: center;
}
ul#menu li {
margin: 0;
padding: 0;
}
/* main layout
----------------------------------------------------------*/
.main-content,
.featured + .main-content {
background-position: 10px 0;
}
.content-wrapper {
padding-right: 10px;
padding-left: 10px;
}
.featured .content-wrapper {
padding: 10px;
}
/* page content */
article, aside {
float: none;
width: 100%;
}
/* ordered list */
ol.round {
list-style-type: none;
padding-left: 0;
}
ol.round li {
padding-left: 10px;
margin: 25px 0;
}
ol.round li.zero,
ol.round li.one,
ol.round li.two,
ol.round li.three,
ol.round li.four,
ol.round li.five,
ol.round li.six,
ol.round li.seven,
ol.round li.eight,
ol.round li.nine {
background: none;
}
/* features */
section.feature {
float: none;
padding: 10px;
width: auto;
}
section.feature img {
color: #999;
content: attr(alt);
font-size: 1.5em;
font-weight: 600;
}
/* forms */
input {
width: 90%;
}
/* login page */
#loginForm {
border-right: none;
float: none;
width: auto;
}
#loginForm .validation-error {
display: block;
margin-left: 15px;
}
#socialLoginForm {
margin-left: 0;
float: none;
width: auto;
}
/* footer
----------------------------------------------------------*/
footer .float-left,
footer .float-right {
float: none;
}
footer {
text-align: center;
height: auto;
padding: 10px 0;
}
footer p {
margin: 0;
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Content/Site.css | CSS | asf20 | 13,944 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
using Database;
using System.Timers;
using Server.Models;
namespace Server
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
GalaxyUpdate();
}
public static void GalaxyUpdate()
{
try
{
var urllist = GalaxyCinema.LayURL(0);
var list1 = GalaxyCinema.DsThongTinFilm(urllist);
urllist = GalaxyCinema.LayURL(1);
var list2 = GalaxyCinema.DsThongTinFilm(urllist);
foreach (var i in list2)
{
list1.Add(i);
}
foreach (var f in list1)
{
GalaxyData.UpdateFilm(f);
}
}
catch (Exception ex)
{ }
var time = new Timer(1000*60*60*12); // Set up the timer for 3 seconds
//
// Type "_timer.Elapsed += " and press tab twice.
//
time.Elapsed += new ElapsedEventHandler(_timer_Elapsed);
time.Enabled = true; // Enable it
}
static void _timer_Elapsed(object sender, ElapsedEventArgs e)
{
try
{
var urllist = GalaxyCinema.LayURL(0);
var list1 = GalaxyCinema.DsThongTinFilm(urllist);
urllist = GalaxyCinema.LayURL(1);
var list2 = GalaxyCinema.DsThongTinFilm(urllist);
foreach (var i in list2)
{
list1.Add(i);
}
foreach (var f in list1)
{
GalaxyData.UpdateFilm(f);
}
}
catch (Exception ex)
{ }
}
}
} | 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Server/Global.asax.cs | C# | asf20 | 2,570 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Example")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Hewlett-Packard")]
[assembly: AssemblyProduct("Example")]
[assembly: AssemblyCopyright("Copyright © Hewlett-Packard 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("e6baafd2-f433-4481-9526-0d3343935137")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Example/Properties/AssemblyInfo.cs | C# | asf20 | 1,456 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HtmlAgilityPack;
using Database;
namespace Example
{
class Program
{
static void Main(string[] args)
{
//LayURLThongTinGheNgoi("https://www.galaxycine.vn/vi/thong-tin-phim/dai-nao-hoc-duong");
var f = new Film();
}
public static List<DateTime> LayNgay(string khoichieu)
{
var d = new List<DateTime>();
var bd = "";
var kt = "";
var str = "";
foreach(var i in khoichieu)
{
if (i == '0' ||i == '1' ||i == '2' ||i == '3' ||i == '4' ||i == '5' ||i == '6' ||i == '7' ||i == '8' ||i == '9')
{
str = str + i;
}
}
bd = str.Substring(0, 8);
kt = str.Substring(8, 8);
var year = Int32.Parse(bd.Substring(4, 4));
var month = Int32.Parse(bd.Substring(2, 2));
var day = Int32.Parse(bd.Substring(0, 2));
DateTime ngaybd = new DateTime(year,month,day);
year = Int32.Parse(kt.Substring(4, 4));
month = Int32.Parse(kt.Substring(2, 2));
day = Int32.Parse(kt.Substring(0, 2));
DateTime ngaykt = new DateTime(year, month, day);
d.Add(ngaybd);
d.Add(ngaykt);
return d;
}
public static List<string> LayURL(int type)
{
var list = new List<string>();
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
if (type == 0)//lay phim dang chieu
{
ds = hw.Load("https://www.galaxycine.vn/vi/phim/nowshowing");
}
else if (type == 1) // lay phim sap chieu
{
ds = hw.Load("https://www.galaxycine.vn/vi/phim/comingsoon");
}
var d = ds.DocumentNode.SelectNodes("//div[@class='rel']");
foreach (HtmlNode link in d)
{
HtmlNodeCollection ls = link.ChildNodes;
HtmlNode l = ls[1];
var value = "";
if (l.Attributes.Count > 0)
value = l.Attributes[0].Value;
if (value.IndexOf("/vi/thong-tin-phim") == 0)
{
list.Add("https://www.galaxycine.vn" + value);
}
}
return list;
}
public static Film ThongTinFilm(string url)
{
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
ds = hw.Load(url);
var d = ds.DocumentNode.SelectNodes("//span[@class='content']");
var film = new Film();
film.Ten = (ds.DocumentNode.SelectSingleNode("//div[@class='title-article']")).InnerHtml;
film.Khoichieu = d[0].InnerHtml;
film.Theloai = d[1].InnerHtml;
film.Phienban = d[5].InnerHtml;
film.Nuocsanxuat = d[7].InnerHtml;
film.Cumrap = d[8].InnerHtml;
// var dsd = (ds.DocumentNode.SelectSingleNode("//img[@class='img-movie-detail']"));
film.Mota = (ds.DocumentNode.SelectSingleNode("//div[@class='content']")).ChildNodes[0].InnerHtml;
film.Trailer = (ds.DocumentNode.SelectSingleNode("//input[@id='txtTrailerDetail']")).Attributes[2].Value;
film.Url = url;
film.Hinhanh = "https://www.galaxycine.vn" + (ds.DocumentNode.SelectSingleNode("//img[@class='img-movie-detail']")).Attributes[0].Value;
return film;
}
public static List<Film> DsThongTinFilm(List<string> urllst)
{
var list = new List<Film>();
foreach (var url in urllst)
{
var film = ThongTinFilm(url);
list.Add(film);
}
return list;
}
public static List<string> LayURLThongTinGheNgoi(string url)
{
HtmlDocument ds = new HtmlDocument();
HtmlWeb hw = new HtmlWeb();
ds = hw.Load(url);
var d = ds.DocumentNode.SelectNodes("//a[@class='mov_sc_hour btnShowtime']");
var lst = new List<string>();
foreach (var i in d)
{
lst.Add(i.Attributes[1].Value);
}
if (lst.Count > 0)
{
foreach (var str in lst)
{
ds = hw.Load(str);
d = ds.DocumentNode.SelectNodes("//div[@class='book-info-content-item-content']");
var j = d[2].ChildNodes[1].InnerHtml;
}
}
return lst;
}
}
public class Film
{
private string _ten = "";
public string Ten
{
get { return _ten; }
set { _ten = value; }
}
private string _khoichieu = "";
public string Khoichieu
{
get { return _khoichieu; }
set { _khoichieu = value; }
}
private string _theloai = "";
public string Theloai
{
get { return _theloai; }
set { _theloai = value; }
}
private string _phienban = "";
public string Phienban
{
get { return _phienban; }
set { _phienban = value; }
}
private string _nuocsanxuat = "";
public string Nuocsanxuat
{
get { return _nuocsanxuat; }
set { _nuocsanxuat = value; }
}
private string _cumrap = "";
public string Cumrap
{
get { return _cumrap; }
set { _cumrap = value; }
}
private string _mota = "";
public string Mota
{
get { return _mota; }
set { _mota = value; }
}
private string _trailer = "";
public string Trailer
{
get { return _trailer; }
set { _trailer = value; }
}
private string _url = "";
public string Url
{
get { return _url; }
set { _url = value; }
}
private string _hinhanh = "";
public string Hinhanh
{
get { return _hinhanh; }
set { _hinhanh = value; }
}
public Film()
{
}
}
}
| 091200-0912198-bt5 | trunk/0912200_0912198_BT5/Example/Program.cs | C# | asf20 | 7,139 |
USE master
GO
IF EXISTS
(
SELECT *
FROM master..sysdatabases
WHERE name = N'DB_STK'
)
DROP DATABASE DB_STK
GO
CREATE DATABASE DB_STK
GO
Use DB_STK
GO
---SOTIETKIEM
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'SOTIETKIEM' AND TYPE='U'
)
DROP TABLE SOTIETKIEM
CREATE TABLE SOTIETKIEM(MSTietKiem INT IDENTITY(1,1) not null Primary Key, TenKH nvarchar(255), SoCMND nvarchar(12), DiaChi nvarchar(255), NgayMoSo DATE, SoTienGuiBD INT, LaiSuat FLOAT, LoaiTietKiem INT, DongSo BIT)
GO
---LOAITIETKIEM
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'LOAITIETKIEM' AND TYPE='U'
)
DROP TABLE LOAITIETKIEM
CREATE TABLE LOAITIETKIEM(MaLoaiTietKiem int IDENTITY(1,1) not null Primary Key, TenLoaiTietKiem nvarchar(255), LaiSuat float, KyHan int, SoNgayDuocRut int, _Status BIT, DuocGuiThem BIT)
GO
---GUITIEN
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'GUITIEN' AND TYPE='U'
)
DROP TABLE GUITIEN
CREATE TABLE GUITIEN(MaGuiTien int IDENTITY(1,1) not null Primary Key, MSTietKiem int, TenKH nvarchar(255), SoTienGui int, LaiSuat float, NgayGui DATE)
GO
---RUTTIEN
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'RUTTIEN' AND TYPE='U'
)
DROP TABLE RUTTIEN
CREATE TABLE RUTTIEN(MaRutTien int IDENTITY(1,1) not null Primary Key, MSTietKiem int, TienKH nvarchar(255), SoTienRut int, NgayRut DATE)
GO
---SETTING
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'_Setting' AND TYPE='U'
)
DROP TABLE _Setting
CREATE TABLE _Setting(ID int IDENTITY(1,1) not null Primary Key, _name nvarchar(255), _values nvarchar(255))
GO
---LOG
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'_Log' AND TYPE='U'
)
DROP TABLE _Log
CREATE TABLE _Log(ID int IDENTITY(1,1) not null Primary Key, UserID int, _Type nvarchar(255), Memo nvarchar(255), _Date DATETIME)
GO
---USER
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'_User' AND TYPE='U'
)
DROP TABLE _User
CREATE TABLE _User(ID int IDENTITY(1,1) not null Primary Key, UserName nvarchar(255), Pass nvarchar(255), GroupID int)
GO
---GROUP
IF EXISTS(
SELECT NAME
FROM SYSOBJECTS
WHERE NAME=N'_Group' AND TYPE='U'
)
DROP TABLE _Group
CREATE TABLE _Group(ID int IDENTITY(1,1) not null Primary Key, Name nvarchar(255))
| 0lll-qlstk | trunk/STK(Setup).sql | TSQL | oos | 2,314 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using QuanLiSoTietKiem.DataLayer;
using System.Data;
namespace QuanLiSoTietKiem.Controller
{
class UserCtr
{
UserData _UserData = new UserData();
//Show All List User in List View
public void GetUserInfo(ListView lstvUsers)
{
lstvUsers.Items.Clear();
DataTable data = _UserData.GetUser();
foreach (DataRow row in data.Rows)
{
ListViewItem item = new ListViewItem(row[0].ToString());
for (int i = 1; i < data.Columns.Count; i++)
{
item.SubItems.Add(row[i].ToString());
}
lstvUsers.Items.Add(item);
}
lstvUsers.Items[0].Selected=true;
}
//Show All List Group in Commobox
public void GetGroup(ComboBox lstGroups)
{
//Get List Groups from database
DataTable Groups = _UserData.GetGroup();
//Add Data to commobox
for (int i = 0; i < Groups.Rows.Count; i++)
{
Function.cb_Item Item = new Function.cb_Item();
Item._Id = (int)Groups.Rows[i]["ID"];
Item._Name = Groups.Rows[i]["Name"].ToString();
lstGroups.Items.Add(Item);
}
//Set Index
lstGroups.DisplayMember = "Name";
lstGroups.ValueMember = "Id";
lstGroups.SelectedIndex = 0;
}
//Add New User
public int AddUser(TextBox _UserName, TextBox _Pass, ComboBox _GroupID)
{
Function.cb_Item GroupID = new Function.cb_Item();
GroupID=(Function.cb_Item)_GroupID.SelectedItem;
if (_UserName.Text == "" || _Pass.Text == "")
{
return -1;
}
else {
int result = _UserData.AddUser(_UserName.Text, _Pass.Text, Int32.Parse(GroupID._Id.ToString()));
if (result == 1)
{
return 1;
}
else {
return 0;
}
}
}
//Update User
public int UpdateUser(Label _ID, TextBox _UserName, TextBox _Pass, ComboBox _GroupID)
{
Function.cb_Item GroupID = new Function.cb_Item();
GroupID = (Function.cb_Item)_GroupID.SelectedItem;
int result = _UserData.UpdateUser(Int32.Parse(_ID.Text), _UserName.Text, _Pass.Text, Int32.Parse(GroupID._Id.ToString()));
if (result == 1)
{
return 1;
}
else
{
return 0;
}
}
//Delete User
public int DelUser(Label _ID) {
int result = _UserData.DelUser(Int32.Parse(_ID.Text));
if (result == 1)
{
return 1;
}
else
{
return 0;
}
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/Controller/UserCtr.cs | C# | oos | 3,219 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using QuanLiSoTietKiem.DataLayer;
using QuanLiSoTietKiem.ValueObject;
using System.Windows.Forms;
namespace QuanLiSoTietKiem.Controller
{
class PhieuRutTienCtr
{
//Data
PhieuRutTienData _PhieuRutTienData = new PhieuRutTienData();
//Get List MaSTK
public void GetMaSTK(ComboBox MaSTK)
{
//Get List LoaiTietKiem from database
DataTable LoaiTietKiem = _PhieuRutTienData.GetMaSTK();
//Add Data to commobox
for (int i = 0; i < LoaiTietKiem.Rows.Count; i++)
{
Function.cb_Item Item = new Function.cb_Item();
Item._Id = (string)LoaiTietKiem.Rows[i]["TenKH"];
Item._Name = LoaiTietKiem.Rows[i]["MSTietKiem"].ToString();
MaSTK.Items.Add(Item);
}
//Set Index
MaSTK.DisplayMember = "Name";
MaSTK.ValueMember = "ID";
MaSTK.SelectedIndex = 0;
}
//Create MaPhieuRutTien
public string CreateMaRT()
{
string result = null;
SqlDataReader dt = _PhieuRutTienData.GetIDRT();
if (dt.HasRows)
{
dt.Read();
string s = (Int32.Parse(dt[0].ToString()) + 1).ToString();
result = "MRT";
for (int i = 0; i < 7 - s.Length; i++)
{
result += "0";
}
result += s;
dt.Close();
}
return result;
}
//Get Date SOTIETKIEM
public DateTime GetDate(string MaSTK)
{
DateTime result;
SqlDataReader dt = _PhieuRutTienData.GetDate(MaSTK);
if (dt.HasRows)
{
dt.Read();
result = DateTime.Parse(dt[0].ToString());
dt.Close();
}
else {
result = DateTime.Parse("00/00/0000");
}
return result;
}
//Show LoaiTietKiem Commobox
public void ShowLoaiTietKiem(ComboBox lstLoaiTietKiem)
{
//Get List LoaiTietKiem from database
DataTable LoaiTietKiem = _PhieuRutTienData.GetLoaiTietKiem();
//Add Data to commobox
for (int i = 0; i < LoaiTietKiem.Rows.Count; i++)
{
Function.cb_Item Item = new Function.cb_Item();
Item._Id = (int)LoaiTietKiem.Rows[i]["MaLoaiTietKiem"];
Item._Name = LoaiTietKiem.Rows[i]["TenLoaiTietKiem"].ToString();
lstLoaiTietKiem.Items.Add(Item);
}
//Set Index
lstLoaiTietKiem.DisplayMember = "Name";
lstLoaiTietKiem.ValueMember = "ID";
lstLoaiTietKiem.SelectedIndex = 0;
}
public SoTietKiemInfo GetSTK(string MaSTK)
{
SoTietKiemInfo result = new SoTietKiemInfo();
SqlDataReader dt = _PhieuRutTienData.GetSTK(MaSTK);
if (dt.HasRows)
{
dt.Read();
result.MaSTK = dt[1].ToString();
result.TenKH = dt[2].ToString();
result.SoCMND = dt[3].ToString();
result.DiaChi = dt[4].ToString();
result.NgayMoSo = DateTime.Parse(dt[5].ToString());
result.SoTienGuiBD = float.Parse(dt[6].ToString());
result.SoDu = float.Parse(dt[7].ToString());
result.LaiSuat = float.Parse(dt[8].ToString());
result.MaLoaiTietKiem= int.Parse(dt[9].ToString());
result.DongSo = bool.Parse(dt[10].ToString());
dt.Close();
}
else
{
result = null;
}
return result;
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/Controller/PhieuRutTienCtr.cs | C# | oos | 4,125 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QuanLiSoTietKiem.DataLayer;
using QuanLiSoTietKiem.ValueObject;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
namespace QuanLiSoTietKiem.Controller
{
class SoTietKiemCtr
{
SoTietKiemData _SoTietKiemData = new SoTietKiemData();
//Show LoaiTietKiem Commobox
public void ShowLoaiTietKiem(ComboBox lstLoaiTietKiem)
{
//Get List LoaiTietKiem from database
DataTable LoaiTietKiem = _SoTietKiemData.GetLoaiTietKiem();
//Add Data to commobox
for (int i = 0; i < LoaiTietKiem.Rows.Count; i++)
{
Function.cb_Item Item = new Function.cb_Item();
Item._Id = (int)LoaiTietKiem.Rows[i]["MaLoaiTietKiem"];
Item._Name = LoaiTietKiem.Rows[i]["TenLoaiTietKiem"].ToString();
lstLoaiTietKiem.Items.Add(Item);
}
//Set Index
lstLoaiTietKiem.DisplayMember = "Name";
lstLoaiTietKiem.ValueMember = "ID";
lstLoaiTietKiem.SelectedIndex = 0;
}
//Get New MSSoTaiKhoan
public string GetNewID()
{
string result=String.Empty;
SqlDataReader dt = _SoTietKiemData.GetIDSTK();
if (dt.HasRows)
{
dt.Read();
string s = (Int32.Parse(dt[0].ToString()) + 1).ToString();
result = "STK";
for (int i = 0; i < 7 - s.Length; i++)
{
result += "0";
}
result += s;
dt.Close();
}
return result;
}
//Create SOTIETKIEM
public void CreateSTK(SoTietKiemInfo _STK)
{
int result = _SoTietKiemData.CreateSTK(_STK);
if (result == 0)
{
MessageBox.Show("Không Thể Tạo Sổ Tiết Kiêm.");
}
else
{
MessageBox.Show("Đã Tạo Sổ Tiết Kiệm.");
}
}
//Update SOTIETKIEM
public void UpdateSTK(SoTietKiemInfo _STK)
{
int result = _SoTietKiemData.UpdateSTK(_STK);
if (result == 0)
{
MessageBox.Show("Không Thể Cập Nhật Sổ Tiết Kiêm.");
}
else
{
MessageBox.Show("Đã Cập Nhật Sổ Tiết Kiệm.");
}
}
//Delete SOTIETKIEM
public void DelSTK(TextBox txtMS)
{
int result=_SoTietKiemData.DelSTK(txtMS.Text);
if (result == 1)
{
MessageBox.Show("Đã Xóa Sổ Tiết Kiệm.");
}
else {
MessageBox.Show("Lỗi Xóa Sổ Tiết Kiệm.");
}
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/Controller/SoTietKiemCtr.cs | C# | oos | 3,075 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Windows.Forms;
using System.Data.SqlClient;
using QuanLiSoTietKiem.DataLayer;
using QuanLiSoTietKiem.ValueObject;
namespace QuanLiSoTietKiem.Controller
{
class PhieuGuiTienCtr
{
//Data
PhieuGuiTienData _PhieuGuiTienData = new PhieuGuiTienData();
//Check Deposit
public int CheckDeposit(int IDLoaiTietKiem)
{
int result = 0;
SqlDataReader dt = _PhieuGuiTienData.GetDuocGuiThem(IDLoaiTietKiem);
if (dt.HasRows)
{
result = 1;
}
dt.Close();
return result;
}
//Get List MaSTK
public void GetMaSTK(ComboBox MaSTK)
{
//Get List LoaiTietKiem from database
DataTable LoaiTietKiem = _PhieuGuiTienData.GetMaSTK();
//Add Data to commobox
for (int i = 0; i < LoaiTietKiem.Rows.Count; i++)
{
Function.cb_Item Item = new Function.cb_Item();
Item._Id = (string)LoaiTietKiem.Rows[i]["TenKH"];
Item._Name = LoaiTietKiem.Rows[i]["MSTietKiem"].ToString();
MaSTK.Items.Add(Item);
}
//Set Index
MaSTK.DisplayMember = "Name";
MaSTK.ValueMember = "ID";
MaSTK.SelectedIndex = 0;
}
//Create MaPhieuGuiTien
public string CreateMaGT()
{
string result = null;
SqlDataReader dt = _PhieuGuiTienData.GetIDGT();
if (dt.HasRows)
{
dt.Read();
string s = (Int32.Parse(dt[0].ToString()) + 1).ToString();
result = "MGT";
for (int i = 0; i < 7 - s.Length; i++)
{
result += "0";
}
result += s;
dt.Close();
}
return result;
}
//Add PHIEUGUITIEN
public int AddPGT(Phieu _PhieuGuiTienInfo)
{
SqlParameter[] param = new SqlParameter[5];
param[0] = new SqlParameter("@MaGuiTien", _PhieuGuiTienInfo.MaGuiTien);
param[1] = new SqlParameter("@MSTietKiem", _PhieuGuiTienInfo.MSTietKiem);
param[2] = new SqlParameter("@TenKH", _PhieuGuiTienInfo.TenKH);
param[3] = new SqlParameter("@SoTienGui", _PhieuGuiTienInfo.SoTien);
param[4] = new SqlParameter("@NgayGui", _PhieuGuiTienInfo.NgayGui);
int result = _PhieuGuiTienData.AddPGT(param);
return result;
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/Controller/PhieuGuiTienCtr.cs | C# | oos | 2,796 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using QuanLiSoTietKiem.DataLayer;
namespace QuanLiSoTietKiem.Controller
{
class LoginCtr
{
LoginData _LoginData = new LoginData();
public int CheckLogin(TextBox _User, TextBox _Pass)
{
int result;
result = _LoginData.CheckLogin(_User.Text, _Pass.Text);
if (result == 1)
{
IsLogin._User = _LoginData.GetUser(_User.Text);
IsLogin._Time=DateTime.Now.ToString();
return 1;
}
else {
return 0;
}
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/Controller/LoginCtr.cs | C# | oos | 740 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using QuanLiSoTietKiem.DataLayer;
namespace QuanLiSoTietKiem.Controller
{
class MainCtr
{
MainData _MainData = new MainData();
//Get Data For DataGridview dygvSTK
public void GetSTK(DataGridView _dtgvSTK)
{
_dtgvSTK.DataSource = _MainData.GetSTK();
_dtgvSTK.Columns[0].HeaderCell.Value = "ID";
_dtgvSTK.Columns[1].HeaderCell.Value = "Tên Khách Hàng";
//_dtgvSTK.Columns[1].Width = 150;
_dtgvSTK.Columns[2].HeaderCell.Value = "Số CMND";
_dtgvSTK.Columns[3].HeaderCell.Value = "Địa Chỉ";
//_dtgvSTK.Columns[3].Width = 150;
_dtgvSTK.Columns[4].HeaderCell.Value = "Ngày Mở Sổ";
_dtgvSTK.Columns[5].HeaderCell.Value = "Số Tiền Gửi BD";
_dtgvSTK.Columns[6].HeaderCell.Value = "Số Dư";
_dtgvSTK.Columns[7].HeaderCell.Value = "Lãi Suất";
//_dtgvSTK.Columns[7].Width = 65;
_dtgvSTK.Columns[8].HeaderCell.Value = "Loại Tiết Kiệm";
_dtgvSTK.Columns[9].HeaderCell.Value = "Đóng Sổ";
//_dtgvSTK.Columns[9].Width = 65;
}
//Delete SOTIETKIEM
public void DelSTK(string MSSTK)
{
int result = _MainData.DelSTK(MSSTK);
if (result == 1)
{
MessageBox.Show("Đã Xóa Sổ Tiết Kiệm.");
}
else {
MessageBox.Show("Không Thể Xóa Sổ Tiết Kiệm.");
}
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/Controller/MainCtr.cs | C# | oos | 1,718 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;
namespace QuanLiSoTietKiem.DataLayer
{
class UserData
{
//Get All List User Account
public DataTable GetUser()
{
DataTable result = new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select _User.ID, UserName, Pass, _Group.Name as NameGroup from _User inner join _Group on (_User.GroupID=_Group.ID)");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error UserData::GetUser() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Get All List Group for commobox
public DataTable GetGroup()
{
DataTable result = new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select * from _Group");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error UserData::GetGroup() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Add User
public int AddUser(string User, string Pass, int GroupID)
{
int result =0;
SqlParameter[] param = new SqlParameter[3];
param[0]= new SqlParameter("@User",User);
param[1] = new SqlParameter("@Pass", Pass);
param[2] = new SqlParameter("@GroupID", GroupID);
result = Database.ExNonQuery("INSERT INTO _User(UserName, Pass, GroupID) values (@User, @Pass, @GroupID)", param);
return result;
}
//Update User
public int UpdateUser(int ID, string User, string Pass, int GroupID)
{
int result = 0;
SqlParameter[] param = new SqlParameter[4];
param[0] = new SqlParameter("@User", User);
param[1] = new SqlParameter("@Pass", Pass);
param[2] = new SqlParameter("@GroupID", GroupID);
param[3] = new SqlParameter("@ID", ID);
result = Database.ExNonQuery("UPDATE _User SET UserName=@User, Pass=@Pass, GroupID=@GroupID where ID=@ID", param);
return result;
}
//Delete User
public int DelUser(int ID)
{
int result = 0;
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@ID", ID);
result = Database.ExNonQuery("Delete _User where ID=@ID", param);
return result;
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/DataLayer/UserData.cs | C# | oos | 3,182 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Windows.Forms;
namespace QuanLiSoTietKiem.DataLayer
{
class PhieuRutTienData
{
//Get MASTK
public DataTable GetMaSTK()
{
DataTable result = new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select MSTietKiem, TenKH from SOTIETKIEM");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error PhieuRutTienData::GetMaSTK() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Get Current PhieuRutTien
public SqlDataReader GetIDRT()
{
SqlDataReader dt = Database.GetReader("select IDENT_CURRENT( 'RUTTIEN' ) as ID");
return dt;
}
//Get Date SOTIETKIEM
public SqlDataReader GetDate(string MaSTK)
{
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@MaSTK", MaSTK);
SqlDataReader dt = Database.GetReader("select NgayMoSo from SOTIETKIEM where MSTietKiem=@MaSTK", param);
return dt;
}
//Get LoaiTietKiem
public DataTable GetLoaiTietKiem()
{
DataTable result = new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select * from LOAITIETKIEM");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error PhieuRutTienData::GetLoaiTietKiem() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Get SOTIETKIEM BY MaSTK
public SqlDataReader GetSTK(string MaSTK)
{
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@MaSTK", MaSTK);
return Database.GetReader("Select * from SOTIETKIEM where MSTietKiem=@MaSTK", param);
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/DataLayer/PhieuRutTienData.cs | C# | oos | 2,576 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Data;
namespace QuanLiSoTietKiem.DataLayer
{
class PhieuGuiTienData
{
//Get MASTK
public DataTable GetMaSTK()
{
DataTable result=new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select MSTietKiem, TenKH from SOTIETKIEM");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error PhieuGuiTienData::GetMaSTK() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Get DuocGuiThem
public SqlDataReader GetDuocGuiThem(int MaLoaiTietKiem)
{
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@ID", MaLoaiTietKiem);
return Database.GetReader("select DuocGuiThem from LOAITIETKIEM where MaLoaiTietKiem=@ID and DuocGuiThem=1", param);
}
//Get Current PhieuGuiTien
public SqlDataReader GetIDGT()
{
SqlDataReader dt = Database.GetReader("select IDENT_CURRENT( 'GUITIEN' ) as ID");
return dt;
}
//ADD PHIEUGUITIEN
public int AddPGT(SqlParameter[] param)
{
int result = Database.ExNonQuery("exec spAddGTK @MaGuiTien, @MSTietKiem, @TenKH, @SoTienGui, @NgayGui", param);
return result;
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/DataLayer/PhieuGuiTienData.cs | C# | oos | 1,812 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using QuanLiSoTietKiem.ValueObject;
using System.Windows.Forms;
namespace QuanLiSoTietKiem.DataLayer
{
class LoginData
{
//Check User, Password
public int CheckLogin(string _User, string _Pass)
{
UserInfo User = new UserInfo();
User = GetUser(_User);
if (User==null)
{
return 0;
}
else {
if (_Pass == User.Pass)
{
return 1;
}
else
{
return 0;
}
}
}
//Get UserInfo
public UserInfo GetUser(string _User)
{
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@User", _User);
SqlDataReader User = Database.GetReader("select * from _User where UserName=@User", param);
if (User.HasRows)
{
UserInfo _UserInfo = new UserInfo();
User.Read();
_UserInfo.User = User["UserName"].ToString();
_UserInfo.Pass = User[2].ToString();
_UserInfo.GroupID = Int32.Parse(User["GroupID"].ToString());
User.Close();
return _UserInfo;
}
else
{
User.Close();
return null;
}
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/DataLayer/LoginData.cs | C# | oos | 1,633 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
using System.Windows.Forms;
using QuanLiSoTietKiem.DataLayer;
using QuanLiSoTietKiem.ValueObject;
namespace QuanLiSoTietKiem.DataLayer
{
class SoTietKiemData
{
//Get LoaiTietKiem
public DataTable GetLoaiTietKiem()
{
DataTable result = new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select * from LOAITIETKIEM");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error SoTietKiemData::GetLoaiTietKiem() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Get Current MaSoTietKiem
public SqlDataReader GetIDSTK()
{
SqlDataReader dt = Database.GetReader("select IDENT_CURRENT( 'SOTIETKIEM' ) as ID");
return dt;
}
//Create New SOTIETKIEM
public int CreateSTK(SoTietKiemInfo _STK)
{
int result = 0;
SqlParameter[] param = new SqlParameter[9];
param[0] = new SqlParameter("@MaSTK", _STK.MaSTK);
param[1] = new SqlParameter("@TenKH", _STK.TenKH);
param[2] = new SqlParameter("@SoCMND", _STK.SoCMND);
param[3] = new SqlParameter("@DiaChi", _STK.DiaChi);
param[4] = new SqlParameter("@NgayMoSo", _STK.NgayMoSo);
param[5] = new SqlParameter("@SoTienGui", _STK.SoTienGuiBD.ToString("G", System.Globalization.CultureInfo.InvariantCulture));
param[6] = new SqlParameter("@LaiSuat", _STK.LaiSuat.ToString("G", System.Globalization.CultureInfo.InvariantCulture));
param[7] = new SqlParameter("@MaLoaiTietKiem", _STK.MaLoaiTietKiem);
param[8] = new SqlParameter("@DongSo", _STK.DongSo);
result = Database.ExNonQuery("INSERT INTO SOTIETKIEM(MSTietKiem,TenKH, SoCMND, DiaChi, NgayMoSo, SoTienGuiBD, SoDu, LaiSuat, LoaiTietKiem, DongSo) values (@MaSTK, @TenKH, @SoCMND, @DiaChi, @NgayMoSo, @SoTienGui, @SoTienGui, @LaiSuat, @MaLoaiTietKiem, @DongSo)", param);
return result;
}
//Update SOTIETKIEM
public int UpdateSTK(SoTietKiemInfo _STK)
{
int result = 0;
SqlParameter[] param = new SqlParameter[5];
param[0] = new SqlParameter("@TenKH", _STK.TenKH);
param[1] = new SqlParameter("@SoCMND", _STK.SoCMND);
param[2] = new SqlParameter("@DiaChi", _STK.DiaChi);
param[3] = new SqlParameter("@DongSo", _STK.DongSo);
param[4] = new SqlParameter("@MaSoTietKiem", _STK.MaSTK);
result = Database.ExNonQuery("UPDATE SOTIETKIEM SET TenKH = @TenKH, SoCMND = @SoCMND, DiaChi = @DiaChi,DongSo = @DongSo where MSTietKiem=@MaSoTietKiem", param);
return result;
}
//Delete SOTIETKIEM
public int DelSTK(string MSSTK)
{
int result = 0;
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@ID", MSSTK);
result = Database.ExNonQuery("DELETE SOTIETKIEM where MSTietKiem=@ID", param);
return result;
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/DataLayer/SoTietKiemData.cs | C# | oos | 3,609 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
using System.Windows.Forms;
namespace QuanLiSoTietKiem.DataLayer
{
class MainData
{
//Get List SOTIETKIEM
public DataTable GetSTK()
{
DataTable result = new DataTable();
SqlDataReader dt = null;
try
{
dt = Database.GetReader("select MSTietKiem, TenKH,SoCMND, DiaChi,NgayMoSo,SoTienGuiBD, SoDu,SOTIETKIEM.LaiSuat,LOAITIETKIEM.TenLoaiTietKiem, DongSo from SOTIETKIEM INNER JOIN LOAITIETKIEM ON(SOTIETKIEM.LoaiTietKiem=LOAITIETKIEM.MaLoaiTietKiem)");
result.Load(dt);
return result;
}
catch (Exception ex)
{
MessageBox.Show("Error MainData::GetSTK() " + ex);
return result;
}
finally
{
if (dt != null)
{
dt.Close();
}
}
}
//Delete SOTIETKIEM
public int DelSTK(string MSSTK)
{
int result=0;
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@ID", MSSTK);
result = Database.ExNonQuery("DELETE SOTIETKIEM where MSTietKiem=@ID", param);
return result;
}
}
}
| 0lll-qlstk | trunk/QuanLiSoTietKiem/DataLayer/MainData.cs | C# | oos | 1,485 |