summaryrefslogtreecommitdiff
authorGong Ke <ke.gong@amlogic.com>2017-12-14 04:58:41 (GMT)
committer Gong Ke <ke.gong@amlogic.com>2017-12-14 04:58:41 (GMT)
commit92f516399b9a0ce0d4b23e2fd6378571e96670f2 (patch)
treec6fa37f423f88e54333f89ea2a5ea2edeff66ed7
parentb90fd8d2ff4fa437b1ccbceaf4b9de8aef65abae (diff)
downloaddvb-92f516399b9a0ce0d4b23e2fd6378571e96670f2.zip
dvb-92f516399b9a0ce0d4b23e2fd6378571e96670f2.tar.gz
dvb-92f516399b9a0ce0d4b23e2fd6378571e96670f2.tar.bz2
dvb: add psip enac3 des parse [1/1]
PD# 156832 1. add enac3 des parse, tag is cc. Change-Id: I4f51ce55d32258064ef07e167ba55c6195fdaab4
Diffstat
-rw-r--r--am_adp/Android.mk2
-rw-r--r--am_adp/am_open_lib/libdvbsi/descriptors/Makefile2
-rw-r--r--am_adp/am_open_lib/libdvbsi/descriptors/dr_7a.c2
-rw-r--r--am_adp/am_open_lib/libdvbsi/descriptors/dr_cc.c225
-rw-r--r--include/am_adp/libdvbsi/descriptors/dr.h1
-rw-r--r--include/am_adp/libdvbsi/descriptors/dr_cc.h101
-rw-r--r--include/am_mw/am_si.h1
-rwxr-xr-xlib32/libam_mw.so3926
-rwxr-xr-xlib32/libam_ver.so6
-rwxr-xr-xlib64/libam_mw.so2231
-rwxr-xr-xlib64/libam_ver.so4
-rw-r--r--libam_mw.so3528
-rwxr-xr-xlibam_ver.so4
13 files changed, 5167 insertions, 4866 deletions
diff --git a/am_adp/Android.mk b/am_adp/Android.mk
index 2bd3066..e2caeca 100644
--- a/am_adp/Android.mk
+++ b/am_adp/Android.mk
@@ -94,6 +94,7 @@ LOCAL_SRC_FILES := am_dmx/am_dmx.c am_dmx/linux_dvb/linux_dvb.c\
am_open_lib/libdvbsi/descriptors/dr_7a.c\
am_open_lib/libdvbsi/descriptors/dr_7f.c\
am_open_lib/libdvbsi/descriptors/dr_a1.c\
+ am_open_lib/libdvbsi/descriptors/dr_cc.c\
am_open_lib/libdvbsi/psi.c\
am_open_lib/libdvbsi/dvbpsi.c\
am_open_lib/libdvbsi/descriptor.c\
@@ -233,6 +234,7 @@ LOCAL_SRC_FILES := am_dmx/am_dmx.c am_dmx/linux_dvb/linux_dvb.c\
am_open_lib/libdvbsi/descriptors/dr_7a.c\
am_open_lib/libdvbsi/descriptors/dr_7f.c\
am_open_lib/libdvbsi/descriptors/dr_a1.c\
+ am_open_lib/libdvbsi/descriptors/dr_cc.c\
am_open_lib/libdvbsi/psi.c\
am_open_lib/libdvbsi/dvbpsi.c\
am_open_lib/libdvbsi/descriptor.c\
diff --git a/am_adp/am_open_lib/libdvbsi/descriptors/Makefile b/am_adp/am_open_lib/libdvbsi/descriptors/Makefile
index 525fce0..def81ef 100644
--- a/am_adp/am_open_lib/libdvbsi/descriptors/Makefile
+++ b/am_adp/am_open_lib/libdvbsi/descriptors/Makefile
@@ -6,6 +6,6 @@ CFLAGS+=-I$(ROOTDIR)/include/am_mw/libdvbsi/descriptors -I$(ROOTDIR)/include/am_
O_TARGET=descriptors
descriptors_SRCS=dr_02.c dr_04.c dr_06.c dr_08.c dr_0a.c dr_0c.c dr_0e.c dr_42.c dr_45.c dr_48.c dr_4e.c dr_55.c dr_58.c dr_5a.c\
dr_03.c dr_05.c dr_07.c dr_09.c dr_0b.c dr_0d.c dr_0f.c dr_43.c dr_47.c dr_4d.c dr_52.c dr_56.c dr_59.c dr_69.c dr_40.c\
- dr_41.c dr_44.c dr_4a.c dr_54.c dr_5d.c dr_83.c dr_87.c dr_88.c dr_86.c
+ dr_41.c dr_44.c dr_4a.c dr_54.c dr_5d.c dr_83.c dr_87.c dr_88.c dr_86.c dr_cc.c
include $(BASE)/rule/rule.mk
diff --git a/am_adp/am_open_lib/libdvbsi/descriptors/dr_7a.c b/am_adp/am_open_lib/libdvbsi/descriptors/dr_7a.c
index 70bcee9..0d7e470 100644
--- a/am_adp/am_open_lib/libdvbsi/descriptors/dr_7a.c
+++ b/am_adp/am_open_lib/libdvbsi/descriptors/dr_7a.c
@@ -70,7 +70,7 @@ dvbpsi_ENAC3_dr_t * dvbpsi_DecodeENAC3Dr(dvbpsi_descriptor_t * p_descriptor)
AM_DEBUG(1, "dr_7a decoder out of memory");
return NULL;
}
-
+ memset(p_decoded, 0, sizeof(dvbpsi_ENAC3_dr_t));
/* Decode data and check the length */
p_decoded->i_component_type_flag = (p_descriptor->p_data[0] & AM_ENAC3_CMP_FLAG) ? 1 : 0;
p_decoded->i_bsid_flag = (p_descriptor->p_data[0] & AM_ENAC3_BSID_FLAG) ? 1 : 0;
diff --git a/am_adp/am_open_lib/libdvbsi/descriptors/dr_cc.c b/am_adp/am_open_lib/libdvbsi/descriptors/dr_cc.c
new file mode 100644
index 0000000..266ce64
--- a/dev/null
+++ b/am_adp/am_open_lib/libdvbsi/descriptors/dr_cc.c
@@ -0,0 +1,225 @@
+#ifdef _FORTIFY_SOURCE
+#undef _FORTIFY_SOURCE
+#endif
+/***************************************************************************
+ * Copyright (C) 2017 Amlogic, Inc. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ * more details.
+ *
+ * Description:
+ */
+/**\file dr_cc.c
+ * \brief AMLogic descriptor cc parse
+ *
+ * \author chen hua ling <hualing.chen@amlogic.com>
+ * \date 2016-06-22: create the document
+ ***************************************************************************/
+
+
+#include "config.h"
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#if defined(HAVE_INTTYPES_H)
+#include <inttypes.h>
+#elif defined(HAVE_STDINT_H)
+#include <stdint.h>
+#endif
+#include <am_debug.h>
+#include "../dvbpsi.h"
+#include "../dvbpsi_private.h"
+#include "../descriptor.h"
+
+#include "dr_cc.h"
+#define DEBUG_DRCC 0
+/*****************************************************************************
+ * dvbpsi_DecodePSIPENAC3Dr
+ *****************************************************************************/
+dvbpsi_PSIPENAC3_dr_t * dvbpsi_DecodePSIPENAC3Dr(dvbpsi_descriptor_t * p_descriptor)
+{
+ dvbpsi_PSIPENAC3_dr_t * p_decoded;
+ AM_DEBUG(1, "dr_cc dvbpsi_DecodePSIPENAC3Dr ");
+ /* Check the tag */
+ if (p_descriptor->i_tag != 0xCC)
+ {
+ DVBPSI_ERROR_ARG("dr_CC decoder", "bad tag (0x%x)", p_descriptor->i_tag);
+ AM_DEBUG(1, "dr_CC decoder bad tag (0x%x)",p_descriptor->i_tag);
+ return NULL;
+ }
+
+ /* Don't decode twice */
+ if (p_descriptor->p_decoded)
+ return p_descriptor->p_decoded;
+
+ /* Allocate memory */
+ p_decoded =
+ (dvbpsi_PSIPENAC3_dr_t *)malloc(sizeof(dvbpsi_PSIPENAC3_dr_t));
+ if (!p_decoded)
+ {
+ DVBPSI_ERROR("dr_cc decoder", "out of memory");
+ AM_DEBUG(1, "dr_cc decoder out of memory");
+ return NULL;
+ }
+ memset(p_decoded, 0, sizeof(dvbpsi_PSIPENAC3_dr_t));
+ /* Decode data and check the length */
+ if (DEBUG_DRCC) {
+ int i = 0;
+ AM_DEBUG(1, "dr_cc vaule: ");
+ for (i = 0; i < p_descriptor->i_length; i++) {
+ AM_DEBUG(1, " %2x", p_descriptor->p_data[i]);
+ }
+ AM_DEBUG(1, "dr_cc vaule end");
+ }
+ if (p_descriptor->i_length < 3)
+ {
+ DVBPSI_ERROR_ARG("dr_cc decoder", "bad length (%d)",
+ p_descriptor->i_length);
+ AM_DEBUG(1, "dr_cc decoder bad length (%d)",
+ p_descriptor->i_length);
+ free(p_decoded);
+ return NULL;
+ }
+ //p_decoded->i_component_type_flag = (p_descriptor->p_data[0] & AM_ENAC3_CMP_FLAG) ? 1 : 0;
+ p_decoded->i_bsid_flag = (p_descriptor->p_data[0] & AM_ENAC3_BSID_FLAG) ? 1 : 0;
+ p_decoded->i_mainid_flag = (p_descriptor->p_data[0] & AM_ENAC3_MAINID_FLAG) ? 1 : 0;
+ p_decoded->i_asvc_flag = (p_descriptor->p_data[0] & AM_ENAC3_ASVC_FLAG) ? 1 : 0;
+ p_decoded->i_mix_info_exist = (p_descriptor->p_data[0] & AM_ENAC3_MIX_EXIST) ? 1 : 0;
+ p_decoded->i_sub_stream1_flag = (p_descriptor->p_data[0] & AM_ENAC3_SUB1_FLAG) ? 1 : 0;
+ p_decoded->i_sub_stream2_flag = (p_descriptor->p_data[0] & AM_ENAC3_SUB2_FLAG) ? 1 : 0;
+ p_decoded->i_sub_stream3_flag = (p_descriptor->p_data[0] & AM_ENAC3_SUB3_FLAG) ? 1 : 0;
+
+ /*0100 0000 1bit*/
+ p_decoded->i_full_service_flag = (p_descriptor->p_data[1] & 0x40) ? 1 : 0;
+ /*0011 1000 3bit*/
+ p_decoded->i_audio_service_type = (p_descriptor->p_data[1] & 0x38) >> 3;
+ /*0000 0111 3bit*/
+ p_decoded->i_number_channels = p_descriptor->p_data[1] & 0x07;
+ /*1000 0000 1bit*/
+ p_decoded->i_lang_flag_1 = p_descriptor->p_data[2] & 0x80 ? 1 : 0;
+ /*0100 0000 1bit*/
+ p_decoded->i_lang_flag_2 = p_descriptor->p_data[2] & 0x40 ? 1 : 0;
+ AM_DEBUG(1, "dr_cc decoder length (%d)p_decoded->i_mainid_flag(%d)asvc[%d]sub[%d]sub[%d]sub[%d]lang[%d]lang[%d]",
+ p_descriptor->i_length, p_decoded->i_mainid_flag,
+ p_decoded->i_asvc_flag, p_decoded->i_sub_stream1_flag,
+ p_decoded->i_sub_stream2_flag, p_decoded->i_sub_stream3_flag,
+ p_decoded->i_lang_flag_1, p_decoded->i_lang_flag_2
+ );
+ int limit_len = p_decoded->i_mainid_flag
+ + p_decoded->i_asvc_flag
+ + p_decoded->i_sub_stream1_flag * 4
+ + p_decoded->i_sub_stream2_flag * 4
+ + p_decoded->i_sub_stream3_flag * 4
+ + p_decoded->i_lang_flag_1 * 3
+ + p_decoded->i_lang_flag_2 * 3;
+
+ if (p_descriptor->i_length < limit_len + 3)
+ {
+ DVBPSI_ERROR_ARG("dr_cc decoder", "bad length (%d)",
+ p_descriptor->i_length);
+ AM_DEBUG(1, "dr_cc decoder bad length (%d)limit_len(%d)",
+ p_descriptor->i_length, limit_len);
+ free(p_decoded);
+ return NULL;
+ }
+
+ int i_pos = 2;
+ /*0001 1111 5bit*/
+ if (p_decoded->i_bsid_flag) {
+ p_decoded->i_bsid = p_descriptor->p_data[i_pos] & 0x1f;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_bsid (%d)", p_decoded->i_bsid);
+ }
+
+ if (p_decoded->i_mainid_flag)
+ {
+ i_pos = i_pos +1;
+ /*0001 1000 2bit*/
+ p_decoded->i_priority = p_descriptor->p_data[i_pos] & 0x18;
+ /*0000 0111 3bit*/
+ p_decoded->i_mainid = p_descriptor->p_data[i_pos] & 0x07;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_mainid (%d)", p_decoded->i_mainid);
+ }
+ if (p_decoded->i_asvc_flag)
+ {
+ i_pos = i_pos +1;
+ p_decoded->i_asvc = p_descriptor->p_data[i_pos];
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_asvc (%d)", p_decoded->i_asvc);
+ }
+ if (p_decoded->i_sub_stream1_flag)
+ {
+ i_pos = i_pos +1;
+ p_decoded->i_sub_stream1 = p_descriptor->p_data[i_pos];
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_sub_stream1 (%d)", p_decoded->i_sub_stream1);
+ }
+ if (p_decoded->i_sub_stream2_flag)
+ {
+ i_pos = i_pos +1;
+ p_decoded->i_sub_stream2 = p_descriptor->p_data[i_pos];
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_sub_stream2 (%d)", p_decoded->i_sub_stream2);
+ }
+ if (p_decoded->i_sub_stream3_flag)
+ {
+ i_pos = i_pos +1;
+ p_decoded->i_sub_stream3 = p_descriptor->p_data[i_pos];
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_sub_stream3 (%d)", p_decoded->i_sub_stream3);
+ }
+
+ if (p_decoded->i_lang_flag_1)
+ {
+ i_pos = i_pos +1;
+ memcpy(p_decoded->i_lang1, &p_descriptor->p_data[i_pos], 3);
+ i_pos = i_pos +2;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_lang1 (%s)", p_decoded->i_lang1);
+ }
+ if (p_decoded->i_lang_flag_2)
+ {
+ i_pos = i_pos +1;
+ memcpy(p_decoded->i_lang2, &p_descriptor->p_data[i_pos], 3);
+ i_pos = i_pos +2;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_lang2 (%s)", p_decoded->i_lang2);
+ }
+
+ if (p_decoded->i_sub_stream1_flag)
+ {
+ i_pos = i_pos +1;
+ memcpy(p_decoded->i_substream1_lang, &p_descriptor->p_data[i_pos], 3);
+ i_pos = i_pos +2;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_substream1_lang (%s)", p_decoded->i_substream1_lang);
+ }
+ if (p_decoded->i_sub_stream2_flag)
+ {
+ i_pos = i_pos +1;
+ memcpy(p_decoded->i_substream2_lang, &p_descriptor->p_data[i_pos], 3);
+ i_pos = i_pos +2;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_substream2_lang (%s)", p_decoded->i_substream2_lang);
+ }
+ if (p_decoded->i_sub_stream3_flag)
+ {
+ i_pos = i_pos +1;
+ memcpy(p_decoded->i_substream3_lang, &p_descriptor->p_data[i_pos], 3);
+ i_pos = i_pos +2;
+ if (DEBUG_DRCC)
+ AM_DEBUG(1, "dr_cc decoder i_substream3_lang (%s)", p_decoded->i_substream3_lang);
+ }
+ p_descriptor->p_decoded = (void *)p_decoded;
+ return p_decoded;
+} \ No newline at end of file
diff --git a/include/am_adp/libdvbsi/descriptors/dr.h b/include/am_adp/libdvbsi/descriptors/dr.h
index 951c525..6ef99e9 100644
--- a/include/am_adp/libdvbsi/descriptors/dr.h
+++ b/include/am_adp/libdvbsi/descriptors/dr.h
@@ -75,6 +75,7 @@
#include "dr_7a.h"
#include "dr_7f.h"
#include "dr_a1.h"
+#include "dr_cc.h"
#else
#error "Multiple inclusions of dr.h"
#endif
diff --git a/include/am_adp/libdvbsi/descriptors/dr_cc.h b/include/am_adp/libdvbsi/descriptors/dr_cc.h
new file mode 100644
index 0000000..22e4d9c
--- a/dev/null
+++ b/include/am_adp/libdvbsi/descriptors/dr_cc.h
@@ -0,0 +1,101 @@
+/*****************************************************************************
+ * dr_6a.h
+ * (c)2016 amlogic
+ *
+ *****************************************************************************/
+
+/*!
+ * \file <dr_cc.h>
+ * \author chen hua ling <hualing.chen@amlogic.com>
+ * \brief Application interface for the psip Enhanced AC3
+ * descriptor decoder and generator.
+ *
+ * Application interface for the MPEG 2 TS psip Enhanced Ac3 descriptor decoder and generator
+ * This descriptor's definition can be found in atsc a52 page 262
+ */
+
+#ifndef _DVBPSI_DR_CC_H_
+#define _DVBPSI_DR_CC_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+
+/*****************************************************************************
+ * dvbpsi_PSIPENAC3_dr_t
+ *****************************************************************************/
+/*!
+ * \struct dvbpsi_PSIPENAC3_dr_t
+ * \brief PSIP EN AC3 descriptor structure.
+ *
+ * This structure is used to store a decoded PSIP EN AC3 descriptor.
+ * (atsc a52 page 262).
+ */
+/*!
+ * \typedef struct dvbpsi_PSIPENAC3_dr_s dvbpsi_PSIPENAC3_dr_t
+ * \brief dvbpsi_PSIPENAC3_dr_t type definition.
+ */
+typedef struct dvbpsi_PSIPENAC3_dr_s
+{
+ uint8_t i_component_type_flag; /*!< component type flag */
+ uint8_t i_bsid_flag; /*!< bsid flag */
+ uint8_t i_mainid_flag; /*!< mainid flag */
+ uint8_t i_asvc_flag; /*!< asvc flag */
+ uint8_t i_mix_info_exist; /*!< mix info exist */
+ uint8_t i_sub_stream1_flag; /*!< sub stream1 flag */
+ uint8_t i_sub_stream2_flag; /*!< sub stream2 flag */
+ uint8_t i_sub_stream3_flag; /*!< sub stream3 flag */
+
+ uint8_t i_component_type; /*!< component type */
+ uint8_t i_priority;
+ uint8_t i_bsid; /*!< bsid */
+ uint8_t i_mainid; /*!< mainid */
+ uint8_t i_asvc; /*!< asvc */
+ uint8_t i_sub_stream1; /*!< sub stream 1 */
+ uint8_t i_sub_stream2; /*!< sub stream 2 */
+ uint8_t i_sub_stream3; /*!< sub stream 3 */
+
+ uint8_t i_full_service_flag; /*!< full service flag*/
+ uint8_t i_audio_service_type; /*!< audio service type*/
+ uint8_t i_number_channels; /*!< number of channels*/
+ uint8_t i_lang_flag_1; /*!< lang flag 1 flag*/
+ uint8_t i_lang_flag_2; /*!< lang flag 2 flag*/
+
+ uint8_t i_lang1[3]; /*!< lang 1*/
+ uint8_t i_lang2[3]; /*!< lang 2*/
+ uint8_t i_substream1_lang[3]; /*!< sub stream lang 1*/
+ uint8_t i_substream2_lang[3]; /*!< sub stream lang 2*/
+ uint8_t i_substream3_lang[3]; /*!< sub stream lang 3*/
+} dvbpsi_PSIPENAC3_dr_t;
+
+#define AM_ENAC3_CMP_FLAG (0x80) /*1000 0000*/
+#define AM_ENAC3_BSID_FLAG (0x40) /*0100 0000*/
+#define AM_ENAC3_MAINID_FLAG (0x20) /*0010 0000*/
+#define AM_ENAC3_ASVC_FLAG (0x10) /*0001 0000*/
+#define AM_ENAC3_MIX_EXIST (0x08) /*0000 1000 */
+#define AM_ENAC3_SUB1_FLAG (0x04) /*0000 0100 */
+#define AM_ENAC3_SUB2_FLAG (0x02) /*0000 0010 */
+#define AM_ENAC3_SUB3_FLAG (0x01) /*0000 0001 */
+/*****************************************************************************
+ * dvbpsi_DecodePSIPENAC3Dr
+ *****************************************************************************/
+/*!
+ * \fn dvbpsi_PSIPENAC3_dr_t * dvbpsi_DecodePSIPENAC3Dr(
+ dvbpsi_descriptor_t * p_descriptor)
+ * \brief PSIP EN ac3 descriptor decoder.
+ * \param p_descriptor pointer to the descriptor structure
+ * \return a pointer to a new "PSIP EN ac3 audio" descriptor structure which
+ * contains the decoded data.
+ */
+dvbpsi_PSIPENAC3_dr_t* dvbpsi_DecodePSIPENAC3Dr(dvbpsi_descriptor_t * p_descriptor);
+
+
+#ifdef __cplusplus
+};
+#endif
+
+#else
+#error "Multiple inclusions of dr_cc.h"
+#endif
+
diff --git a/include/am_mw/am_si.h b/include/am_mw/am_si.h
index 3456ad4..9c523b1 100644
--- a/include/am_mw/am_si.h
+++ b/include/am_mw/am_si.h
@@ -150,6 +150,7 @@ extern "C"
#define AM_SI_DESCR_PDC (0x69)
#define AM_SI_DESCR_AC3 (0x6A)
#define AM_SI_DESCR_ENHANCED_AC3 (0x7A)
+#define AM_SI_DESCR_PSIPENHANCED_AC3 (0xCC)
#define AM_SI_DESCR_DTS (0x7B)
#define AM_SI_DESCR_AAC (0x7C)
#define AM_SI_DESCR_EXTENSION (0x7f)
diff --git a/lib32/libam_mw.so b/lib32/libam_mw.so
index 9632fa5..758ddd9 100755
--- a/lib32/libam_mw.so
+++ b/lib32/libam_mw.so
@@ -1,6 +1,5 @@
-ELF
-
-
+ELF
+
@@ -14,175 +13,173 @@
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+

