You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
425 lines
16 KiB
425 lines
16 KiB
--- gdb-7.5.0.20120926-m64/gdb/value.c-orig 2012-11-09 17:08:52.137406118 +0100 |
|
+++ gdb-7.5.0.20120926-m64/gdb/value.c 2012-11-09 17:32:38.324199230 +0100 |
|
@@ -663,7 +663,6 @@ allocate_value_lazy (struct type *type) |
|
description correctly. */ |
|
check_typedef (type); |
|
|
|
- ulongest_fits_host_or_error (TYPE_LENGTH (type)); |
|
val = (struct value *) xzalloc (sizeof (struct value)); |
|
val->contents = NULL; |
|
val->next = all_values; |
|
--- /dev/null 2012-10-18 11:08:13.202328239 +0200 |
|
+++ gdb-7.5.0.20120926-m64-test/gdb/testsuite/gdb.base/longest-types-64bit.exp 2012-11-09 18:13:56.286587994 +0100 |
|
@@ -0,0 +1,59 @@ |
|
+# This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+# Copyright 2012 Free Software Foundation, Inc. |
|
+ |
|
+# 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 3 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. |
|
+# |
|
+# You should have received a copy of the GNU General Public License |
|
+# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
+ |
|
+standard_testfile .c longest-types-64bit.S |
|
+ |
|
+proc test { name } { with_test_prefix $name { |
|
+ # 64-bit array size should not overflow |
|
+ gdb_test "print &f->buf" {= \(char \(\*\)\[1099494850560\]\) 0x0} |
|
+ |
|
+ # The offset should not overflow |
|
+ gdb_test "print &f->buf2" {= \(char \(\*\)\[2\]\) 0xffff000000} |
|
+}} |
|
+ |
|
+ |
|
+# Test 64-bit file first as it is not compiled so its compilation never fails. |
|
+ |
|
+set file64bitbz2uu ${srcdir}/${subdir}/${testfile}-64bit.bz2.uu |
|
+set file64bit ${objdir}/${subdir}/${testfile}-64bit |
|
+ |
|
+if {[catch "system \"uudecode -o - ${file64bitbz2uu} | bzip2 -dc >${file64bit}\""] != 0} { |
|
+ untested "failed uudecode or bzip2" |
|
+ return -1 |
|
+} |
|
+file stat ${file64bit} file64bitstat |
|
+if {$file64bitstat(size) != 9501} { |
|
+ untested "uudecode or bzip2 produce invalid result" |
|
+ return -1 |
|
+} |
|
+ |
|
+clean_restart ${file64bit} |
|
+ |
|
+#if { [prepare_for_testing ${testfile}.exp ${testfile}-64bit $srcfile2 {nodebug}] } { |
|
+# return -1 |
|
+#} |
|
+ |
|
+test "64bit" |
|
+ |
|
+ |
|
+# And here is the native build test. |
|
+ |
|
+if { [prepare_for_testing ${testfile}.exp ${testfile} $srcfile {debug quiet}] } { |
|
+ return -1 |
|
+} |
|
+ |
|
+test "native" |
|
--- /dev/null 2012-10-18 11:08:13.202328239 +0200 |
|
+++ ./gdb/testsuite/gdb.base/longest-types-64bit.c 2012-11-09 17:08:51.374406344 +0100 |
|
@@ -0,0 +1,28 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2012 Free Software Foundation, Inc. |
|
+ |
|
+ 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 3 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. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|
+ |
|
+struct foo |
|
+{ |
|
+ char buf[0xffff000000]; |
|
+ char buf2[2]; |
|
+} *f; |
|
+ |
|
+int |
|
+main (void) |
|
+{ |
|
+ return 0; |
|
+} |
|
--- /dev/null 2012-10-18 11:08:13.202328239 +0200 |
|
+++ ./gdb/testsuite/gdb.base/longest-types-64bit.S 2012-11-09 17:51:37.597846130 +0100 |
|
@@ -0,0 +1,249 @@ |
|
+/* This testcase is part of GDB, the GNU debugger. |
|
+ |
|
+ Copyright 2012 Free Software Foundation, Inc. |
|
+ |
|
+ 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 3 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. |
|
+ |
|
+ You should have received a copy of the GNU General Public License |
|
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|
+ |
|
+ .file "longest-types-64bit.c" |
|
+ .text |
|
+.Ltext0: |
|
+ .globl main |
|
+main: |
|
+ .comm f,8,8 |
|
+.Letext0: |
|
+ .file 1 "gdb.base/longest-types-64bit.c" |
|
+ .section .debug_info,"",@progbits |
|
+.Ldebug_info0: |
|
+ .4byte 0x9a /* Length of Compilation Unit Info */ |
|
+ .2byte 0x2 /* DWARF version number */ |
|
+ .4byte .Ldebug_abbrev0 /* Offset Into Abbrev. Section */ |
|
+ .byte 0x8 /* Pointer Size (in bytes) */ |
|
+ .uleb128 0x1 /* (DIE (0xb) DW_TAG_compile_unit) */ |
|
+ .4byte .LASF3 /* DW_AT_producer: "GNU C 4.7.3 20121109 (prerelease)" */ |
|
+ .byte 0x1 /* DW_AT_language */ |
|
+ .4byte .LASF4 /* DW_AT_name: "gdb.base/longest-types-64bit.c" */ |
|
+ .4byte .LASF5 /* DW_AT_comp_dir: "" */ |
|
+ .4byte .Ldebug_line0 /* DW_AT_stmt_list */ |
|
+ .uleb128 0x2 /* (DIE (0x1d) DW_TAG_structure_type) */ |
|
+ .ascii "foo\0" /* DW_AT_name */ |
|
+ .4byte 0xff000002 /* DW_AT_byte_size */ |
|
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */ |
|
+ .byte 0x12 /* DW_AT_decl_line */ |
|
+ .4byte 0x4e /* DW_AT_sibling */ |
|
+ .uleb128 0x3 /* (DIE (0x2c) DW_TAG_member) */ |
|
+ .ascii "buf\0" /* DW_AT_name */ |
|
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */ |
|
+ .byte 0x14 /* DW_AT_decl_line */ |
|
+ .4byte 0x4e /* DW_AT_type */ |
|
+ .byte 0x2 /* DW_AT_data_member_location */ |
|
+ .byte 0x23 /* DW_OP_plus_uconst */ |
|
+ .uleb128 0 |
|
+ .uleb128 0x4 /* (DIE (0x3a) DW_TAG_member) */ |
|
+ .4byte .LASF0 /* DW_AT_name: "buf2" */ |
|
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */ |
|
+ .byte 0x15 /* DW_AT_decl_line */ |
|
+ .4byte 0x73 /* DW_AT_type */ |
|
+ .byte 0x7 /* DW_AT_data_member_location */ |
|
+ .byte 0x23 /* DW_OP_plus_uconst */ |
|
+ .uleb128 0xffff000000 |
|
+ .byte 0 /* end of children of DIE 0x1d */ |
|
+ .uleb128 0x5 /* (DIE (0x4e) DW_TAG_array_type) */ |
|
+ .4byte 0x6c /* DW_AT_type */ |
|
+ .4byte 0x65 /* DW_AT_sibling */ |
|
+ .uleb128 0x6 /* (DIE (0x57) DW_TAG_subrange_type) */ |
|
+ .4byte 0x65 /* DW_AT_type */ |
|
+ .quad 0xfffeffffff /* DW_AT_upper_bound */ |
|
+ .byte 0 /* end of children of DIE 0x4e */ |
|
+ .uleb128 0x7 /* (DIE (0x65) DW_TAG_base_type) */ |
|
+ .byte 0x8 /* DW_AT_byte_size */ |
|
+ .byte 0x7 /* DW_AT_encoding */ |
|
+ .4byte .LASF1 /* DW_AT_name: "sizetype" */ |
|
+ .uleb128 0x7 /* (DIE (0x6c) DW_TAG_base_type) */ |
|
+ .byte 0x1 /* DW_AT_byte_size */ |
|
+ .byte 0x6 /* DW_AT_encoding */ |
|
+ .4byte .LASF2 /* DW_AT_name: "char" */ |
|
+ .uleb128 0x5 /* (DIE (0x73) DW_TAG_array_type) */ |
|
+ .4byte 0x6c /* DW_AT_type */ |
|
+ .4byte 0x83 /* DW_AT_sibling */ |
|
+ .uleb128 0x8 /* (DIE (0x7c) DW_TAG_subrange_type) */ |
|
+ .4byte 0x65 /* DW_AT_type */ |
|
+ .byte 0x1 /* DW_AT_upper_bound */ |
|
+ .byte 0 /* end of children of DIE 0x73 */ |
|
+ .uleb128 0x9 /* (DIE (0x83) DW_TAG_variable) */ |
|
+ .ascii "f\0" /* DW_AT_name */ |
|
+ .byte 0x1 /* DW_AT_decl_file (gdb.base/longest-types-64bit.c) */ |
|
+ .byte 0x16 /* DW_AT_decl_line */ |
|
+ .4byte 0x97 /* DW_AT_type */ |
|
+ .byte 0x1 /* DW_AT_external */ |
|
+ .byte 0x9 /* DW_AT_location */ |
|
+ .byte 0x3 /* DW_OP_addr */ |
|
+ .quad f |
|
+ .uleb128 0xa /* (DIE (0x97) DW_TAG_pointer_type) */ |
|
+ .byte 0x8 /* DW_AT_byte_size */ |
|
+ .4byte 0x1d /* DW_AT_type */ |
|
+ .byte 0 /* end of children of DIE 0xb */ |
|
+ .section .debug_abbrev,"",@progbits |
|
+.Ldebug_abbrev0: |
|
+ .uleb128 0x1 /* (abbrev code) */ |
|
+ .uleb128 0x11 /* (TAG: DW_TAG_compile_unit) */ |
|
+ .byte 0x1 /* DW_children_yes */ |
|
+ .uleb128 0x25 /* (DW_AT_producer) */ |
|
+ .uleb128 0xe /* (DW_FORM_strp) */ |
|
+ .uleb128 0x13 /* (DW_AT_language) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3 /* (DW_AT_name) */ |
|
+ .uleb128 0xe /* (DW_FORM_strp) */ |
|
+ .uleb128 0x1b /* (DW_AT_comp_dir) */ |
|
+ .uleb128 0xe /* (DW_FORM_strp) */ |
|
+ .uleb128 0x10 /* (DW_AT_stmt_list) */ |
|
+ .uleb128 0x6 /* (DW_FORM_data4) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x2 /* (abbrev code) */ |
|
+ .uleb128 0x13 /* (TAG: DW_TAG_structure_type) */ |
|
+ .byte 0x1 /* DW_children_yes */ |
|
+ .uleb128 0x3 /* (DW_AT_name) */ |
|
+ .uleb128 0x8 /* (DW_FORM_string) */ |
|
+ .uleb128 0xb /* (DW_AT_byte_size) */ |
|
+ .uleb128 0x6 /* (DW_FORM_data4) */ |
|
+ .uleb128 0x3a /* (DW_AT_decl_file) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3b /* (DW_AT_decl_line) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x1 /* (DW_AT_sibling) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x3 /* (abbrev code) */ |
|
+ .uleb128 0xd /* (TAG: DW_TAG_member) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0x3 /* (DW_AT_name) */ |
|
+ .uleb128 0x8 /* (DW_FORM_string) */ |
|
+ .uleb128 0x3a /* (DW_AT_decl_file) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3b /* (DW_AT_decl_line) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .uleb128 0x38 /* (DW_AT_data_member_location) */ |
|
+ .uleb128 0xa /* (DW_FORM_block1) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x4 /* (abbrev code) */ |
|
+ .uleb128 0xd /* (TAG: DW_TAG_member) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0x3 /* (DW_AT_name) */ |
|
+ .uleb128 0xe /* (DW_FORM_strp) */ |
|
+ .uleb128 0x3a /* (DW_AT_decl_file) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3b /* (DW_AT_decl_line) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .uleb128 0x38 /* (DW_AT_data_member_location) */ |
|
+ .uleb128 0xa /* (DW_FORM_block1) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x5 /* (abbrev code) */ |
|
+ .uleb128 0x1 /* (TAG: DW_TAG_array_type) */ |
|
+ .byte 0x1 /* DW_children_yes */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .uleb128 0x1 /* (DW_AT_sibling) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x6 /* (abbrev code) */ |
|
+ .uleb128 0x21 /* (TAG: DW_TAG_subrange_type) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .uleb128 0x2f /* (DW_AT_upper_bound) */ |
|
+ .uleb128 0x7 /* (DW_FORM_data8) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x7 /* (abbrev code) */ |
|
+ .uleb128 0x24 /* (TAG: DW_TAG_base_type) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0xb /* (DW_AT_byte_size) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3e /* (DW_AT_encoding) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3 /* (DW_AT_name) */ |
|
+ .uleb128 0xe /* (DW_FORM_strp) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x8 /* (abbrev code) */ |
|
+ .uleb128 0x21 /* (TAG: DW_TAG_subrange_type) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .uleb128 0x2f /* (DW_AT_upper_bound) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0x9 /* (abbrev code) */ |
|
+ .uleb128 0x34 /* (TAG: DW_TAG_variable) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0x3 /* (DW_AT_name) */ |
|
+ .uleb128 0x8 /* (DW_FORM_string) */ |
|
+ .uleb128 0x3a /* (DW_AT_decl_file) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x3b /* (DW_AT_decl_line) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .uleb128 0x3f /* (DW_AT_external) */ |
|
+ .uleb128 0xc /* (DW_FORM_flag) */ |
|
+ .uleb128 0x2 /* (DW_AT_location) */ |
|
+ .uleb128 0xa /* (DW_FORM_block1) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .uleb128 0xa /* (abbrev code) */ |
|
+ .uleb128 0xf /* (TAG: DW_TAG_pointer_type) */ |
|
+ .byte 0 /* DW_children_no */ |
|
+ .uleb128 0xb /* (DW_AT_byte_size) */ |
|
+ .uleb128 0xb /* (DW_FORM_data1) */ |
|
+ .uleb128 0x49 /* (DW_AT_type) */ |
|
+ .uleb128 0x13 /* (DW_FORM_ref4) */ |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .byte 0 |
|
+ .section .debug_aranges,"",@progbits |
|
+ .4byte 0x1c /* Length of Address Ranges Info */ |
|
+ .2byte 0x2 /* DWARF Version */ |
|
+ .4byte .Ldebug_info0 /* Offset of Compilation Unit Info */ |
|
+ .byte 0x8 /* Size of Address */ |
|
+ .byte 0 /* Size of Segment Descriptor */ |
|
+ .2byte 0 /* Pad to 16 byte boundary */ |
|
+ .2byte 0 |
|
+ .quad 0 |
|
+ .quad 0 |
|
+ .section .debug_line,"",@progbits |
|
+.Ldebug_line0: |
|
+ .section .debug_str,"MS",@progbits,1 |
|
+.LASF4: |
|
+ .string "gdb.base/longest-types-64bit.c" |
|
+.LASF3: |
|
+ .string "GNU C 4.7.3 20121109 (prerelease)" |
|
+.LASF0: |
|
+ .string "buf2" |
|
+.LASF1: |
|
+ .string "sizetype" |
|
+.LASF5: |
|
+ .string "" |
|
+.LASF2: |
|
+ .string "char" |
|
+ .ident "GCC: (GNU) 4.7.3 20121109 (prerelease)" |
|
+ .section .note.GNU-stack,"",@progbits |
|
--- /dev/null 2012-10-18 11:08:13.202328239 +0200 |
|
+++ gdb-7.5.0.20120926-m64-test/gdb/testsuite/gdb.base/longest-types-64bit.bz2.uu 2012-11-09 18:04:52.995692771 +0100 |
|
@@ -0,0 +1,67 @@ |
|
+begin 755 gdb.base/longest-types-64bit.bz2 |
|
+M0EIH.3%!62936<'N#OH`"G/________^______?_Y______//]7SQD5'^/_% |
|
+M=VY7?F_[X`F]]SG7531-==V:Z-.FW;M.U7=';:UH@<&FD31,E3]J'HE-/TR@ |
|
+M]4_5/32;%/U3]1--HU/U$#$R'I'J,FC0T-,)B'J#:CU,F@]0`/4:>F@CU/4, |
|
+MA@$S2>IH!H`TR/0-$$:9`C(&FHU3VE-J;4\%,@>4T:#]49-J/4`>HT!H#3)^ |
|
+MJ`!H-``T]0&@-```:'J``&@`:9!`R9,@&3(`#3!#0!H``-#$--`,@``T`T#( |
|
+M:`:`&0&@::,0:-```:``-`E-$1#4-3:4]3R9-39(Q/)#3R-30:9#$T!D!H&@ |
|
+M,CTGI!H#(#0T`#0``T`T`:``-``T`0,F3(!DR``TP0T`:``#0Q#30#(``-`- |
|
+M`R&@&@!D!H&FC$&C0``&@`#0)%)H32>JGZ&!)Z1B1X@)DTVC4>H`&0:``R&@ |
|
+M,C0:``T``,C0``!H``#(`T`:#0U^\?]7K8M.96V/2[?M*DC)>WIUF)H7T\<T |
|
+M[0D)70G25.YB!,:;8Q(;&XPAB4+$Q%:P)PA-;E=!-&$KNR22EM>$:KKRE&\Q |
|
+M..M]L1*,!>D!X)RW,[,1I,9N%X-N&2+*:&)DJY4(VFQG%9K[/?J06WACF6-I |
|
+MJ&JJ9,ZK4;X28M@[==%ME(A54:%>+3->MRK(G!8#TY>@E$6DR&<_5:C&/RZE |
|
+MI<ON+RY5`LA"@DD$$DF!I9O]5X%G985_=V<.;?K9:G2R-#K<CB,1;26A<H4G |
|
+M3R3I!)WX,-%>,!E6#`;*8R*E@++*))U)[6=OKFM%'+$-H5\X@1D)_Y*"NKV. |
|
+M&\F8?SXW^<O]_DW.8WD@HY.NMMIBXFVROM_SKZ#4-`>HQ:Y@(Q[.>PEG=]@^ |
|
+M%C"3EZ/1X'H*02ZQH":6"@;8Z0LEW6<OKJ%$`01%`B;O!N*W1V.HC$``,:CS |
|
+M6(/OTI'-:O6=7$/#?0T9Q[GSY1)6V`+CV@#XWMF`<S:AG<!43X"VGD,E=>)> |
|
+M6^V=*`FB'5G4MD8L3J5XT#SW;J1]ZO+"SPIS%J(P46+Q=CC2$H-`-B&TD)M` |
|
+M&A:066DA%AB0C6,460>M8B+$:-BR&@NM()F`S',,F8+#&0.SMOK@.G<'83N. |
|
+MDA"#5-`JVC("1*TA;/M()&8J0+YH%IFV)+OA@4,`E?3M$[$@&Q`3]A!$&A(- |
|
+M$PBT+2,@PU+2H9(T-H3N6'(2;""%2T*1I2P@`L?AG8&A!=31J7)1(9FB'8X= |
|
+MWJ0S#YEG9K$.#.[L.[CNA"4JSJ^GK2*)UH=MC0.R8+E75'.09<NU&R0G1>[G |
|
+MMQ1*[GI:>#>K`_NZS:V6>$K;OX6#!!N'"2413$DTL&]7KY>B<3V5!!C8#X5+ |
|
+MF%9<N\]C%B6OS;LH@1LR3R<LS+<]N]9\JZ<LJ#2_S2'UW('DZ!N>X!8NOKM5 |
|
+M+"N&P4.75C16!A9Q;:C.6N`WZDV=-]!<BTB<1Q*P(T4'&*2:@$=J@(M8)!5= |
|
+MO;[ECS>,5PG<T[XC594XI0@RVPD86,M11%(T>]SNP[GV^L?YGI]7_'D8N?XV |
|
+M'[7KZJWYVMXGBQS[`!)YI%3:D)I2!;%'R`W&YB<`9O2#F"C/)F;JK9P+@3&( |
|
+MAH31[W)=YCODQDUKNM7A"3.C!2%CHTJNZ"Z\+#F-?(DLE>XAC%07B8;$%J_L |
|
+MJPK48QC&,916=IM+<1&WRKLB6&Q2O79*!7S$,`7J8*!`!=K:5W550[NH9M#_ |
|
+MKL!LT,&;59GZW7S"5Z4%`%&!`9"J9`0:IR&H=MTKT=PEYC$,4K90M9AT'%;_ |
|
+MB0HVLE)(W&YWF,C:TURXO:`M[RX(A-GT97456Q4Z*HPU*4J:*[WU-4GD.9UV |
|
+MSA#L4X[[*Y+)8IF.EO<.TP4IC2?(4HX)W1#:GOMOD2F;HM1BV#<E%PM+0&N5 |
|
+MP@$\$FD4C-Q^L"H^)NP2-.^JTT!8+!;'Z=KM7%'K@\)*PSETF&M6<Q#>;PH[ |
|
+M7:PJ-!#,!6N<3')-0C,>15'IZ>@U^CJJJ+>+>%%)%BBATD\)*F6&BLMIR&?\ |
|
+MQ2_?33@"NR1/CN\:)>5DG6`>$;$3QA94'-3]*CU6YG])<=2)'GC"RP-RK&-3 |
|
+MZDT-M_)R+F06DS?CR>E@^!,33"U6X<@OXO$Q>U$\T@IU<H-42=0YE[$,T`\H |
|
+M('>'@T=>K`G7H8K5GLXMS3*^@JLVBHHE'.&?9RKC?Y`&&3J5!/C$++<@U#Q' |
|
+M9R3I.$+S`%]-.UO>WH^C73F<&;RIJR+(Q@7(3PP*W[-O,,DD3S7BUK^I@D%* |
|
+M`Y<*2TXJ&7;2'6'R.U>]0-="M`K+&N%/==N4U@9%@M1)U&251C($^S"WL"]T |
|
+M-XN'D2[II3-$K%+&`3['O)%,8G*E%_8RV6A5B_4(2/?-AIC.\/>,YFJ<(G.8 |
|
+MAVP?UN*=ME:7&T!C%)I:&4H:-5>&^!&0>A.O'0G'/6&ZZ964@04&=#DC`%&: |
|
+MUNLOS?,?'T:T!8L80<H_W1>='M:96K4;JX)6.('1#J$.1/L)$IS<4/*'2D34 |
|
+M/@J\BA(I2T40JS%9G8F!7U5_!#'U!+[7$ES&)@:*QAET-IBX6'_N5^7/#>@V |
|
+MN3&,-6(AG[8&!8LV+F_U"W?/)+Y^,;=1K:SW28<0WA2"UPHP^8FG#R$!`Y`, |
|
+MLF<`U*NNU\[6N03"*?I8D=K7.Z*H=A_3<H1Z%.Q8%2SR@I45('.EGR<N^\`Z |
|
+M\[Z\D+/3>7;S=LVC(BQ,5<M0A"#`]7UK7W3%5(:FBMER3XSP15N!)`-^ZJZ% |
|
+M:4)>8Q_\#G`'P*_-]T!G4$`V0BS]'S)D/;V7R?.2F?SF)N+2+#P2_<G#1B)C |
|
+M(8?NF/+?:UMR3B#9$MBDCI2G7&N'T`FV!ERQ[21DOJ_8I73#BILTTSK)B5P< |
|
+MG22S=*7TI>G(49TCE&*UIVT-MP808VTVV-$(*`VT<%>%96AHOL`(7%SI2%-R |
|
+M#G2F02VQQH-7KT3E05I9Z)E\$Y8ED1KU`(4QHT%B]1$F:F1&8DAN.Q4&*?F@ |
|
+M.8D965.$PRH<VD+()"8&I%<R"P,Y[A,)^B(O%1(J%,)M(O6)8E%LY?C6X@@K |
|
+M(F!2TA\,RE<O"E2*G?JE2YF\*OJM?$KWXW6R(3LR-)W.[:ZJC?ZE4,("J$() |
|
+M5@U!62M"WBJ=&Q(L$5,4494K=.0B0#,C3$*``XLTF$DN!6P#%,4K%HTIC[*O |
|
+M6"4S,;RN&@=NP7@72:=U#&JPBQ-60OEAWY;CUYF+$73.R>T5HD,G=G!KTF3D |
|
+M94"&ZA-F,.19=8`\(Q;A07Q%!19*3#*F9Q+D(0K@V87@O.=7EJIM6`!4`>D! |
|
+M)49QHA!BV+:4O@K00$$!5*6>A@2@4D)@R\"%$2F"O:24J*L(RP#N;O4K7I&2 |
|
+M[#)KR47H-N[<O^S-)"_Q\>VJ%3>$`9,AF8QID&I3G+D`*]BX98B$2K":A7_\ |
|
+M_]7LT!4,$NL5)NE>9[:MK2_/'GO:7"P`=<X'"U9""0<PJ`3`.:*(Z]-.GQ,9 |
|
+M>P(\L]O?"-APH(834$,W!IJS+U1F1C.!D$!&KS^-6%F90PQ[F]F=$^QE\X+- |
|
+M@.W*LPH_78B>MHH@69RU[*'1J@8QAC\KSV@IG\(;_CUW:ZR2.,0$E3LZ_^P= |
|
+M<_DCP"Q<`;+_;YP#^U%&E^#2M%,T?F3UN^>TSH)GFL"\%RF[KNZ+[R+@<&.$ |
|
+MC42)B96\1-.O_I).K7)X]W>EQ):4C(XB*+:S%0_37D^EBP+1HU(D?3"%_O2R |
|
+M6-#X>AU#<$*!/,W6QC^;O^%]LR&_X'<8X$<3CUU_QFAJ;">H)2443GD4W!4# |
|
+?<55!2^6_8J$)-O<>\H0U/6Q^>UG0%W)%.%"0P>X.^@`` |
|
+` |
|
+end
|
|
|