@4AY
o %TE

-
-
+
+
^<Pi].p6x PЕ
f>
-'cP$tƵTz1ZOq$Xu?叏z?3x[|kEa#?7>ed뙢溞%庑fc|} ζ璃lk2zjd?[FtG
+'cP$tƵTz1ZOq$Xu?叏z?3x[|kEa#?7>ed뙢溞%庑fc|} ζ璃lk2zjd?[FtG
sM8D1w㊘<XyE27
lhl)<(w2
4ra>3LdC
-^`ŽjeUwBzwqζtp1C#,nh%2lYI[';|;#_?SWeRkN,y!N(?"1XMFIU+BzJx`"Ԅnu!@VȻع!rxբ Kƨyan v|э2!'*d[q&hm
-
-
-
-03/K
-` X
-
-
+^`ŽjeUwBzwqζtp1C#,nh%2lYI[';|;#_?SWeRkN,y!N(?"1XMFIU+BzJx`"Ԅnu!@VȻع!rxբ Kƨyan v|э2!'*d[q&hm
+
+
+03/K
+` X
+
+
a
-@
-
- 0
-
- 0
-l 0`
-( 0
+@
+
+ 0
+
+ 0
+l 0`
+( 0
%
f
d
-
-
+
+

$

-p
-4,0
-@ 7
-!
+p
+4,0
+@ 7
+!

-
-
- I
-!x
-!
-
-
-
-
+
+0 A
+ I
+!x
+!
+
+
`P
-
-
-@ 04
- 
+
+
+@ 04
+ 
-
-
-t 0h
-
-L
-
-T<
- 0t
-T 3H
-|
+
+
+t 0h
+
+L
+
+P<
+ 0t
+T 3H
+|
P
-0@
-
-D
-
-
-
-
-`
+0@
+
+D
+
+
+
+
+`
`P
-
-)
- 0
-
-
-h 0\
-
+
+%
+ 0
+
+
+h 0\
+
+


- 
-
-
-X!P
-
-
-
-
-2
-p @,
-
-
-
-
-
-! !, A0TT
-
-
-
+ 
+
+
+X!P
+
+
+
+
+.
+p @,
+
+
+
+
+
+
+! !, A0TT
+
+
+
`
2 B,"'`o"0(r
-@`@
-
+@`@
+
`J2KBl"'`oT"phr 
-@`@
-
+@`@
+
=P1及
`r
-@@@ J
-
+@@@ F
+
`r
-@@@ 
+@@@ 
-
-# C, S0ST
-
-
-
-b2bZbbbbb"cJcrcc
-
- D,CA
-
-
-
-
+
+# C, S0ST
+
+
+
+b2bZbbbbb"cJcrcc
+
+
+ D,CA
+
+
+
+

-.6 @
+.6 @
d!
-
+
d!1
-
+
h!1
-
+
h!1
-
+
h!1
-
+
h!1
-
+
 
.6 @
-
+


-
+
-@<A
+@<A
U^
-^_@
+^_<
,
l
@@ -206,471 +203,472 @@ l

d
-|
-4Q
-
+|
+4Q
+
8@q
-P@d
-(0
-
-4q
-
-P@( @0
-(0
+P@`
+(0
+
+4q
+
+P@( @0
+(0
h
-
-4Q
-
-$
-8(P
-
-4Q
-
-# 
-x(P
-
-4Q
-
-
-(P
-
-4Q
-
+
+4Q
+
+$
+8(P
+
+4Q
+
+ 
+x(P
+
+4Q
+
+
+(P
+
+4Q
+
8@q
-P@P @
+P@L @
(0
- 8@q
-
-0
-w8@x
-r
-l
-f
-`
-Z
-T
-N
-H
-B
-<
-6
-0
-*
-$
-
-
-b
-b
-Lp
-
+ 8@q
+
+0
+s8@x
+n
+h
+b
+\
+V
+P
+J
+D
+>
+8
+2
+,
+&
+
+
+
+b
+b
+
L `
-X
+X


-
+
-
-
+
+
-X
-
-X
-
-X
-T
-T
-
-0 
-
-
-0 
-@
+X
+
+X
+
+X
+T
+T
+
+0 
+
+
+
+0 
+<
-X
-
+X
+
`J`
-@
-0/S
-H @
-`
- @'
-8 ( 
-
-H @
-`
- @
+@
+0/S
+H @
+`
+ @#
+8 ( 
+
+H @
+`
+ @
x ( 
-0.S
-H @
-`
- @} 
- ( 
-H1V.S
-H @
-`
- P
-x ( 
-0 / S
-H @
-`
- @
- ( 
-1F$/$S
-H @
-`
- PY
-8 ( 
-1f8/8S
-H @
-`
- P
- ( 
-1v- S
-H @
-`
- P
- ( 
-2/S
-H @
-`
- P3
-8 ( 
-H2,.,S
-H @
-`
- P
-x ( 
-2.S
-H @
-`
- Pm
- ( 
-2/S
-H @
-`
- P
- ( 
-3D.<S
-H @
-`
- P
-8 ( 
-H3, S
-H @
-`
- P;
-x ( 
-34+, S
-H @
-`
- P
- ( 
-4
-H @
-`
- Pn
-8 ( 
-
-H @
-`
- P
+0.S
+H @
+`
+ @y 
+ ( 
+H1V.S
+H @
+`
+ P
+x ( 
+0 / S
+H @
+`
+ @
+ ( 
+1F$/$S
+H @
+`
+ PU
+8 ( 
+1f8/8S
+H @
+`
+ P
+ ( 
+1v- S
+H @
+`
+ P
+ ( 
+2/S
+H @
+`
+ P/
+8 ( 
+H2,.,S
+H @
+`
+ P
+x ( 
+2.S
+H @
+`
+ Pi
+ ( 
+2/S
+H @
+`
+ P
+ ( 
+3D.<S
+H @
+`
+ P
+8 ( 
+H3, S
+H @
+`
+ P7
+x ( 
+34+, S
+H @
+`
+ P
+ ( 
+4
+H @
+`
+ Pj
+8 ( 
+
+H @
+`
+ P
 ( 
-
-`
-
-p
+
+`
+
+p
-
+
-
-
-
- 
+
+
+
+ 
-
+

 P
@
-H `
-`
-
-x ( 
-H `
-`
-i
-8 ( 
+H `
+`
+
+x ( 
+H `
+`
+e
+8 ( 
-
+
- 
+ 
-
-
-"0
+
+
+"0
8
-
-
-HP
+
+
+HP

E P
-
+
P
-`
-XpJ"
-HP
-`
-e
+`
+XpJ"
+HP
+`
+a
x ( 
-HP
-`
-1
-x ( 
-H @
-
+HP
+`
+-
+x ( 
+H @
+


-
-8hd
-T@XPZop
-Z_
+
+8hd
+T@XPZop
+Z_
t

-Y
-
-H
+Y
+
+H
-P
-`
-
-
-Hp
+P
+`
+
+
+Hp
+

-`
+`
`
-H@
-
-T
-P PPZO
-
- ( 
-
-(&(
-`
-0
-l#d
-8#0
+H@
+
+T
+
+ ( 
+
+(&(
+`
+0
+l#d
+8#0

`
-x( x@@0h
- 
-D
-
-Hp
+x( x@@0h
+ 
+D
+`
+Hp

-`
-H`
+`
+H`

-`
-H`
+`
+H`

-X T0
+X T0
#
-4XP
-
-
-
+4XP
+
+
+

-
-H`
-H`
-
-H`
-H`
-H`
-H`
+
+H`
+H`
+
+H`
+H`
+H`
+
+H`

-`
-4!4
-HP
-`
-
-x ( 
-H P
-T
-
+`
+4!4
+HP
+`
+
+x ( 
+H P
+T
+

HP
- r0
-0up/
-H P
-`
-
+ r0
+0up/
+H P
+`
+
 ( 
-H P
-`
-
- ( 
+H P
+`
+
+ ( 
`
-
+
"
A  x
H4
-
+

!
<Ax 
H$
-
-
-PPu
-`
-
+
+
+PPu
+`
+

-`
-
-#
-
-
-
-
-
-Hp
+`
+
+#
+
+
+
+
+
+Hp

6/
-`
+`
T
-
-xt 
+
+xt 
t0x \X
P\
-
-1
-Hp
-`
+
+1
+Hp
+`
ax
Sq@
-(@
+(@

-
-
-x(P
-
-`
+
+
+x(P
+
+`
|p
 
-
- 0
-
-
-T 
-
-H 
+
+ 0
+
+
+T 
+
+H 

-
-
-
-p&h
-,&$
+
+
+
+p&h
+,&$
p
@㠐
-
+
h
h

pW
-
-
-
+
+
+
 
-
-`
+
+`
F 
-#
+#
-
+
@
-
-
-
-
-!
-
-@p`tP
-
-
-@p `P
-
-
-@p`P
-`
+
+
+
+
+!
+
+@p`tP
+
+
+@p `P
+
+
+@p`P
+`
-
+
`
-
-
+
+
-0<, 
-
-0!(
-  
-
+08, 
+
+0!(
+  
+
@
-\
+\
x
@
-
+
`@
-
+
`D@


-pp
-AY@
-
+pp
+AY@
+
-
+

-
+

-
+
-
-
-d
-
-
-
-h 
-0
-! 
-0 
-
+
+
+d
+
+
+
+h 
+0
+! 
+0 
+
P@
-`
+`
x
-
-
+
+
p
-
-
+
+
@@ -691,64 +689,63 @@ t$
0@
-T
-
-'
+T
+
+'
@
&P@$' 2̠@
-`(@
-
+`(@
+
-
-
+
+
%0
-
-4%0(
+
+4%0(


-
+


-
+

-
+
-
-
-
-
-
+
+
+
+
+
8
-
+
-
+

-
+
-T
+T
-
-
-/
-
+
+
+/

P` 1̠
P(`
-
+
/0
-
+
/0

-
+
/0
@
- ~
+ z
/0
- j
+ f
/0


@@ -756,34 +753,34 @@ T

- 3
+ /
/0
- 
+ 
/0
-
+ 
/0
-
-/0
- ߿
+
+/0
+ ۿ
/0
- ο
+ ʿ
/0
- ὿
+ ṿ
/0
- ᬿ
+ ᨿ
/0
- ᚿ
-|/0x
+ ᖿ
+|/0x


-
+
8
-
-
+
+


@@ -846,27 +843,27 @@ T


-
+

-
+

-,-,-,
-
+,-,-,
+
-
-
+
+

-
-,-,-,
+
+,-,-,
8
-
+
-
+

P
p(@`
@@ -876,76 +873,72 @@ P
C0O
C00 p0000
`
- 0 
- 
+ 0 
+ 
-
- 0
+
+ 0
-
+
-
-
-<
- 
+
+8
+ 
< 
-`@
-! 0
-@@9
-׸ !
-`
- P @
-
-$
-$
-8
-
+`@
+! 0
+@@9
+Ӹ !
+`
+ P @
+$
+$
+
+8
`
@0   
p @D$| p$x p$tp@D$|p$xp$tp@D$|p$xp$tp@D$|p$xp$tp@
-
+

-0 ,
-@
-&
-xp0
+0 ,
+@
+&
+xp0
8
-L
-L
-< 
-
-
-p
+L
+L
+< 
+
+l
-"
-L
-0 
- 0ᘴ4
-
-,
-
-
+"
+L
+0 
+ 0ᔴ4
+
+,
+

-
-
-
-
+
+
+
+

-
+

g0S +8
-AjA @@#\0
-
-d
+AjA @@#\0
+
+d
`ᇯ
-
-Q
-
+
+M
+

a*a (
-AJ@
+AJ@
0


@@ -956,196 +949,198 @@ D,P
g*g pJgp
G(pJGp*Gk
d
-A
-@
+A
+@
`
d
K
-0dደP 
-0
-0
-0ڰ
-0ΰ
-0ᾰ
+0dᇰP 
+0
+0
+0ְ
+0ʰ
+0Ằ
-
+

\
-P 
-!
+P 
+!

P0
-4
+4
`

-
-!
-\@
-!
-\@%
-!d
+
+!
+
+\@
+!
+\@%
+!`
\@h 
-P ,`Fp
-
-
-
-P P㶮庮
-
-X'P
+P ,`Bp
+
+
+P P㲮嶮
+
+X'P
-(' 
-$g
- %0
-
-$
+(' 
+$c
+%0
+$

-@
-P  p t
-@
-
+@
+P  l p
+@
+
-@
-
-O@.
-t
-l
-0
-
-
- ׫
-`.
-& U
+@
+
+
+
+K@.
+ t
+l
+0
+
+
+
+ ӫ
+ `.
+& Q
&
-& B
+& >
&
-& /
+& +
L&
-& 
+& 
&
-&  
+& 
&
-& 
+& 
-& 
+& ߨ
<&
-& Ш(
+& ̨(
x&
-& ന
+& న
&
-& (
-x&
-0
+& (
+x&
+0
@D 
-0"
-0
+0"
+0
@D 
0"
-H
+H
@D 
"
-,
+,
@D 
,"
-
+
@D 
"
-
+
@D 
-"
- 
+"
+ 
@D 
"
-
+
@D 
!

-
+
@D 
!
-L
-L
-L
-L
-L
-L
-L
-L
-L
-L
-L
-L
+L
+L
+L
+L
+L
+L
+L
+L
+L
+L
+L
+L

- -፥
-b=
+ -ብ
+b=

-
-
-
-
+
+
+
+

-B գ
-
-&  
+B ѣ
+
+& 
&
-& 
+& 
&
-
+

-
-
-& ણ
+
+
+& ণ
&
-& 
+& 
&
-& 
+& ~
L&
-& n
+& j
&
-& Z
+& V
&
-& F
+& B
-& 2T
+& .T
,&
-& X
-h&
-(FP@RB6/71?O0
-0
-8
+& X
+h&
+(FP@RB6/71?O0
+0
+8

-`
-
-& q
+`
+
+& m
&
-& ]
+& Y
&
-& I
+& E
L&
-& 5
+& 1
&
-& !
+& 
&
-&  
+&  
-& 
+& 
<&
-& (
+& (
x&
-& ˡ
+& ǡ
&
a*aJa8k(
A*@
`L 


-l
-
-
+l
+
+

(2
-
+


4
@@ -1157,229 +1152,227 @@ $
<
c+(pJc0
C
-+
++
H
-*⡠xp
-P0
-
-~
-
-) 
+*❠xp
+P0
+
+z
+
+) 
I
-) 
-0 4,
+) 
+0 4,
|p
-
-
-
-
-
-
-
-
-
-&
-L
-L
-L
-L
-L
-L
-L
-L
-L
-L
-L
-L
-
-
-
-
-
-
-y
-s
-m
-g
-a
-[
-Ul"
-
-
+
+
+
+
+
+
+
+
+
+&
+L
+L
+L
+L
+L
+L
+L
+L
+L
+L
+L
+L
+
+
+
+
+
+{
+u
+o
+i
+c
+]
+W
+Ql"
+
+
-
-
-
-
-
-
-
-
-
-
-,
-
-
-w
-
-
-_
-
-H @
-o
-o
+
+
+
+
+
+
+
+
+
+
+(
+
+
+s
+_
+
+H @
+o
+o
- 
- 
- 
-PE
-tl
-
-,#$
-h"0\
+ 
+ 
+ 
+PE
+tl
+
+,#$
+h"0\

-
+
-l
-X@
-
-
-
+l
+X@
+
+
+
T
-
- $@ @  ̀ 0
-
- (0
+
+ $@ @  ̀ 0
+
+ (0
`
-@A
+@A

q0@
- 0Rw`
+ 0Nw`

-
-
+
+
0
 0
@ P
0
-
+

-
-
+
+
`E
P
-
+
0
-
+
T
-D
+D

$
-Hl
+Hl
0
,
|
-p8 
+p8 
P
1
-8 
+8 
HPl
-
+
\
!0
,
-<
+<
p@
-P |
-
-
-
-
+P |
+
+
+
+
-
- z
- e
+
+ v
+ a
L0
T
h

-
-
+
+
L
-
- ᵔ
- ᭔8
- ᥔ
- ᝔
-0<
- ᎔0
+
+ ᱔
+ ᩔ8
+ ᡔ
+ ᙔ
+0<
+ ኔ0
Pp
  
-
+ ~
-,P0| 
+,P0| 



-
-
+
+
-
+
-:PPH
-$
-
-
-
-
- 
-  =  
- |
- 
-
+:PPH
+$
+
+
+
+ 
+ 
+=  
+ |
+ 
+
 )
D
-
-
+
+
 }Rt
l
pP
-
+
0
-P
+P
`

-
+

-
-U
-
- P
+
+Q
+
+ P
@
-@
+@
f*f
-@c
+@c

@@ -1387,88 +1380,88 @@ f*f

 

- 
+ 

-
-
+
+
`J`
-@+J@
+@+J@
-L
-
+L
+
A 
A
@
-@
- 
+@
+ 
\

H
d
I
-$%
- ῌ
+$%
+ Ọ

0 p
a*ak
-@
- ^
+@
+ Z
(\
-
-y
-D)< 
+
+u
+D)< 
- & 
+ & 
-
+
-< & 
+< & 
-, & 
+, & 
-h & 
+h & 
-x & 
+x & 
- & 
-dΉ
- & 
-
+ & 
+dʉ
+ & 
+
`
-@4
-
-!
+@4
+
+!

`
-@ 
-L
-
+@ 
+L
+
0

- 
+ 

-
-
-L
-L
-L
-
+
+
+L
+L
+L
+

-0
-L
+0
+L
-L
-``
+L
+``
-L
+L

-,lR
+(lR
 
-
-`Ɔ
+
+`†

P

@@ -1476,43 +1469,43 @@ P
- iP
+ eP
-L
-
-!P
+L
+
+!P
a*a(Ja( k
-@
-()\
-
-7
+@
+()\
+
+3
-
-
+
+
T

-H
-
- P
+H
+
+ P
-᳂pP`P#3&&s
-
-& 
+ᯂpP`P#3&&s
+
+& 

-0
-
-`0\
+0
+
+`0\

-
-
+
+
a*a 
-@*@
+@*@
-
+
T
-0
+0
@
|

@@ -1520,45 +1513,45 @@ T

P

-
+
*
-
+
@ `($

-4
+4
@
-B
+B
(\
-8 
-@)8 
-
+8 
+@)8 
+
8

-
+
-8 
+8 
'

-8 
+8 
'
-8 
+8 
' 
-D'<4
-8 
-&
-x&p
-&
-8 
-%
-$
-
-
-"
+D'<4
+8 
+&
+x&p
+&
+8 
+%
+$
+
+
+"
8
-
+
P&`@
@@ -1567,53 +1560,53 @@ P
C0
C00 000000
`!0
-p %0 
- 
-
+p %0 
+ 
+
-
-(
+
+(
P
@
-@ @q
+@ @q
f
-@
-P
-`
-`
-
+@
+P
+`
+`
+

-p
-$p
+p
+$p

- @
+ @

-o
+o
$p
-
-@
-`p
-
-
+
+@
+`p
+
+
P
C0?O@H L P00V 50Z 5^ } %` =!a?1a"!&A$a( =!a?1aTa(aA$!&" 8(
A
-@Ϫ@
-
+@Ϫ@
+
@$
,t
-zT(
-z(T@
-XDz
+zT(
+z(T@
+XDz
$

-
-z
-z
+
+z
+z

-
+


@@ -1623,13 +1616,13 @@ C*Cp


-
-P,
+
+P,
⏊v
u@
-Xt
+Xt
-
+

!r0
@@ -1640,27 +1633,27 @@ Xt
yp

-
+
ypi
y$0
(p
P

-
+


f 2/!
 B$ (
-
-o0$@(@
+
+o0$@(@
-o @p
+
0

-@p0
-P(
+@p0
+P(
p$
e?!  0
@@ -1671,35 +1664,35 @@ P(

$
-
+
1P
`
p
!
- P@
+ P@
K

,

X$
-
-<
- 0 "k$
+
+<
+ 0 k$
!
-` b
-
- 
+` b
+
+ 

$
-lid(
-gi
+hid(
+ci
`V
@
L
@@ -1722,7 +1715,7 @@ gi
-P
+P
@@ -1742,15 +1735,15 @@ gi
-
+
-
-
-
+
+
+
HAP@
-8
-
+8
+
@@ -1780,146 +1773,144 @@ gi
`
-@H1
+@H1
-
-T
+
+T
P
H
@
@
@
-@[c
-
-b
-b
-b
+@Wc
+
f*f
-@
-
+@
+

-<
-
-S
-b
-b
-<p
-<`
+<
+
+S
+b
+b
+<p
+<`
-
-0
-
-<P
-
-p
-(%!E@
+
+0
+
+<P
+
+p
+(%!E@
|
-
-
-
+
+
+

`*`
-@JA*A
- *a
+@JA*A
+ &a
0Q"Q! d0#(
-  p@
+  p@
-
+
-
-\
+
+\
-
+
-
-d
-<
-&`
-
-<
-
-<
-
+
+d
+<
+"`
+
+<
+
+<
+

-
+

-
-P0Q"Q! d0#(T
-
-<
-^
-<P
-  ^
-
-
-
+
+P0Q"Q! d0#(T
+
+<
+^
+<P
+  ^
+
+
+^0H ^
+
<
-0 (
+0 (

-(
-s
-0
-
-
-
-
+(
+s
+0
+
+
+
+

-
+
@
@
-
-
-Z
-0
-
-
-
-
-
-
-
-0
+
+
+0
+
+
+
+
+
+
+
+0
- 
-
+ 
+
"
-!
+!

-
+
+
-
-
+
+

(
-"
-
+"
+
-
-
-
-
-,1$!@
- W
- W꤉
-p
-
-
-
-
+
+
+
+
+,1$!@
+ W
+ Wꈊ
+p
+
+
+
+

- P@84
+ P@84
- Y
-
-
-0
-
+ Y
+
+
+0
+
rW
O
U
@@ -1970,119 +1961,119 @@ e
O
U
a
-I
+I
E
I
e
-i
+i
c
-A
-y
+A
+y
,(@
$
- 84
+ 84
- T,
+ T,
-
-4
-
-
+
+4
+
+
@
@
@
@
-
+
@
@
@
-@
- 48 
-\
-
-$
-
-1TD
-j
-z
+@
+ 48 
+
+
+$
+
+1TD
+|
+j
+z

-$H0 
-|
-
- MOp?
-
-3TD
-HTD
-
-
+$H8 
+
+
+
+3TD
+HTD
+

-
+
-
-
+
+
+
-
+
  
- N
-$ 
+ :N
+$ 
-0M
- N
-
+0nM
+ iN
+
+
_ `

-
+
_ `

-
+
ll
$
-
+
 `
- 00
+ 00

-
+
 P
- 00
+ 00
tx
p
-`pp`
+`pp`
P
 
-0[KW%4
-0D`@P
+0KW%4
+0D`@P

- 0BK
-:KPp
-00K, 
-0+KPP
+ 0J
+JPp
+0J, 
+0JPP

- 0K
- 0
-K`P
-0
-0J<PQr
-0
+ 0J
+ 0J`P
+0J$ 
+0J<PQr
+0
l
- 
+ 
p
- 0
+ 0
-
+
-
+
-
+

@
@@ -2091,100 +2082,101 @@ p
@
P@>`
-
-
+
+
( 
@p
-
+
p
-
+

-I
-
+qI
+
!
-
+

-#Jp[
+Ip[
@
 
-0
-
+0
+
t,`
p@
-@H
-H0
-K
-
+@H
+H0
+K
+
T
-P@`H
-K
+P@`_H
+oK

-
+

,p
-
+

-
-
+
+

(
-
+
$
- 
+ 
$
-TJ$p
-.G
+
+J$p
+F
-"J$`
-
- F
+I$`
+
+ zF

-
+
p
 
-
+
",    p p


0
-
+

-Hp
-E
-H
+Hp
+}E
+H
 
-H`
-H
-
- XE P
-
+nH`
+aH
+
+ E P
+
aR*cJa *F
AJA/

@@ -2193,287 +2185,288 @@ AJA/
a*aJbJA 
A*A  O!.
/O!%."LQAho
-`F RI U`
-L
+`F RI U`
+L
4
-
+
p
-
-
+
+

-
+
 
0


-p
+p
- 
-
+ 
+
0p4@
P
-`F
-:C
+F
+B
0`4p
-,F
+E
-
+

 
-
-
+
+
@G
-
+
-vB
+)B
-lB
-
+B
+
+B

-PB
- е?0# 0s
-
+B
+ е?0# 0s
+

-@
-
+@
+
-@
+@
P
@
P
-0
-,
+0
+,

0
->
+>
sP
-
-
+
+
-
-
-$4
-
+
+
+$4
+
@

- ?@p`
+ Y?@p`



-!
-@
-c?
-_?
+!
+@
+?
+?
-
+
`
-@
->!
->!
+@
+w>!
+_>!
-
-
+
+
,

-
-$
-0
+
+$
+0
`*`
-@*@(
+@*@(

-T
-@
+T
+@
" JaN/
f*fJBJ/F*B
-A!
+A!
l! JaN/
f*fJBJ/F*B
-A<!
+A<!
  ! 
-
-
-
+
+
+
-
-
- Q;
-
+
+
+ ;
+
<
- ;
- 0:
-
-
+ :
+ 0:
+
+
a 
-@
+@
`
-B
-9
+B
(
- 8
-
-
-
+ o8
+
+
+
A
-A
-
+A
+
`*`
@*@>K
-
+
-
-0
+
+0
-. `
-C8W
-
-
-/
+. `
+7W
+
+7
+/

- 
+ 
DD
- L60@
+
ON
- 0
+ 0
,
|
-
+

-
+

 !

-0 !@AP
-
-
-
-T `@D !p@`
-0  q
+0 !@AP
+
+
+
+T `@D !p@`
+0  q
HP
HP
@
` aQ!8<p
-0
+0
- a!c?
-
-`
-T
+ a!c?
+
+`
+T

-
-
-
-`
-`O
-`
-
-
-
- !@ Ap(`!8`<Pxx 0
+
+
+
+`
+`O
+`
+
+
+
+ !@ Ap(`!8`<Pxx 0

-8
-
-
-
-
-
-
-
-
- 
-0  q
+8
+
+
+
+
+
+
+
+
+ 
+0  q
`

-` 0a
-
-
-
+` 0a
+
+
+
0
-P
+P
!
-0 
+0 
0 $
-
-
-
-h h`
-
-H !C$
-
-` !
-80, A
- 6/ 
+
+
+
+h h`
+
+H !C$
+
+` !
+80, A
+ . 
`
-D
-2'
-~2.
-
-
+D
+J2'
+52.
+
+

- ! H01!C`|
-
-0 A
-
-1Il
-
+ ! H01!C`|
+
+.P
+0 A
+
+81Il
+
@'
-@*RRB
-,
-@
-0
+@*RRB
+,
+@
+0

$
@4 p@

-
-t 
-l 
-p 
-h
+
+t 
+l 
+p 
+h


-d
+d


-`
+`


-
+
|
-,
-,
++
++
@L
T

@@ -2482,10 +2475,10 @@ T

x
-\
+\
-- 
+- 
$`
@@ -2494,11 +2487,11 @@ $`
 Q:q
$`
-0<
-X
+0<
+X

-, 
+, 
0
!<
@@ -2506,64 +2499,65 @@ X
 Q:q
0
-!<
-T
+!<
+T
( r
"(0
-
+
P
2
-P
+P
x
x
-
+

-0
-
-
-
- -
-
-
-
-
-
-
-
+0
+
+
+
+,
+
+
+
+
+
+
+
-
+
<

PL`
-(
+(
,
<
<
-<
-
+<
+
-
+
<

PL`
-(
+G(
,
<
<
-<
-
-D <
-H @
-!0
-
-
+<
+
+D <
+H @
+!0
+(
+
+
D
P
@
@@ -2571,109 +2565,107 @@ P
<
<
<
-P
-(P
- !0
-
-
+P
+ !0
+
+
D
,
<
<
P
-
-X0L
-
+
+X0L
+
(
-
-
+
+
`
(
<
-
+
(
-<
-
- 0
+<
+
+ 0
(
<
(
-<
- 0
-
-
+<
+ 0
+
+
(
<
-
-
-
-
+
+
+
+
L
-
-,&
-
-
-
-8 <
-0
+
+%
+
+
+
+8 <
+0
-
-
-T
-0
-
+
+
+T
+0
+
-
-
+
+
P
K
@0
@
F
D
-D%
+DA%
`
-F*D0
-
-d 0X
+F*D0
+d 0X
`J`'
@
- +J@(
+ +J@(

<

-<
+<

-
-
-
-
-
-@ 8
+
+
+
+
+
+@ 8

-'
-
-'
-
-
-@ 8
+X'
+
+8'
+
+
+@ 8
-,(
-
-
-
+,(
+
+
+

-
-
-
-
-
-@ 8
-
-
-
-
+
+
+
+
+
+@ 8
+
+
+
+
<
<
@@ -2681,66 +2673,65 @@ P`p
<


-
+
-,(
-
-
-
-
-
-
-"
+,(
+
+
+
+
+
+!
-
-!
-
-
-
+
+{!
+
+
+
8
-@
-
-!
+@
+
+!

P
P
@U
@
-
-
- !
+
+
+ 6!
-@U
-2/
-
-
-
+@U
+2/
+
+
+
f
h
-A
-
+A
+

-L
-0  
+L
+0  
`
-@5
+@5
 P*



-5
-
-(
-
-
-
-`
-
-@
+5
+v
+(
+
+
+R
+`
+
+@
`5@ 0J`
-@5
-`<0 0
-
+@5
+`0 0
+
5

@@ -2749,45 +2740,42 @@ L

-
-
- ` *
-P
+
+ `{ *
+P
-
-,
+

-P
-
-8
-
-
-, D
-
-0
+P
+
+8
+
+, D
+
+0

-
-#
-
-<
-
+
+#
+
+<
+

-
+
0 
-P
-
+P
+

-
+

-
-p
+
+p
e5
-@5
+@5
㸰`
-
-P
+
+P


@@ -2801,7 +2789,7 @@ e5
-
+
H

d
@@ -2828,355 +2816,353 @@ D
P H


-
-
-
-L
+
+
+L
8
-
-,
+
+,
$


- 0{
-
-
-
+ 0{
+
+
+


-h
-
-
+h
+

0
M(@ 0
4

-`M(@ 0
+`M(@ 0
h@

pV+
-
- P
+
+ P

-,
+,
4P 80
`J`0
-DJD
-4
+DJD
+4
\
-
+
x

-
-d
+
+d

-,!$
->l
-0
-
-
+,!$
+ l
+0
+
 <
-
-
+
+
$

-
+
0
-
-
+
+
- 
+ 
-
+
-
-
-
-4
-8
-8
+
+
+
+4
+8
+8
-
-
+
+

-
- \
-
-
-- d
+
+ 
+
+
+ d
|
-h"`
-
+h"`
+


-
+
(
- 
-
-*
+ 
+
+0
+*
-' ` X
+
+` X
+L
+<


-
-
-
-
+
+
+
+
+
+
+
+
<
-4
-8
+4
+
+8
+
pp<
-4
-8
-8
-
+4
+
+8
+
+8
+
-D <
-
-
-
-
+D <
+
+
+
-
-
-P
-z
-
+
+.
+
O- M@X
-0,
+0,
-
+

-
- 
-
-0
-
-
+
+
-
-
-
-
-
+
+
+
+
+
H
-
+

-$Ѝy
+$Ѝy
`
P
@U
@
-
+
u
-
-
- % 
+
+
+ 
-
-4U
-
+
+4U
+
堐
p
-
+
-
-
-
-p
-
- 
-
-
-
-
+
+
+
+
+p_
+
+
+(
+
+
+
+t
+
-4
-
-
+4
+
+
-$
-
-
-
-
-
-4
-
-"
-
-d
-
-
-!|
-@!8
-!
-
- PE @
-
- PE@
+$
+
+
+
+"
+
+!|
+@!8
+!
+
+D
+ IPE @
+
+ PE@
`
D
-
+

-0k
-0 =
+0k
+0 _=
-0
-
-"!h
+0
+
+
+"!h
D
-
-
+
+

-
-0
-
-
+
+0
+
+
$
-@
+@
pP@
-
+

d 0
P+Jd
-AJA
-2
+AJA
+2
`+J`
-GJG
-
- !
+GJG
+
+ !

-
+
P
-
-D
-
+
+D
+

-
-
-0*P
-0"
-0
-0
-(p
+
+
+0P
+0
+0
+0
+(p
#
-@
-@D"<
-\\!\a\1P
-
-
-` 
+@
+@D"<
+\\!\a\1P
+
+
+` 
-
-
-/0  C
+
+
+/0  C
-
+

-P
+P
-
+

P
-"
-
+"
+

-&
-
+&
+
x

- 0
-
-`A
-|!
-
-0"
- A
-(!
+ 0
+
+`A
+|!
+0"O
+ A
+(!

-
-0
-
-/p G?
+
+0
+
+/p G?
2/
-
-2/
-=
-2/
-
+
+2/
+=
+2/
+
-
+
-
-*`.$
+
-
+
"
-!
+!
.
--
-*`.1@
-
-
-
+-
+
+*`/3@
+
+
` 
A

-
- 
-
-
-0(
-)
-0
-
-
+
+ 
+
+
+0(
+)
+0
+
+
D
-@
-DD
-  
-
+@
+DD
+  
+
`
B
`
-B
+B
c\0*c\0*C
Bl
b| *b| *Bl
@@ -3194,13 +3180,13 @@ BK/
bO/*bO/*BK/
B
aV
-A`hh
+A`hh
a!
A"
a"
-A00
+A00
`
-@
+@v
c?*c?*C
B/
@@ -3219,11 +3205,11 @@ B$
c4
B$$$
b
-A
+A
a
AY
aY
-A
+A
b
A$
bD'
@@ -3235,10 +3221,11 @@ Bd'
ct7
B'''''
by.
-B'
-
-
-
+B'
+
+
+
+
@
@
BL
@@ -3293,44 +3280,44 @@ B'
D
@
@
-@
+@
B
B
-@
+@
G
-
+
B 
B
-AA@44
+AA@}44
@
@
-@
+@
-!
-@
-
-b
+!
+@
+
+-@
 
 *
-
-
+
+
*
-
-
-
-
-
-
+
+
+
+
+
+
`W
g0S
F0
-'
+'


-
+

@@ -3338,97 +3325,99 @@ F0
A
A
-AA@X$!
+AA@ $!
+O
-
-@!
-@!
- 
- 
-E
-=
-
-~
-
-
-
-
->
-6
-x
-p
+
+@!
+@!
+ 
+ 
+E
+=
+
+~
+
+
+
+
+>
+6
+x
+p
-
-
+
+
A
A
A
-AA@3
->
-6
-
+AA@
+>
+6
+

-0
-
+0
+

-
-
-
-N
-F
-
-
+
+
+
+N
+F
+
+
-
+
-
+

-
-
-
+
+
+

-
-
+
+




-
+





-
+
+:


,$$

-|#t
+|#t


-
-
-
-
-
-
+
+
+
+
+
+

-
+



-
+


@@ -3445,100 +3434,100 @@ AA@3



-
+
*
)

-
-x x
-%1+ @
+
+x x
+%1+ @
`
*
-
+
`6(*(
- 
-:* 0
-
+ 
+:* 0
+
*
-
-@@ 0@
-)
-0(
-j
-
-&
-&
-%
-
+
+@@ 0@
+)
+0(
+j
+
+&
+&
+%
+
-
- \
-.
-((
-
-
-, 
-, 
-, 
-, 
-l,d 
+
+ w\
+*
+((
+
+, 
+, 
+, 
+, 
+l,d 
-
+

-
-P'H
-,'$
- '
-&
-&
+
+P'H
+,'$
+ '
+&
+&
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
\

-
-h
+
+h
B
-P P_`
-0
-,
-=
-a
-\
-l 0`
-
-
+P P`
+0
+,
+
+a
+\
+l 0`
+
+
@
- 0
-
-
-
- 0
-
-
-0
-
+ 0
+
+
+
+ 0
+
+
+0
+
-
-
+
+

-
-
-
+
+
+
Hp
-l
-
-
-p
+l
+
+
+p
 P
@@ -3546,83 +3535,83 @@ p
-
-
- !
+
+
+ !
-
+
-
+
D
 P

-
+
-
+
-H
+H
-(
+(

-H
+H
P
-
+
-
+
-
-
+
+
-
-
+
+
-p
-
-P
-|
-m_!p!1 '?S
+p
+
+zP
+|
+m_!p!1 '?
0  4
- }R
+ }R

-
-@
+
+@
t
-0
+0
 )$܀)6А)OР)@
"1O@

6
A

-
-v
-
-
-xD
-!F
-(FoBF
-HxD
- GpGF
+
+
+
+o
+xD
+!F
+(FoBF
+HxD
+
+ GpGF
h)F2Fi FG?
Nreu h
- - е?D
-
-pJ
-OT
- FoG 
+
+pJ
+OT
+ FoG 
p
bh^h
B&
-xD
-
+xD
 dxDpGp($
-HxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpG}HxDpG{HxDpGxHxDpGvHxDpGsHxDpGqHxDpGnHxDpGlHxDpGiHxDpGgHxDpGdHxDpGbHxDpG_HxDpG]HxDpGZHxDpGXHxDpGUHxDpGSHxDpGPHxDpGMHxDpGJHxDpGHHxDpGEHxDpGCHxDpG@HxDpG>HxDpG;HxDpG9HxDpG6HxDpG4HxDpG1HxDpG/HxDpG,HxDpG*HxDpG'HxDpG%HxDpG"HxDpG HxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpG HxDpG HxDpGHxDpGHxDpGHxDpG
+HxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpG}HxDpG{HxDpGxHxDpGvHxDpGsHxDpGqHxDpGnHxDpGlHxDpGiHxDpGgHxDpGdHxDpGbHxDpG_HxDpG]HxDpGZHxDpGXHxDpGUHxDpGSHxDpGPHxDpGMHxDpGJHxDpGHHxDpGEHxDpGCHxDpG@HxDpG>HxDpG;HxDpG9HxDpG6HxDpG4HxDpG1HxDpG/HxDpG,HxDpG*HxDpG'HxDpG%HxDpG"HxDpG HxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpGHxDpG HxDpG HxDpGHxDpGHxDpGHxDpG

-/oo
+/oo
@-@
JZt
@@ -3630,26 +3619,27 @@ B&
@D u

-   ! 0bà01@O@-
-$ 
-kL
-HLt<4
-
-
-
-
-
-
-
-
-
-8,
-|
-$
-d`
+   ! 0bà01@O@-
+
+p <
+iL
+(,Th?; H
+
+
+
+
+
+
+
+? D
+
+ 
+{}~| ܪ ز|
+(
+hd
@<
P
-@
+@
@@ -3673,7 +3663,7 @@ pid 0x%x tid 0x%x
-
+
============= VCT INFO =============
@@ -4213,7 +4203,7 @@ filter %d data callback ok
-
+
Ddf",FT|
)*
 !"#$%&'(ӛխ
@@ -4302,9 +4292,11 @@ _e=[HOS SSTTW^`bbUclfmu2xހ/ނa E^ffpr
fgfkimmVnnooo]pr%tZttv\y|~ဦkN_twj
-
-q
-
+
+r
+
+
+
A 
- "&Dlibam_mw.so
-
+ "&Dlibam_mw.so
+
diff --git a/lib32/libam_ver.so b/lib32/libam_ver.so
index 083d41d..cfd2199 100755
--- a/lib32/libam_ver.so
+++ b/lib32/libam_ver.so
@@ -1,4 +1,4 @@
-ELF
+ELF

03/K
@@ -97,8 +97,8 @@ B&
:8NXx  4
-
+
A 
- "&Dlibam_ver.so
+ "&Dlibam_ver.so
diff --git a/lib64/libam_mw.so b/lib64/libam_mw.so
index 3e05f57..7852444 100755
--- a/lib64/libam_mw.so
+++ b/lib64/libam_mw.so
@@ -1,4 +1,5 @@
-ELF
+ELF
+
@@ -7,28 +8,28 @@
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
x1P8(
<w8T(*CH
@4A
-
+
+
^<Pi].p6x PЕ
f>
-'cP$tƵTz1ZOqu?叏z?3x[|kEa#?7>ed뙢溞%庑fc|} ζ璃lk2zjd?[FtG
+'cP$tƵTz1ZOqu?叏z?3x[|kEa#?7>ed뙢溞%庑fc|} ζ璃lk2zjd?[FtG
D1w㊘<XyE27
lhl)<(w
4ra>3LdC
-^`ŽjeUwBzwqζtp1C#,nh%2lYI[';|;#_?SWeRkN-yN(?"MFIU+BzJx`"Ԅnu!@VȻع!rxբ KƩy|э2!'*d[q&hm
+^`ŽjeUwBzwqζtp1C#,nh%2lYI[';|;#_?SWeRkN-yN(?"MFIU+BzJx`"Ԅnu!@VȻع!rxբ KƩy|э2!'*d[q&hm
 

 
@@ -39,512 +40,484 @@ lhl)<(w
 }
        
 
-  ~N~ Y}    
+  ~N~ Y}    
   

-|<6(
-
-
-
-CB 
+|<6(
+
+
+
+CB 
DB 
EB( 
FB0 
-GB8 
-
-@Rj x
-
-
+GB8 
+
+@Rj x
+
+
y))
-*@@
-H
+*@@
+2(c@s
*
- @?
-yD)!ij~@`g
+ @?
+yD)!ij~@`g
h)D~@)}
h)D~@)}
-
-@@
-@@
-
-
+
+@@
+@@
+
+2Fl^{BOAWè_O{C
+2)
@
-
-@@
-@@
-@@
-@ RRRj)@"
-
-Ru(r
-
-9hB 
-22h"y(
-҈򈊈h
-
-
-w 9(
-
-R) jyh* 9v~ =Rib 
-
-RM i 9
-
-
-
+
+@@
+@@
+@@
+@ RRRj)@"
+
+Ru(r
+
+9hB 
+22h"y(
+҈򈊈h
+jv&I
+
+
+w 9(
+
+R) jyh* 9v~ =Rib 
+
+RMi 9
+
+
+
-B
-R`* RTJr
-9Zv9hr y`b
-i22tj yvn9hi"
-y
-
-yh
-;
-y(
-2h(
-y`
-yi`* R
-}R
-
-
+B
+R`* RTJr
+9Zv9hr y`b
+hj9(
+y
+
+yh
+;
+y(
+2h(
+y`
+ye`* R
+}R
+
+
R ̋Rwh
-ϋRG
+ϋRG
Нr
-  K
-K
+  K
+K
Нr
-  K
+  K
-
-aB?
-KT
-HajB?
-KT
-aB?
-KT
-aC?
-KT
-:arC?
-KT
-aC?
-B
+
+KT
+KT
+KT
+KT
+KT
+B
B
KT
-
-
-B`
-`6B`
+
+
+B`
+`6B`
k
-
-
-
+
+
+
K)}@)} *)f)
- ( h
- 
-
-j(j)/{DOCWB_A*gŨ_WO{
-`j<@h/hji
-@
-2a@?
-@
-2 naZ@?
-2-a@?
-
-2aA?
-A 
-2a
-A?
-`juRb^o
-A
-2/abA?
-2aB?
-=
-2ajB?
-=
-20aB?
-2aC?
-2arC?
-21aC?
-B
-B)
-2a"D?
-2azD?
-22aD?
-2aE?
-2 a*E?
-
- a#a@?
+ ( h
+ 
+
+j(j)/{DOCWB_A*gŨ_WO{
+`j<@h/hji
+@
+@
+
+A 
+A?
+`juNb^o
+A
+=
+=
+B
+B)
+

DR)
2+@
<R#ijxJ<R$ij8
;R
->R
- @?
-=
+>R
+bzo
@ }S3
-]S}Sk
-@ =
-2zaZ@?
-2z2og_WO{C#
-@T@@a@G)C
-+@
-@7{ @@@ @0@bRH
-p
-2f3G
-R
+]S}Sk
+@ =
+@T@@a@G)C
++@@y
+@7{ @@@ @,@bRH
+p
+9f:G
+R
-
-9Y@@y2U@[q
-@@v@)@
-A?
-J`ju>
-@yc2{@
+
+9U@@y2Q@Wq
+@@v@)@
+A?
+F`ju:
+@yc2w@
R͇RTH 
-u v y 
-
-=
-2p*E?
-
-ur/
-2no
+u v y 
+
+ro
ЋR R
-
+ 
@@F}Sk? k
-`ӿ
+`ӿ
=
kj
-`ӿ
-DR`2B` 3
-f@yh
-
-@9
-[@HRr'@9kh@s
+`ӿ
+DR`2B`3
+b@yh
+@9
RRh
v 
- 
-
-KT @-hE@
- @
+ 
+
+KT @-hE@
R
R
'
r
- ; K#@@8cR*G9i88G
-
-@y@yA)
+ ; K#@@8cR*G9i88G
+
+@y@yA)
I@8
-@9_8@9cB9c2
+@9_8@9cB9c2
-@S#@;@
-
-km
+@S#@;@
+
+km

-
-
-RRr
-
-
-
-
-@i
-:i!
+
+
+RRr
+
+
+
+
+@
+@i
+i!
R#
0r(!
-DR*+
+DR*+
@9)
-
+
@9
R&
(
R&
-( 
-A2{ 2{98
+( 
+A2{ 2{98
R)R
-k)K
+k)K
R)K
-k5
+k5
29 ,R7@ kY
- n Rlg
-@8 a
+ n Rlg
+@8 a
j
-a@4 K"
+a@4 K"
R
-k K
-
+k K
+
+@
R
-k5
+k5
RK
-k5
-R
+k5
+R
R
kK
-R
+R
RK
k3
-RW@
+RW@
Ri)8z
kk
-R
+R
K)}@)} *)f)
- 5 R
+ 5 N
+2@ 
;R }@a
/2+@y
k
-k
-=
+k
kA
-
-
-h
+
+
+h
h
-
-
-H5
+
+
+H5
kA
-0K
+0K
-i
- >
+i
- 
+ 
-H&
-@z
-(5@y
-
-
-Ȑ5
+H&
+@z
+(5@y
+
+
+Ȑ5
-
+
k *KT((@9
}C*A*K!@9 @!h(
H!
-(!
-
-
+(!
+2!
+
+
f Rh
-B`b dR@
+B`b dRܿ@
}S
@

@1
- lE 
-@*S?
+ lE 
+@*O?
k 
k 
-k 
-K?k
-2
- f 
-)} J`)`J ) 
+k 
+K?k
+ f 
+)} J`)`J ) 
+9Z
+{
+
+*
-w
-@ijGJ R`fGjr K}@}
- f*2 ܼ~S~S~S
-
-@J
-k@)#
-
-@vh@
+w
+ f*2 ؼ~S~S~S
+
+@J
+k@)#
+
+@rh@
-@J
-h
-
-h
-p
- *
-H
+@J
+h
+@@
+w
+
+h
+p
+ *
+H
 *
-
+
 *
-H
+H
 *
-H
+H
 *
-
+
 *
-H
+H
 *
-H
+H
 *
-H
- *
+H
+ *
}`*iJ=@_
}@)
-)-@?
-TCC R*hRAB9
-KThIy^H
-KThIyH
-KThbJyH
-KThKyfH
-KThKyH
-KThrLyH
-KTh"MynH
-KTg@R
-KTk@5
-KT@
-I=@?
+)-@?
+TCC R*hRAB9
+KThIy^H
+KThIyH
+KThbJyH
+KThKyfH
+KThKyH
+KThrLyH
+KTh"MynH
+KTg@R
+KTk@5
+KT@
+I=@?
+
kJ Rjr}
-#UZg
+#UZg
+*т R*CF9
R
Hr)
R*
?r_ k$
-r5
-KThNyH
-KTk@
-
-KThIy^H
-KThIyH
-KThbJyH
-KThKyfH
-KThKyH
-KTh2OyvH
-KThOyH
-KTg@
+r5
+KThNyH
+KTk@
+
+KThIy^H
+KThIyH
+KThbJyH
+KThKyfH
+KThKyH
+KTh2OyvH
+KThOyH
+KTg@
4rk} ,
r_ kjR
-6rJ1 KW S9c\
-KThIy^H
-KThIyH
-KThbJyH
-KThKyfH
-KThKyH
-KThrLyH
-KTh"MynH
-KTg@>
-KTh:(7iA(=@
-z5o@
-aBE?
-
-@h~
-@
-@*2
-)=SC
-
-
-k
-@y(@y_k
- @
-@wvB@
-k
-ġ
-
+6rJ1 KW S9c\
+KThIy^H
+KThIyH
+KThbJyH
+KThKyfH
+KThKyH
+KThrLyH
+KTh"MynH
+KTg@>
+KTh:(7iA(=@
+z5o@
+
+@h~
+@
+@*2
+)=SC
+
+
+k
+@y(@y_k
+ @
+@wvB@
+k
+
È?
-kTa
-@2U@`@
-`@`@`@
-a
-@9
-@9{DOCWB_Aa
+kTa
+@2Q@`@
+@9
+@9{DOCWB_Aa
e@Y@_
-k
-@9
-I2cI2cI2x
-QRp&@b"@Rl&@8d
-k
-@~@ R} ̜ 
+k
+@9
+I2cI2cI2t
+QRl&@b"@Rh&@8`
+k
+@~@ R} Ȝ 
@
-
-@ k@
+
+@ k@
@h
-@
-@W?Gqk
- 2
-
-2<h@9G)2
-k
+@
+@W?Gqk
+
+k
}@Kz+ik
*=@_
*(!
-
+
@?

}@*
-K=@
+K=@
R`*
-RU(rc2
-
+RU(r_2
+
i
-
-R2
-
-
-R
-R
-RS
-R
-R
-hBזc
-ؘrJŊZ( @A
-
-I@izjv
-h
-h
-h
-h
+
+R2
+
+
+R
+R
+RO
+R
+R
+hBӖc
+ؘrJŊZ( @A
+
+I@izjv
+h
+`^@p
+h
+h
+h
h
}`*iJ=@_
}@)
-)-@?
-h@h#
-h
+)-@?
+h@h#
+h
@9*
-@kAJ} i *
+@kAJ} i *
I5
- @*
-h
- jE)}S)
+ @*
+h
+ jE)}S)
R]
-FB@
-h
+FB@
+h>DiB
+h
R)KU
2J* ?
-\A!K
-
+\A!K
+
k
ka
-*
+*
@/
-
-kTA
+
+kTA
@%
-
+
@"
-
+
@
-
+
@
-
+
@
-
+
@
-
+
@
-
+
@i
-
+
@
-@
-@B (* 
+@
+@B (*

}`*iJ=@_
}@)
)-@?
M
-
+
@y

T
@@ -556,8 +529,7 @@ k
@9
k *KT)(@9
@9) @i!I)
- 
-
+ 
k
 
k
@@ -567,23 +539,22 @@ k
k 

k
-
-
-26
-
-R:
-@@
+
+
+
+R:
+@@
@@ ?aJ@(
-|@
+|@
-
-Rk?9?a?9?9(9*x`@L
-@
-
+
+Rk?9?a?9?9(9*x`@L
+@
+

-KES
-ka
+KES
+ka
*b
!2 *
i *?=
@@ -598,7 +569,7 @@ i *

*
!2 *
- *l6@)N=
+ *l6@)N=
J!2W*V
@@ -650,12 +621,12 @@ J!2\*V
K6mu KJK
k!2i *V
k
-  *aQ
+  *aQ
K6nk KJ K
!2*H
k
-*
-
+*
+
!2
*K

@@ -687,9 +658,9 @@ P*
*
!2 *K
-
+
`
- (
+ (
!
*E

@@ -742,10 +713,10 @@ K6nk KJ K
k)
7*
R
- @
+ @
R%
-
-
+
+

!2 *I
 *
@@ -783,29 +754,29 @@ K
V
R~
ii?ka
- @
+ @

K)
!2 *
 *)@ Ռ2@y(x
N
-K
-"
+K
+"

-
+
R
-)@
+)@
@R) )

( 
-
+
7
7
7R 
|r03Rӛr RM7 }@ SA+R
@L=<
-
-@@_km
+
+@@_km
K6{ KJK
k!2i *_
k;
@@ -837,7 +808,7 @@ k;
j
*)*2?
2)!
- *)j
+ *)j
2)!
*,Tj
@@ -862,7 +833,7 @@ B

a*)G@,
-*w*@2
+*w*@2
!2
*
j
@@ -893,7 +864,7 @@ k;
2)!
a*)G@,
*
-*w2
+*v2
@u
@3
K*2?
@@ -921,7 +892,7 @@ k;

j
*)
-*_
+*_
2)!
*,T
@@ -936,7 +907,7 @@ k;

a*)G@,
-*u2
+*u2
k;
I **#92
k!2j
@@ -967,357 +938,363 @@ k!2j
*?9'
*
- *#
+ *#
===
-===u
+===u
p@9
-k
-*)ESA)9q blx9Lyb
-
-K)) @) 
-*B! *`%R
-
-
-@h
-@h
-)tZ
+k
+*)ESA)9q blx9Lyb
+
+K)) @) 
+s*
+*B! *`%R
+
+t
+
+@h
+@h
+)tZ
)c̱
)
 *B! *`#
-
-#
+
+#
R
)#
-$s
-cJem} WRI} c `h)cӫ) *! *#
-)r9aqq*
-cJem} WRI} c `h)cӫ) *! *#
+ s
+cJem} WRI} c `h)cӫ) *! *#
+)r9]q q*
+cJem} WRI} c `h)cӫ) *! *#
-)qp*
+)qp*
)cӫ
 *(
-a!*r@
-cJem} `@WRI} cl)cӫ) *B! *`#
+a!*|r@
+cJem} `@WRI} cl)cӫ) *B! *`#
[R
R*
-)r`2xr9p7p*
+)
)cӬ
)
- *
- R)-S)) R
- q)
- q
+ *
+ R)-S)) R
+ q.
+ q#
-@9
-@
-@b@y@9?$q`
-@9 @9 @9)}`@9Ihipx!pp
- @9 @9@9@9$3E3pp
-@b@ya@9@9h`
-@b@ya@9@9h`
+@9
+@
+@b@y@9?$q`
+@9 @9 @9)}`@9Ihipx!pp
+ @9 @9@9@9$3E3pp
+@b@ya@9@9h`
+@b@ya@9@9h`
@b@ya@9 @9
- @9 @9l`ӟ
-@b@ya@9h`
-@b@ya@9h`
-B)=p>ph@9*"
-@9~@3h
+ @9 @9l`ӟ
+@b@ya@9h`
+@b@ya@9h`
+B)6p7ph@9*"
+@9~@3h
H
h
-
- k
+
*3q

-
+
R R0

-
+

-
-
-
-
+
+
+
+
+
+@w
@9
-@9**{EODWC_BgA
-=S
+@9**{EODWC_BgA
+=S

!
-@9
-@7@H
-@7@H
-
+@9
+@7@H
+@7@H
+
-
+
-
+
}@j
-"
-
-
+"
+
+

]3
-K
-@
-
-`98@8
-i
+K
+@
+
+i
@
]3B*5
-K
+K

]3
-K
+K
-@
-S 3/
+@
+S 3/
X)J)
*
hJx)
*(*#
@
-
+

]3k@B*
-K
-@U
-@@
-
-@T
-@2\c2@92\c6@92\
+K
+@U
+@@
+
+@T
+@2e\c2@92`\c6@92[\

]3
-K
+K
@
p)
-*)=(*=
+*)=(*=
}SJ
}3


-A
+A

]3B*5
-K
-@U
-@[@[5`
-@@
-@t
-@[`@
-
-@Y
+K
+@U
+@[@[5`
+@@
+@t
+@X[`@
+
+@Y
I
-*` *
+*` *
E@_kKT$
-l}@} J`H `J } f}H H}}J 2
+l}@} J`H `J } f}H H}}J 2

]3
-K
-@
+K
+@
}H)J)
*
XJh)
*(*ZR r (
-`pJ H* *(
+`pJ H* *(
@
-H@h?((@(
+H@h?((@(
B
]3B*5
-K
-@U
-@@
-
-@T
-@
+K
+@U
+@@
+
+@T
+@
S 3
-
+

]3

]3hB*5
-K
-*) *
-
-
-
+K
+*) *
+
+
(
@9(
*
-
-@9x
-@9@9@9R
-8x
+
+@9x
+2U^
+@9@9@9R
+8x
Yc***L@9M@93
86
-
+
@
-
-
-@@9*@
-~?
+
+
+@@9*@
+~?
=
-=
+=
-
-@  ?k
-k
-
-32
-2xQ@
-4
-@
-
-
+
+@  ?k
+k
+
+@
+
+
_
-
+
+NA NNBN*R
kUZyS}@} c 
-
-7
-CzdAz
-
+
+7
+CzdAz
+
CzdAz
-
+
~2?
_ W@
_

|
-!
+!

-
-
+
+L@
+

-A*
-
-
-
+A*
+
+
+
+)b) KR)  )
- b 
-
-@@@@@@a
-EC
-F FrEs
-/
+ b 
+
+@@@@@@a
+EC
+/

,
D
-2
+2

,

-2
+2

,

-2
-
+2
+

-
-
-
+
+
+
@ ??AT@
-@ ??AThf@h
+@ ??AThf@h
-1@9_ k
-%@9_ ka
-@h
-6@ChBC
-)@2
-9aCa:A?
-h
-@B
-@BA
-
-@UB
-@AA
-@A@5
-@A@57
-@
-
-@OA@5
-@DA@5V
-
-@t@@5
-@i@@5v
-
-@5@@5
-@*@@5w
-k
-@?@5
-@?@5
-@?@5
-@?@5w
-
-@E?@5
-@:?@5
-
-9
-
-
-
-9X>A
-9=>A
-
-.z^
+1@9_ k
+%@9_ ka
+@h
+6@zChBC
+)@2
+9"Ca:A?
+h
+@cB
+@AA
+
+@B
+@uAsA
+@tA@5
+@iA@57
+@
+
+@A@5
+@A@5V
+
+@5@@5
+@*@@5v
+
+@?@5
+@?@5w
+k
+@?@5
+@?@5
+@W?@5
+@J?@5w
+
+@?@5
+@>@5
+
+9
+
+
+
+9>A
+9=A
+
+.z^
-@K
-M
-@==<;:;T`@@
-@=::T`@a"s;`@a@bR
-@=V:T:_T2C:
-
+M
+@==::T`@@
+@=::T`@a"4;`@a@bR
+@=::_T2:
+
*KTZA9@9
-Ie9
-@]:@5
-@R:@56
-@
-
+Ie9
+@:@5
+@:@56
+@
+9*{_O{C
+28{
+28*{__WO{
+2,:
+28R*{rE9 2
+
@wji=
-zrkjjlji
+zrkjjlji
@ka
-@(
-qR
-
+@(
+qR
+
-
-zrb
+
+zrb
+
+8
@
@H
trR
- urRR
+ urRR
@
@(
-
-)uS
+
+)uS
j5G@*
-K_k
+K_k
qr zr
-
-k
-krvr
-
-?
+
+k
+krvr
+
kj

K_ kT@@)@_ k Tj@
-
-@R yrhj)=Rwr`j<
-
+
+@R yrhj)=Rwr`j<
+
@
@@ -1334,8 +1311,8 @@ K_ kT@@)@_ k Tj@
@N
@
-
-
+
+
ǝR)ij)
R M )

@@ -1365,195 +1342,197 @@ cr)

* R r
r)ij
-*qyn@ jmAjm
+*qyn@ jmAjm
7c
-7c
-7
-7@'
+7c
+7
+7@'
 t
-*
+*
@
-
+
) C)
i
7@*

-
-
-(1aB
-1a7
- 7@
+
+
+(1aB,
+1a7
+ 7@
R R5a
-)a ***8z|xI*?
-=
+)a ***8z|xI*?
+=

--3 
-@2
+-3 
+@2


-2h
+2h

-
-
-1@9_ kA
-kA
-
+
+
+1@9_ kA
+kA
+

-
-
+
+
@ @R
-@j
-
-
-@9@9H7@9@9@9@9+@y[}S;3I]Sk
+@j
+
+
+@9@9H7@9@9@9@9+@y[}S;3I]Sk
(
-(
+(
*KT}S(C( eA9 @
- e9([A9q
-
- @9@99}SY3< 3h#@ A1
-(
-@*
-(
-@* (* (`
-@
-y'
-@*2s'
-@*t'
-@*6'*8'S'
- 0Q?q
-k
-
-3
+ e9([A9q
+
+ @9@99}SY3< 3h#@ A1
+@*'
+@*'*'`
+"@
+@
+@*28'
+@*9'
+@*&*&'
+ 0Q?q
+k
+
+3

-H
-2Bt;*)
-
+H
+2B*)
+
+7y(
+*y(K
+
)bJR;
-
-E@_kaT
+
+**7y(,
+E@_kaT
}@i|@W
-E@_kaT
+E@_kaT
I
-k!
+k!
@t
-
+

-*
-
+*
+
)bJR9
-hJIR
+hJIR
J
-j 
-K%
+j 
R/
*R)}Sr)}
-)fj I
-2B<),
-
-
-
-E@_kaT?
+)fj I
+2B)
+
+
+
+
+
+E@_kaT?
}@i~@\
-E@_kaT
-T
-
-24
-2ciN
-j
+E@_kaT
+
+j
@9Y*G
- _
- ?
-
- %R
- R
-
+ _
+ ?
+
+ %R
+ R
+
-o
-
-ka
-k
-A
-?A
-
-
-
-
+o
+
+ka
+k
+A
+?A
+
+
+
+
BzA!
* !
-
+

Kh
k
-
-
-
+
+
+5
+**R R2
+
@%
- @`
+z @`
@
- @`. @- @` @ @`6 @5 @` @ @`> @= @`R@qChr@@uChv@@yChz@@}Ch~@@Ch@@Ch@@Ch@@Ch@@Ch@@Qr wR@j)@)ihI
-@@Dh@@ Eh@@Dh@@Eh@@Dh@@Eh@@Eh@@Eh@@T9h9@@%Eh&@@T9h9@ @*5E)j6)@jI
-@@ Gh@@!Nyh"y@@Gh@@Gh@@Gh@@!Gh"@@%Gh&@@)Gh*@@-Gh.@@1Gh2@@5Gh6@@9Gh:@@=Gh>@@AGhBR@j)@)ih8I
-@
-
-*{BOAWè_O{C
-@@MAh
-
-
-
-@H
- 
-*
+u @`. @- p @` @ k @`6 @5 f @` @ a @`> @= \ @`R@qChr@@uChv@@yChz@@}Ch~@@Ch@@Ch@@Ch@@Ch@@Ch@@Q3 wR@j)@)ihI
+@@Dh@@ Eh@@Dh@@Eh@@Dh@@Eh@@Eh@@Eh@@T9h9@@%Eh&@@T9h9@ @*5E)j6)@jI
+@@ Gh@@!Nyh"y@@Gh@@Gh@@Gh@@!Gh"@@%Gh&@@)Gh*@@-Gh.@@1Gh2@@5Gh6@@9Gh:@@=Gh>@@AGhBR@j)@)ih8I
+@
+
+@@MAh
+
+
+
+\
+ 
(
y)5 (
yh@h@h@h@h@h@h@h@h@h@h@h@h@ a yh@ i yh@ m yh@ yh@ 
-9B
+9B

-
+
H4j
-(4h*
-
-B
-
-A! @l
+(4h*
+
+B
+2q
+
+A! @l
+2h@
R
-(
-
+(
+
+25h@
q UI@11
@,
-! @l
+! @l
1 I@ 
B
-A
-h
+A
+h
B *x" 
j
-JWi(8_I)8
+JWi(8_I)8
B *v" 
j
-JUi(8_I)8
-*
- 
+JUi(8_I)8
+ 
)*i(8h@
-
+
)*i(8h@
-
-)
-j
+
+)
++
_!
-
-
-
-* y
+
+
+
+* y
)
* y2
-9
-hr@
+9
+hr@a
_!

@@ -1561,90 +1540,84 @@ B *v" 
9iBSJ

-?a
-S)
-
- ։
+S)
+
+ ։
9
9iBSJ

-?a
-S)
- )B
-
+S)
+ )B
+

-SJ
+SJ
=
-Y
+Y
9
-9a
-
+9a
+

A )
-K*Q_
+K*Q_
@*B_

_ 

-9_)B?
+9_)B?
)B?
-
-@k6jyj ?!
+
+@k>jyj ?!
%/
-@kA7jyj ?!
+@kA?jyj ?!
-

1

-5
-@k6jyj ?!
+5
+@k>jyj ?!

-@kA7jyj ?!
+@kA?jyj ?!
 ?!

 ?!

-o)@(
- a
-)!(
+0)@(
+ a
+)(
-
-b
-cP2*s 
-22d@)eA)b
-2+dB)fC)g&@b
-2c
-2 c. 2c 2c6 2c 2c> 2"
-2cvCdrCezCf~Cb
-2cCdCeCfCgCb
-dD
+
+2c
+2c. 2c 2c6 2c 2c> 2"
+hD
+dD
-
+
i/@8
-
-B)T
-R
-
-
-
-!
- !
+
+B)T
+R
+
+
+
+!
+ !

-
-
-
-
-
-
-
-
-B***h@
-@c
-9 2}R
-@
+
+
+
+
+
+
+
+
+B***h@
+@c
+@
@@ -1668,7 +1641,7 @@ pid 0x%x tid 0x%x
-
+
============= VCT INFO =============
@@ -2198,9 +2171,9 @@ filter %d data callback len fd:%d len:%d, %02x %02x %02x %02x %02x %02x %02x %02
filter %d data callback ok
-
+
-
+
@@ -2209,7 +2182,7 @@ filter %d data callback ok
-
+
Ddf",FT|
)*
 !"#$%&'(ӛխ
@@ -2265,9 +2238,9 @@ filter %d data callback ok


 
- 
+ 

-
+
0 0 0 00000
 !"#$%&'()*+,-./0123456789:;=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]112131415161718191:1;1<1=1>1?1@1A1B1C1D1E1F1G1H1I1J1K1L1M1N1O1P1Q1R1S1T1U1V1W1X1Y1Z1[1\1]1^1_1`1a1b1c1d1e1f1g1h1i1j1k1l1m1n1o1p1q1r1s1t1u1v1w1x1y1z1{1|1}1~11111111111111111p!q!r!s!t!u!v!w!x!y!`!a!b!c!d!e!f!g!h!i!
2 2 2 222222222222222$$$$$$$$$$$$$$$$$$$$$$$$$$t$u$v$w$x$y$z${$|$}$~$$$$$
@@ -2298,328 +2271,322 @@ TZ[XduenrvMz{M|>~{+ʌd_iѓCOzOPhQxQMRjRaX|X`Y\U\^`0bh
_e=[HOS SSTTW^`bbUclfmu2xހ/ނa E^ffprO}Rj_SaSgjothyhyǘĘCTzSiJ|_buvB9S<__lsbuuF{ON< NUOSY^0flUtwfPXx[P[h``eWl"oopUPӗrRDQ+TTcUUjm}fwyTTv䆤ԕ\N OYZ]R`bmgAhl/n8* NUPTWZYi[[awiwm#pr犂홸R8hPx^OgGLNTVs WSVX[1aj{sҎGkWUY
IoQ[tz@ZOTS>Y\>cymrϒ0NDQRWb_lnpPppqsitJanQW_`gafYJNNN|TXX}Y\'_6bHb
fgfkimmVnnooo]pr%tZttv\y|~ဦkN_twj
-
+
-
- 
- HI
- 
-
- 
-
-
- 
- 
- 
- 
- 
-
- 
- 
- 
- 
-
-
-
-
-
- 
- 
- 
-
- 
-
-
- 
- 
- 
- 
-
- 
-
-
-
- 
-
-
-
-
-
-
-
- 
-
-
+
+ 
+ HI
+ 
+
+ 
+
+
+ 
+ 
+ 
+ 
+ 
+
+ 
+ 
+ 
+ 
+
+
+
+
+
+ 
+ 
+ 
+
+ 
+
+
+ 
+ 
+ 
+ 
+
+ 
+
+
+
+ 
+
+
+
+
+
+
+
+ 

-
+
-
+

-
+
-
+

-
+

-
- 
- 
- 
-
- 
-
-
- 
- 
- 
-
- 
-
-
-
- 
-
-
-
-
- 
- 
- 
-
- 
- 
- 
- 
- 
-
-
-
-
-
-
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
-
- 
-
-
- 
- 
- 
- 
-
-
-
-
-
-
- 
-
-
- 
- 
- 
+
+ 
+ 
+ 
+
+ 
+
+
+ 
+ 
+ 
+
+ 
+
+
+
+ 
+
+
+
+
+ 
+ 
+ 
+
+ 
+ 
+ 
+ 
+ 
+
+
+
+
+
+
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+
+ 
+
+
+ 
+ 
+ 
+ 
+
+
+
+
+
+ 
+
+
+ 
+ 
+ 
- 
- 
- 
-
-
- 
-
-
- 
- 
- 
- HIJK
-
- 
- 
-
- 
-
-
- HI
- 
-
-
- 
- 
- 
- 
- 
-
-
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
-
-
- 
-
-
- 
- 
-
-
- 
-
- 
-
-
- 
-
- 
- 
- 
- 
-
-
- 
- 
- 
-
- 
- 
- 
-
- 
-
- 
- 
- HIJK
-
- 
- 
-
- 
- 
- 
- 
- 
-
- 
- 
- 
- 
- 
-
-
- 
-
- 
-
- 
- 
- 
-
-
-
- 
- 
- 
- 
-
- 
- 
- 
- 
-
- 
-
-
- 
-
- 
- 
- 
- 
-
-
- 
-
-
-
- 
-
-
-
- 
-
-
- 
- 
- 
- 
- 
- 
- 
- 
- 
+ 
+ 
+ 
+
+
+ 
+
+
+ 
+ 
+ 
+ HIJK
+
+ 
+ 
+
+ 
+
+
+ HI
+ 
+
+
+ 
+ 
+ 
+ 
+ 
+
+
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+
+
+ 
+
+
+ 
+ 
+
+
+ 
+
+ 
+
+
+ 
+
+ 
+ 
+ 
+ 
+
+
+ 
+ 
+ 
+
+ 
+ 
+ 
+
+ 
+
+ 
+ 
+ HIJK
+
+ 
+ 
+
+ 
+ 
+ 
+ 
+ 
+
+ 
+ 
+ 
+ 
+ 
+
+
+ 
+
+ 
+
+ 
+ 
+ 
+
+
+
+ 
+ 
+ 
+ 
+
+ 
+ 
+ 
+ 
+
+ 
+
+
+ 
+
+ 
+ 
+ 
+ 
+
+
+ 
+
+
+
+ 
+
+
+
+ 
+
+
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
- 
- 
- 
- 
- 
-
-
- 
- 
- 
-
- 
- 
-
- 
- 
-
-
-
-
-
-
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
-H, h h<1@|2X3p49:<=@(A@TBX`BpB ClP|PP
-
-
-
-%
-%
-%
-/
-0
+ 
+ 
+ 
+ 
+ 
+
+
+ 
+ 
+ 
+
+ 
+ 
+
+ 
+ 
+
+
+
+
+
+
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+ 
+H
+h
+4p
+&
+
+
diff --git a/lib64/libam_ver.so b/lib64/libam_ver.so
index 26fcd80..9989357 100755
--- a/lib64/libam_ver.so
+++ b/lib64/libam_ver.so
@@ -1,2 +1,2 @@
-ELF
-
+ELF
+
diff --git a/libam_mw.so b/libam_mw.so
index 98a1684..1b00871 100644
--- a/libam_mw.so
+++ b/libam_mw.so
@@ -1,94 +1,97 @@
-ELF
+ELF
-
+
-
+
-
-
-
-
+
+
+
+
+
-
-
-
-%
-
-
-
-
-
-
-
-
-03/K
+
+
+
++
+
+
+
+
+
+
+
+
+03/K
0
- @
-
-
-
- 0
-
-
- 0
-
+ @
+
+
+
+
+ 0
+
+
+ 0
+

-
-$
-
-,0
-
+
+$
+
+'0
+

%
s
d
-,
+,
-
-
+
+
,
X 
,0J0
-
+
P
-i$
-X
-
-A
-
- 
-$
-
-
-ℱ$`|! 
-$6/
-
-\0
-
-`0 
-h0
-
+d$
+S
+
+A
+
+ 
+$
+
+
+ℱ$`|! 
+6/
+
+\0
+
+
+`0 
+h0
+
-a
-
+a
+
-`PP
-0
-
-@
+`PP
+0
+
+@
|
-
-l
-
-h
-
+
+l
+
+h
+
@
@
@1
@@ -117,30 +120,31 @@ t @


-
+


 S

-
-0)" ` (b $L.D lQダ at
-[
+
+0)" ` (b $L.D lQダ at
+[
t8W
-PO
+PO

-phl `
+phl `
+
4
-
-
+
+

- r$:d
+ m$:d
dj
-45(⺐p0 
-
+45(⺐p0 
+

Q&d@ `T`
-㺐U_OJ
-pOd
+㺐U_OJ
+pOd
pO
@
OP  0
@@ -148,132 +152,130 @@ t @
0U<z
@OZ
_O
-EU O ̚
-
+@U O ̚
+

tğP p

-@
-Z
-O@$ 
-/O
-
-
+@
+Z
+O@$ 
+/O
+
+
-
- 
+
+ 
O
-
-
-,
-sD#[☳0*s
-
-
+
+
+,
+sD#[☳0*s
+
+
0O1D  !D0qDqD$ 0$ 0 p
-,
+,
4
-͠A 0
-z
+͠A 0
+z
 0 </e
-
-0 i
-tpp
-
-d`U
-
-3@<
-
+
+0 d
+tpk
+
+d`P
+
+3@7
+
-
+
0
-
- 0
- H
-cSTp
+
+ 0
+ H
+cSTp
TT#TL0HH
- O,@
-1Cy
-8 H
+ J,@
+1Cy
+8 H
X
4
H
-L1
-
+L1
0
8@
-
-@_p
- 
- 0<0
+
+@_p
+ 
+ 0<0

l
- 
-
-
-
-Ķ
-|u[
-
+ 
+
+
+
+Ķ
+|u[
+
-0 4
+0 4
-0.
-#
- ) 4
+0)
+#
+ ) 4
sx#x@$0llß0  @
@
- @0
-
-,
-o0
-kj 0
-
-
-0H
-А
- @
+ @0
+
+,
+j0
+fj 0
+
+
+0H
+А
+ ;
蔟
-0 
+0 
P0$
-dt
+dt

-
-0ßC 
-0#
+
+0ßC 0#
bP4P8P ԂԢB
-

P
Y
-V
+V
p
-
-|1@x
+
+|1@x

-
+
C
P
-` \Ơ
+` \Ơ
-Tp
+Tp
<
-
-
+
+
N
-
+

@@ -281,18 +283,19 @@ N
P
,,,ͅ
-S
+S
-
-P0a
-P
+
+
+P0a
+P
0
-X
-
+X
+

@@ -304,236 +307,234 @@ X
H

-@
+@

-
-
+
+

-
+

-
+
3/

-
+

-
+

-
+

-
+

-
+

-
+


-
+

-
+

-
+
0
-,,
+,,
P
-X
-xS0t
-0
+X
+xS0t
+0
- e8Q04
- UpP
- P
+ `8Q04
+ PpP
+ P
- P
+ P
P
-
-
+
+
-{T`
-
- 0
-v
-3
- a
+{T`
+
+ 0
+v
+3
-X
-
-0 
+X
+
+0 


-
+
-X
-0 
+X
+0 

-
-
+
+
P
-X
- AB‘A
+X
+ AB‘A
QOO
-
+
<ŸHP8
-(E,
-
-HpO00E4 E
-O@@0Q H0 Q
-/O
- P.
- A`
-
+(E,
+
+HpO00E4 E
+O@@0Q H0 Q
+/O
+ P.
+ <`
+
F, 0 </e
-
-ğ
+
+ğ
-$ 
+$ 

- (0< @ 0`0
- P
-0
-J 
-
+ (0< @ 0`0
+ P
+0
+J 
+

- p
+ p P
-$
- 0 </ 
-` , 0
-
+$
+ 0 </ 
+` , 0
+
-]H
+]H
-
+
0
-"H
+"H

80

-x
-(2
-
+x
+(2
+
-H
-0 
-
-DH
+H
+0 
+
+DH
PAy

- 
-8 q
-,M
+ 
+,M


-
+

-
+

0Ȱ
-@N
+@N

 `
-
+
-
+
d
@  @$,@


-t㲀  0
+t㲀  0
`t
- 
+ 

͂ 
-
+
͈
-
-
- 0
-
-
+
+
+ 0
+
+

-
-
+
+
 
-
+

0
-
- 
+

-
+
+




$

-`d
+`d


E|`


@
-0
-J XtA
-
-`t
-
+0
+J XtA
+
+`t
+
@

@@ -571,95 +572,99 @@ PT0
t
- 
-
+ 
+
- 
-
+ 
+
Vp


- 
+ 
-A
-,]
-#Ϡz✊
-
+A
+,]
+#Ϡz✊
+
+
ZP
-Js?
+Js?

-
+
p)l0
- 
-
-X/؈
+ 
+
+X/؈

-
+

-岯@<x
-
+岯@<x
+
-傟冿'
-
-J_ǟ
+傟冿'
+
+J_ǟ

-
+
-rv/V
-
+rv/V
+

-Qbfş
-
+Qbfş
+

-BX%FT
+BX%FT

-
+
-ʠ
-
-JR_,$V(t
-
+ʠ
+
+JR_,$V(t
+
P4
p┓
-
-
+
+
-p
+p
+
- 
-
- 
-
+ 
+
+ 
+

-
+

-Cp`
- 0
-
+Cp`
+ 0
+
+
!到BϠ㌠F0
- "P
-HL!冟0 
-
-8rA<"
-
-#$Ÿ(Ư0
- 
- BP40"|>̀x.0tO-M@
-͊PpP8|0
+ P
+HL!冟0 
+
+8rA<"
+
+#$Ÿ(Ư0
+ 
+ =P40"|>̀x.0tO-M@
+͊PpP8w0
0
*0

-
-0  
-0
+
+0  
+0
+
Q
x]Pl
@@ -697,48 +702,48 @@ h
E
-$$%
+$$%
L@t@
-
-
+
+
!
dx@

` x/O`
-
-
-
+
+
+
-B/lŸ0d"
+B/lŸ0d"
-B?F/0
-
+B?F/0
+
-#pAl0
-@a
-
-
-&8x
-!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-@dP@
-
+#pAl0
+@a
+
+!8x
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+@dP@
+
0
- |
+ w
tl0
@@ -781,77 +786,77 @@ l
Ϡ
-0$
+0$
-J"0ϊ4
+J"0ϊ4
-"0ϊ
+"0ϊ
-"0ϊ$
-
-r0v
-
+"0ϊ$
+
+r0v
+

-
-
-
-
-
+
+
+
+
+
-"
-
-b0f
-
+"
+
+b0f
+
-
+

P

@
-
-
+
+

-
+

-
-
-
-(4AOLe\U|Q0OO~/Oh0`蠉H
+
+
+
+(4AOLe\U|Q0OO~/Oh0`蠉H
`
`p P
-
+
 Re
-
+
- 8@
+ 3@
,
Q̍@ptd ,@谀P$
-;  F
+;  A
0  
8Y~<
-
-Bh
-
+
+Bh
+
@,@LY{~oO
(P
-
-
+
+
-
+
<1
-x
- @
+x
+ @
 x(
-,@(T(h | (Nw
+,@(T(h | (Nw
08 pP
T
U
@@ -860,132 +865,133 @@ U

-
+
pP`m⮟6
-
-
+
+

d0
-
+

- ᴁ<㸂
-AU
+ ᴁ<㸂
+AU

-
+
Š]0fL
-
-
-
-  0
+
+
+
+  0
L
-
-
-
-
-D
- P
-v!p
+
+
+
+
+D
+ {P
+q!p
 0 </e
-
-&@
-0牤
-`
-4
-
-|p `
-
-
+
+&~@
+0牤
+`
+4
+
+|p `
+
+


-
-P
-
-
-p
+
+P
+
+
+p
0
- 
-s
-M
-Ѝ
-Ѝ
-KT@
-KT@
+ 
+n
+M
+Ѝ
+Ѝ
+KT@
+KT@
-
-
+
+
p
 0ᬠ
- `
-
-
+ `
+
+
`
-t0p 
-G
+t0p 
+B
,1@ `p4ǐ
- 0
-
-
-
+ 0
+
+
+
0

-
-
+
+
+
g

0 @`.dP^"
-
+
,
-` 0
-
-x
-w
-
- &
- 
+` 0
+
+s
+w
+
+ !
+ 
0
-
-а gR
+
+а gR
< 
-@  \
-
-
- 
-
-
-H+
-<08 
+@  W
+
+
+ 
+
+
+H+
+<08 
X
- @
-
-
-
-
-Ϳ
-
-0 
+ @
+
+
+
+
+ȿ
+
+0 
0B
-
+
<˖
@
-(ǖ
- 0 47
-
-$@9
-0P
-@ @ᅿ
+(ǖ
+ |0 47
+
+$@9
+0P
+@ @ဿ
-0P
-@; 3ꬾX
+0P
+@; .ꧾ
-
-rN@
-rN@
-0
+
+rN@
+rN@
+0
!

@@ -999,61 +1005,63 @@ rN@



-0
-P
+0
+О

-`iF3
+`iF3

@
-
+
 @ @` @
-0
+0
 
- ЍO=ܙ
-`"`
-
+ ЍO8\
+`"`
+
P b
- 
-(›\ <3/("\2
-
-
-
-^ 
- 
-
- &
-0 a
- 
-
-
-
-
-
+ 
+(›\ <3/("\2
+
+
+
+
+Y 
+ 
+
+ !
+0 a
+ 
+
+
+
+
+
 
-
+
+ <0 


lU

 
-
-
-X@@ 
+
+
+X@@ 

- a
-"
-
-o#0
+ a
+"
+
+o#0

-
-
- 
-0 
-a%夕圥3 `P
+
+
+ 
+0 
+a%夕圥3 `Ph
3
P 
&`
@@ -1062,44 +1070,44 @@ X@@ 

0

-
+
0 A 
-
+
T
x
-
-
+
+
&p
-2
+-

l
-
- 
-
+
+ 
+
L
-
-
-x
-x
+
+
+x
+x

- 
-
- p
+ 
+
+ p

-
-4
-4
+
+4
+4

-0
- p
-4
-|
+0
+ p
+4
+|
XCXcPT
0
-P
+P
@@ -1107,78 +1115,78 @@ XCXcPT
-
-
-T0 
+
+
+T0 
-P
- 8
-@>d
-
-ZL
-<`
- 
-"
+P
+ 3
+@>d
+
+ZL
+<`
+ 
+"
-N
+N
T
DS@<p834 0_pp
@
-Ÿ0
+Ÿ0

-
- 0
-
-
- ?`"
-@ "`
+
+ 0
+
+
+ :`"
+@ `
0
-
-`rT
-0
+
+`rT
+0

0
-
+
-
+
T0

@
|

-0
-
-
-(j
+0
+
+
+(j
0
-
- ܰ3
+
+ װ3
@  b
=
@
-!
-
- 8
-!
- @@ 0
- @ 0
+
+
+ 3
+!
+ @@ 0
+ @ 0
(\2C<
- @ 0
-t
- @ 0
-@ 0
- @ 0
+ @ 0
+t
+ @ 0
+@ 0
+ @ 0
+hB
 P
-
- P?6
-@0j
-
+
+ P:6
+@0j


@@ -1186,80 +1194,81 @@ T0

P
-|0
- $
-t5
+|0
+ $
+ $
+t5

- d0
-(|X|ḧp<,
- ' P
-
-U n  P
- k =f ⃬̔ P
-Lu 0
-  
- |k, 0
+ d0
+(|X|ḧp<,
+  9 " P
+
+U n  P
+ f =a ~̔ P
+Lu 0
+  
+ |k, 0

-P0
+P0
P0䡟A
-
- $
-
- ໪P0P
- D
+
+ $
+
+ ඪP0P
+ D
z
I
T
-(
+(

0I

 
-
-0<
- 
-,d
-
+
+0<
+ 
+'d
+`

J

- eŸ0  
-dRש
-0
- 
-
- 
- L
+ `Ÿ0  
+dRҩ
+0
+ 
+
+ 
+ L
T嶰
-\%PpXVT`Pş
+\%PpXVT`Pş



 

- 04
+ 04

-T
-1C~
+T
+1C~
P V^4p
X 00
⬎
1
- ᥧ,P
+ ᠧ,P

-
+
L0
-
-T@
+
+T@
x[⼠pPpd@
`

@
-
+
0@
pP㬰O㌠l`E∐地)h0
@@ -1269,42 +1278,43 @@ pP㬰O㌠l`E∐地)h0
-$~
+$~
0
Ld.P`pP
- 0 
- 0@
-ppP0`Tpx\@lpt0 娠x
+ 0 
+ 0@
+ppP0`Tpx\@lpt0 娠x
,
-0(f
+0(f
`0

-
-ߥ 
- 
-
+
+ڥ 
+ 
+
@
-pP
-pL0
- : 8@<@p@pЀD̰HL@P@pTpXۤ
+pP
+pL0
+ : 8@<@p@pЀD̰HL@P@pTpX֤

-
-
-
+
+
+0
+
G ^ _O
-؀A0!
-
-
+؀A0!
+
+
- 0㢤p
-
-~
-
-p
+ 0㝤p
+
+~
+
+p
@@ -1314,56 +1324,57 @@ d09|@

|@`
-<
-PoP
+<
+PoP
-P 
-
+P 
+
X
-
-
-
-
-
+
+
+
+
+

-
-
+
+
T
-P p```d
-
-
+P p[`[d
+
+
T@
-P 
+P 

-
+
T0
-`d
-嬡姡d
-妡4
+`d
+姡墡d
+塡4



T
-P 
+P 
-
+

-
-
-
+
+
+
P0T\
T0`\P,P|P$X$0`40 p
-P0\ X
-
-ZUd
-T\@\0
+P0\ X
+
+UPd
+O\@\0

-
-
-妟塟ꢟ]0` 
- x
+
+
+
+塟土ꝟ]0` 
+ s
|
ȃ0pß`7 p
<P ;
@@ -1371,65 +1382,64 @@ P0\ X
\Î<0
T

-
- ǝ
-
+
+ 
+
(2
\BS<
To
0 
-H
-
-
+H
+
+

-0"(0, 0
-
+0"(0, 0
+
()\

-
-B
-
- 0
-+
-
-
-}dB
+
+B
+
+ 0
+&
+
+
-
+

- 
+ 
/

-P
-x5圵堵
-1
+P
+x5圵堵
+1
lB
\b$
-lB
+lB
 
- c
- Kl0B
+ c
+ Fl0B
0C ളp#`ß 
@
@
P
-
-
-
-
+
+
+
+ ,Ѝh

\
-
-0
-0@
-
+
+0
+0@
+
|
-0yQ
+0yla



@@ -1437,212 +1447,213 @@ P
Ѝ
`༱
p  0 縹0)
-  2#0   
-0 0
-
+  2#0   
+0 0
+

-P
-B җ
-
+P
+B ͗
+
(\"#<
-
+
|
-
-
- 
+
+
+ 
`2 R
-
+
-
+

- 
+ 
|

-
-
- 
-
-
+
+
+ 
+
+
-@d
+@d
O—d0
-/ P0P 
+/ P0P 
\0
`Dd0
-T00
+T00
\
A^d0
-$$
+$$
\
D
L$ Pd0
-FΠ张 @,0
+FΠ张 @,0
\
ėB
Pd 

- 
+ 
\0
$
=ė@d
-
+
\
$


:*Z
-0ᒔ 
+0ፔ 


-\ 4n
+\ /n


(\


-%
-ጔ"
+%
+ᇔ"
\
S><% @d
-UΠP '0
+UΠP '0
\
<
-
+
H@0
-
-/
+
+*

-L
-L
-L
-L
-L
-L
-L
-L
-L
-2 
-Βb@T<P<
-ƒ<D
-
-
-
-
-
-l
- S
-p|
+L
+L
+L
+L
+L
+L
+L
+L
+L
+2 
+ɒb@T<P<
+<D
+
+
+
+
+
+l
+ N
+p|
-PmD
-
+Pm4T
+
Pl\i`
-P xR
-H O
-0( $
-(
+P xR
+H O
+0( $
+l 
+(
OdP
-/8岠 @V0
+/8岠 @V0
\


-
+
\B8S<
P

0Q
-D 
+D 
HP
-
-
+
+
y84,""
<


-
+
-
-?
-824R8^
+
+?
+824R8^


- 
+ 
-•
-
+•
+
H4
-
-
+
+
-ᖍa1
-
-H3
-(ß
-
-;8B 
-
-
+ᑍa1
+
+H3
+(ß
+
+68B 
+
+
dI
-x
-_
-Ȑg} ` 
-@ 
-_
-_
+x
+_
+Ȑg} ` 
+@ 
+_
+_
-g]P
-g]P
-g}`
-
-`0`
+g]P
+g]P
+g}`
+
+`0`
-
+
$P
- 
-
+ 
+
$P
-
+
$
-p
-p 
- `
-
+p
+p 
+ `
+
-P
-
+P
+
p`
-P
-P*
-@q
-XD3
+P
+P%
+@q
+XD.
$F
@
- ( $
-
-
+( $
+
+

-
+
@
,d
-߉t(
-ډ(t
+ډt(
+Չ(t
$`
@ PDPHTP@@
0@h
@@ -1666,7 +1677,7 @@ $`
@

@Ȍ
- 0
+ 0

@
0,@8
@@ -1683,7 +1694,7 @@ $`
0
 @

-}
+}
@@R  @P0$`

@@ -1699,7 +1710,7 @@ $`

\ 
-
+
P0 
c
Q0
@@ -1710,7 +1721,7 @@ P0 
-Ì
+Ì

ꐠ
1Pf
@@ -1730,20 +1741,20 @@ P0 
@
@
@X
-@ ;O-` M?
-
-
-T
-
+@ 6O-` M?
+
+
+T
+
@$
,T
-4d(
-/(d
+/d(
+*(d

PoO0 pj @;$` €%2+S
p
-(
+(
0
0
@@ -1756,7 +1767,7 @@ p
p0
0 `

- 
+ 
0
@@ -1774,7 +1785,7 @@ p0

 @z

-ɀ
+Ā
wppG
@@ -1783,43 +1794,43 @@ p0
P
`0Čj
-p8
-Xt
- uPx@Xd$
+p8
+Xt
+ uPx@Xd$
p
$`
P 
$
$
`,p
-,
+,
up
bP
-
+
qP
-|
+|
0 `s0|  s P

-}x:
-
+}x:
+
$
@`
@
X
-
+


PX
-
+

- {$
+ {$
(儂
0
-
+


- 
- "{$@
+ 
+ {$@
@
fj
`
@@ -1833,175 +1844,176 @@ z$


-f
+f
@0


4@8

-
+
``
-H⊁B
+H⊁B
$0
P p
 
-
+
$ 0 
-3
+3

L
-
-
+
+
-lLpH@ p
+lLpH@ p
p`
-(
+(


- `
-
-
+ `
+
+
-$ s0
+$ s0

-
+
0
-,
-T su
-u 0
-<P
+,
+T su
+ u 0
+<P

- g @`BNs
+ g @`BIs
-ut;{
-
- `
-<P
-
-<P
+pt;{
+
+ `
+<P
+
+<P
-D`
-sH0
-
-s
-s
-d0A2S
-<`uqE)
-
+D`
+sH0
+
+s
+s
+d0A2S
+<`uqE)
+
0O
-
-<`uqE
-<`uqE
-
+
+<`uqE
+<`uqE
+

-
+
BN㨱
-"Er
+"@r
P
-,0( ( r
-<`
-'r
+,0( ( r
+<`
+"r
0
-r
-<P
- r
-
+r
+<P
+ r
+
0
-@
+@
0
-
+
-0o
-,2Ag 0
+0o
+,2Ag 0
-
-
+
+
-A"P0o8% 
-0 o
-
-  m0@
-
-
-
-
-`
-0
-
-
- 0Pm
-
+A"P0o8% 
+0o
+
+  m0@
+
+
+
+
+`
+0
+
+
+ 0m
+

-t
-
-
- 0
-
+t
+
+
+ 0
+
-@Y@@n
+@Y@@m
-0 m
-
-
-
-|1
- $p
-@
-
-
-
-  dL
+0 m
+
+
+
+|1
+ $p
+@
+
+
+i
+
+  ,M
Ȳ
-0h
+0h
-0
+0




-
-h
+
+Yh
P
-0 <h
- bh0
+0 h
+ /h0
-
-\/
-H?
-4ϟ
+
+\/
+H?
+4ϟ

-
-g< 
-
+
+cg< 
+
-
+
 
-
+

H040
-L ,
+L ,
H4
-L
- f
+L
+ bf

O
@@ -2009,7 +2021,7 @@ R

G
-
+


A
@@ -2017,107 +2029,110 @@ A
ְϰ˰k

-
+
0LP@Dp
-p
+p
8
-
+

-8
+8
u
a
-Dp
-0D 7/Dp
-
+Dp
+0D 7/Dp
+

-
-a#c
+
+a#rc

-
+
u
a
u
-c
+Tc
8
-
- 
- 0AaL
-0a`LP
-0
+
+ 
+ 0aL
+0a`LP
+0

-
-^
-
-
-
-
-
+
+^
+
+
+
+
+
-0
+00
-
-_
+
P
-223H#1T$DRD1TDTDTD
-J
-
-
-j
-a
-
-
-a
-
-
-
-%0`
-
- 
+4323H#1T$DRD1TDTDTD
+z
+
+P
+
+
+
+|
+
+
+
+W
+
+ma
+aa1
+Pa<
+` `
+
+
+
-@
+@

-@
+@
H"H2HR
@$`(,


-
+
"B
0$P0p4

-
+
,
-
-
+
+
!1
`
-
+
-
-2
-
- 0
-[ 
+
+2
+
+ 0
+w[ 
` 0
-Pa
-
+Pa
+
d
- '
- 0#[`
-[X
+ '
+ 0Z`
-
+
-
+
-
+

D
@@ -2133,99 +2148,100 @@ d
`
Pp`נ

-[Z p 0
+Y p 0
 ,
-
+
$
- @<Z
-
+ @Y
+
:
-(Z 
+Y 
J>@
-Z
-
- `I @h
+Y
+
+ `I @h


-0fY
+0Y
P@

-@DY
-6Y0
-j\
-
+@X
+X0
+\
+
P@
-@Y
-H\
+@X
+[



-@  0 X
-$
+@  0 LX
+$
- `#`````
-ăPU  0 TQ 8 \ Ď 00P" ^0PP \10P $`(`[
-
+ `#`````
+ăPU  0 TQ 8 \ Ď 00P" ^0PP \10P $`(`-[
+
$
-
+
,

- 0W
+ 0W
@
$
-Z$`(P
-W
+Z$`(P
+MW
$
-Z$`(P
-
- `P 0
- 0
-
+yZ$`(P
+
+ `P 0
+ 0
+

  @
-D@t
+D@t
t@0
-
+
- V
+ 7V
@

-Y` P
-hV
-Y
+XY` P
+V
+CY

-Y` P
-zY`
-
- `P 0
- 0
-
+-Y` P
+ Y`
+
+ `P 0
+ 0
+
a


O
O ipTT``"d QE
-P 
+P 
+UЍ
-@  h `
+@  h `

4@
@@ -2234,133 +2250,134 @@ zY`

Pؠ ċ
- p8
-
-
+ p8
+
+
0 p /
- p
+ p

A
-
+


-
+
@

- WP
-S
+VP
+vS

-VP
+VP
"
-0 嵀S
- 0
-
+0 嵀$S
+ 0
+


-
+
0
-
+
-
+
      
0
-
+
-
+

@ 0 
-D2(
+D2(

-
-
+
+

-
-
+
+
-`#P(4PO0,R` `
+`#P(4PO0Q` `
`
@J
-0f
+0f
>
-
-
+
+
- Q
-
+ +Q
+

-
+
 ?
@
-
-
-UP
-QP
+
+
+O
+O


{ @0`
- `,
-@ L
+ d:
+@ L

-
- P
+
+ P
\\x

-!
+!

- hO
+ O
-F.@
-H
-
+F.@
+H
+


-N
+lN
BA
-
-F
+
+F
-Np@
+)Np@
-BA_
+BA_
Ѝ
-W
+W
p
-
-
-\0Xp
-
+
+
+N3
+\0Xp
+

-
-2@
-Ȱ2}Ϡ`娐嬐崰帰ఄ䰄4M
- M
-L@ 
-L<< 
-Hr{o
-
+
+2@
+Ȱ2}Ϡ`娐嬐崰帰ఄ䰄L
+ aM
+L@ 
+pL<< 
+Hr{o
+
-P
+P
H
-ȍ`
- `&
+ȍ`
+ `&
!
"
@@ -2371,42 +2388,42 @@ $
'
(
-
+
-t˟
+t˟


@@tP

H
-
+

p
P,

HPUP
0 
- @K$0
+ @J$0


 

-P8
- ɟ
-
+P8
+ ɟ
+
,@
-
-KH
-K
+
+QKH
+$K
`
(p
 
- Ju
- T)
-I
+ Iu
+ T)
+I
H
~`
@@ -2414,43 +2431,43 @@ H
a

-(`
+(`
L0
,@9ޱA@
9
H
-P
+P

-D8
+D8
P
P P (
9
-|@x0
-l0$
+|@x0
+l0$
8
-l$
+l$
H
`
q~ 0
-`
+`
T
Hb
-0
+0
p` 
r
0
, 
~o `
a 
-P 
+P 
HB
3`a @$ 

-
+
H
P
@
@@ -2458,104 +2475,101 @@ Hr
|Ppp`Qp $p
P%
-D
-
+D
+
- J
-p`
-
-IH?`8
+ 9J
+p`
+
+G?`8
D`<PpVp<0
Х
1 $
-İDpp 
-H
+İDpp 
+G



-tp 
-G(G
-G8P
+tp 
+xG(G
+^G8P
@
-
+
pP
-
-`G
-G 
-Fop:
-
-
-
-`0
+
+
+I
+F 
+Fop:
+
+
+
+`0
0

-x
+x
Hr
-@[
-E -"{
-p@
+@[
+p@
t`
-
+
H
-`
-
-
- &G
- G
-
- 
-D
+`
+
+
+ F
+ F
+
+ 
+9D

-C
-C `0
-
-C 0
-
-
- 0
- 0
-P
+B
+B `0
+ B 0
+
+
+ 0
+ 0
+P
-Tp0
+Tp0

-
+
-0AЍ
-
-
-t
- 0
-pP
- 
-P帠u
+0vAЍ
+
+
+t
+ 0
+pP
+ 
+P帠u
-0
-
-A0q
-
+0
+
-
-
-!?
+
+
+>
p⨀ 
-
-
+
+
ܐ p؀ 
-
-
+
+
ܐ p؀ 
-
-
+
+
-
+
-
-
-
-
+
+
+
+
<
@@ -2569,118 +2583,119 @@ A0q

<
-<
-
-=
-
-
-
-
-
-
+<
+
+h=
+
+
+
+
+
+



-
+

-
-.=
+
+<
0
-
-A
+
+A
 
-U
-@ @
-
- F<0 p
-p
+U
+@ @
+
+ ;0 p
+p
⪑U`U
-
+

-<
-
-
-
-
-
-
+<
+
+
+
+
+
+
p
-<
+<
q@p @
-
+
,
<
2
<
쀟
-
+
,
<

-<
-0 ,
+<
+0 ,
-• <2
+• <2
`BD 
-倰ˋ…
+倰ˋ…
D@
-@0㘢
+@0㘢
@ⰀD
Р
pD 

#0D
-P"
-< T:
+P"
+< 9
L0
 
L0
- 
-D0
- 9
+ 
+D0
+ =9
<
-
+
<

-
+
<


-
+
B
\


-
- E8
+
+ 7
,
-
+
+8
0
-
-
-
+
+

2
-@
-0
-
-
+@
+0
+
+

- i7
+ 7
-
$
-<
+<
 ,
-!<
-
+!<
+
@@ -2692,86 +2707,87 @@ $
-"
$
-<
-Ѝ$2
-+.6 p
-
-
-@
-@
-804!
+<
+Ѝ$2
++.k6 p
+6 
+
+
+@
+@
+804!
D
$
0<
<
<
-
-|
+
+|
-g5
-
+5
+


(0
-<
+<
(
-<
- 0P
+<
+ 0P
(0
-<
+<
(
-<
-0 
+<
+0 
(0
-<
-
-L
+<
+
+L
P

-
-
+
+
-8<
-0
+8<
+0

-
-T@
-
-
+
+T@
+
+
-` 3
-
-X0T 
+` 3
+
+X0T 
@
- S5
-
-G2
-(
-
-
+ S5
+
+1
+(
+
+
$
&Q!
-Ѝ2
- 1Ѝ
-0 IDK5
-
-
-LŸuH娦 (`P
+Ѝe2
+ Q1Ѝ 
+0 ID4
+
+
+LŸuH娦 (`P

5@`

-΍
+΍
-8P
- 1
-
-P
+8P
+ 0
+
+P

-
+


5@ 0
@@ -2779,48 +2795,47 @@ LŸuH娦 (`P


-0 0/<#< 8ßO-M0P(#
-$p
-
-4p@
-0*
+0 0/<#< 8ßO-M0P(#
+$p
+
+4p@
-`
+`
650@
-
+
-
-
+
+
-(
+(
5@
`T

-
-\
-
- 
-
-0
-0` X0
+
+\
+
+ 
+
+0
+0` /
-p p/
-Ȁ0 /
-
- "B 0
-P
-
-.
-
-`
+p p.
+Ȁ0 .
+
+ "B 0
+P
+
+h.
+
+`
[
`
-]
-dg
+]
+dg
|B
-@0
+@0

 \
\
@@ -2835,14 +2850,13 @@ dg
`
-
+
 1^^7^+ ! 
0q^^+^7 r!

Pa
-
-,묝
+
"
@
4
@@ -2851,9 +2865,8 @@ Pa
! 


-8 4
-K/$D$PI4c $KO
-.
+8 4
+K/$D$PI4c $KO
K{(
K`
.MK(
@@ -2910,11 +2923,11 @@ K`

0c
-Ptsph
+Ptsph
K*Ktt @P4`
-͆:K#K4 8
-
+͆:K#K4 8
+
8 Lk
K3v#p#
zK#<KK8 C
@@ -2926,141 +2939,141 @@ K3v#p#
9$
p*KxJKx
-K pC
+K pC
-
+

- $
-
+ $
+
-
+

-$P
+$P
0@`0
<a<
-
-
+
+

-
-$
+
+z$
0
-`
+`
09/
R

-
-
+
+
- $
+ #

QUU
-xrU
-U
-@ @$@@
-
-#
-
-
-
-
- "$
-
+xrU
+U
+@ @$@@
+
+:#
+
+
+
+
+ "$
+
-
+

-
-0
+
+0
 
-+
++
0


-а
-
-
-
+а
+
+
+


-А
+А
-
+
-
+
 p(P
- !$
+ $!$

-0
-(
+0
+(

-
+



@ <P
-: P`
+P`
d@@ P
-
+


-
-
+
+


-
-
+
+





-<#
- F
-
+"
+ 
+


- `P
-0@0
+ `P
+0@0
0



-
-
+
+


-x"
-
-
+"
+g
+3

*@`B

- Ѝ#p쓟
-
-B
-
-B
-\B
-
-
-PQ
-a
-0
-
+ Ѝ#p쓟
+
+B
+
+B
+\B
+
+
+PQ
+a
+0
+



@@ -3068,32 +3081,32 @@ PQ



-Ѝp`
+Ѝp`
-X0 T`
+X0 T`
-HE4:@+8
-`
-
+HE4:@+8
+`
+
-`
+`
-
+

-.
+.
4pb
P
-
-a僎0
+
+a僎0
-
-P$b
+
+P$b
-@ 
+@ 
- @ 
+ @ 
-`
+`



@@ -3101,14 +3114,14 @@ X0 T`



-1
- 0
+1
+ 0


-
-!0
-f6F㵁 NA@D`408(p,pp
+
+!0
+f6F㵁 NA@D`408(p,pp


.`
@@ -3118,43 +3131,43 @@ X0 T`
S


-
+
-0@D 
+0@D 

- 0
+ 
0,
- 
+ 
0
- fn
+ fn
0dd
- 
+ 
0p,'"
$
-,$(
+,$[(


0
-0$
+0$
?y
-0d
-0\$
+0d
+0\$
04ğ4
- K
-0
-0
+ 
+0
+0
0#
-0c
+0c
0@\
- 
-08s
+ 
+08s

-0#
-0,`@j,
-0
-0
+0#
+0,`@j,
+0
+0
$!@$
- 
+ 6



@@ -3173,168 +3186,173 @@ X0 T`

-t>
-0
+xL
+0
-!1P`
-0 
-\B
+!1P`
+0 
+\B
`@
- lR0
-`
- 0Ѝ$t
+ lR0
+`
+ 0:Ѝ`t

-X
+X
?_
p

`

-
+

$``
- Q
+ Q
L\
-
+


-
+
 2^0
P
- DH
+ DH

-
-H
+
+H


-$` 0D@$
+$` 0D@$
- Ɵ
-
+ Ɵ
+
+D@
+
+o$0
+T 
+D@
-䃟
-?$0,
+䃟
+?$0,
+#D0$
T`
@,
-
-$P
+
+$P
+X`D0T@
@@,
@?
-
-X`D0
+
+X`D0
@0/
-
-$P
-XT 0
-eꨁ
- \@
-DP$ 
-
-
-X
+
+$P
+XT 0
+eꨁ
+ \@
+
+


"

-0
- 0  
+0
+ 0 
0
DG?@.
-`@ p@D|0
+`@ p@D|0
͟]
- 
+ S


-
+

-|ϟ
+|ϟ
p
-0C
+0C
*_pE
 qp
a
 `
) 
-
-
-
+M
+
+
$
-Y
+Y

-`
+`
A
B
C
-@
- Gq
-
-Y
- A
+@
+ Gq
+
+Y
+ A

-#
-
-,
-0
+#
+
+,
+0
-w,
-0hQ
+,
+0hQ
- 
- 
+ 
+ 
-# ,Q
- $P
+# ,Q
+ $P
-+$
-
-oP -peꀕ
- -p`.4
- +p0
-Fx
- +ph꼘
-/PX&y8㘹/P*p
- *p!HZ
-
-.PU@|
-
-,p
- @@gP,p
-,p
++$
+
+oP -p7eꀕ
+ -p
+ +p0
+Fqx
+ +p:h꼘
+/P&y8㘹/P*p
+ *pHZ
+
+.P'U@|
+
+,p
+ @@gP,pv
+,pb
/
-
- 
+ 
(?
- 
-l
-0
-0
-oP *pLoPH*p >
- 0
- 
+ 9
+l
+0
+0
+oP *pLoPH*p >
+ /0
+ 
@ 0ء
- 
-oP -pOTQ
-H!`qTTA
+ 
+oP -pTQ
+H!`qTTA
-
+


! "/



-/x
+/


-
+

+
)
@@ -3344,50 +3362,51 @@ l

-
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+1?
+
+
+
+




-
+

`Fxp
-
-
+
+

V
b
-
-
-
-
-
+
+
+
+
+

-
+



-
-
+
+
-
+


-
-
+
+

Ѝ1

@@ -3397,93 +3416,93 @@ V



-
-
-
-
-
-
+
+
+
+
+
+




-D
+D

q
@
-
-
-
+
+
+

-
-
-H
-Q 崓崓K~Ě K> 0
- 
+
+
+H
+Q 崓崓K~Ě K> 0
+ 
T-
-d0
-`0 
-
-l 
-
-0 
- pCx<dX _⟟ߏT 
+d0
+`0 
+
+l 
+
+0 
+ pCx<dX _⟟ߏT 
0
- F 0䛟
-0
-˟
-
-
+ 0䛟
+0
+˟
+
+


-Yt
+t
x0
-(
-<(
- 03p
- 0ǟ
-
-
-hǟQ,
-0
-0ბ
-jra 1A
- x
-
+(
+(
+ 0p
+ 0>ǟ
+
+
+hǟQ,
+0
+0ბ
+jra 1A
+ x
+

W. p
-
-
- 
- &
-
- 0[mC
- 0cr
- 0
-
-
-0%!
-
-
-
-
-
-
-
-
-
+
+
+ 
+ 
+ 3
+ 0mC
+ 0scr
+ 0
+
+
+0%!
+
+
+
+
+
+
+
+
+
Qq !
-i
-znz0 
-
-+
-
-
-t
+i
+znz0 
+
++
+
+
+t
`
-
+



@@ -3493,20 +3512,15 @@ znz0 



-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+i.
+
+
+
+
+
+

@@ -3515,120 +3529,119 @@ znz0 

D|
$
-
-@
+
+@
0i
-`\9
-
+`9
+

-P(
-
- 
-(
-(
+(
+
+ 
+(
+(
h
- '0
-`VLR'
-0 
-0
+ 0
+0 
+0
`p
-
+
-0 
-0 
- 
- 
- 袟
- 
- ~d
-X
-<
-
-ܑ
+0 
+0 
+ 
+ 
+ 袟
+ 
+ d
+X
+<
+
+ܑ

- ET!
-
- Hxq|pyh v` sX 9P
-(
+ T!
+
+ Hxq|pyh v` sX 9P
+(
ʆ⼐0
-`
-0 
-
+`
+0 
+
@@

PU@@
@
@
`
-
-
-
+
+ i
+
-
-h0d 
+
+h0d 
-
-
- 0
-ЍpC\P
-
+
+
+ 0
+Ѝp\P
+
RLp✢
-
+
0
- 
-,
+ 
+,
0

-
- H0< 
+
+ H0< 
-D
-
+D
+


-88C-
+88C-

-
-
-
-L,`HQ 
-
-
- 
+
+
+
+L,`HQ 
+
+
+ 

-
+
0
-
-
+
+
-
-
-
-0
+
+
+
+0
$
-0`
-
-'?
- 
+0`
+b
+'?&
+ 
0
-
-
-t
-X،tl<Ԕ
-0
-
-
-
-
-
-x5
-7788P990:p:@;<0UVW 
-PLx
-H
-  
-"<d%%'|())\** ++...
+
+
+t
+Pl0<D
+8
+
+
+
+
+
+ 85
+(66d7h77\8899x;SU(V x|
+@Ĭ0
+P
+  
+"<\%%'t())T**++|...
pid 0x%x tid 0x%x
@@ -3651,7 +3664,7 @@ pid 0x%x tid 0x%x
-
+
============= VCT INFO =============
@@ -4181,7 +4194,7 @@ filter %d data callback ok
-
+
@@ -4190,7 +4203,7 @@ filter %d data callback ok
-
+
Ddf",FT|
)*
 !"#$%&'(ӛխ
@@ -4277,11 +4290,10 @@ _e=[HOS SSTTW^`bbUclfmu2xހ/ނa E^ffpr
IoQ[tz@ZOTS>Y\>cymrϒ0NDQRWb_lnpPppqsitJanQW_`gafYJNNN|TXX}Y\'_6bHb
fgfkimmVnnooo]pr%tZttv\y|~ဦkN_twj
 $,-/0189<@KMTX\pqtwxzĬȬ̬լ׬
- $,-/18<@HILMTpqtxzȀȁȃȅȆȇȋȌȍȔȝȟȡȨȼȽ
-
-
-
-
-
+ $,-/18<@HILMTpqtxzȀȁȃȅȆȇȋȌȍȔȝȟȡȨȼȽ
+
+
+
+
A 
- ",Dlibam_mw.so
+ ",Dlibam_mw.so
diff --git a/libam_ver.so b/libam_ver.so
index fbe43fe..f2c70b9 100755
--- a/libam_ver.so
+++ b/libam_ver.so
@@ -1,6 +1,6 @@
ELF
-03/K
+03/K
A 
- "Dlibam_ver.so
+ "Dlibam_ver.so