README.vgen010064400017510000012000000060371022765036400135540ustar00jcosleystaff00001660000003 VGEN VERSION 3.8 Installation : After loading the software contained in this directory there are only three additional steps required for setup. 1) First add this directory to your search path so that the applications can be invoked from anywhere in your directory tree. 2) Second, an environment valiable named S3_ROOT must be defined which points to this directory. This is used by the application programs to find additional program modules as well as to find the sdmt.enable file which contains keys that enable the applications to run. In order to set the S3_ROOT environment variable, add the following command to your .cshrc and/or .login file: setenv S3_ROOT /path where /path is the directory path into which the SDMT software was loaded. For example, if the tape or cartridge was loaded in the directory /usr/source3, then the following command would be used: setenv S3_ROOT /usr/source3 You then must either logout and log back in, or issue the following command from the console: source ~/.cshrc or source ~/.login 3) The third step necessary for running vgen applications is to create or provide an "sdmt.enable" file in the S3_ROOT directory. This is the license file which contains enabling keys for the software. If you already have a vgen key for the 3.8 release, then simply place this key in an "sdmt.enable" file in this directory. If you are just evaluating the software, use the PREVIEW key contained in this directory by copying it to the "sdmt.enable" file as follows: cp sdmt.preview sdmt.enable This PREVIEW key allows vtran to run in a full feature mode which limits the number of vectors which can be translated to a few hundred. If you would like to get a full-feature evaluation key without limits on number of vectors, please send email to: corp@sourceIII.com Include the operating system and hostid of the system you wish to evaluate the software on. The hostid for your machine can be found using one of the following commands from the command line: For Solaris: sysdef -h For HPUX: uname -i For Linux: lhostid (utility included in linux download bundle) NOTE: the linux hostid must be generated using the "lhostid" utility provided in this download bundle. Usage The VGEN compiler can be invoked as follows: vgen source_file [output_file] where source_file is the name of the file containing your VGEN source program, and output_file is an optional output file name where the resulting vectors will be placed. If no output_file is specified, the output vectors will be placed in a default file named source_file.vec. The README3.8 file contains descriptions of new features included in the VGEN 3.8 release, which may not currently be documented in the User's Manual. README3.8010064400017510000012000000301631022763075500130460ustar00jcosleystaff00001660000003 VGEN Release 3.8 This version of vgen contains a number of enhancements and bug fixes. The enhancements can be summarized as follows: - Added Verilog VCD output format option which can be used with many graphical waveform tools to view the vgen-created vectors. - Enhanced verilog testbench format to support additional user options and also to generate verifault formatted files. - Enhanced VHDL_TB format to include additional user options as well as options for more comprehensive error reporting when output data checks fail. - Added support for multiple timesets - File pointers for files opened in vgen can now be passed as parameters to subroutines. The following discussion details these enhancements. VERILOG_VCD ----------- In order to provide a link to the numerous graphical waveform viewing tools on the market today, a Verilog VCD output format option has been added. This option is invoked as: SIMULATOR verilog_vcd [parameters] ; The parameters which may be specified are (defaults are shown): VERSION = "VERILOG-XL 1.6.0.1", MODULE = "DESIGN", INPUT_VAR = "reg", OUTPUT_VAR = "wire", BIDIR_VAR = "reg"; Use the UNITS command to define the timescale for the vcd file according to the following table: UNITS timescale 1.0 1 ns 0.1 100 ps 0.01 10 ps .001 1 ps Bidirectional pins will be placed in the vcd file as two signals, the input (pin) version and the output (pin.O) version. The MERGE_BIDIRECTS command can be used to combine both input and output data on the pin, while removing the output (pin.O) trace from the vcd file. All pin timing is flattened to print-on-change vector data in the VCD file, which allows you to see actual timing with the waveform viewer. The waveform behavior of output pins is dictated by the PINTYPE statements used to specify their timing. It is recommended that output timing be specified with the PINTYPR STB command. For this command there are two cases. The first is when only a single time parameter is specified. For example: PINTYPE STB busout, out1, out2, out3 @ 950; Here the output pins specified will take on their new (expected) states at 950 ns into each cycle and maintain that state until the same time point in the next cycle. The second case is when two time parameters are specified in the PINTYPE STB command. In this case, a strobe window is defined as the period between the two time parameters and the state of the outputs are masked to the DONT_CARE state outside this window. For example: PINTYPE STB busout, out1, out2, out3 @ 950, 990; In this case, the vcd file will show the expected states of these output pins only during the window from 950 to 990 ns and as X (don't care) outside this window. Note that the window can be any desired width. One waveform viewing tool which can be used to look at these vcd files is the Design Acceleration Signalscan, which will directly read these files. VERILOG_TB ---------- Optional parameters that can be specified with the verilog_tb interface now include the following: SIMULATOR verilog_tb, -VERBOSE, -VERIFAULT, TESTBENCH_MODULE = "topmodulename", COMPONENT_MODULE = "componentname", INSTANCE_NAME = "nameofinstance", TIMESCALE = "timescale"; Where -VERBOSE results in a more detailed error report when expected output data does not match simulation data. The -VERIFAULT flag will produce a verilog testbench file which can be run on verifault. The other parameters are somewhat self-evident. The TIMESCALE would normally have the form: TIMESCALE = "1ns / 100ps", If this parameter is missing, no timescale will be placed in the file. The VERILOG formatter (non-testbench version for stimulus only) will also allow all of these parameters to to be present, but only uses the TESTBENCH_MODULE (module name), and COMPONENT_MODULE (top) parameters. VHDL_TB ------- The VHDL testbench output interface has had a number of enhancements. First of all, a number of parameters have been added to provide better control of the VHDL file. The parameters currently supported are listed below, with an * marking those which are new to this release. Default values are indicated: LIBRARY = "NULL", USE = "NULL", UNITS = "ns", CONFIG_FILE = "NULL", ARCHITECTURE = "testbench", * INSTANCE_NAME = "U0", * ENTITY = "_tb", COMPONENT = "design", COMPONENT_ARCHITECTURE = "STRUCTURAL_VIEW", NINE_VALUE = "OFF", DONT_CARE = 'X', BIT_TYPE = "STD_LOGIC", BIT_VECTOR = "STD_LOGIC_VECTOR", RESULT_TYPE = "STD_LOGIC", RESULT_VECTOR = "STD_LOGIC_VECTOR", * SEVERITY = "WARNING", * LIST_ERRORS = "NULL", { VHDL_TB only } * MAXLINES = "NULL", { VHDL_TB only } Multiple LIBRARY and USE parameters can be specified. These should typically specify at least the following: LIBRARY = "ieee", USE = "ieee.std_logic_1164.all", The new INSTANCE_NAME and ENTITY parameters provide additional control over names used in the VHDL testbench file, along with COMPONENT and ARCHITECTURE parameters which were previously available. The CONFIG parameter has been renamed to the COMPONENT_ARCHITECTURE parameter which more accurately describes its use in the CONFIGURATION block. Note that the defaults for the BIT_TYPE, BIT_VECTOR, RESULT_TYPE and RESULT_VECTOR parameters are now those used in STD_LOGIC_1164. The parameter SEVERITY can be used to change the behavior of the testbench when it detects a pin whose state does not match the expected state. The testbench uses a VHDL "assertion" statement which reports the mismatch with a SEVERITY dictated by this parameter (default is WARNING). The parameter LIST_ERRORS also affects how pin state errors are handled. Normally, when an output data compare mismatches with the expected data, only a general error indication is given. By setting this parameter to "BY_GROUP" the vector for the entire group is displayed with differences between expected and actual highlighted. Pins are grouped according to their direction and their timing. Changing this parameter's value to "BY_PIN" results in the display of only those pins which mismatch, along with their expected and actual states (the LIST_ERRORS parameter is available only with the VHDL_TB format) When using the VHDL_TB output format, large simulation data sets can sometimes result in a very large single process in the testbench file. For some logic simulators, this presents a problem. To get around this, the MAXLINES parameter can be used to break the long single process up into multiple smaller processes. For example: MAXLINES = "50000", would limit the size of any given process to approximately 50,000 lines of code. The DONT_CARE parameter defines the logical state on output pins that the VHDL testbench will treat as a don't care or mask condition. The CONFIGURATION declaration is placed in the file specified by CONFIG_FILE. If this parameter is missing, then the declaration is placed at the bottom of the testbench file. The NINE_VALUE parameter tells vgen to check (or not check) that all states are legal IEEE states. MULTIPLE TIMESETS ----------------- This version of vgen introduces the concept of a timeset (VTIMESET) to its language syntax. In previous versions of vgen, timing for pins was specified by a combination of PINTYPE, PULSE and WAVEFORM commands and was controlled with the PINTIMING/PULSE/WAVEFORM ON/OFF statements. These commands could appear essentially anywhere in the vgen source file and took effect immediately. This is OK for many applications, but it lacks any real structure and makes the mapping of dynamically changing timing to cycle-based simulators (such as WGL) virtually impossible. In this release, one or more VTIMESET blocks can be specified in the vgen source file, where each VTIMESET contains a collection of PINTYPE timing statements which define a desired timing environment for a sequence of vectors. The syntax for these timeset statements is: VTIMESET name CYCLE nn BEGIN PINTYPE type pinlist @ t1, t2, . . ; . . . . PINTYPE type pinlist @ t1, t2, . . ; END; When using VTIMESETs, only PINTYPE timing should be specified. The PULSE command is really the same as PINTYPE RZ/RO, and the WAVEFORM command is an asynchronous timing command which is not compatible with the use of VTIMESET blocks (which are synchronous in nature). VTIMESET blocks can be placed anywhere in the vgen source file. Each VTIMESET is a self-contained timing environment for all pins. Pins for which there is no PINTYPE timing specified in a VTIMESET block will use the following default timing: PINTYPE NRZ pin @ 0; { for all inputs } PINTYPE STB pin @ CYCLE-1, CYCLE; { for all outputs } Note the use above of the PINTYPE STB with two timing parameters. This is another enhancement to this release whereby a strobe window is defined when STB has two timing parameters associated with it - outside the window the output pin is in its "don't care" state. This version of vgen also supports the use of the * wildcard character to specify all inputs or all outputs. Thus: PINTYPE NRZ * @ 25; PINTYPE STB * @ 90, 95; Together specify an offset of 25 for all inputs and a strobe window between 90 and 95 for all outputs. Additional PINTYPE statements can then follow to re-specify timing for special pins which need to be different. A subsequent PINTYPE statement for a pin overides any previous ones. Once the VTIMESETs have been defined, they are activated in the vgen in-line code with ENABLE_VTIMESET statements. The syntax for these is: ENABLE_VTIMESET name; This command behaves in a manner similar to a subroutine CALL, with the named VTIMESET as the subroutine. There are two differences in its behavior, however. First of all, the ENABLE_VTIMESET has the dual role of both defining a new set of pin timing (those defined with PINTYPE statements in the VTIMESET block) and also enabling this timing - so that a "PINTIMING ON" statement is not needed. Secondly, a trace of the on-going VTIMESET activations is maintained, which can then later be used in the WGL output interface to reconstruct timeplate sequencing. This timing and trance information is kept in a temporary file. If you need to view this information, use the following command to specify the name of the file: TIMING_FILE fname; In summary, use the VTIMESET blocks to structurally define timing environments for differnt vector cycles in your vgen source file. These can be collected in a convenient place in the file, and then activated as desired using the ENABLE_VTIMESET commands in the body of the vgen source file. This methodology forces a structure which can then be translated to cycle-based formats such as WGL. The example below illustrates the use of VTIMESET statements for controlling timing: Inputs clk, barb[7:0], pin1, pin2; Bidirects Bbus[7:0]; Outputs ou1, ou2, ou3, obus[15:0]; int i; simulator wgl; VTIMESET fast CYCLE 200 begin PINTYPE NRZ * @ 22; { set input defaults } PINTYPE STB * @ 190, 195; { set output defaults } PINTYPE NRZ barb @ 55; PINTYPE STB obus @ 150, 200; PINTYPE RZ clk @ 0, 100; END; VTIMESET slow CYCLE 300 begin PINTYPE NRZ * @ 32; { set input defaults } PINTYPE STB * @ 290, 295; { set output defaults } PINTYPE NRZ barb @ 75; PINTYPE STB obus @ 250, 300; PINTYPE RZ clk @ 0, 150; END; ENABLE_VTIMESET slow; clk, barb, pin1, pin2 = LO; Bbus = 'ZZ' ; Bbus.O = 'XX'; ou1, ou2, obus = 'XXXXX' ; clk = 1; vgen; for i = 0 until 39 BEGIN ENABLE_VTIMESET fast; { Write cycle } Bbus = i; Bbus.O = 'XX'; obus = i - 1; ou1 = 0; ou2 = 1; barb = ~i; pin1, pin2 = HI; vgen; ENABLE_VTIMESET slow; { read cycle } Bbus = 'ZZ'; Bbus.O = i + 2; obus = LO; ou1 = 1; ou2 = 0; barb = i; pin1, pin2 = '01'b;; vgen; end; end; WGL Format ---------- When generating a WGL output vector file, it is recommended to use the VTIMESET methodology, which now supports multiple timesets. The PINTYPEs currently supported are the following: For Inputs NRZ, RZ, RO, RC, SBC For Outputs STB sdmt.preview010064400017510000012000000000651022765056500143060ustar00jcosleystaff00001660000003vgen 3.8 PREVIEW 11/29/2005 AA6D3A1200501518997234C6 vgen010075500017510000012000017166741022763220700126370ustar00jcosleystaff00001660000003ELFE044 (44icicid idpPj j/usr/lib/ld.so.1  !#$%&'(*-./0145789:;=@ACDEGHJKMNOPRTVX[abcdefghiknoprsvwy{|   #$%&'()*+,/2457:<>?@CDEGIJKMOPQRUVWXY[\]^_`bcegjmpqrtvxyz{}  ")+,236<>?BFILQSUWYZ\]^_`jlmqtuxz}~   !"-.013689;=ABFHLNSTZadfhiklnosuw|~HX z1T ( # *@0 :@L A ݠKJ U k _ k"H r {<  l H l| lp5 p F`7  kP  l$ i`  , l l& cp1j 7q$ A( J@!O\Y fY op4 v ~`ٴ l`~ l~ {$4  h  60D ` ( l   jd}p   < (0? : G V (  aD e m t6~}   `h H L l n8wX  QD g  { E0  J l    k( k4 {( 9 D {I MD YdH h l(q y@    l k l liX   {  d  z j x  ` $ -H 9 lTDX  J{ S6D YT_ j@d@ kLj  r ly` ` x  j8  '8   !H yH X  { P ~d z ic`  lx* 6J@ lI {VY i`ޘ i lvdL l x| ( k!  kX~ 9  S  |  l0 RX ( n$24> C M l\W lc ~^j ~Lt8 y @   lXX *@   x m p( 7T  l<@ l`   i  l Xh 7 , 8q` A jH TNWvh ^ id0t mH v& | m+  ~h@H     X   @0)  t t F|> (X  lWT.% ih?  GJ|S ,X0 ^8d h s;p ~   i^hh   lt8 | p4 i4z!T G P P   8   J #  + ln 5 >H I˰ Rhh Z'l eA( p  {D B \ P j =8P k zp M(h P c rt l l  ̘d  lP P k 8 sp %D +@  3  8 lX >( D$ ND Yk  aDT2 f  p(  y 0 l H o  ( jX l (   b    < )@  (, # 0 ~H 68$ A= J Q lf X _U g r j zH {  ٰ 0   5 A4   Ƞ x  k   D   jp (  j #D * ~d 3P ; t C  J l W8 b( n v p  H * @` id @ 0 $  ~p @ P  \ WP Np  l8 ) ( 1  4 ݴ ; cx H\ NrX U  [ `$ m  v$ 0 k + t   , j4 0  v  `D  j| ݜFPp  & j(-H 6 C  LP Un8 ^8i ku2  lR`$ t  A,H   j lA A0 X Rx\ < Pi< J$8 l # -4:n  ARP8 M VJ^ l4k  <  { 2 8   i j" i i j lL l8 H8 (n /8 ;p H MP4 ^ lg4H q(~ l J Qx$ 8p@P  l@   lP S x  y   t8 P  jLX '@ 4 c|:Rh @ٜE kIXQ l,Zf lo kwW  l"p   l| l A$ 1M  4 @  $ ldx lhH T * prep_headertlastdo_whileformatget_op__iobdo_switchlengthpin_vals1fork_flagexp_itermprint_everydo_hdrTcomparedo_pintiminglbuflast_line_finistmt_termsoft_evalpatstk_ptrwavptrcopy_exprmaintvar_keyint_testpin_typeloc_ptrdo_keepvmallocget_wavessbuflogic_opvec_rngetime_wheelsftimtegas_fmtdo_table_ioblowercaseget_raw_itemikos_fmtis_varikosclk_hi_endnumbvecststringrPattribvtimesettgetlineget_tvalinclcntfinpcode1code2do_pulsesinclendpin_cntpins_alloc__ctypetimeget_scaleviewsim_gen_fmtdo_forkpat_lendo_continlast_pin_cnt_ex_deregistervalids_fmtupcpin_cmpis_pattstringlnext_lbufget_sparget_date1is_tableoutput_headersim_paramsstrobe_wgetlinedef_radixbus_flatget_cyclegetfsskip_sep_startdoing_pinssiglist_termis_vec_environactive_looptintassignmenttenbst1get_pin_numinitialization_sf_flagcae_hdris_subpin_valsinclstrtitem_term__environ_locklast_strobeseparatorstr_testvtimeattributephys_linewenbslastcharvti_fmtmain_bufctimeudli_fmtget_vardo_begindest_ptrfile_rm_alltrans_flagvgoutdo_unitsrenamscalefreeerroraerrorbptrptrerrorceval_exprre_loadfputc__fsr_init_valueexpandtimemill_fmt_ctypeget_initget_vnumget_expectswitch_levelpin_vecferrtstrstring_flagl_etextdo_includeneg_offsetmentorf_fmtkeep_vgensub_termstring_flagrdlatexitget_datevtimeset_cntswitch_statevaluateorcad_fmtstring2intioptrenvironlasar_fmt___Argvftimesget_systemread_linedpackpat_levelis_group_sf_ascii__1cH__CimplKcplus_fini6F_v_mget_statesdecl_prefexpect_fileftimis_vstackbusformatexpect_flag_edatapin_slistend_do_pintypeONEcae_fmtdo_timingikosclk_namdecl_sufis_pinopen_fileio_totsub_loctstringl_lenget_busfpcompare__filbufo_out_statewave_flagverilog_vcd_fmtverilog_tb_fmtsched_eventfgetlinesystemfoutppin_timeappend_exitis_pulseskip_hdrrmvlzkeywrdsviewsim_fmt_sfswitch_typedo_exitread_TPLpatstkvprtimeloop_stackoutfiledate_fskip_to_elsea_string2intvarstkswitch_strsublevelvgen_fmt_tbinclfile_PROCEDURE_LINKAGE_TABLE_wgl_fmtilpin_etimibufemptygethostidikosclk_loclose_fileqsim_fmtfhisexitdaisy_fmtabel_fmtvec_strtnam_cmpget_itemlinecntlbptrfopenwheel_fullunitstoshiba_fmtget_nlnload_vecspin_linkcupl_fmtfoutpsinclflagusr_hdrbus_indexpin_stimdo_ikosclkskip_expxlatelnsof_headerdoing_outsi_in_statevar_levelcalltitlefseekread_filekeywordccmpset_defaultcmd_endcyclecopyneg_timeCYCLE_VECSltnext_casetpo_fmtabs_timepat_rangemake_forkgroup_pinscopynamerrorlicensefwavaddspfskippin_ownersusieh_fmtget_simdatepin_grouptssi_fmt__1cG__CrunVdo_exit_code_in_range6Fpv1_v_exp_bufnew_epicis_pstackcur_fork__xargvdo_dtracefgetcttimepin_formwaveformget_signammasm_fmttiming_filevgencompli_lib_versionftempget_analogdo_breakkcode1v_termkcode2lds_fmtint2stringfprintfdo_ifforksfexpectpat_offsetget_tfilepin_listpat_valpls_stattflagtbl_ptrdo_caseget_exopmax_fmtprint_headerversionmentor_fmtpenbslocaltimedo_echoungetcprtimeipin_namanalogs__xargctw_ptrtstringr_lenget_subnamsof_trailerzyp_fmtvarstk_ptrtest_intvalid_fmtgroup_namfs_fmt_GLOBAL_OFFSET_TABLE_pinsdo_include_endget_mergepenbget_fitemget_patternverilog_fmtmach_fmtwave_endget_inputsmerge_orderpat_namsfcyclesphys_line_svgpsizmuldivtlinewenbupdate_timespins_ptrdont_carestspice_fmtpv_plstactive_filedo_wavesplsptr__flsbufwaves__1cH__CimplKcplus_init6F_v_next_timeconcatvar_valvhdl_tb_tio_fmtunlinkgroup_cntvaluesdo_elsesscanfget_rnumget_pin_listload_strnam1_cmpikos_hdrpin_attrib__cg92_usedepic_traninit_statefile_rmis_wavesub_namtintlmerge_bidrsprintfMEOFsubroutinetintrdo_prhdrdo_titleget_statestbl_namdtracetime_switch_intvar_namsig_nam_termloop_typepulseswhitebi_cmpvhdl_tb_fmtfoutptimpat_cntcombdir_flag__1cG__CrunMdo_exit_code6F_v_i_out_statedo_lowercasedo_rangeskip_sephilo_fmtlasar_timfclose_get_exit_frame_monitorreallocprintf_DYNAMIClast_time_ex_registerikos_1get_operandikos_2merge_forkscheck_offsetpin_valread_vtimesetarith_opbegin_forikosclk_strtkeycompexptro_in_statenew_pineoffikosb_fmtmerge_flagstate_transspar_termwhitespaceoutput_cnttunpackget_simparrepeatradix_convcompare_initgetenvudf_fmtprep_header1comontpackvcntsimsub_cntsys_linetgrp_attribexpt_cntbufsizedunpackvec_termdo_sffmerge_fileoperand_termwav_statcompltbl_cntpin_namcommentsusie_fmtsilos_fmtpulsevar_cntmerge_fileio_cntdntctgroupget_groupsbptrsource_filecadat_fmtlibc.so.1SYSVABI_1.3SUNWprivate_1.1libc.so.147̳> NqJ kD k k| kx k- k < i i i i i i i i i jF j j j( j4 j@ jL jX4 jd= jpX j| jt jZ j j j @"atD"aZ"cԥ, @'ZȀ $+`-` `?-)Z#- =--% # @@"HZ#؀ Z#܀@@@ @@p'H'D@w'@bs!!$"\'!$#@f!i$ !$!!$!!_$"`!,!x 0!i, (["<i`$@!!$ !$!!R4"!o$"!$!( d!$#!$"!h$ !i$ L!o$#8!`$#T!s$ 4!i$ p!Z$#!"!i$ T!R$"!ZL#!Z,#!!$"4 !$#| !$!$!ZL#![,  H!,!!$!p!M$!!h$##b|$`!#X$ , ,`  %o/`$`` !R$"!{$" +k`d-!H/x%h/`$@/`,$@$@`` +cT-``%/`$@$@/`$,`` A!,!o!R$"  D/`#ob$#`$#oa$#c$#i`X$ d#a$#ga$#h`$#a$#i`t$  ''M/`, $  ' ''q|/`/`, $  '`` !$#!y$# !+`?/e)R"$/`$/`$,/`$/@`a +oc@-o<)}"ء/`$/`$,/`$$``!&$!!$#!$!Ⱥ! )#/`/`$`a!s$ ,!}$"!o$"!$!!{$# $!R"$,  T,  I,  M,  E, !, " $, : C, ; Y, < C, = L, > E, ?, @ $, W F, X I, Y L, Z E, [ _, \ S, ] T, ^ A, _ T, `, a!e!$  d$ $ ! , , , !Z$# !R$" !y$#$!h$#(!$!!`$#X!!, !h#,, !y,!!Z$#D  H@E@dJ H #`p@@@'!M$"@6`@d; #`` @2@'!$#T@(`@d- !#T!g$!!i$ PH %@e#[b@@@*D H @` H @` !i$ PH @EH b@?H a@9["Xya<@3 ob@- @'''ܺ?'Ԡ ;/#Zc$#$c%M`$  $`@  '`' $` '? /Ӏ? %Z@#0cP$!"@c'$" @@c ?,#Mb@'!"H$b!i p!$# ',`!ZL#,` ,` ;,` ,`!b@wOӀ {\쀤X '!#!o$#8%M`$ $`@O  '`' $` '/ӡ,<   #c $c,<`!",#`,<  {ؠ '؀ !o#8!i$ p@Z`,<  } ؠ$ '؀ OӀ "O \쀤 'O!",`O#a  쀤O[b$@ O !@qiOӠz'耤 1 .'耤    - .Ԁ 4!R4"  !R4"#[T` 4`'!ZL#',`,` ' 5+[` ',``<   ,`` %` %` ![L %`+[`< %` ![L %` !#!i$ p@\ѐ #{b $b !#!i$ p@\Đ  !",`?@Y %M`$ $`@@  '`' $` '/ӡ,`<  ,`<  !,`<  ",`<  '%M`$  $`@  '`' $` /O!!,  '?@Y: O!!,'%M`$ `$`@  '`'Ԡ $` '/ӡ,`<   ,`<  ;,`<  !!!L? " '$ '%,'L +b)! L`,'` L  ;!",`%M!$"H+a'@'Ѐ$!#!i$ p@~ a@z@a  '%!i$ p$!!b@耤! !!$"\C !!$"\#yaL +b)y!L`,'`L@ 'ROӀ  ! /OӀ '쀤 ܀ '!RT"O!",`!!"\܀쀤 OӀ a z$ /O!",`OӀ #c $cOӀ ;!R4"?'O/%M`$ $`@  '`' $` '?  '[L+b,`Lb,`b,`@!i P %H!#@@4b@![  @, '!o$"@\![  '[)o" /`$` @!R$"!{$"!o$#8!i$ p![$ !$#@@D;+yaM` #s`4 $`4* @p@A@@E@ @W +!`#X @Yy #`cX $cX'y. $. $#}bؒ@!i P!!i p@=![ !s 4'`X, #oc<$!i p$ X, #oc@$ A@p@z@v@@@ @Wa +!`#X @Y2 #`cX $cX'y. $. $#}bؒ@L!i P!!i p@![ !s 4'`X, #oc<$!i p$ X, #oc@$#[``$`@+#ay!!\@%@;![ ,@4@X!eeggPegggghhh h0h@h`hphhhhhhhkhkkg`iii i0i@j,i`gpipiiiijiigiij kj<jLj\jljjjjjjjjgj|ehPk iPx@ې!![$ ,@@O  !!'s4L@ = $4@ @N !!!s 4L@,`<  ",`<  '#s`4 $`4 ;#s`4$`4!!L/ <`.< @/ <`![L @@N̐ 5/ <`![ ,,`#s`4$`4!!L/ <`.< @![ ,,㿈@~@N !!'s4L@ = $4@~@N @ /`/`#abT ``b@S! /`/`#abT y!@ @S /`/`#ab4@~r@Na !!+s`4L@;%`4}!ZL#%`4t@~+ya)["А@@ђ.@~J@N9 !!'s4L@ = $4@~9@N( @~y!ax@셠"/`/`#ab ` `: @@.@~@N !!'s4L@ = $4@~@M @~ry!a|@셠"/`/`#ab ` ` @m@t!i P/!i p@Ms!$!'ဣ/ / #kc@x/`/`#ab``#ab`` B (;XX\;XX@_\ x@}@M  ![$ (!_,"h!!'s4L@ = $4@}@M !!%s4L@- $4@}y![b@ ![$ 0R/-<  "-<  '/%s4 $4@`$4!!L/ < O'+s`4-_h/ <`/@``%`L/ < O#_bh/@-<  ;-<`!ZL#@ @}y!_bh@{ @} @M #_bhL` +!@{@H/ <  `/ <  . #_bhO@/ < ` #_bg/@["_bh@{_"h#a@@'!s$ @`@U !%_h@z˒!s #bT@@!i P!i p@LY!$!`@f 㿘@|@L !!'s4L@ =$4@|@L !!/s4L@; %4=!ZL#6'"'%s4 $4'L`\`$4L n N uc@{[uc@{U@#s`4 $`4 uc@{K4 %4!i P!i p@K!$!"0uc@ 㿐 ![$ 4@|.@L !!'s4L@ ;  = $4@|@L !!!s 4L/ <  ;C/ = !ZL#: ' "'s4 $4!!L#[`8/@`4 $4![L @KՐ #s`4 $`4/ <#[`8/@`@{@KĐ !!!s 4L/ <  ;#[`8/@!i P!i p@KP!$!"T@\@ ?a!>'!>z/#b@F@`@@F`L!>t'!$#T@:`P@8`l@T= 'M`$ !>p' $`@/!>l'™ !>h'`%d' $` !>l'!>l ;.?@M+ ''M`$ !>`' $`@!>\'™ !>X'`%T' $` !>\'!>\ ;'M`$ !>P' $`@!>L'™ !>H'`%D' $` !>L'!>L!=/!h$ ![4  A!,!o!v$!![$ L!#T!g$!@$ !h#(@+hc( ? ?% ?/``, `, `, ``@@m #ߢcO@!>@'`!><` ''4+~8%ߤO@'`` '#ߢcO@!>0'`!>,` ''$+~(%ߤO@'`` '` ![T P  'h!!!$!!!!h$ !='!h#((#ߢcO@-`#c L`,`!=/,$L !>y,' `!h#(!=!=,$ !h !>y@@m]y!{#@q#cT%@ cT@@!>@'!M$"@@R  㿈@z1@J  +a's4L@!ZL#@$4aL    @J 8#s`4 $`4@z @I  !!'s4L@ = $4@y@I !!!s 4L@,`<  ",`<  '#s`4 $`4+s`4%`4'L![, R`4L@.< @%`4  !h#(@+hc(-)[ RM / <`/`, / <`, ``@U+ !h#(@#!{#@,T  ![L R/ <,#c`, / <`, `!h#(@) !h#(@#!{#@,T  ![L R/ <,#c`, / <`, `!h#(@!i P!i p@H!$!#d![L R@ x@y7@I& !!'s4L@ = $4@y&@I !!!s 4L@,`<  ",`<  '>#s`4 $`4$`4!!L/`<`.< @)/`<`![L @@H 5/`<   @H 5/`<#ya#s`4 $`4$`4!!L/`<`.< @)/`<`![L @@H^ 5/`<   @HT 5/`<#hc4/ #s`4$`4!!L/`<`.< @#hc4 /@xy!hc4@v6!i P!i p@G!$!#hc4@@x*@H !!'s4L@ -$4@xy![b@ ![4  x ![4 @w@G !!'s4L@ = $4@w@Gܐ !!!s 4L@,`<  ",`<  '>#s`4 $`4$`4!!L/`<`.< @)/`<`![L @@G 5/`<   @G 5/`<#oa/ #s`4$`4!!L/`<`.< @#oa /@x y!oa@u!i P!i p@G!!$!#oa@+ 㿈@wr@Ga +a's4L@!ZL#@$4aL    @GG 8#s`4 $`4@wM@G<  !!'s4L@ = $4@w9@G( !!!s 4L@,`<  ",`<  '  #s`4 $`4 ![$ T#RbO@  #Rb`O@ !x"H  #xb O ` @F : @F : !!!s 4L#Rb/@   !!!s 4L#xb/'s4$4@v@F !!!s 4L` -L` >@F 8#s`4 $`4@v@F !!!s 4L@,`<  ",`<  '  #s`4 $`4 !!!s 4L#&a/@`   !!!s 4L#kc/ 's4$4@vy@Fh !!!s 4L,<  ",<  '  #s`4 $`4,<  ;,<`!ZL#@N!i P!i p@E!$! b@ 㿀 ![4 @v(@F !!'s4L@ = $4@v@F !!!s 4L@,`<  ; ,`<`!ZL#@!.<  ;#s`4 $`4 !h#(@'h(% /`, `@ @x!i ( T    , #c, !i /`T` !i P!i p@EO!$! 8b@[ 㾀''' `@I![4 @d 4  !R$" !i X$ $  !#$  $ !M"!g$!!h ̀@q!h Ѐ @q!h Ԁ @q!h ؀ @q%o#`|@@'!g$!`@@N #`` @@' !$#T@`@`,@M  !h#(@+hc( ?/)[ RM /`, , ``@!i$ p!g!!M$""@r@uy![c@|@E  <@uy!`@Ք"!" !"聩  !"   !"  !!"4@@H )!!"4` !#T`@!` !#Ta@` !#Ta @ `!#Ta@x!#Ta$@r!M"@r1@uy![c@|+@D А %/`<`!ZL#@@>ǐ %㿘@lN%y @TӐ?` @Tː @ @ .$  0@T`##s`4$ $`4  @T`#s`4$ $`4 L #s`4 $`4@k@>j &㿘 R"" 㿘@k#[T`d 4`d!yL!   @ @>?y!ax@i@k@;  ![, f@D!"M"@T !$!,!!,'!i T""!#BB'!_$"`@j@: !!L ,#s`4 $`4@Dt!"M"@S!$!,!!,'!i T""!#BB'!$!@j@: !!L ,#s`4 $`4![, f@k!#yaL` 0  1 @M@@= !yL!!i, (!i P!i p@:)!$! !_"`!!@1 㿐!!$ Q@= @j'y!!$, , #s`<@h}@j @S!@@=u !i P!i p@9!$!! b@@jC@:2 ![ !s 4'$, #qc$$, #qc$$, #qc$@jy!@Sa `!yL! @=6 @jy!@SP '$, #qc$$ $$ 㿘@i@9 !!'s4L@ = $4@i@9א @jS'y%[4@q\ #i`P  $`P@qM #i`P $`P!,@g@<ؐ  㿐@i @9 !!'s4L@ = $4@i@9 !!!s 4L " ' #s`4$`4!!L!!!s 4L.<`/`< @.<;'s4 $4#ob/ !!4L.<`/`< @#s`4 $`4#ob/!i P!i p@8!$!!8@@ !`$"@i7'@9& !!'s4L@ = $4@i&@9 !!!s 4L "@<5 #s`4 $`4'!i p'![ '!"L/, <`"'O![L @@< O〤 \ '!"L/, <`"'!"L/, : [`i@h%[i' 'L/, : @h#s`4$`4!!L/, <  "O〤\+#s`4$`4!!L/#!a`$   $`,: !a@i`' $`,< /, @B%䀤 #!a`$ $`!a@D `' $`/, @@ /֨ '!!'s4L@/,`<  - $4,`<`, '!!!s 4L/, < #a  '+aج)s 4  % O-'` L/, <   @O/ա* <  D  l,'@O〢 H x /@O〢 X H/ՠ x/O,'#s`4 $`4,'!"L/, <`![L @$O〤`, `;!ZL#@!h#0,' '!"L/, <`![L @!h#0, ![4 n@A_4 n!"  OՀ B !!,@g~!" OՀ D M"@P!$!,@Sj!"   ![$ `!!,Mb@r OՀ`BJ![ `$ '#MbL 0쀤  $ '#MbL 0쀤 ,'!$  $#MbL$'!a@-' $#MbL/, @$'쀤 #Mb![ ` @@w@@6@!\@@!"L/, : [`i@g %[i' 'L/, : @fO․`; !ZL#@![L @ 'O〤 $w'+s`4@L T%`4@L  I`4@L  M`4@L  E `4 %`4!`!h @'+s`4@L D%`4@L  A`4@L  T`4@L  E `4 %`4!d`T@^e'+s`4@L C0`4@L  Y(`4@L  C `4@wL  L`4@oL  E`4 %`4!e!!$#!h#@'.''#s`4$`4!!L@P/* <!h#0􀤠$=,+hc0L@ek!i$ p@9o ",!lc0@#s`4$ $`4 ' '#s`4`$`4!!L@/* <!h#0􀤠$,%h0, )[5 n '[4p@? 4p5 n#s`4$ $`4!p0@4p5 n!"  !t!!,@%!$ ` $ '!a@ ' $ ',  ', 4 ![ `$ '#MbL 0쀤  $ '#MbL 0쀤 )%!$ `$#MbL$ '!a@y'l $#MbL/kkl, $'@쀤 !x@AHO〤+#!a`$  $` !a@L`' $` ,  , 4 @d!i$ p@8 #!a`$ $`!a@$ `' $`/, @@#s`4$`4!!L/, <  "!|@@e8@5' !!!s 4L/, <  ;O![L @@8> O!ZL#@@e!!!s 4L/, <  ; 㿘!i P!@ 㿘@e]y!%@bے![ ( !s a'[t, #a#`c`@t $t 㿘!b@b 㿈@>E'!i P!i p@4>!$!!b@J@ey!@Mג @7 !!,!i P!@1 !i P!@%@M֐  㿘!i P!i p@3!$!!b@!Z# c@4H -)Z# %#"Y,`,`#`$?#, , #`$"Y#, , #`$#, #v` $ 㿘@M 㿘'DOG a z" /GOG0@d@3 !!'s4L@ = $4@c@3 !i p'!!!s 4L "!@dT%y#[c<@k]@!$#| `@kR !$#| @5 #s`4 $`4!i L@ !`$"'!i p'!s 4![ '!"L/`<`"'/`<`![L @@6 /`<  \ '!"L/`<`"'!"L/, : [`i@cW%[i' 'L/, : @cFO․`; !ZL#@![L @ '!#|%{H![ x A!e!'$〢 '$, , #c!h 〡< < %@ '!{#$ , , #c!h !#< < $$ '!{#@Zw$@Zs#s`4$`4!!L/`< `"/`<\#s`4$`4!!L/`: !#T@ީ%[䀤 !#T@ޜ/֨ '!!'s4L@@,`<  - $4,`<`, '!!!s 4L/`< #a  '+aج)s 4  % /`<`-'` L/`<   /`: }/ա* <  D  l,'/`: l H  x/`: c X H/պ x/`<`,'#s`4 $`4,'!"L/`<`![L @$/`<``, `;!ZL#@!h#0,' '!"L/`<`![L @!h#0, ![4 n@;4 n!" OՀ B !#T!!,@i!" OՀ DM"@K0!$!,!#T@̒S!"   ![$ `!!,Mb@m# OՀ`B1![ `$ '#MbL 0쀤  $ '#MbL 0쀤 'T%ML@$`'@ݒ쀤 #Mb![ ` @@r@@@!#Tb @y@!"L/, : [`i@a%[i' 'L/, : @axO․`; !ZL#@![L @ 'r/`<  $S'+s`4dL T'`4\L  I`4TL  M`4LL  E`4 %`4!#Tb!h @?'+s`46L D'`4.L  A`4&L  T`4L  E`4 %`4!#TbT@'+s`4L C2`4L  Y*`4L  C"`4L  L`4L  E`4 %`4!e!%$!#Tb@ܰ''#s`4$`4!!Lǐ/* <!h#0􀤠$;,+hc0L@_!i$ p@3 ",!#Tbc0@x#s`4$ $`4 ' '#s`4$`4!!L/* <!h#0􀤠$,%h0, )[5 n '[4p@:# 5 n4p#s`4$ $`4!#Tb 0@<d4p5 n!"  !#Tb$!!,@+S '!#T@'![ `$ '#MbL 0쀤  $ '#MbL 0쀤 #cT%ML$ '@`쀤 !#Tb(@/`< !#T@@_;!i$ p@3? !#T@ې#s`4$`4!!L/`< "!#Tb,@@`@/ !!!s 4L/`<  ; /`<`![L @@3  /`<`!ZL#@@`S!!!s 4L/`<  ;!i P!i p@/d!$!"0b@pg#s`4$`4!!L/`< `")/`<  \#s`4 $`4/`<   @^!i$ p@1h #s`4$`4!!L/`< "@_@/z !!!s 4L/`<  ; /`<`![L @@2 /`<`!ZL#@@_!!!s 4L/`<  ; 㿐@_Q@/@ !!'s4L@ = $4@_@@// !s 4!i P!i p@.!$!"Tb@@_'y%[D@f H![, \@f O![, \@f B![, \!s$ 4!!L[`|@^J@a%!L!݀ =@0 #@_X!i T @0 $!i ( T ``!h#(@@0 $!yL!!s (,`!i /`T @^@. !!!s 4L[`|@^㿘@^@. !!'s4L@ = $4@^@.{ !!'s4L ;  !Z$#4 $4@` '!Z$#p@^-y)[#P@eޒ@^@g "x@@1i @n@? "ya@ @1Z / / $#ha%@ 1/`#c, , #haM@ 1  0#ha -@ 0 ,  1#ha -@ 1,  !&$!@^@. !!!s 4L`;0!ZL#@+@7!"M"@G!$!,!h 'Љ!!,'Ї!i T"""!#BB'Х/ / $#ha $!h / / $#ha$!i P!i p@-\!$!"/`#̢a@d  @e5d@^ @gD "@O@0 @n @? "ya@A @0/ / $#ha$ 0/`#c`, #ha L`, !&$!!!Ȁ..$#ha !&$!!!Ȁ!i P!i p@,!$!"ԡ/`#̢a@ !y!@f #@@0^ @]>@-- !i P!i p@,!$!#/`#̢a@!!'s4L@ ,$4 ![, f@6!"M"@F%!$!,!!,'Ї!i T""!#BB'Ѐ @0 @\@, !!'s4L@ ,$4@6v!"M"@E!$!,!!,'Ї!i T""!#BB'Ѐ`@/ @@/ܐ @\@, !!'s4L@ ,$4@]!yL!/ۡ,`<  0 ,`<  1@/ @m@? !!Ȁ @/ #aȠ$a@\@,x !!'s4L@ ,$4!!!s 4L`;9!ZL#@4@5!"M"@E|!$!,!!,'Ї!i T""!#BB''ܥ..$#ha$ #ha$ 1/`#c,  !&$!..$#ha$ 0/`#c, /`#c, ..$#h`%@#h`%@#ha%@O#ha-@1  0#ha -@ 0,  0 ,  1#ha -@ 1,  1, ![, f h'D X/D  ![, f%s4`$4'L/`$4L$ /,`<  ,<  .'D @\>[#Xya@Y %y#[c`@c>@u`@c6 l`@c-d` @c%\ `@cT `@cL `@c D `@c< ` @b4 `$@b, `(@b$ %y#[c@b@ `@bِ `@bѐ #<@@.b @[B@+1 %!!!s 4L/,`<  ",`<  '#s`4 $`4+s`4`%`4!!L/LO〤@%`4!!'s4L@ *t$4 !h#(@!{#/`T  !i / 4 `!h#(@; !h#(@!{#@,T !i / 4 `!h#(@ !h#(@!{#/`T  !i / 4 `!h#(@!i / @Z4@* !!'s4L@ @$4@\ѐ!i ( T !{#/ T@  !y!8T!i /`4`!i /`T ![L ~!o", $@4!"M"@C!$!,!!,@![$ @ZY@*H "!!!s 4L`;!ZL#@@3!"M"@CS!$!,!!,  X"/  !!!s 4L ;@. @3!"M"@C/!$!,!!,!h ![$ !i ( T ``![T !{#,`T    X/O!k x,'ȇ!i T""!#BB'ȡ/ #&a$'ȇ!i T""!#BB'ȡ/ #&a$'ȇ!i T""!#BB'ȡ/ #&a$'ȇ!i T""!#BB'ȡ/ #&a$/ #c, O, O, D  1 ,  L`  0,`l!y!8/ T.`#c L`  0,`'ȇ!i T""!#BB'ȡ.`#&a$'ȇ!i T""!#BB'ȡ.`#&a$'ȇ!i T""!#BB'ȡ.`#&a$'ȇ!i T""!#BB'ȡ.`#&a$ .`#c, O, O, `!i /`T @Y@( !!!s 4L`; !ZL#@@C'![, f!i P!i p@(r!$!#Hb@~ 㿈@Y9%y#[c@`B@!i P!i p@(J!$!#lb@V"`@`(!i P!i p@(0!$!#b@< #@6@+ @X@(v   ![   1 0!!!s 4L ;# !h#(@/`#c L` .< ,``!h#(@@B#s`4 $`4 @Z!i ( T +c-i 0/`T, , `/`T -!i ( T &``,`#cL   ##̢a@ӽ@+. ( 1/ #c, `!i /`T @B@ x@Xe+ya)[#@@_nL@XY@a}@ #@ӈ@@'ϐ $@h!@? #ya@z (@' .`.`#`b$ 1/`#c`,  `,  !}$"!i P!i p@'E!$!#/`#̢a@M  @_@^@X @a-@  @8@@' $@gѐ@?  (ya@* (@'p.`.`#`b$ 0/`#c, !}$"԰!s ,. . #`b !}$"԰ !s ,!i P!i p@&!$! 4/`#̢a@ @`Ӑ@  `@ޒ@@'% $@W/@' !i P!i p@&!$! l/`#̢a@ҿ ![, f@0!"M"@@ !$!,!!,  ![$ x!!,`'܇!i T""!#BB''܇!i T""!#BB'@V@&ɐ !!'s4L@ ,$4@0]!"M"@?!$!,!!,'܇!i T""!#BB'@V܀@& !!'s4L@ ,$4@W!yL!![, f!e!%$@ ![$ x!#@ @.@@&u &@fǐ@?', , #`b$#`b$.<#`b, /`#c,  .<  1  0/`#c,  1/`#c, !s , @&> '-s,, , #`b$,, , #`b$,, , #`b$.<,, , #`b,,, , #`b$ /`#c`,  0`, , %, 0'D!!"4`!"'`!#'`!# '`!# '#ga%";X@ѝXa@њ  !i$ L![ ( #[T`  !s ";X@хX 4`![$ ![T   h#4#`@g@'!{$"@]`@[`$@.` #{b!! ";X@aXb@^  '!h#(@ !{#/`T/D ![T  ,`<  ,`<   #[` $` '/`#cL  ![T  O   !{"a @!g!a$@ !g!a(@쀤  '!{"a0@!_"d/`@S-L  L ' L/, : [` @T' OL/O[`"@T.![T  O  !{"a8!{#/`T 0!_"d/`@ж!g!a@!{#/`T 0!_"d/`@ЦV`,.<,![T  +O  $+{b-H!{#/`T 0@І!# /`T`b@{.<  b@r"+ga-\!{#/`T 0@d!# /`T`a@Y.<  a@P!h#(@!g!#ap@E@![T  !{"@<` ?ӂc%e!h$ !$# !=@Tf'@$U !!'s4L@ (N$4@TU@$D !!!s 4L`)5 `*#!h  / #i`X@@  !h &!#<.; @-!"M"@=1!$!,!!,#s`4 $`4 !i L`!i P!i p@#!$!!x@ϛ@![ ( f![ 0 !s a!h !i p@ϙU ^'s @ϕ#h`<  %'/, :  @ω`<  /, :  @π`<  /, :  @w` /, :  @o#i`p<  /, :  @e`p<  /, :  @\`p<  /, :  @S`p /, :  @K  @G!=' !h#(M- #cL` 15L``L`,`!'?+},$L !+<','!! +}!'?,$L !+<','!='!'?!=, $!h#(!= !h !'?!+<'@b!#@>!}"Ԁ@a!&!쀤@a'`'h!#$`![ ( f![ 0 !s a!h !i p@ήU ^'s @Ϊ#h`<  %'/, :  @Ξ`<  /, :  @Ε`<  /, :  @Ό` /, :  @΄#i`p<  /, :  @z`p<  /, :  @q`p<  /, :  @h`p /, :  @`  @\!{#!#@>_!}"Ԁ@a!&!쀤@ac!{#!! !='''!'?',`#cL #+|'/!h @aŔ'h!#$'``X!h !e$!԰ 㿐![ !s 4$ #i`p@+׸$ !i P`p@!!$!!b@!!,Y@Ry!@;e @%@ !i P!@+Zc,,#`@.%c d@#Ӑ ?+Zc, , #`$"Yc, , #`$c, , #`$c, , #`$ c, #v` $"Z!Z#, , #`$ !i P!@x+Zc,,#`@$%c@; 㿐!i P!i p@!@!$!@R!y!@\ " @E@! !Z# c@! -'Z $,`,`#`$ , #v` @ D$!L!݀ ="@"@#A @+!"M"@:!$!,!!,/`#ea@Q$y!@: @#$ @*!"M"@:g!$!,+a,-Z, , /@Q$y!@:z @*!"M"@:H%a,!!,!Z#, , #`@Q$, , /`#ea #`$?#`$y!@:E @  ![ !s 4)Z#, , #`$!i p$ #, , #`$# d@" !i P"$b!!/`#ea!Z#, , #`@x 㿐!i P!i p@ P!$!"Xb@\%Z,#v` `  $`$ $#!`$ $` ,#`!#hc$ $c!$!p!M$!L!M! #, , , #cX#Ma $ $a, , , #cX!h#@!!p !, , #b|!h#@#ap$ $ap ,,#b|!h#@!y#$#`L!h#@+hc-R$%/y$?,$%,$,$,L`@!R"#c|L!h#@++{c-y(%i/R , $, @, @', $, $$%?#c|,L!h#@'Z, , #`![$ , , #`!i$ p@N$ $ !Z#, , #`!, #ea!Z#, , #`@#`@ !Z#, , #`@2#` ,!Z#, , #` $ ,#ea$'Z, , #`![$ , , #`!i$ p@N #Zc$ $c 㿘!Z# @"u !i P!i p@!$!"b@@Ob3ya @8y@S` @8q@E@>-Z-`#v`  %`% -`#`![$ , , #`!i$ p$ %@N  % $ %#!`$ $` %`%% N` #s`4 $`4@OU@! 㿘!Z# @! !i P!i p@X!$!"b@d@O)Z/y @7K` @7=@6+Zc- #v`  #s`4$ $`4 - #`![$ c, , #`!i$ pc$ %c@M % %c @! % M #s`4 $`4@N@!x 㿘@N(%yL #s`4 $`4 @7y` @7q '`` @N !o$#8x'D@Zy!@X @ / #oc<!$!!i P!i p@!$!"ya@ɛ!!'s4L@ (m$4@M@Ӑ !!!s 4L )=+b'L@ (1$bL/,`<  ,`<  #a $a!"L/,`<  ,`<  !"'L@ )$@ @Y!"!!L (@ #a $a@Y˴@M@u !!!s 4L )@k +a-s4L &q`!h#,'M, , , #c\@KV!h# , , , #cX$a4L/,`<  >,`<  ,9,`<  )4,`<  /+s`4 %`4)!L!M!, , , #cy,!`4L/,`<  ,`<  , ,`<  ),`<  !M!, , , #cyk,@&!"8`!h#,'M, , , #c\@J!h# , , , #cX$ +cy-M/MN, , , ,$!h#,+ap, , #b@J!!,ap, , #b$!h# ap, , #b|$!!'s4L@ ,$4@X @X'M$%p$p a@s "?+b'L@ (5$bL/,`<  ,`<  #a $a!"L/,`<  ,`<  !"'L@ )$@: @X@XD h!h#,@5v _@Xs#,c#c@@`'܇!i T""!#BB'$`!e$!@XY !h#(=!{#-`T '耤  / #c, / #&a$#&a$ -`#c, '〤$ -`#&a%!iL $!k x,#&a% 1/ #c,  !h#(@6#hc $c!Z# c@ -+Zc %c!. . #`$ c, #v` $![ !s 4c, , #`$!!![$ -ip$ c, , #`$/ #oc@%p#hc,@4Ԓ  p %p#c,@6 @|@J 㿘@Ky@h !!'s4L@ :$4 @K!i P!i p@!$!#b@#yLa3* <  R@KLa(/`<O O!,!B B!,! H H!,!@  X!i L @  ,!L!o A@ #[T`d 4`d!h#( @'؀ ![L ~ !h#(@'h(+s`8)[ ~M `,'@-h,L [`@J<,@@u+hc('!!(  #ob $b !{#c(, 4  #ob $b !{#c(, 4![ X   !h#(, #c , !h#(, #c, ,L  %h,`L !h#,L?[` @Jf'`!h#,L?[`"@JZ@q #`cT $cT!h#,L[`i@JJ%[i'h,)`#T  % L@J:@I!# /h(, 4+hc,L (, '̦@IAc,L?(, @I:c,L -_d(, @I2c,L?d(, @I*c,L`(, @I @c,Ld(, @I '܀"!h#,!`#TL[`i@I%[i'h,)`#T  % L@Iߒ1h#,/`TL[`"@I'#,TL#a  0!_"d+hc(, @?!!(  #ob $b !{#c(, 4  #ob $b !{#c(, 4@IU!# !h#(, 4[`@IT`%T#,L`. %T#,L .@ !h#,!`#TL[`i@Iu%[i'h,)`#T  % L@Ie@I'@%'!# !h#(, 42!_"d+hc(, @? !!(  #ob $b !{#c(, 4  #ob $b !{#c(, 4!# !h#(, 4$  '>%'!# !h#(, 4%2!_"d+hc(, @>!!(  #ob $b !{#c(, 4  #ob $b !{#c(, 4!# !h#(, 4&$  '@ ܀@![L ~ !h#(@'h(+s`8)[ ~M `,'@ !h#(; !h#(@// #̢a/`@P/ @Q@ /`#̢a@Q@ !# / T/`T@ )`!h#(@ !h#(!h#(؀@+{cأ,T !_"d,@>(ء-#cL )h#(, , !# -T#(, 4!s 8L#(, c#(, 4'y8#(, 4#(84#(, #̢aL %̤'h(`, L '`/'h(, %̤L[` @H(, L/'`/h(, 1̰!L[`"@H 1O ` .+hc(, '̦,  Oc(, , c(, ,  .)_"dc(, ,  O"dc(, , "dc(, e, (, @, (, , O(, , +hc(, '̦@L , c(, L?,  Oc(, , .c(, ,?'_dc(, , dc(, , O dc(, , +_bd-h(, L , bd(, L?,  Obd(, , .bd(, ,?آ @'#yc  %h($c (7/ #̢a@PN!{"/ 4$ 'ܺ "!!`/ #̢a/`@/`#kc@O, '܀ !!@܀s- %/ +̪a.`@.`/k@E=!{"/ 4, , $, $, $, $#!b84  / , , @N1-!{"/ 4, , $, $, $, $#!b8/`4 @`!h#(@,`#̢a, , #kc@N!!, , $, $, $, $#!b8/`4'/` /`$/`$/` $/` $#!b8( T )!"8 '/` /`$/`$/` $/` $,T !{"/ 4/` /`$/`$/` $/` $#!b8, 4  '/ #̢a/`@/`#kc@Na0@!{"/ 4-` -`$-`$-` $-` $#!b8, 4 @ '!h#(@,`#̢a-`@-`#kc@N3/` /`$/`$/` $/` $#!b8, 4!h#(!i P!i p@!$!#8b!h#(@x![, ~@Fi'@( 9!5s4L/, : [`@FAO!h#,,`'4 &4`'3'&4!L/, < @`'#O!h#,,`'*/@CO#s`4$`4!!L/, <  '`"g'&4!L/, < @`"'+s`4)h#,O ,'`%`L/, <  "!h#,, ', #a!h#,, #a@C  ', , #a%h,@V @E, $ ,@Cz ![, ~F[`@ES@;!4L/, : [`@EF,O (O!h#,,`'@*/@C2O#s`4 $`4!!L/, : [`@E O [!!s 4L/, : [`"@E "O O!h#,,'#s`4 $`4!!L/, : [`"@DO O` !h#,,'#s`4 $`4'+s`4L[` @D`4`%`4L!h#,,'`4@BL?!`$#T!h#,,O!,!݀ #s`4 $`4 㿐@D@ !!'s4L@ =$4@J!"M"@-!$!,!!,`@ '!i T""!#BB'!$#!e$!@D@ !i P!i p@!$!#t!#@#!!'s4@L` AL` L L` L$4 !$! 㿘@DU@D !!'s4L@ =$4@!"M"@-U!$!,!!,!h @@$ !!, @ *!i P!i p@!$!#!!,@!!,!h$  !e$!԰ 㿀@D@ !!'s4L@ = $4@C@ߐ @D['y%[@Kd!Z$#@KZ!!Z$# @KO !Z$#@KD !Z$#@K9 b!Z$#(@K. P!Z$#4@K# !Z$#<@K !Z$#H@K  !Z$#P@K !Z$#X@J !Z$#'y%\@J !Z$#@Jݐ !Z$#v@JҐ -!Z$#k@Jǐ /!Z$#`@J !Z$#U$@J !Z$#J,@J c!Z$#?8@J "!Z$#4D@J !Z$#)H@J !Z$#L@Jz !Z$#T@Jo !Z$#'y%\t@J` !Z$#@JU Q!Z$#@JJ R!Z$#(@J? Q!Z$#4@J4 R!Z$#@@J) Q!Z$#T@J R!Z$#h@J !Z$#p@J !Z$#|@I !Z$#@I !Z$#@I !Z$#'y%\@Iؒ !Z$#q@I͐ !Z$#f@I !Z$#[@I !Z$#P@I !Z$#E$@I !Z$#:,@I !Z$#/4@I !Z$#$<@I  ![4  S!Z$#H@Ir  ![4  T!Z$#P@Id  ![4  U!Z$#\@IV !Z$#'y%\@IG !Z$#@I< !Z$#@I1  ![$  !Z$#@I# !Z$#$@I !Z$#4@I  !Z$#<@I !Z$#@@H !Z$#D@H !!Z$#L@H #!Z$#zX@H֐ )!Z$#o`@Hː *!Z$#d'y%\@H +!Z$#U@H ,!Z$#J@H .!Z$#?@H $!Z$#4@H V!Z$#)$@H W!Z$#(@Hz X!Z$#,@Ho Y!Z$##@@ !i P!i p@l!$!#ya@v!y!H ` %yO@``'``+{c)y!O@` ,'` `@  㿘@@@ ![ !s 4![$ @@@} !!'s4L@`" ` !ZL#@$4 `;`#s`4 $`4 㿘@!"M"@)f!$!,!!, @7 !Z# c@0 -+Zc %c!!,"X,`,`#`$ c, #v` $?c, , #`$"Yc, , #`@@$y!@)R @ ![ !s 4)Z#, , #`$!i p$ #, , #`$# d@ !i P!i p@!$!#!!,@ 㿘@?@ !!'s4L@ = $4@?@ @AY' !" !!$"4%!"聩  !!$"4!"  !!$"4!"  !!$"4@ !i P!i p@!$! $";XX@\ 㿐@?g@V !!'s4L@ = $4@?V@E @@!i$ T!#( "@9 +ea)%##'%iT""'BB'%##_b`'T""BB'$b`#a'T""BB'$a#%aغ !h#(@V/`#&a'!i T""!#BB'$'!i T""!#BB'$/`#&a'!i T""!#BB'$'!i T""!#BB'$`!h#(@!s ,Z/`/`#`b'!i T""!#BB'$'!i T""!#BB'$/`/`#`b'!i T""!#BB'$'!i T""!#BB'$`!s ,@!!Ȁ?+ha-h/1i T3h`/`/`$`' ""BB'$``' ""BB'$``' ""BB'$``!!Ȁ@!i P!i p@ !$! H!i T";XX@\@(@ p@>e!y!H @%yL@ [`O@ @@%yL@ [ `@`l@ '!#~@@  @#ya.L` @ !h# 6!y!@F p@V@  !y!@H |@I@  !y!@G0 @<@  !y!@G @/@N #Rb !$b@F 'R, #i`$@+', #yc($@@ '!R", #{c$@!h#'R#c|,y!, #yc(@;b%{'R X, ,`@!R"@=!yL! )y!M '!R"'R+i`%{/ @Iܒ @H`@͐!R"'R+i`%{/ @H !h# 4@E @@ Ԑ !y!@H4 @@ ǐ !y!@Fg @s@  !y!@G( @f@ !y!H @%yL@ [`O@ @#ya@L` [ `Ԕ@]@ '#ya.#Rb $b!@S @?'!R", #yc($@@1 '!R", #{c$@!h#'R#c|,, #i`$y!, #yc(@:o%{'R X, ,`@@<!yL! #s`4$`4!!L[`|@< @  !i P!i p@ !$! b@ 㿐@<!h# 6!y!@E!@@ ɐ !y!@GQ!@@  !y!@E!@@  !y!@FE!(@@  y!@L^ @  !!y#$!@  'yL +yc$ %c$-$-$#Rb$@9ʐ!h#c$#`,@ u !y#$@<!yL! !h# 6!y!@D!4@;@ Z !y!@F!@@.@ M !y!@E!L@!@ @ !y!@E֐!X@@ 3 !y!@FWad@!!y#$@+yc$%e/`$``@!y#$'!y#$!@  y!@K @  !%y$ $$y!-$-$#Rb$@9?!h#$#`,@;!yL! |!i P!i p@ !$!!hb@!!!s 4L[`|@:@  #s`4 $`4 㿐@;[!y!@C!@@ А !y!@CҐ!@|@  !y!@F#!@o@  !y!@DV!@b@  !y!@E!@U@ t y!@K0 $@ k "#a $ay!, , #kc@8@<Ő!i ( T -!8/1i  /`T@, , $, $, $, $4` /`T !!, , $, $, $, $#!b8/`4!i ( T `!!!{",`4`!i /`T !i P!i p@ !$!!!!, , #kc@!! b@  ?bh'DD A!$#!$"#s`4$ $`4!!L[`@9#s`4$  $`4!!L[`@9!!'s4L[`|@94 $4@<!L!݀ =@  @c!>'!i ( T 'i% ',`T #~$ '!i ,T!#@!!!s 4L @@  ;!i !>, T! "@=!"  !!,Mb@D  ![$ `!i Py!i p@ !$!!@" ! <'#MbL 0# |$  '#MbL 0! < E+!a`$ !>'`%`' #MbL!>'$'!>'!a@!>'`'' %`+ |#MbL#~/, !>'$'!>'!>'! < !"@ b!!@!> !>'!i !>, T# b$!>'`@  !v!!>, T@a!#PT!>'! <@ '!ML"!>, #{cI,%!>'+~-{/1M"%L, ,' '! <#!>'+~-{/1M"%L, ,'% '! <%!>!>, #i`-i/{1>3Mb%L, @,'@@#~$  Z' !> M!i +~,T!>'$'!#@@  !>! "@@  !" M"@!G!$!,!i P!i p@!$!" !!,@!!,!>, #Qc$!>  !"  !!,Mb#c~@C@![$ `! <@77@ !!'s4L@ @_ ! <7$4!>'![ `+[``- /M%L,'`@@W!" M"@ !$!,!h #~'!!,'!i T"""'!>'!>'![ `+[``-M/% L,'`@!i Py!i p@!$!"T@$ ! <'#MbL 0# |$  '#MbL 0! < E+!a`$ !>'`%`' #MbL!>'$'!>'!a@!>'`'' %`+ |#MbL#~/, !>'$'!>'!>'! < !"t@ b!!@!>'!  =!i +~,T!>'$'!h#(@@ !>!>![ ` #MbL,#c,  0,#c, #~ '!> Z!> E!i +~,T!>'$'!h#(@@s !> !!>#MbM'/, <- #c`, O!<}, L `, !?-$#~ '!> !?!>, "@!>!<}@EȔ 㿀'D!"#c !!0!b`@Ap  $c ![$ !##b  !!,Mb@AY  $b ![$ `OG > l r![ ` ![ `![ @@!"mf#Mb@M`/#!b`O@,<  1(- <  1 ` 0-` ` .<  0 0#Mb /@.<10#Mb/@.,<  0(- <  1` 1-`.<  0 ` 1#Mb/@ .<10#Mb/@`@',!!0$,!"mf#Mb@M`/#!b`O@,<  1(- <  1 0-`.<  0  0#Mb/@ .<10#Mb/@.,<  0(- <  1  1-` .<  0  1#Mb /@.<10#Mb/@`@',!!0$$,V!"#@#!b`L 1 #MbL 1 1#Mb/@ 0,`@',!!0$,(!"4.@#MbL 1 #!b`L 1 1,@#MbL 0#!b`L 0 0#Mb/@ 1,`@',!!0 $,!")!"`@!$!0' @%M)!0 '@L/@'` @!!0$ ` #Mb 0/@'``',!!0,$,!"'!"`@!$!0 #MbO' ` 'M%MO@/@'``-<`!M,"&  ',!!0,$,!"+!"`@d!$!0'+Mb)!0 @L/@` '@!!0'@ %M 0/@`@',!!0<$,M!"'!"`@.!$!0 !ML" @ 'M%MO@/@`@-<#Mb/&  ',!!0<$,!"]W@#MbL 1 #!b`L 0 1B,@#MbL 0 #!b`L 1 11,@#MbL 0 #!b`L 0 0 ,@#MbL 1 #!b`L 1 0,@#!b`L01#Mb,`@',!!0$,#bM"@!$!,!"`@!$!0$b',!!0\$,#bM"@z!$!,!"`@t!$!0$b',!!0<.! $,x!"!# M" !`@!$!,$!"M"@D!$!,!#!"`@9!$!0%,!!0@ $,$,!$"=!"!# M" !`@N!$!,!#!"`@ !$!0%,!!0@ $,$,!$" !"!# M" !`@!$!,!#!"`@!$!0%,!!0@ $,$,!$"!"!# M" !`@!$!,!#!"`@!$!0%,!!0@ $,$,!$"!"!# M" !`@!$!,!#!"`@y!$!0%,!!0@ $,$,!$"}!"!# M" !`@!$!,!#!"`@I!$!0%,!!0@ $,$,!$"M@ IOG-& $ , !#*& }+^< -T/2>r ^lX|![$ ` d$㿈@2/!yL!$ A@!h#( `@C @,#h` @-ސ` "ya@F@!L!o$`A!yL! ,#h` @- !R$" !{#@(!h .#i`X$!e!!$###a$!}"#`$!&!#oa$![ L#ob$ !h#(C,#c L .+h`, L -, L /it`,/`L/, <` , O , L , L ,  ? ,  L`  `L 1 1,` !h#( -M%`/ / `.$/`%`   /q|1h!/ / $@..$/`/`%  /`#ob![$ L#i`X!h$ %e$#a!$#$#`!}$"#oa!&$!!yL!%,o!i P!i p@N!$!"Lo@Y/`#c #ga!$#T@ \" %h,@.`a,, ,#b@=@'!$#T@3`@ 8 !#Tb@=#T/`#ga$ #c@$ 㿐'D!i P#!h @ !R"D!{"3D- #a@ !b@.6D$#`c`@$ 'D- $#cTb@. D%@ !{"!b@.D$㿠'Dq#@u#<@o#t@i#@c#@]#@W @Q <@K `@E @{? @u9!@o3!T@i-!@c'!@]!!@W!@Q"@K"`@E "@?"@9#(@3#t@-#@'#@! @ @@ p@! @  8!h @ @!@!0@!d@!@!@!@",@"|@"@"@#@#X@z#@t!#ya@@ j#@d (@^ `@X @R @L @F!@|@!!,ya@t@r 6!l@l0!!ya@d@b @g $!@Z"@T"4@N"\@HD D A, !!$!i$ P!i p!$ p"pb@.@3  8Ph(@Xp0H`x4Ld| 4Ld|Ld|㿠'D"x@"@#4@#d@#@#@ @ @@ p@ @ @!@!H@!@!@"@"@@y"d@s"@m"@g#@a#8@[#l@U#@O|#@Iv @Cp H@=j @7d @1^!@+X!T@%R!@L!@F" @@"@@ :"|@4"@."@@ &# @@ #(@#D@#h@ D *, !"!i$ P!i p$ p#b@@ʐ Ph€˜°(@XpÈàø0H`xĐĨx 8PhŀŘŰ 8㿠'D##@'#@!#@{ @u <@o l@i  @c @]!@W!H@Q!x@K!@E!@?!@9"$@3"\@-"@'"@!"@#@#H@#|@ #@#@ @ P@ |@ @ @ @y!@s!D@m!l@g!@a!@["@U"<@O"t@I"@C"@=#@@ 5#D@/#d@)#@##!h @{@ !# @t@r , 4@l D ., ! !i$ P!i pE$ p Xb@R@W ǘǰ(@XpȈȠȸ0H`xɐɨ 8Phʀʘʰ(@Xxː˨㿠'DB `@@ ! ya@ @ <! ya@@ 2! @@ @ H@ !|@"!@!!@@ߐ 4"T@@ސ  D , !"!i$ P!i p$ p"db@@ p͈Ͱ0㿐'L'H'D[ ؀9DJHJ *:  a *:  z*: " /`:  a z" .:`/`: @` OO@ [ ؀0#\b,i`@(@ !"li`@R@P ( ![ ܀ @-@'@c`'@]`' @({@\"D@)A@ b@&'!" @'@ @?'Ժ@6ܢ'ظ@,`<  / <`[,`@$ܢ'ظ@,`<  [,` iL@,`<  ,`<  / <`,`[L@,`<  ,`<  ,`@`A[L,<` ,<  / <`,[L,<` ,<  ,[L,<` !,<  / <`O,/ <  . 'Ԡ[L,<` ,<  O,[L,<` ,<  / <`C,[L,<` ,<  C,\bT@'& !"@Hi  @Cԁʢ OO *'O'\\@' ![$ ܠ 'Ԁ +bЖ̘ȚĐ@@Х, ̣, ȣ, Ġ'@'6@@'@@'@ %i)@'+@'@@@` @ې'!M $"!!!`@`D@ܔ@ϐ !o$#8!s$ 4!!, !M"@& !\"#aؔ % a@'J ( !M"@&w !M"@i )@!!L !!!#cP@@`4O@@ !o$#8!s$ 4!!, @9[  OO 2 c@Oc@@O Cc@p@= @4@@ @# [%h@C`h@<`@7@&d@'+#HѢag!o$"#rc!o$"L [-o)o" % ,% 4% %,%4%M@`1o"&"@&"@&"@&"/o✢%✢@%✢@%✢@%", &"✣, %"4 &"✣4 %", &"✣, %"4 &"✣4 %", &"✣, %"4 &"✣4 %"#Ƣ`'4 ', '!h#耤 !h#쀤쀤@w !!c@$#@u@m?#i`@m@e? @g@_? @@a@Y? h@[@S?  , !!<#[`܀ ! i`@B 0`@> i`@6 !!i`@. @'*Ⱥ ,#a4 ,#_b@#c(.#qc@ D@@![T p!@e쬐 ؀@8D *D!#!"`@!$!0#a0 $a0!$#!"M"@!$!,#a, $a,!$" 㿘'DD#a0:"a0[ !"`@J`0 1*`1 0*`[ @!a,:"a,[ `M"@J`0 1*`1 0*`[ `@ 㿀'L'H'DH, #qcD@#qc#qcD@?!"L/`<   , !"L/`<   ,!"L/`<   ! , !"L/`<   ! ,`D@/`<  ~  !"L/, <#ya.O/`<   , !"L-< #ya.-?`/`<   ,#ya,L` '.#ya{L/`< H&!, O&, B&!L!܀H& , O&, B&!"L/`<   ! , !"L/`<   ! ,H, 'q$@H, #qc@#qc %@#qc@%@H, #qc$%yL 'L!"` @' !$#![$  M" @'ߒ !$"![$ `'@&!@Ր Ly!a0@!$# y!a,@!$"pL 㿘!h#0!`"L %h0'` $L !h#0!`"L/`< [`@/`< [`@+`b %b/`< \!h#0L@%b> r< l_@%b!h#0LL/`< =  / <  = %b<</ < \ > %b  = %b  %b >/ <  =  %b ! / <  = %b a !h#0!`"L \W #`b $b.< h@'' !h#0, !`$"+a5s4L@/.`<`!ZL#@:.`<  \< &4'`⬺`$⬣.`<`-h0,⬸ $4&4aL/, <`0,O\+hc0-/s4)`" % %L/ϣ, <``,Oπ \.`<  ;.`<  ,.`<  =.`<  :.`<  @.`<  ( &4 '#`b`$b.`<`!h#0~,.`<  ) $ '#`b`$b.`<`!h#0,4 &4b@y  g@q!!!s 4L/, : Zc@:=O !9O : #`b`$b !h#0,'`⬶$O+hc0,#s`4 $`4: ⬸ $⬢ c0,!!!s 4L/, : Zc@O !#`b`$b !h#0, !!!s 4L[`f@5!!+s`4L@/,<  ,<  #s`4 $`4,<   @ې  ,<  !%`4  !h#0!`", h'D  '!RT" !!"\  OG a z$ /GOG!y,!%M`$  $`@N  '``$``.: [a@bK/ <  F!RT" !!"\  / <  a z$ / <#ya/@`%M`$  $`@  '`$`?, : [a@/ <  #ya/@/ : !M"@( #[aL /`#[aya@@`/`L 㿘'L'H'D@DL@ ADL@ 7DL@ -DL@ #DL@ DL@  H"  * ǒ`0@ Hp㿘'P'L'H'DPD@J LJ @P@ P" `D@J LJ @  1 "`P" `D@J LJ @ `1 "`P" `D@J LJ @  1 "` P" `D@J LJ @ `1 "` PD@J LJ @ P@ H"  * ǒcL@tH0㿐'D  DJ@10?.``㿘'H'DDJZJ#@J'H@ 㿐'D@)y!M "    Ȑ` <'``6@yh !!'s4L[`|@C4 $4@cR !s 4@y!  D  !s$ 4 t ' z#s`4 $`4b`V SM /!!'s4L[`|@#4 $4@ !s 4@y!I  D  !s$ 4 %y 5D  #s`4$ $`4 L #s`4 $`4 !yL! #s`4 $`4@C5 ?a!='!h#(+hc(-%, $ '`@!='!=' '!h#(@C!=!=, @,#cL` 1#L`!=耤`'!='!= 菐 .!=!=- -$-$- $- $#bL%, 4 '-`#&a@%'-#ga$#&a@%'#k`|$  ![$ x !# ![$ x@ ![$ x !# ![$ x!=#}' '!h#(Q!=!=-`@9#cL` 10L`!=@'-`#&a@ #&a@!=, , $, $, $, $#bL%, 4 ' %#} '!h#(+}, ,$,$, $, $#bL!=, 4'!=, #cL !='` ` <!= 糐 !=. #&a@-< < 3}- #ga%#&a@< < #k`|%- - $- $- $- $#bL4#bN4 '#} '!h#(!=, ,$,$, $, $#bL4 !$#!$# ?b#}'!=' '!h#(J!=,#c`L` 12L` .!>!=-$`L 0 1!>j ,1 0!>j,!>j+}L!=, #c, '#} '!h#(!>!=,$ !h !>j@#,!>'( ( $( $( $( $#bLT!='!='!>, , $, $, $, $#bL( T!=@'!='!=,#cL!>i/!{#,T!='L 1#} 'L  #} t'!=,#cL #!b`,L!>iO@ !=6'L  1 !=*'!=, #cL   !>iO 0 !='!=   ![T  !='!=!=!>-- $'iO-`#c, O!>j, '#} '!>, , $, $, $, $#bL!=, T!=@K'!>!=, $!h !>, #ga#}' '!=!>!>j@"!#~ ', , $, $, $, $#bLT!>'( ( $( $( $( $#bLT!='!='!>, , $, $, $, $#bL( T!=@E'!=,#cL 1#} 'L!='`!{#,T #} '!=.#cN !>i/!= ).`<`N @![T !=!>--`$%iO!>j,`'O-#c,   8!>iO1 0!>h /0 1!>h/!>h/%hO!=!>--`$O!>j,`'O-#c,  @/kxL*.`<`N @!>+},$#!b`L!>j,'L, .`< !>--`$xL!>j,`'xL, L  "!>iO 1!=!>+},$ 0!>j,' 0-#c, &   !>iO 0!=!>+},$ 1!>j,' 1-#c, #} '!>, , $, $, $, $#bL!=, T!=@'!>!=,$!h !>, #k`|!>j@ #~ ', , $, $, $, $#bLTu x![4 ԡ( <  '[Tԡ,#oc 4ԡ, <  ![T Ԁ ⯐ *@А !!'s4L@ ( $4@࿐ @;!y!@"@i∐ y!@!D  !!y#$!x 'yL +yc$ %c$- $- $#Rb$@!h#c$#`,[ (![T !y#$, #ea$@t !!!s 4L@,`<  ",`<  '2#s`4 $`4$`4!!L.< / < M .<#ya/@`#s`4$`4!!L.<`/ < @#ya/@@#[T`ԡ.`<  4`y!b @'.`< #oc$'쀢' )@$ !!'s4L@ ) $4@ !i P!i pߛ!$!"ya!y#$, #ea@ 㿐@֐ !!'s4L@ ( $4@Ő @Ay!@# ', #ea` ܐ */`#ocӐ */`#oc@g/`$ɐ *@ߘ !!'s4L@ ) $4@߇ !i P!i p !$!"<@,@ 㽠@ud !!'s4L@ ( $4@dS @%y@ ', #ea' i *, #oc'H_ * @ ', #ea' M *, #oc'HC *? *@ !!'s4L@ "$4'#s`4$`4!!L "('/ߡ,<   N,@ '  ,<`N,'#s`4$`4!!L "'N-@`'-@`'!i P!i pd'$%d, #ea@n@h@@ު 'NL/ߣ, <` `'O߀ \NL/ߡ,< #a  , ',<`!y,!+a/yN 'M/#, <`,O#  '@#ya,b@: ''NL/ߡ-`<  n-`<  N[$ ' MH`$ `$`@@ `'`' $` '/ߡ, <  )耤?  !e$!@H$ `$@ِ '`' $` '/ߡ, <  $ '@!e$! _'/O߀sSG$ ' 9H`$ `$`@@ `'`' $` '/߀  !e$!@:,<    !e$!@-$ '@!e$! ' "@]"@WȐ ,O߀  ' [H`$  $`@E@ `'`' $` '/ߡ, < =耤?  !e$!@Ouc@ HO߀ H@EH`$ $`@ @ `' `' $` '/ߡ, < %:@u NL/ߡ,< #a  , ',<`!y,!+a/yN 'M/#, <`,O#  '@#ya,b@ѐ '''NL/ߡ,<  d,<  D'H`$  $`@@ `'`' $` '/ߡ, < G耤?  !e$!@2O#a   #ya, '  -#ya, 'H`$ $`@X@ `' `' $` '/ߡ, < O@rH '%y,   !e$!@b,@?!$"l/O߀ b Bg' '!y!( '䀤 @H`$  $`@ @ `'`' $` '耤  !e$!@/ߑ,: uc@ O߀  $ '#ya, '䀤  '%y, ' B, ',$ 'M"@֔  !$"![$ ` 'NL/ߡ,`<  o,`<  Oi' '!y!( '䀤 @H`$  $`@@ `'`' $` '耤  !e$!@3/ߑ,: uc@ O߀  $ '#ya, '䀤  '%y, ' O, ',$ , 'M"@a  !$"![$ ` 'NL/ߡ,`<  h,`<  Hh' '!y!( '䀤 @H`$  $`@#@ `'`' $` '耤  !e$!@/ߑ,: uc@ +O߀  $ '#ya, '䀤  '%y, ' H, ',$ , 'M"@  !$"![$ ` '쀤 "ȠML@"ؠM@L) ,4H`$  $`@@ `'`' $` '/ހ  !e$!@L,<`O߀@  !e$!@>#!i T 쀤 "ML@q"M@iL#@e֐ ,Т NL/ߡ, < `'  㿐@ ڋ 's4`$4!!L/- <  (`- <  ) @`$4  $`- <  ; P'D#hc( $c(!#}' %@D $ "#_bd!h#( @, '䀢$bd @'!_"d!h#(, $ #hc(, %̤@'c(, $ @ '!h#(, #̢aЀ$ %h(, #̢a, @А '(, #c$ '[TրQ 4֡,`< , , '@'!{$# @'!$#  @'!y$!8 @'!{$" @'!`$#\ ![T @!s$ ( ![T @!k$ x ![T @{!s$ 8 ]!h#($@W4֡, < , , '!{#@\'Ѐ$# !# @S'̀$#  !y!8@J'Ȁ$!8 !{"@A'Ā$" !`#\@8'$#\ #s`(![T @-$`( #k`x![T @"$`x #s`8![T @$`8 `D'h(, +̪a@iD!_"d(, @b!!"\ ((, L.<  .<  a  z $ !h#(, #̢a,!h#(, #̢aL.<  '[LR+hc(, %, LRc(, ,  ?c(, , c(, , c(, ,  ?c(, , c(, , c(, , c(, , c(, , !{#c(, 4c(, #&a$c(, #&a$?!s $c(, 4!# c(, 4!y!8c(, 4!i c(, 4!{"c(, 4!s 8c(, X!s (c(, !`#\c(, 4 X!k xc(,!i P  #(c(, #̢a@O `'D''D'', , #c'![ L$'̀  ![4 ![$ L, , #c'#c''+c-%M/ˣ, <`- , , O/$ ' @' ', , #c@G, , #c', #` 4#c''+c-%M/ˣ, <`- , , O/$ ' @' ', , #c@'!L!o$ A'![ ܀ ,`#vaܡ, #va' $![T    ^#{b@̡<  /ӑ, : b@̡<  /ӑ, : b@̡<  /ӑ, : b@w̠ /ӑ, : b@o '!h#(@U!{#, T/ѡ,`<  ,`<  ئ '7, #cL  L`,,`![  /ӑ,: !{"@:< /ӑ, : #{b@/ؠ /ӑ, : b@', #cL !{"@ '!h#(@/ӑ( : #{b@![ Ob@ !{"@G![T    ?ܡ, #va 7!{"c8@ '!h#(@$!{#, T/ѡ,`<  ,`<   , #cL !{"@ '!h#(@!{"cD@ܡ, #va  !R" !Z#!D!#TcH@ '!h#(@/!{#, T/![T  ,`<  ,`<   ',#cL '!#T@s!h#(@!#TcT@d ^#cT@`̡<  /ӑ, : cT@W̡<  /ӑ, : cT@N̡<  /ӑ, : cT@E̠ /ӑ, : cT@= '!h#(@l!{#, T/![T  ,`<  ,`<  Ԡ ', #cL  L`?,`![T   Oр  0!h#(![ $  /ӑ, : !#T@ԡ<  /ӑ, : #cT@Ԡ /ӑ, : cT@, #cL !#T@ '!h#(@/ӑ( : 'T@!h#(![ $ OT@ !#T@D@_'!{#@'7{9#;c)#.`.``..$@'%`$@'$@'`''@!{$#!o$" 8! -|?1{#%y(/`$$/@#i`$`a!Z#@R'!$"%@I '!s$ 0@@ '!y$# "@5'!s$ $ "@*'!i$ @! '!̀$!@ '!̀$!@ '!_$"d@+'!$!ِ@''!h$#0А@!'!h$#,ǐ@#'!v$!پ@#'!$#Pٵ#̢a`, `,  !u#, , !v!$ $ $ $ $   #xb%R/@/@`` ! %ԡ/`$`a +bL-k| d)g!/`$$/` /`$/`$/` $/` $4`` b,+kc-a/a1#03ab/`/`@4@ @ ` ` @ ` `/`@,/` /`$/`$/` $/` $#!b84``b  +ha 1/h1h )h /`/`$$$$,#ha$ 0#ha ,#ha$`` +`b 1/`1`")`"/`/`$$$,#`b$``@& '!y$#,]!#yc(@U`!,#}@ '$`]!#yc(@E`!,#~@ '$` ِ]!!y#4@5!,##~@'!{$# Ɛ#~@'!{$#ػ@ߐ '!{$#ز#~@'!}$"ا@ː '!{$"؞!#~%~ 0+{c 1`,`,`@  %{ 0 ,`` !i $ #c~$ $ !"P 'P%/`$`@ 㿀'H'D#~@z'D, #h`̀$`H#~@i'D, #a$`#~@\'D, #i`t$``#X@=B HF!#~@ XD, #a, XD, #h`,!h#(D !{#,T'   ZD, #a, ZD, #h`, 0D, #i`t, !#~ H'H'DD, #̢a@)H, @$Ъ@L/L/-<  -<  . L O -<  -<  . L O -<  [&-<  .L OL [!# D, TH, T -<  [&-<  .L OL [!# D, TH, T !!"\ -: O -<`-< @]`p'D!s$ 4D`$  $`@~&D D '``$``@(#` !!, D`$  $`@~D D '`$`@!!,#c $c#i`p $`p 㿘'DOG* [* / [*  㿐'H'DDJ.:`H*.:  `DJ/ :H*/ :  㿐'H'DDL.<`H,.?`/`<   /`<  * //`: DL.<H,.?`/`<  㿐'H'DDJHJ@DJ`` JHJ@㿐'H'DDM` !!"\ M@HL@DL`@ LHL KM@HGLDL`@ 6LH2Lx'H'DHJ `HJ@ DJ.:`H*.:` ``DJ.:`H*.:` `` 㿘'H'DHJ `HJ@ OGH*`H*@ ps" 4[[" [b( !* "b(`""J .`:`!*.`?`/`:` [J @,/`:  "/`:`ZJ#@ [ " "J .:`!*.?`/`:` [J @' !* c "ci`p "`p/`:`[J @ [""( [""( p'!h#,!`#TL/ <`,/ >.< #a   @''ᙪ-h,)`#T  % L/`<-@/`>.<    @'$  '. *c|@{㿐'H'DOG HJ HJ`OG  J 㿘!!'s4L/`: [`i4 $4/`<    㿐!!!s 4L/ <  ,`/ : [`i#s`4 $`4/ <   `![$ X ![$ X 㿈'+s`4L!ZL#@)y!- `4L - - `4 %`4 / <  "@ #s`4 $`4#ya, !#s`4 $`4!!!s 4L.<#ya/@.? / : `[`/ <  '`#ya/@ 㿈![$ X!!!s 4L@,`<   ,`<  ,,`<  !*/`<  # , ![$ X![$ X#s`4 $`4!!L@,`<  ,`<  ,,`<  !#s`4 $`4!!!s 4L.<#ya/.?`/`:  [`/`<  ' #ya/  㿀!!!s 4L@,`<  -,`<  + #s`4$`4!!L#ya/@`#s`4 $`4!!!s 4L.<#ya/@.? / : `[`O/ <  '`#ya/@ P!!!s 4L@,`<  -,`<  + / <`,`#s`4 $`4!!!s 4L. <`,. ? / < #a  `@%-)s 4  % L.`<`-@.`? / <   `@/ <  .2#s`4 $`4!!L.<`,.? / < #a  `@%-)s 4  % L.<`-@.? / <   `@'``Ґ *c@y'""㾨'D'ؠ 'Ԁ!i 4 !h#,@3', #{cL &͞ ;', #{cL /, <`!h#,,O 'h,){# ', L /, <,O )h#,@1'#c!i 4  D 2!h#,@ '#c!i /`4`$!i /`4 #,@C#'# b!i 4 ?!v!4 D  !h#,L` [''L@/,`<  ]3,`<  :.,`<  .),`<  $O!h#0,' '!h#,L/,`<  ],`<  : ,`<  .,`<   ]'h0,'0,`' ![4 nu4 n!" M"!$!,)!,!v!/`4!,, #i`̸ ?O : .jO : ' '' [!h#0, '!h#,L/,`<  ],`<  O!h#0,' '!h#,L/,`<  ],`<   ]'h0,'0,`' ![4 n4 n!" M"!$!,)!,!#P/`4!,, #i`K ? !v!/`T@!#P4!h#,@B'`# b!i /`4?!#P4?!v!4 `!i /`4 !h#, D F !!!s 4L[`Ԁ!h#,L 'Ԭ ]a@u?+i`/`4``/`4#hc,ْD c,L !h#,L [` ''ء, #̢a@,`%̤L   'ؠ`' , @n, #̢a@g؀j '' , , #kc@R&!!@!i P#@w)#@w% l  ' , , #kc@., , $, $, $, $#!b8, T -i/!8, , $, $, $, $-`U/`4`'`,`U !i /` 4+i`/`4``/`4#hc, D ?c,L ,'!h#,L  %h, 'L %h,L?[`  $ ',L !h#,L?[`"ڐ #`cT $cT!h#,L[`i%[i'h,)`#T  % L ![4 n'!h#,!`#TL/,`<  .>,`<  ,9,`<  :4,`<  ]/,`<  >*O!h#0,'#`cT $cT!h#,L/,`<  .,`<  ,,`<  : ,`<  ],`<  >!h#0 ,!!,'![4 n @!i /`4` '؀g!h#,!`#TL[`i5%[i'h,)`#T  % L%+hc,'`TL[`"9'c,TL[` c,TL@ . $Tc,L . #`cT $cT!h#,L[`i%[i'h,)`#T  % Lߒ ![4 n'!h#,!`#TL/,`<  .>,`<  ,9,`<  :4,`<  ]/,`<  >*O!h#0,'#`cT $cT!h#,L/,`<  .,`<  ,,`<  : ,`<  ],`<  >!h#0H,!!,'![4 n䀥&%'ܠ'@$`'ܲ`'i  '@@/`4`ܴ$ 'ܶ$%'ܠ%'@$`'ܲ`'i $ '@/`4`ܴ$ 'ܶ_ ![4 n'!h#,!`#TL/,`<  .>,`<  ,9,`<  :4,`<  ]/,`<  >*O!h#0,'#`cT $cT!h#,L/,`<  .,`<  ,,`<  : ,`<  ],`<  >!h#0Ҧ,!!,'![4 n @6!i /`4`؀D '!h#, D Ԁ!i /`4 㿈'H'D !h#(@D/`#̢a@!# @,TH@`!h#(@ D/`@/`#kc@j@`!!@#@tEDȌ D/`@/`#kc@Q/` /`$/`$/` $/` $#!b8( T )!"8 /` /`$/`$/` $/` $/ T ' H@U H ' H$  'H/` /`$/`$/` $/` $#!b8/ T㿈'H'DDM` !!"\ pM@HL@DL`@ LHLDL'[%HL`DL[`" %["`DLӒDL / < @ *HL#DL`HL[`" %["`HLHL / < @ |M@HLDL`@ LHLDL'[u)HL`DL[`"i %["`DL_DdL / : _ .HLG'DL`HL[`"; %["`HL1H6L / : 1 㿘'DDL `DL @`DL?[` '`DL?[`"'`㿐'D !R"!h# #c|L@D/ #yc(_ ' #c|O!h#@#c|O@ D/`#yc(D @`#c|O@ 㿐'D!h#H!M!/`/`/`#cX;D/`/`/`#c\ '{)#y/`/`/`L,  !'` , , , #cX!h#@8'DDL/, <`,O.: [`1".<   @`%DL. <,. >.: [`.<   !h#(á/ #̢a !h#('`DL[`"%[" 'DLؒDL `,`,DL.`<`,.`< #a    @%DL.<`-.<    `@,c@q !h#(@!# @,T쀤@á,#̢as@`!h#(@㿘'D !!@D/`@/`#kcL@`!!@㿘'D !!$@-!!"\ D/`@/`#s`<@ߒ@D/`@/`#s`<@`!!$@㿘'D !`#X@D/`$/`$#}b@`!`#X@㿀'DDJ - +`DJ/ :`/ :  0 9DJ/ :` 㿐'L'H'D L  0H*`L@ LD@ 1H*@/ `@` L@㿐'D!y#$ @!h#!$`#`OD/ $/ $#Rb$ ' #`O!h#@`#`O@ D/`$/`$#Rb$ݒ @`#`O@ 㿐'D!h#5!!p/`/`#b|*D/`/`#b /`/`#b!g$!!'`  , , #b|!h#@㿐 !!!s 4L.<`!y!(.? / : [`$/ <  `#s`4 $`4!!L.< #ya/@.? / : [`/ <  #ya/@ÿ  㿈!"!!L/`: [`i/`<  #a $a!"L/`: [`iy/`<  /`<  ) #a $a+b'L@!ZL#$bL-h,, ᔠ`$bL,, ,,- : [`>'[+b-)h#,/`<` ,  %`L/`: %!h#,, 㿀'L'H'DL  0D, L!y!H  #ya O ' #yaL`' !L!$@#yaO ' .<``H `O  `B  &' #yaO.<  '.<`D,` ΐ H@ ' #yaO.<  '' #yaO.<  '  ¯  0D@,  0D,  0D, 0D,  1D, 1D,  1D,  1D, 1D,  1D, 1D,  1D,  1D,  1D, 1D,  1D,  1D, \  1D, 1D, N  1D,  1D, ?  1D, 1D,  1D, - m 1D,  1D,  ^ 1D, 1D,  1D,   L 1D,  1D,  1D,  9 1D, 1D,  1D,  1D,  #.<D@,D, D, D, .: " 0 , ! ``H@ ' #yaO.<  '!yL! ~HDL 0 1, 1 0,  H $Tddddddd<x 㿀'!s ,F/`/`#`b',#cL` 1L` 1-'#`bL/!h #`b @O怤`0 1/怤`1 0//`/`#`b!h @`!s ,@ x' t !!Ȁj/`/`$#h`,#cL` UL` 1Q'#ha!h !#E#ha L 0 1, 1/ 0, 0/O.#c`, O`, /`/`$+ha@5O/`/`$#haM '#ha$'#h`#ha$$`!!Ȁ@  㿈'L'H'D!{# O$ D/`/`#c@  $ D/`/`#cD@- - #c @!{#@+c-/|1#)#x/ / $$#c$' #{c $cLL `H /`/`#c$?#cB$!!иH( +!!С, #`  !{#< 烑< H/ +aС, #`$LLa#`, aР %aH/ !{#&'@/`/`#c$#c$D/`/`#c$!{#! !o$"!!!h#( #bP !{# 2 !o$"!$!!o" !{#< -< !o$" 㿘'D @**@`"@D@`?㿘'D @**"@h @D@`?㿘'DDJ `DJ@ @㿈'H'D!_"dD, L.<`H,.: [`"H@M@  `!_"dD, L/ < -@/ : [` [H,`H,c!# D, T@jHؐ ] H 㿀'D!s$ 4!!, '$D, @ !i$ p$ ![$  ![ ؀[%yL #s`4 $`4-L` #,`!s$ 4 A    4c#c@j@`'䇠!i T""!#8BB'd$`  \ ސ Y '֐ ? 8  !h#(@1!{#@-`T '  /`#c, /`#&a$#&a$ -`#c, !#$ -`#&a$#&a$`!h#(@f%!#cؐ@j @` !i p@j![ ؀[ 㿐'DDJ/`:  /`:     DJ@/`:   p'H'DD`$  $`@iD D '``$``@'"` H, D`$  $`@iD D '`$`@H, 㿈'L'H'D![", #a7y!<c@iT'쀤$aL ^L  L]a@   !!uL ` ![$",!!eLL]a@  ![$",LL `LL LL.<  .<  LL#ya/` LL.<  y!/]a@  ![$",LL `LL LL.<  .<  LL#ya/` LL.<  y!/c@hDLL `LL LL.<  .<  LL#ya/` LL.<  y!/H h%M`$  $`@hl  '`$``; s %M`$  $`@hN  '`$``;%M`$  $`@h5  '` $` P%]`@V!!"4`V`N`$F`,>o"O9@OO ]"41@!]"<A, )3 &%![ ![$ !s$ 4 !o$#8!h#( @gۑ, '!!,  !!-s4L ;x !!'s4L@ = $4 +a's4L@ "-$4@`$4aL/ס, < "O׀ ;Đ >Oנ,`#s`4$`4!!L/ס, < ",!y!#hc,髐%馐c,飒!y!#]bL@(@閒?`@鋒4`@递O)`@uA`(@j3`4@_%#@gU >H!o$#8%4#cT!#T@gcT @g cT ,@g  !h#(@'h(%/`, `@/ѡ( < /С, < /ϡ, < /Π !/!#T`8@fO !$!!h#(@!{#@,T'쀤` !#T`P@fΔA=` !#T`\@fÔ32`![ 4  !#T`h@fA!#T`t@f%`![ 4  !#T`@f39 @f@!s (,/`-̬ :'!#T`͡/`@f}!{"/`4/`#c 諐O͠ /͡, <  ~ !/O΀` !/Π`/O΀ ~  !/Oπ` !/Ϡ`/`/`肒,!# /`T''͡/`#cs 'ᜠ $!{"/`4ᜥ, , $, $, $, $#!b84 '`/`#̢a R!# /`T`$`8!{#@-`@T T?@9'!{"4ᜥ, , $, $, $, $#!b8, 4 ' !s (,͡-`#c !# /`T'` , #̢a#̢a+a, , $, $, $, $-!8, 4 'a, , $, $, $, $,4'a, , $, $, $, $,4@$@ '$ '!#T`͘@e#\O͠ /͡, <  ~ !/O΀` !/Π`/O΀ ~  !/Oπ` !/Ϡ`/!h#(@#cT! @eUcT@eR  !h#(@+hc( X X% X/``, `, `, ``@!! @e0, ' !!@ 'أ/`$`@@7'!h !#Ta@e7!h `!#Ta@d@ !!@ 'أ/`$`@ !h#(@ 'h(ܣ/`$`@' !h#(@?!{#/`T  ![ 4 +/`#cL L @!h /`#cL , , %`!{"/`T ' أ, $?%` '`!h#(@, $ '!!@, y!#Ta@d, , $, $, $, $-!8T'( T' ', #cL /ס-`<  0V,T''`%, #cL 0, , $, $, $, $#!b8,T''耤` $ ' 0!#T@d.,`#cL 1O!#T@d, #cL !#T@d-`: 3 XS, , $, $, $, $,T''`&, #cL X, , $, $, $, $#!b8,T''O%T@c耤`$  ',`#cL T@cdO׀ ZU, , $, $, $, $#!b8,T''`&, #cL Z, , $, $, $, $#!b8,T''O%T@cu耤`$  ',`#cL T@ce , #cL !#T@cY, , $, $, $, $#!b8,T''`$+!b8-T)#, L @c5, , $, $, $, $,T''!#Ta/`#c@c  '!!@|ܣ(   '쀤``,`#cL !#T@b#Ta$, @b `ܣ/` '!h !#Ta(@b@'@K@'H'L'P!h#( @b, /( < /, < / /![ ![$ !o$#8!s$ 4!!, ؐ -)s 4L ;J%y#]b@S@ 'L`@J 'H !!'s4L@ = $4 +a's4L@ ")$4`$4aL.<  ".<  ; >.<`/,`#s`4$`4!!L.<  "/,!y!#hc,k/fc,c%y#]b@@ O/ 8 'P`@ڐ -/5O//!0@a= >^!o$#8% 4@, 'T!i 1P L !#Ta<@a![L \`B !#TaD@a`O !#TaP@a `H!#Ta\@a!L!x 5!i 0'T+ah@a@!_"`!!̢@'̽?!i $ $ !!"4T`@a@* T`!#@ ;X@aX T`$!#H ;X@aX T`,!#P ;X@awXL !#Tax!iL (@ai !#Tax!iL (@a]!iL ( 0dL  !#Tax@aL !#Tax@aB!!'̽?!i $ $ !!"4` !#Ta@a+3`!#Ta!#@ ˜;X@aX"`!#Ta!#H ˜;X@a X`!#Tb!#P ˜;X@`XbL  !#Tbx@` !#Tb$x@`!_"`'̽?!i $ $ !!"4` !#Tb0@`ɔ3`!#Tb'TT@\) @='!h#( @\, 'ؐ!h#( @[, 'ΐ!! @[, 'Đ#cT!"@[cT@[ cT@[ 8cT@[ޒ \cT@[ے xcT@[ؒ cT@[Ւ cT@[Ғ   c !h#(@!{#@,T@,#̢aL  L ' L/Α, : [` ߼' L/O[`"߱8{O΀ OL ./`#̢a,?/`#̢aL ' F !#T`#[b0@[jL !#T`/`#̢a@[_F{L O L .$` [,-@-!# /`T@[hA@ ]r@@ ' F !#T#[b0@['L !#T` @[/`#̢aR`!h#(@NC!#T`$@[ !h#( 'h(/`$`@ !!@/`@/`#kc"L  L ' L/Α, : [`"zL O L .$`,/`@/`+kc@, ,$,$, $, $#!b8.T!{#-T '!#T`@,,-#̢a@Z/`@/`#kcY/ #̢aS / $/` /`$/`$/` $/` $#!b8.T 7/ $@#̢a5 '@܀ `D !#T`P@ZU !#T`X/ #̢a@ZJ/` /`$/`$/` $/` $#!b8.T ܀ !#T`\@Z.?/` /`$/`$/` $/` $#!b84`!!@( !h#(@(@,$@ u#c@,  !{#,T  !#T``#̢a@@Y`!h#(@![ ![$ !s$ 4!!&,  +a's4L@;/ϡ-<  "2$4@ $4aL/Ρ, < -< '+s`4-yO/ `%`L/Ρ, < Oπ#ya/#s`4 $`4R!y!#`p@Y@'А`@Y~@Yv !#T`@Y`$ $`@Ys@ `'t`'p $`p  /`< !#T@Ym`$ $`@YU@ `'d`'` $``  !#T@YP@YE@f'!#T`@YBԀ !h#(@(!{#@,T'ܡ,#cL  L`,`.$   .$`!h#(@.$'h%[4$'$4!'X'\X '\X?P!i P$ $  =!!"4 !#T`@X@0!#T`!#@P ;X@XX !#T`!#HP ;X@XX !#T`!#PP ;X@XX !!@ '/`$`@. .`,   , $?%`.  !!,'', ,$,$, $, $#!b8( T G. .$.$. $. $#!b8/`T, #cL %,xxL Z u, '%xlL X u,!!L u '`. .$.$. $. $#!b8/`T -,!{#-` -`$-`$-` $-` $#!b8T, T!#T`-`@-`#kc@WT !#Ta -`@-`#kc@W=%؀  !#Ta@W!#Ta$@W!#Ta,..#kc!!@W !#Ta8-`@-`#kc@W!!"(  mb''!{#,T,#cL /Α, : w Z u/Π 'wO΀ X u/Φ@!#TaH/ #̢a@WnO4O΀u !#TaX/ #̢a@WX؀  !#Tah/ #̢a@WF !#Tap/ #̢a@W:Oζ. @N'@W;@W9@W78'@K]"O!h#(@W '!h#(@W ڐ!h#(@V 'ѐ!h#(@V 'Ȑ![ ![$ !o$#8!s$ 4!!, ' )!'s4L ;"ۈ%y#]b@⑒@ '` @∐ '!@V >!o$#8$4!, #cT!!T@VcT i@VcT 4o@VcT@V D !h#(@!s (@,!{#,T ɺ,#̢aعO O &O.: [`"ډ4!#Taء/`#̢a@Vb!#Ta@VZ!#Ta@VR!#Ta@VJ!{#/`T , ! "|`,  [,?!# /`T'!#Tb@V)`/`#̢a#̢a%2!# /`T`$`!{#@,@T T?@ !s (,!# T , #̢a#̢a!#Tb @U!#Tb@U !#Tb$@U!#Tb0@U!{#/`T? , ! "!h#(@)%s(,`(,`!#Tb<@Uo"]"ب![ ''耤  ѐ!#$,  $ '  ' '!#T%D!#!s 0@:@@Us !h#(@a!{#@,T R,#̢aזO O &O.: [`"f !#Tb`/`#̢a@U? [,?, !#Tbl!# /`T@U/]"d @. #cL  . #&a`!#T'x!s 0@Ґ@@U !#Tb@U6. #&a`!#T'!s 0@@/`#&a!y#@@@Tߚ!#T'#&a!s 0@@T͒6. #&a`!#T'!s 0@z@/`#&a!y#@p@@T!#T'#&a!s 0@\@Tn6. #&a`!#T'!s 0@C@/`#&a!y#@9@@Tq!#T'0#&a!s 0@%@T_74. #&a`!#T'H!s 0@ @/`#&a!y#@@@T:!#T'h#&a!s 0@@T(/`#&a!["8'!#@'ء/`#&a#&a ]"?/`#&a'ء/`#&a`!#T'!s 0@@!y#@@@@S#\!#T%!s 0@@@SД/`#&a`!#T'!s 0@@@S!#Tc@S.: [`" !#Tc/`#̢a@S !#Tc!# /`T@S!y!8/`T.#cL   '쀤 ' '.#&a, !["8'!#@'ء.#&a#&a ]"Օ.#&a'ء.#&a, `!#T'!s 0@@!y#@@@@S5#\!#T%$!s 0@@@S#!{#/`T , ! "`!h#(@!#T`@@S耤  b!#T`H@R  ''!h#(@y!{#@,T 'j ',#̢aO O &O !#T`\@R`` ' '!#T``@R.: [`"/`#̢a'`'!#T`h@R,?!#T`l@R`!s (L  %s(`L 䀤  !#T`p@R '!h#(@!#T`|@Rr!$! !h#(@+hc( % ?/``, `, ``@@t'Ԍԉ!#'![  ˒耤S![  !h @k赒 !h @!#T`@R̠ ' !h#(@!{#@,T@`' ,%L `X!y!8T.L / I,<  1,<  0 -",![L \H#~# H!h#(@/!#Ta0@MO#~# O!h#(@!#Ta8@M !#Ta@!>#@M@Ǩ ?a'M`$ !>' $`@Mc!>'™ !> '`%' $` !>'!>`;._ ''M`$ !>' $`@M7!>'™ !='`%' $` !>'!>`;'M`$ !=' $`@M!='™ !='`%' $` !='!=!=@2/@!=' !='!#~ '~)=/`$`@ !h#(@!s (L` X![L \,``!h#(@ !h#(@/`#̢a!=L  % L ' 'L%/#}/, : [` к' O/L/!=O[`"Ъ !=/`$Ӻ`!=/`$!=O ' !=, , ' !=,' `/`#̢a#̢ah,!i '!=l}L O !=L .!s (@L? H!#TaH!=!# ,`T?@L6/`#̢a#̢a1b !=/`$!i J!=l@L O !=L .;$!s (L H!#TaX@L!s (@L H!#Ta`!=!# ,`@KT!s (@L H!#Tah!=!# ,`@KT`/`#̢a#̢a!i !s (L? H!#Tap@K!h#(@!=/`$!i !#Tat@K '!h#(@  ''!i !#Ta|@K/`#̢a!=ͷL  % L ' 'L%/#}/, : [` z' O/L/!=O[`"j!i  !#Ta/`#̢a@K>!=/`$~`!s (@L H)!i "!=O` !=,!=, !=,!#Ta!=!# /`@K TP`!=,$!=O` !=,!=, !=,!i  !#Ta!=@J!# /`T`/`#̢a#̢a+̪a-̬/ 1= /`$/`T`/`!h#(@!!=/`$ '!i !#Ta@J!Z# !=@֪ !=!Z#@ !#Ta!"@J!!"4  !#Ta!h @JrL !#Ta!h < . **@JZ$4 !#Ta!h <d. ***@J@$ !#Ta!h <. * *$*$@J&$!= !#L !#T@J#Ta@J  !h#(@k!=@. @I#cL !>/  !=/`+}-)#/`L ,`/`!>,'`!s (L`H H@M `O O@D!#Ta!>@I#cL !=' !='!#T@I#Ta@I!h#(@ !#T@I@ø!='!=!#Ta@I ?؂ap'M`$ !'>' $`@Ic!'> '™ !'>'`%'' $` !'> '!'> `;._ ''M`$ !'>' $`@I7!'='™ !'='`%'' $` !'='!'=`;'M`$ !'=' $`@I!'='™ !'='`%'' $` !'='!'=!'>b@2/@!'>d' !h#(@!{#@,T w!i !#Ta@H/`#̢a!'>L  %'L &''L%'b/, : [` &L/!'>bO[`"!i  !#Ta/`#̢a@H@% (!'>,!'>,@!i !#Ta@H@!i  !#Ta!# /`T@Hx@`!h#(@~ !h#( !!@/`@/`#kc!'>ʗL  %'L &!'>L!'>b/,`: hj O !'>L .Y`!'>bO[`"K!{#@-` -`$-`$-` $-` $#!b8U, T 8` (!'>,!'>-@!# / U, T!'>l' !i  !#Ta@@G@ !'>p'/` /`$/`$/` $/` $#!b8/ T p!# /` /`$/`$/` $/` $#!b8/ T, T!'>h'!'>l`$`#'~p 2'!'>p !!i  :!#T@G!i  !#Tb!'>l!'>h@G !'>p '!i !#Tb @G!'>h!'>l' /` /`$/`$/` $/` $#!b8/ T !'>p !i  !#Tb!'>l@Ga!i !#Tb@GV#!Z# !i  !#Tb!'>@GA/` /`$/`$/` $/` $#!b84/` /`$/`$/` $/` $#!b8( T!'=' !'=܀`#'!i  X!#T@G/` /`$/`$/` $/` $#!b8/ T!'=' !'=Ԁ`'!i /` /`$/`$/` $/` $#!b8T  !#T@F`!!@t !h#(@S X/`#c, !'>t$ !!=. .$.$. $. $#!b8( T %@-` -`$-`$-` $-` $#!b8,U !'>t,$!! / U !!`!h#(@!'>d] !h#(@#!{#@,T ,#cL  L` ,`!=/ $ `!h#(@!=/ $ @i!'>d!'!!"4  !#Tb(!h @F;L !#Tb4!h < . **@F#$4 !#Tb@!h <d. ***@F $ !#TbP!h <. * *$*$@E$ !!@')t!=/ `, @`  !d'!'>d ?ax'D'M`$ !>' $`@D!> '™ !>'`%' $` !> '!> `;. ''M`$ !>' $`@D!='™ !='`%' $` !='!=`;'M`$ !=' $`@D!='™ !='`%' $` !='!=!=/ !h#(@!=/`$!s (L` X![L \,``!h#(@@ '!h#(@!{#@,T ,#̢a!=ƞL  % L ' 'L%/#}/, : [` a' O/L/!=O[`"Q !=/`$C`!=/`$!=,!# /`T'`/`#̢a#̢a)!# /`T`$` !=/`$!# /`T` , #̢a#̢a!h#(@q'/`@$#}' @ !='!Z#@% ' !#Tbt!"@C'  !=/!h#(@!{#@. T  !=. @i  !=O . .!#T@C/`#cL !>/` '!=/`+}-%/`L ,` '/`!>,'`!s (L`H H@א `O O@ΐ%Tbx!>@CG!h#(@  .!=/ .T@C=#cL !=' !='!#T@C, !=/!h#(@q %T@C /T@CD  Tb|!h @C  !h $'Tb@C!h @!=)'!#Tb@B?ӂcx'D'M`$ !+<' $`@B!+<'™ !+<'`%+ ' $` !+<'!+<`;-Ȑ ''M`$ !+<' $`@B!+<'™ !?'`%,' $` !+<'!+<`;'M`$ !,?' $`@Bz!,?'™ !,?'`%,' $` !,?'!,?!'?@/!i #cT%@B`cT@B]D cT@BVcT@BQ #cT%@BKD cT@BD cT@B?!#Tb@B9 !h#(@!{#/`T!,?'`!,?䀤`' !h#(@D  !#Tb@B!#Tc@B %T'@BD T@B![L \`BT@A`OT@A`HT@A   @ 'D !h#(@G!{#@,T 8!i !#Tc0@A/`#̢a!'?L  %' L ' +'L-'/''/, : [` ŷ  ~, ~/' L/!'?O[`"Ť!i #,'!,?'!#Tc!{"/`T'!'?  !#Tc@>#' ' !#Tc!# /`T/`#c@>L #' '!'?/`$ !'?'!#Tc!# /`@>T !'?'#' ', , $, $, $, $#!b8( T "-!8/'1+<)#/ L ,$, , $, $, $, $.T !+<-![L \ H H@ה+'> <  ' O O@Ŕ''>.!  '#''!#Tc!+<@>*`!h#(@ !#T@>"@:!='!=?a'D'M`$ !>' $`@=!>'™ !>'`% ' $` !>'!>`;. ''M`$ !>' $`@=!>'™ !>'`%' $` !>'!>`;'M`$ !=' $`@=!='™ !='`%' $` !='!=!=/!i !#Tc@= !h#(@  !i !#Tc@=k/`#̢a!=L  %L &'L%/#}/, : [` _&O/L/!=O[`"O!i  !#Tc/`#̢a@=#!=/`$'`!=/`$!=,!i  !#Tc!=@=!i  !#Tc!# /`@' $`@;!,>'™ !,>'`%,' $` !,>'!,>`;.ې ''M`$ !,>' $`@;!,>'™ !,>'`%,' $` !,>'!,>`;'M`$ !,>' $`@;!,>'™ !,>'`%,' $` !,>'!,>!'?&/ !h#(@!s (L` X![L \,`!,?^,!=,/`$`!h#(@ !h#(@m@'(/`#̢a#̢a#̢a%̤̺`/`@>% '(!s (LH=` @< ,@O=` @< @,`` H!s (, '(-'(%$(/ 4@4   !>$-4 !'?(4`!h#(@ "!=,@@!=$'!i _ `  `!h#(@!=( !#TaL@8, `l/`#cL  H  :!#T@6 !=,/`$ ,!#T@6   !#Ta@5/`#̢a!,>'`!,>'!#Tb @5- #cL  H  :!#T@5 !=,/`$ ,!#T@5   !#Tb@5H !s (@L B !,?^,!>$,T H  :!#T@5 !=,/`$!'?(/`T@,!>$T@ !#Tb @5+$@` !#Tb$@5z` !#Tb(@5o` !#Tb0@5d !#Tb8@5[/`#̢a!,>'`!,>'!#TbX@5J!h L 8!h#(@ ,!#T@5<   !#Tb\@5. !,?^,!=,/`$@#̢a!,>'`!,>'!#Tbl@5!h L !#Tbp@5/`#̢a!,>'`!,>'!#Tbt@4!h#(@!=,/`$#cT%x@4cT@4H cT@4ڒ '4!=$ !h#(!{#/ T  @!h#(@ !{#,`T !h#(@!=,,`  D !#Tb@4/ #cL   !#T@4!,?^L %(''(- #cL ',ޠ,  '(O`H ' 1/`L ' 0 /`X '`Z '!,?^L </ #cL !,>ޠ(-` M`H  !=(' 1-`L  !=(' 0-`X !=( 'Z !=('( '(!,?^L ',ސ(* @ȑ H!{#/ T? !=(  !#Tb!,>@3!#Tb@3 - #cL !#T@3 !h#(H 4#,~' '4!,>'!#Tb@3!#Tb@3@!=$'#cT%@3H cT@3 !#Tb@3pt?ax'M`$ !>' $`@3!> '™ !>'`%' $` !> '!> `;. ''M`$ !>' $`@3Y!='™ !='`%' $` !='!=`;'M`$ !=' $`@32!='™ !='`%' $` !='!=!=@T/@>!=' !='!i !#Tb@3   !='!h#(@!=3!i .!#Tb@2!{#/`T   %!#T@2#Tb@2@  %!#T@2#Tb@2!='``!i !#Tb@2/`#̢a!=L  % L ' 'L%/#}/, : [` ' O/L/!=O[`"$RO O !=L` .,`!i  !#Tb!=@2_!=/`$I`!=/`$!=O` !=,!=, ' !=,!=R`L O !=L` .,`!i  !#Tc!=@2 !i  !#Tc!# /`@2T`!h#(@!=/`$ !h#(@%h('s( B,`@ !i !#Tc@1!#Tc @1!Z# !=@Ò!=V!Z#@ !#Tc!"@1!=!#Tc@1 !h#(@/`#cL !='`!='%T',@1T@1!h#(@ !#T@1@!='!= ?a'M`$ !>' $`@1W!>'™ !>'`% ' $` !>'!>`;.S ''M`$ !>' $`@1+!>'™ !>'`%' $` !>'!>`;'M`$ !=' $`@1!='™ !='`%' $` !='!=!=/!i !#Tc4@0  !h#(@'h()=/`$`@ !h#(@!i !#Tc<@0/`#̢a!=L  % L ' 'L%/#}/, : [` ' O/L/!=O[`"!i  !#TcH/`#̢a@0x!=/`$P`!=/`$!=O` !=,!=, !=,!i  !#TcL!=@0K!# /`T`/`#̢a#̢aB+̪a-̬/ 1= /`$/`T`/`+!h#(@P!=/`$ !h#(@!s (L` X![L \,``!h#(@ '!i !#TcP@/@'耢#cT%T@/!=  !#L cT@/cT@/ے  !h#(@k!=@. @I#cL !>/  !=/`+}-)#/`L ,`/`!>,'`!s (L`H H@ `O O@ !#Tc`!>@/#cL !=' !='!#T@/w#Tch@/o!h#(@ !#T@/h@r ?a'M`$ !>' $`@/;!>'™ !> '`%' $` !>'!>`;.7 ''M`$ !>' $`@/!>'™ !='`%' $` !>'!>`;'M`$ !=' $`@.!='™ !='`%' $` !='!=!=/!#~ '~)=/`$`@!i !#Tcl@.!i !#Tc|@.  @'!h#(@!{#@-T   !i !#Tc@. '/`#̢a!=L  % L ' !=L!=/䀤  !i !#Tc@.^!=O[`"r!i  !#Tc/`#̢a@.F7`!=,!i  !#Tc!=@.2!# /`T`/`#̢a#̢a('̦+̪a- /`$`/`-#̢a#̢a `'!h#(@T!i !#Tc@-  '䀦!i !#Tc@- !i !#Tc@-!h#(@!{#/`T   !i !#Tc@- '/`#̢a!=ߒL  % L ' !=L!=/䀤  !i !#Tc@-'O[`" MO O !=L` .,`!i  !#Tc!=@-\`Q!=/`$!=L/, : Mr O !=L .$`!=,!i  !#Tc!=@-.!# /`T`/`#̢a#̢a$'̦+̪a- /`$`/`'`!h#(@; !i !#Tc@,!i !#Tc@, !h#(@!s (L` X![L \,``!h#(@@!='!Z# !=@!='#Zc $c!= '!Z#@% ' !#Tc!"@,'#cT%@, !=  cT!#@,L  !h#(@!{#@-T  !=/``䀤 !#Tc@,g/`#cL !>/` !=/`+}-)#/`L ,``/`%@-'`!s (L`H H@!#Tc@,,`O O@!#Tc@,!#Tc@,䀤 !#Tc@, /`#cL !='`!='!#T@+'!h#(@n#cT%@+  '䀦cT@+cT@+ے !h#(@!{#@-T  !=/``䀤 !#T`@+/`#cL !>/` !=/`+}-)#/`L ,``/`%@-'`!s (L`H H@!#T` @+~`O O@!#T`@+o!#T`@+g䀤 !#T`$@+[/`#cL !='`!='!#T@+N'!h#(@o ]!#T@+>!#T`(@+5@P!=䀢{'!#T`,@+( ?a 'M`$ !=' $`@+!='™ !='`%' $` !='!=`;. ''M`$ !=' $`@*!='™ !='`%' $` !='!=`;'M`$ !=' $`@*!='™ !='`%' $` !='!=!=@/ !h#(@'h()=/`$`@!=/`$ !h#(@/`#̢a!='L  % 'L $ ''L%/#}/, : [` t $ 'O/L/!=O[`"b !=/`$H`!=/`$!=O`!=,!=,'!=,!# /`T''`/`#̢a#̢a+̪a-̬/ 1= /`$/`T'`/`!h#(@p!=/`$ !h#(@!s (L` X B,``!h#(@ '!Z# !=@#`%@!=’@L!=/,`<  %O . !=,!=  ,`!=L/, <  !]"#} %+`4@){@@)w``@)#axL` >`$@)y`0@)u@`<#iL`(@)p`P@)mL`(1`T@)f``#_b`@)a`lb`!!̔@)Z`|@)W0`@)O`#a@)J`!_"`a̔@)C`@)@! @); @)8 ,@)3 <@)0 L@)- '!h#(@6!{#@,T '%D@) /`#̢a@)` !='`'!='@)`!=/`  '!h#(@@(#at@(@ '%xL `@(ߔ`,@(ܐ`<@(ِ`L@(֐`\@(Ӑ`h@(ϔ!h#(@!{#@,T !s 8L 3a@(@!=@, +{b,T, , -k'b/`T@, , ,`bT, , @(`@(!s (L`B` @(~`H`,@(v`O`4@(n!",@(i @(f @(c'!=/`  ' ',   '!# @-`T. T3-`#̢a!='`!='bX@(3!=/` '+bh-/)̨!̡/`'`'@(@/` -. #̢a!='& '!='bx@(耤@'+}-%̤,`'$`''@'耤@!`/`#̢a@'ݐ`@'ڐ`@'א`@'Ԑ`@'ѐ/`!='`!='`@'Őb@'!h#(@@''#Zc $c@!Z#@ '쀤 !#Tb!"@''#cT%!h @'!=  !#L cT@'cT@'   !h#(@d!{#@. T U !=. @9#cL !>"/  '!=/`+}-"%/`L ,` '/`!>"*'`'!#Tc@'4#cL !=' !='!#T@'&#Tc@'!h#(@ !#T@'@/c!#Tc @' ?a'M`$ !>' $`@&!>'™ !>'`% ' $` !>'!>`;.|ߐ ''M`$ !>' $`@&!>'™ !>'`%' $` !>'!>`;'M`$ !=' $`@&!='™ !='`%' $` !='!=!=/!=@'@!='!i #![L \`H !#Tc@&i`O !#Tc$@&^ `B!#Tc4@&S !h#(@!=/`$!s (L` X![L \,``!h#(@ '!h#(@/`#̢a!=bL  % L ' 'L%/#}/, : [` %' O/L/!=O[`" !=/`$`!=/`$!=O ' !=, , ' !=,' `/`#̢a#̢a$!i !=EL O !=L .!#TcD!=!# /`T?@%'!='/`#̢a#̢aG !=/`$!i -!=EL O !=L .쀤  !#Tc\@%v'!#Tch!=!# /`@%iT#} ' '`/`#̢a#̢a]!=  !i !#Tcp@%D!h#(@!=/`$!i !#Tct@%/ '!h#(@!i !#Tc|@%!{#@,T  /`#̢a!=>L  % L ' %L!=/,`: [`"!i  !#Tc/`#̢a@$``!=,!i !#Tc@$Ɣ!s (L![L \@%!i  `H !#Tc@$`O !#Tc@$!#Tc@$ !i !#Tc@$`/`#̢a#̢a#̢a%̤Ⱥ`/`#} '!h#(@E!i !#Tc@$_ '!=  !i !#Tc@$K!h#(@!i !#Tc@$7!{#/`T  /`#̢a!=^L  % L ' 'L#}/, : [`"$$D+O O !=L` .,`!i #cT%!=@#cT@#u`' ,!=DL O !=L` .,`!i  !#Tc!=@#Ô!s (L![L \@#!i `H !#Tc@#`O !#Tc@#!#Tc@#`/`#̢a#̢a#̢a%̤Ⱥ`/`!i  !h#(@!#Tc@#q`!h#(@%!=  !i !#Tc@#X !#Tc@#Q!Z# !=@2!='#Zc $c!=!Z#@% ' !#Tc!"@##'%h#}'!i $ $ !!"4  !#Tc@# !!"4 !#T`!i   !#` ;X@"X!!"4 !#T` !i   !#h ;X@"X!!"4 !#T`!i   !#p ;X@"X !h#(@!{#@.`T  w!=@. @Y#cL !>/  '!=/`+}-%/`L ,` '/`%,'`!s (L`H H@!#T`$@"z`O O@!#T`(@"k!#T`,@"c#cL !=' !='!#T@"U #T@"Q`!h#(@| !=!#T`0@"9!h#(@!{#@.`T  w!=@. @Y#cL !>/  '!=/`+}-%/`L ,` '/`%,'`!s (L`H H@g!#T`4@!`O O@X!#T`8@!Ӕ!#T`<@!˔#cL !=' !='!#T@! #T@!`!h#(@|!#T`@@!@!=쀢k'!#T`D@! ?a'M`$ !><' $`@!u!>8'™ !>4'`%0' $` !>8'!>8`;.wq ''M`$ !>,' $`@!I!>('™ !>$'`% ' $` !>('!>(`;'M`$ !>' $`@!"!>'™ !>'`%' $` !>'!>!=/ !h#(@+hc(-s( B)=/`$,``@!=/`$ @&'!i !#T`H@ !i !#T`X@ !h#(@!{#@, T`{ !i "` !#T`d@ !#T`l@ !s 8L` !#T`t,`#a@ /`#̢a!=ْL!=/,`<  '%͸ L/, <  ' %͠L!=/,`: [`"!i !#T`x@ l`!=̠,!i  !#T`|!# /`@ WT`!h#(@z!i !#T`@ F!Z# !=@'@W!Z#@ !#T`!"@ &!!"4 !#T`!h @ C!h #~'!#` !>@2?!h #~'!#h !>@?!#T`;X@X!h #~'!#p !>@?!#T`;X@X !h#(@%!{#@,T ,#cL !> '!>'!#T@ #T@!h#(@ !#T@@m!#T`@?a'M`$ !>p' $`@v!>l'™ !>h'`%d' $` !>l'!>l`;.ur ''M`$ !>`' $`@J!>\'™ !>X'`%T' $` !>\'!>\`;'M`$ !>P' $`@#!>L'™ !>H'`%D' $` !>L'!>L!=/ !h#(@+hc(- 1s ( H ,/`$``@@3!h#( +~t)#/ L ,`'  %t* H!h#(@Z#cT`@Ք cT@@ ?a'M`$ !>@' $`@!><'™ !>8'`%4' $` !><'!><`;.t ''M`$ !>0' $`@u!>,'™ !>('`%$' $` !>,'!>,`;'M`$ !> ' $`@N!>'™ !>'`%' $` !>'!>!=/ !h#(@!=/`$!s (L` X![L \,``!h#(@@T!i  #cT! @cT@  '!h#(@!{#@,T #~' '!> ` '!i !#T`@'/`#̢a!=L  %¶L &% L!=/,`: [`"!i  !#Ta/`#̢a@@`@`!=,!i !#Ta @/`#̢a#̢a$!# /`T T?`$` !=/`$`/`#̢a#̢a!h#(@f!=/`$!i !#Ta@b!i !#Ta@W '!='!h#(@!{#@,T #} '#~' '!> ` '!i !#Ta @''!=@, !i !#Ta,@Y`!i  !#Ta0!s (@L!=/`  '`/` '@!s (LB#H< < @,``O<.% ,!i !#Ta4@!h#(@i!i #cT!!8@cT@ '!=&#}$ '#~' '!> `  '!#TaH@'!#TaT@!= #cT!!X@ucT@r '!='&#}$ '#~' '!> `  '!#Tap@T'!#Ta|@M!= %T'@AT@>!!"4`T@6`T@. `T@&T@!@<!='!Z# P!=@#!=!Z#@  !#Ta!"@!!"4 !#Ta!h @B!#Ta!h #~'!#` ;X@X,!#Ta!h #~'!#h ;X@X!#Ta!h #~'!#p ;X@X !h#(@z!{#@,T k!=,O !#T@/`#cL !>D/` !=/`+}-D)#/`L ,`/`!>D,'`!s (L`H H@ה `O O@Δ!#Ta!>D@G 'T@C/`#cL !>'`!> 'T@4!h#(@!#Ta@&@A!='!= ?a'D'M`$ !> ' $`@!>'™ !>'`%' $` !>'!>`;.p ''M`$ !>' $`@!> '™ !>'`%' $` !> '!> `;'M`$ !>' $`@!='™ !='`%' $` !='!=!=@/!='!i !#Ta@ !h#(@!=/`$!s (L` X![L \,``!h#(@ !h#(@!{#@,T ,#̢a!=L  % L ' 'L%/#}/, : [` K' O/L/!=O[`";M!i  !#Ta/`#̢a@!i )D %!{#/`T` !#Tb@` !#Tb@ `!#Tb@!i  !#T@!=/`$`!=/`$ &/` '!=/`+}-&%/`L ,` '/`!>&,'`!s (L`H H@F `O O@=!#Tb!>&@ ,'T@/`#cL !='`!='T@!h#(@ ;!#T@ #T@@!='#cT!"@cT@  ?؂a'D'M`$ !'=' $`@\!'='™ !'='`%'' $` !'='!'=`;.mX ''M`$ !'=' $`@0!'='™ !'='`%'' $` !'='!'=`;'M`$ !'=|' $`@ !'=x'™ !'=t'`%'p' $` !'=x'!'=x!'>j/ !!@f/`@/`#kc#'~ #!'>k/L  %' L &'' L+'~j/, : [`  L!'>k/&L/!'>jO[`" !'>kO!'> ,!'>,!'> ,!'> /`@/`#kcВ`!!@ !h#(@Z U/`#c, !'>t$#̢aC !!=. .$.$. $. $#!b8( T %@-` -`$-`$-` $-` $#!b8,U !'>t,$!! / U !!`!h#(@ !'>p@K' ![L \`H !#Tb@`O !#Tc@!#Tc@ !'>p!h !'>l' !h#(@#!{#@,T ,#cL  L` ,`!=/ $ `!h#(@!=/ $ !!@')t!=/ `, @`  !l'!'>p '!h %'l$'!!"4  !#Tcd!'>l@O !#Tcl!'>l< . **@$6 !#Tcx!'>l<d. ***@h$ !#Tc!'>l<. * *$*$@M$!'>pE x'4',!h#(, @2 'Dm!h#(, @( '@l![ , @ '<l![ , @ '8l!h#(@ #耢'l%M`$  $`@  'x`'t $`t ' ;$?i '%M`$  $`@  'h`'d $`d ' ;%M`$  $`@  'X`'T $`T @/*#obL` ]#@%oܐDؒ@!]# @/Β@ @ ȒD!o$#8![ ![$ !s$ 4!!, g !!!s 4L ;&%y#]c$@/@ ',` @& ', '4g #s`4`$`4!!L=gz >gs #s`4 $`4!!L`"gd >'#s`4$`4!!L/*, <  "!O* ;gM >O*,'#s`4' $`4!!L/*, < @ "',!y!#]c<@@&D;`@D0`@%`0@`@@`LIDf >.!#Tc!o"@u'  .'$ '`#cT `@$ '#cT!#@cT ! @N'  .'$ '`#cT `@q$ '#cT!#@`cT ! T@Z''  .'$ '`#cT `@J'$ '' #cT!#@5cT !i @/'  .'$`` '%T @"$``'!#T`@ '!h#(@!s (L` X![L \,`D, $ '!h#(@!i O !#T`@#cT! ,D@cT@ޒ ' '''P!$!!h#(@:!{",4@!{#T'L   !',#̢a'L   'L $ 'L/*, : [`"%!i L !#T`P, #̢a@ !#T`\, #̢a@} '+a %a!{"- 4'a, , $, $, $, $#!b8( 4 '- #̢aa, , 'ka, , ,?!i L  !#T`h@9!#T`p@1,,!# , T'''!i !#T`x@@ ', #̢a#̢a=!# , T`$`"+a!{"- 4@a, , $, $, $, $#!b8, 4 '!# T' ' , #̢a#̢a!!, , $, $, $, $#!b8, 4!i L  !#T`|@ !#T`@$D,`$!h#(@''![ 8, $ '!h#(@!{#,T'L   ',#c L䀤@',!i !#T`@^ ''!h#(@,!{#,T'L   ',#c L䀤@ ',' '!h#(@4  !#T`@ !#T`@#cT%@4 cT@ 8, $@ ', $h̐@ ' , $h' ?Ĩ ?, ,,@'' '!h#(@@ '![ @-![$ !#T`@ '!h#(@q!{#,T `',+̪a ' T', ʒ,!#T`' , @T ,T'', #̢a}&!# , T`$` !# ,T'' , #̢a#̢aY!#Ta!# , T?@E!h#(@#cT!!@9'/cT@4 '' '!h#(@F!{#,T 4,#̢a# * ' '!#Ta @  !#Ta(@!#Ta,, #̢a@ ' '!h#(@!#Ta0@ '!h#(@;, +̪a*',  [,',`'a8!# , @T]#, ,  '!h#(@ '!h#(@!{#, T  |D, @  !#Ta<#̢a@j!#TaT@w', #̢aL [  'L [,D, '''$ '4 ' '` '!#Ta`@> `!#Tah@3!#Tal, #̢a@) '$ '`!#Tap@$ ' '!h#(@u ''4 ![  '!h#(@!{#,T'L   ',#cL 耤@''T+a|@@ הL  T`, #̢a@ T`!y!8, T, #̢a@  '耤 ''!h#(@_!{#,T'L   I',#cL 耤@=' ' '!#Ta@  !#Ta@ xL !#Ta, #̢a@ j!#Ta!y!8, T, #̢a@ Z '!h#(@!#Ta@ K!h#(@K '![ @<1 '!h#(@*!{#,T'L   ',#cL 耤@''!h#(@![ @ 8, ', ##cT%@ cT @@@ @cT@ TcT@ cT@ ݒcT@ ڒcT@ ג#cT%@ Δ4 vcT @@@ Ø@cT@ TcT@  ''8, $ '!h#(P!{#- T@'L :'- #cL 耤@ .'!y!8T'''T!#4@@#\#`#d@ z#hT @, #̢a@@ m#\ '$ '!h#(@#cT!#@ [cT@ X M ''8, $ '!h#(?!{#- T@'L )'- #cL 耤@ '!y!8T''!#Tc, #̢a@  '$ '!h#(@!#T`@  '![ @!#T` @ ' '!h#(@'!{#,T ' ' '!#T`,@  !#T`4@ ', #̢aL/*,`<  [,`<  O*#ya, ', #̢aL/*,`<  [,`<  %y,O* [Z!#T`8, #̢a@  ', #̢a@4;!h#(@5 '` '!#T`@@ i!#T`H@ a!#T`L, #̢a@ W ', #̢a@!h#(@!#T`P@ ? !#T`T@ 6 '!h#(@B!#T`\@ '@B'X'P '!h#(@'h(% X,`, `'@#axL` _!i Zܐ@''X%T'd!iL (@ @T@ L ( 0!  , #c`, `, #cT%!!'x@ ؖcT!_"`@ Җ!   , #c`,  `, #cT%!_"`'x@ cT!!@ !#T`@ #cT! @ '0cT@   '!h#(@!{#,T ',#̢a '!#Ta,, @  p', , L#a  '%̤$ ', L  *!#Ta<@ R!{",T'!# T' ' 1/', T)!# , T`$`!# ,T'' 1,' !{",T@* !#TaH@ !h#(@o!#TaT@  '!h#(@!{#,T q',#̢a '!#TaX, @  ]', , L#a  '%̤$ ', L  *!#Tah@ !{",T'!# T'', T#!# , T`$` !# ,T'' !{",`T@!h#(@!#Tax@ t 'HP'!h#('h(@, $ '@'![ '[<, $ '@!h !#<.! \$'L'H' '!h#(@gX@X!{#-`T  ;![T  , #&aL!#$, #cL ' <, $ 'H,#cL!k xL@ L' <, $ 'H-`#cL  L` ,`@, $ ' 'H '!h#(@@, $He%h0$'0'+i`%`%`'?!h#$ $ !!"4 !#Ta|@@?!#Ta!#x荧 `` ;XX;X@X*!#Ta!#荧 `` ;XX;X@zX!#Ta!#荧 `` ;XX;X@eX!h '0' '!!@'ᜨ\,%'@@,  /!{"@, `, T '!{#T  ?%` \,  $  ?%` \, $ '@,   '!!@\, ', ,$,$, $, $#!b8T'!s (L/( T  +c-!8, , $, $, $, $,U, L ,', U ,\-`@ !#Ta̤@-`#kc@ !#TaԠ@-`#kc@O B@+OH!#TaD, @O!#TaD, @ !#TaD, @ '!!@j' '![ <, ' ''!h#(@+!{#,T   ',#cL耤@ 'L,''!h#(@,4 ,  !#Tb8*@, Q''TL/*, <  !O* x X  0, ' 'T 1,'L/*, <  , v !#Tb8*@, T !#Tb0@ '![ @R'@(  @@, 0!{#,T)&,#cL /*!#TbD#̢a-`:@ !#TbT#̢a-`:@ '@,  @ 'P4  #cT!"h@ocT@l ,#cT!"@fcT@c cT@` PcT X@\DcT@Y d 㿘'H'DDJ` J@HJ@D@J   [ `JHJ@x'L'H'DD, #̢aJHHL `HL '`HL[`"H,? [-Hc !# D, T@H ]HH L  H@`L@H'㹐7T''!h#(, @!'^?'0', '( 'P?'$#obL` ]#ߒ@%]ڐ גސԒ`ђ"!o"̐"Ȓ@0@///b/"4DHV!o$#8![ ![$ !s$ 4!!, Y !!!s 4L ;Y #s`4`$`4!!L =Y >Y| #s`4$`4!!L"Yn >'#s`4$`4!!L/, <  "O ;YY >O,'#s`4$`4!!L/, < `",'y%]@ɒ-@@ 2']ː, @ 2@ߐ@']!]# d@-܀@@Ő 2'], @ 2@@']!^ ܐ 3(@gՒ`(4@\ʒ"@@QL@F\@;d@0 i`$ "qߐp@|@~!y!#^`x@@o`@d"`$@Yb`4@N`D@ՐC`P@ʐ8`d@-"`l@""u`@"j`@ c$@ڔ0]`@VR`@!^!$@~ '$@v  '$8%y#^a8@h@(@b`  7T@Y` 7T@P` 7T@H`7TW >#(@dW >!!"4 2#^aT@,@`#^a\@ @`#^ad@@`#^al@@`vO `oO䀤 "hOb ^!t`b![ , @ '8[![ , @ '4[!h#( @ , '[ '!h#(@+hc(-s(/- L` 'L` ', $, '`@'![ +[`)o" ,@8$'`@ ' '!h#(@l's(L [!{#- T'H- `'$` (,8, !o"-`$' '!h#(@9!s (L (!{#,`T'H `$`,@ !s (,$ '!h#(@ ' '!h#(@![$ !h#(, @S '@[(!h#(, @I '<[![  @?, '[![  @5, '[ %M`$  $`@  'H`'D $`D ' ;%?X '%M`$ $`@  '8`'4 $`4 ' ;%M`$  $`@  '(`'$ $`$ @u /#cT!#4o@ђcT @cT 8T@cT Ti@ '!h#(@g!s (L` X![L \,`@,$!{#,T  F, #̢ah',  2 '!# , T '!# , T c '!# , T# '!# , T! #@ 'P@'P '!h#(@@!#Tc@I@܀@!#Tc@?@%T!#"@7@T @3@T b@.@$`ST@' 8T h@#T@  T@ T@ T@ T@!T@!,T@!LT@ !hT@!T@!T@!T@!T@"T@"T@"<T@"XT@"xT@"T@"T@"T@"T@"T@ޒ# T@ے#8`5T#$@є@T#L@͔@T@ʒ#|T@ǒ#T@Ē#T@#T@#T@$T@$<T@$`T@$T@$T@$T@$T@$T@%!#T `@'![ (4, $ '!h#(@!{#,T'H   ',䀤@'!i '$ j'!h#('!{#,T'H   ',䀤@'' '!h#(@'T+ `@5@!o", ` T`,`#a@%!s 8L` T`4,`#a@T`L@ !#T aT@ 4, K$ '!h#('!{#,T'H   ',䀤@'' '!h#(@#cT% x$ @ɒ$  cT$@cTD$ @P4, $!#T a@, @ ' , $Xz, @ ', $Xm' ? ?, @,,`@'!h#(@ '![ @!#T b@k' '!h#(@A, -̬d .'!{#,T #'#cT' 4@E!s 8L cT-`@8` cT-`,#a@- '!h#(@' '''L!$!!h#(@!{",4@!{#T'H ',#̢a;'L   'L $ 'M/, : [`" '+a %a!{"- 4'a, , $, $, $, $#!b8( 4 '- /̮a, , 'ka, , ,?,-!# ,T'''', #̢a=!# , T`$`"+a!{"- 4@a, , $, $, $, $#!b8, 4 '!# T' ' , #̢a#̢ah!!, , $, $, $, $#!b8, 4!i 5!s 8L` !#T bT@<" !#T bd,`#a@0!# , T@ !#T bt@@  !#T b@@$@,`$!h#(@'/!#T b@$ m![ @e4, U'+cT- ̒@cT@@@@cTL@cT@ڒtcT@גcT@ԒcT@ђcT4, @ɔ$ cT@cT@cTH@cT@dcT@cT@cT@cT@cT@cT@cT @VcT @ '![ @![ @4, '%T+ a@@}T` @yT`D@t@T@q`d$ T@j`T@g`T`@c@]T@^`T@[`Ta@V,  '!h#(@C, @1L !#T bD@8!{#-`T@ !#T' H!y!8T P@@"!#T# bTP@@@ '!h#(@!#T b`@#cT% h@cT@ cT@(cT@<cTl!iL $@cT@cT@$  cT@cT@cT@ے$cT@ؒPcT@Ւ|cT@ҒcT@cT@ʔV#cT% L@ĒcT@cT@$ cT@,cTH@cT@cT@cT@V!#T a@@ '![ @ #cT! !X@cT $@ '!h#(@ !{#,T ' !#T a@t!#T a@l, #̢am @'T+ a, @Z@!{#, T`T@O``T@G` `T@?`!s 8L` !#T a@2` !#T a,`#a@'!{", T''T+ aģ,,#kc@@!{#, T`T@``T@` `T@`!s 8L!#T a"!# -`@T!#T a,#a!# -`@T!# ,T''', #̢a#̢a&!# , T`$` !# ,T'' , #̢a#̢a@ !#T a@!#T a@ '!h#(@#cT! "@{cT@x cT@u ' '!h#(@!{#,T@`'`'`!y!8T''쀤 !#T b`@I쀤 !#T bp@? '`  '!#T bt@/, +̪a0  !#T bx, @L!{", T'!#T b|,,#kc@ !# ,T''', #̢a&!# , T`$` !# ,T'' , #̢a#̢a '!h#(@^ '!h#(@;, +̪a*', | (,',`' b!# , @T}^!}, |ϐ, }Ȑ '!h#(@쀤 !#T b@''![ 4, ` ' '$`'!h#(!{#,T@'H`` ',@@'`$ '!#T b#̢a@9@'$ ''!#T b!y!8T, #̢a@  '!h#(@L!{#,T@'H`` 6',@@,'쀥`$ '!#T b#̢a@@$ '!#T b!y!8T, #̢a@ז '!h#(@!h#(@c '![ @G!#T b@@s'L#cT% @( '(cT<@@'$ $![ 4,  '!#T cX@ '![ @"![ 4,` '!#T c$`@g '![ @!#T c@X'  '!h#(@'h(% X,`, `'@ 'DL '!h#(@%WT , #cL }C  #, @ L P} -<, $ '!h#(@'![ '[8, $ '@!h !#<.! \$'H'D' '!h#(@K!{#-T  %,#c@L /,<`!k xL@ ,<`!iL $@ ' 8, $ 'D-#cL  L` ,`<, $ ' 'D '!h#(@<, $D!h  $'  !#T cĔ@&!!"4` !#T cޔ@x` !#T `ޔ@k !#T ` ޔ@a!h ' , ',0 @!#T `<@N '!!@h!{#-` -`$-`$-` $-` $-!8T, T'   F' '!#T `\-`@-`#kc@, , $, $, $, $, T +!b8- h)#T @ ', , $, $, $, $,T !#T `p@ '!!@ '!h#(@)!{#,T@   '!{"T  !#T `t,#̢a@ '!h#(@#cT% @(' '('cT@ ','![ .4,`'$  !#T `@ !#T `$`@x ', ',![ @#cT! !@fcT@c  '!!@h!{#-` -`$-`$-` $-` $-!8T, T'   F' '!#T a8-`@-`#kc@2, , $, $, $, $, T +!b8- D)#T @ ', , $, $, $, $,T !#T aL@ '!!@ '!h#(@)!{#,T@   '!{"T  !#T aP,#̢a@ '!h#(@!!"4` !#T a`!h @` !#T a!h @ !#T a!h @, ', '!h#(@'h(<, $ '@ '!!@!{#, , $, $, $, $#!b8T, T'   f''( T  +c-!8, , $, $, $, $,U, L ,', U ,!#T a, , #kc@2L 'L/, < `'`% 'TO@L/, < `'!#T a@ , ', '!!@{ '!h#(@-!{#,T@   '!{"T !#T aء,#̢a#c@L  '!h#(@'![ 4,@ ' #, '![ @' '!!@'ᜨ\,%'@<,  !{"<, , T  '?$ \, $ '<,   '!!@\, s', ,$,$, $, $#!b8( T  +c-!8, , $, $, $, $,U, L ,', U ,!#T a, , #kc@)L 'L/, < '`'' % 'TO@L/, < `'`!#T b@, ', '!!@' '$ ![ 8, ' ''!h#(@J!{#,T   5',@䀤@+' '-'#c@L /,<`!iL $@ 0-',< -' ',' ,,' '!h#(@,?, , w !#T b@w, v'T ''!h#(@K!{#,T   6',@䀤@,' ','#c@L /, <`!iL $@ 0,' 'T 1,' ',' ,,' '!h#(@,?, , v !#T b@ , v>T  !#T b,@#\ '![ @ ![ @8, t' ''!h#(@8!{#- T   #'- @䀤@ ' '-@'#cL -@' '-@' ,-@`' '!h#(@,?, ` ", ",, v !#T bd@, ',, u!#T bx@@@o@, ', '![ @'<(  4<,  #'!{#,T  ,#cL /!#T b#̢a,:@7, ', '<,  @mE'L''![ /4, '' ''  !#T b@!#T b@ '![ @ !#T b@#cT! "@cT ,@ݔVcT@ڒ @cT@ג DcT@Ԓ LcT@ђ \cT @̖'' '!h#(@?', #̢aL/, <  *O ( [, #̢a̪`,`' ]`,'`,`' ', #̢aL/, <   '!h#(@' '!h#(@!{#,T s' !#T c@j!#T c@b, +̪ac  !#T c, @QL!{", T'!#T c,,#kc@=!# ,T''', #̢a~3&!# , T`$` !# ,T'' , #̢a#̢a~ '!h#(@#cT% b@cT'O"  "@ݒ'@ՐNڐ # c@@`$!o""@ٔ`D@Քb`P@Ζ@˒`|@Ȓ``@ĔO" @ ''! ]s'H  #``O@ @%#`L c#`L e#`L v#`L .  tZ, i[, m\, '  .],` t,` i,` m,`,]!  @S#x$b@^ b@[ 0b pX' !h#(@!s (L` X![L \,``!h#(@ !h#(@/`#̢a!:t$#̢ayC !!=/ / $/ $/ $/ $#!b8( T %@-` -`$-`$-` $-` $#!b8,U !'>t,$!! .U  !!`!h#(@!#T c@N!:pg!h !:t!=.`, @`  !,<  0 !#T`l#̢a@-,<  1 !#T`t#̢a@p,<  Z !#T`|#̢a@a,<  X !#T`#̢a@R<,<  0 !#T`#̢a@C-,<  1 !#T`#̢a@4,<  Z !#T`#̢a@%,<  X !#T`#̢a@!=. U@d(!'>p'!:p!#T`@ ?`'M`$ !?<' $`@!?<'™ !?<'`%?' $` !?<'!?<`;.? ''M`$ !?<' $`@!?<'™ !?<'`%?' $` !?<'!?<`;'M`$ !?<' $`@b!?<|'™ !?, '!?,'!!"4 #~,!#ɢ' #~,!#ɢ ' #~,!#ɢ'!i X!!"4`!#Ta !#!>,"!?0"!>,";XX;X@X,`!#Ta!>0"!>,";XX;X@X`!#Ta!>0"!>,";XX;X@X !h#(H!{#/ T`  '` '܀` / #̢asl$/ ,,L `,?,'a!# / @kT/ #̢aiA !h#(!i s o  !#Ta@"0 ܀  !#Ta@܀  !#Tb@  !#Tb @ !h#(@&!{#@,T@``  !#Tb@!#Tb/`#̢a@`!h#(@!i !#Tb @!i H E !#Tb$@!h#(@-!{#@,T ``  !#Tb,@/`#̢a!?,'!!"4 #~0!#'!>,'#cT%<x@!iL ( 0cT!>0"!>,";XX;X@XcT0!>,"!>0";XX;X@X!i !#Tb@!?<x!?<'!?<'!h #?|h'%0'!!"4`!#ɢ'`!#ɢ '`!#ɢ' !h#(@'!{#@,T ,#cL  L` ,`!+<4.$ !?<'`!h#(@!+<4.$ !!@'),>/`$`@!+<4. "!?<!+<4.`, @`  !,>,`$?%`!+<4.  !!(!,>.#?|  !#Tb@6 '!#Tb..#kc@&!s (. .$.$. $. $#!b8TL!=/( T ?. .$.$. $. $#!b8/`T, #cL %?s/, <`!>7,O!=/,`<  X,`<  Z `. .$.$. $. $#!b8/`T +~7@,@-OBPM@@x<!!"4`!#TbO!h @6`!#TbO!>0";X@X$`!#TbO!>0";X@X`!#TbȔO!>0";X@xXN!!"4`!#Tb!>7!h @f<`!#Tb!>7!>0";XX@R\(`!#Tb!>7!>0";XX@>\`!#Tc!>7!>0";XX@*\!!!+<4(  !+<4. #?|  !#Tc@ '!!"4 !#Tc!+<4., #̢a#cL !h @!!"4 !#Tc(!+<4., #̢a#cL !>0";X@X!!"4 !#Tc8!+<4., #̢a#cL !>0";X@X!!"4 !#TcH!+<4., #̢a#cL !>0";X@X!+<4. p!?< !#TcX@}@\!?<'!?<!#Tc\@i ?ax'M`$ !>' $`@C!>'™ !>'`%' $` !>'!>`;.8? ''M`$ !> ' $`@!>'™ !>'`%' $` !>'!>`;'M`$ !=' $`@!='™ !='`%' $` !='!=!=/ !h#(@!s (L` X![L \,`!=/`$`!h#(@ !='!h#(@#!{#@,T ,#̢a!=cL  % L ' 'L%/#}/, : [` e' O/L/'O[`"e!i  !#Tcd/`#̢a@l!=/`$ź`!=@-`$!=,!s (L/!i !,`<  B!#Tcl!=!# -`@AT!#Tcx!=!# -`@3T!# /`T!='`/`#̢a#̢am(d!# /`T`$`J!i !!=O B'T+c!=!# /`T@@#} ' T@` '!i !=O B!#Tc!=!# /`@T !=/`$!# /`T` , #̢a#̢al!i !=O`O !#Tc@ `H!#Tc@!h#(@'/`@Z$!='!#Tc@!Z# @l#Zc $c!=!Z#@ !#Tc!"@h%h#}'}?!i }$ $ !!"4` !#Tc@J6`!#Tc!#x} ;X@8X$`!#Tc!#} ;X@&X`!#Tc!#} ;X@X !h#(@w!{#@. T h !=. @M#cL !>"/  '!=/`+}-"%/`L ,` '/`!>",'`!s (L`H H@tC `O O@t:!#Tc!>"@߳#cL !=' !='!#T@ߥ #T@ߡ!h#(@ !#T@ߗ@Y!=쀢'?؂a8'M`$ !'=' $`@g!'='™ !'='`%'' $` !'='!'=`;.5c ''M`$ !'=' $`@;!'='™ !'='`%'' $` !'='!'=`;'M`$ !'=' $`@!'='™ !'='`%'' $` !'='!'=!'>n@R6/ !!@f/`@/`#kc#'~Ia-!'>o/L  %'I L ' ''IL+'~n/, : [` b L!'>o/' L/!'>nO[`"b !'>oO!'>H ,!'>H,!'>I,!'>I/`@/`#kc`ڒ`!!@!'>p' !h#(@q!{#@,T a X,#c, !'>t$%̤kO/`#̢aju !!=/ / $/ $/ $/ $#!b8( T %@-` -`$-`$-` $-` $#!b8,U !'>t,$!! .U  !!`!h#(@ !'>p@X:' !i  #cT!#@ cT @ !h#(@!{#@,T ,#̢a!'>I`)L  %'I L ' ''IL%'n/#'~o/, : [` a' O/L/!'>nO[`"a!i  !#T` /`#̢a@ݰc` H,!'>I,@!i !#T`(@ݚ@!# /`T@@!i !#T`0@݉@`/`#̢a#̢ai#!# /`T`$` !# /`T` , #̢a#̢aid !i !#T`4@M!h#(@H!i !#T`<@=!#T`L@7!'>p !h#(@$!{#@,T ,#cL  L` ,`!=.$ `!h#(@  @W!'>p'F!!"4 !#T`\!h @-!#T`l!h , , , @ܔ!#T`|!h , , @͔  !#T`!h @!=.$ !!@')t!=.`, @`  !p'!'>p!#T`@۪ %M`$  $`@ۊ  '`' $` `; 1 '%M`$  $`@j  '`$` `;%M`$  $`@Q  'p` $` !#Ta @K !h#(@l !#Ta@9/`#̢a]kL  L ' L.: [` _8' .>`L.: [`"_+/`#̢a'h`'d!#Ta @!' *+cT'$@!# /`T`cT@.`<  cT@!#Ta,@!h#(@ !#T@@T0#cTa0!h @!#L cT@ !h#(@'h(+cT%/`L `@ڳ`@ !#T@ڪ@TP%M`$  $`@ڄ  '` $` `; 0 '%M`$  $`@f  '``$```;%M`$  $`@M  '`$`%M`$  $`@7  '`$`/ <``>0? '!M"@N@%T'8@$T@!T@T$!h @T@,![L \`OT@ 4 `HT@8T@@#cT!!|@cT@ ?aO '!h#(@!=/`$   ''!#Ta@/`#̢a!=\L  % L ' 'L%/#}/, : [` ]' O/L/!=O[`"]!#Ta/`#̢a@ٌ!=/`$s`!=/`$!=O` !=, [!=,  [!=,!=*+cT-@`!# /`T!>'`!>'cT@P/`#̢a#̢aeM)!# /`T`$` !=/`$!# /`T` , #̢a#̢ae&!#Ta@!h#(@ ,!#T@ !h#(@'!=/`$ !h#(@!s (L` X![L \,``!h#(@ '#cT!!@cT@ޒ cT@ے cT@ؒ #Zc  $c !=@dݒ#cT%@ƒ cT@’/`#̢aL !>'`!>`'+~ -%̤/)#T @ا/`L '`'!#Ta@ؙ#Zc $c@R!Z#@ !#Ta!"@|#cTa!h @s!=  !#L cT@j  !h#(@t!=@,R !#T@P/`#cL !>/` !=/`+}-)#/`L ,`/`!>,'`!s (L`H H@l `O O@l!#Ta!>@ 'T@/`#cL !>'`!>'T@!h#(@ !#T@@RW!#Ta@ ?a0'D!='#^a!=ڒY@`!=Y!=/`!=Y![ ![$ !!, !s$ 4!o$#8[+ݐ !!!s 4L ;\O[+ʐ #s`4%' $`4!!L!='!=Ȁ`='+ >[+ #s`4%' $`4!!L!='!=`"'+ >#s`4%' $`4!!L!=/,`<`!='!=`"('!=O ;+x >'O!>,`#s`4%' $`4!!L/, <`!='!=`"'%,)y!^a@bސ+L!=/ !>O L!=/!>O L!=/!>L!=/"@ג+ >:'M`$ !=' $`@!='™ !='`%' $` !='!=`;.,Ȑ ''M`$ !=' $`@֠!='™ !='`%' $` !='!=`;'M`$ !=' $`@y!='™ !='`%' $` !='!=!=/!#~ '~)=ؤ/`$`@^!!>~X !=' !h#(@!=ؤ/`$!s (L` X![L \,``!h#(@@Id !h#(@/`#̢a!=X^L  % L ' 'L%/#}/, : [` Z!' O/L/!=O[`"Z !=ؤ/`$9`!=ؤ/`$!=O ' !=, , ' !=,' `/`#̢a#̢aa'̦+̪a-ب /`$`/`a!h#(@!=ؤ/`$D#`!=Wא@O@  #``O@ @*#`L c$#`L e#`L v#`L . o!=, u!=, t!=,   .!=,` o,` u,` t,`,%  @@@L(@F4@C!!"4`H@;`P@3`X@+``@#bt!#P@ !h#(@3/`+̪ab/`%WA, b!=ږ!# /`T!=ؚ@#\ b/`@@`!h#(@  '!h#(@/`#cL  #}' '!='b@Ȑ/`#̢aa!s (L Bb@Ե Hb@Ԭ  Ob@ԣ/`#̢a%VԒ, bԔ!=ږ!# /`T@Ԍ`!=ؠ/   'ظ /  `@b!=Ք!# ,`T?!=ؘ@f b!=ؔ@]!# /`T!='`!='b!=!=ږ!=ؚ@E!=ؤ/` $'+b-/)#  /`T'`'!=ږ!=ؚ@#@!=ؤ/` c@ c/`#̢a@ `!h#(@*#`!>>V6@O@  #``O@ @*#`L c$#`L e#`L v#`L . c!>;, m!><, d!>=,   .!>>,` c,` m,` d,`,!>>#c@ӝ@'!Z#  `@Ӡ`@ә '!h#(@#}' '!=`'cD@Ӂ'ܡ/`#̢a!=UL  % L ' 'L#}/, : [`"Ww~O O ' @L .,cL!=@Dk`'`' ,' `L O ' @L .,cP!=!=ږ!# , @T/`#̢a#̢a_!# /`T T?`$``/`#̢a#̢a^@$@cX!=Ք!# ,T?!=@ c`!=@ٔ!h#(@cd@!h#(@:ch@  '!h#(@?!{#@,T 0,#cL  #}' '!='cl@Ҝ/`#̢a!=T͒L  % L ' !=L!=/'@y!s (@LB !=ܠ,`  c@eH@]O@U!=O[`"Vi c!=@C`'`' !=*c!=ږ!# , @.T!s (L B)/`#̢a#̢a^$!# /`T T?`$``/`#̢a#̢a^@$@c!=Ք!# ,T?!=@ c!=@@`c!=!=ږ!# ,`@T!s (L B)/`#̢a#̢a]!# /`T T?`$``/`#̢a#̢a]@$@c!=Ք!# ,T?!=@ю c!=@х!h#(@@x!i !#Tc@s '!h#(@/`#̢a!=SL  % L ' 'L%/#}/, : [` U`' O/L/!=O[`"UP^!i /`#cL   !>~',' !#T@!#T`@!{#/`T   i!>~',('   o!>~','   b!>~', ' o!>~','`!=O` !=,!=, !=,!# /`T'/`#cL   !>~',' !#T@Щ!s (L!=/!{#/`T i!=/ o!=/ b!=/ o!=/ 'Ժ`/`#̢a#̢a\z+̪a-̬)#  /`T`Ԡ 'ԡ/`\f!=O`BԀ +}-~/1#T 1 @KԦ$ 'O,'y`H9ԡ< < / $'䀥 !=O!>~','!#T`@ +}-~/1#T 4 @' O, '?`O<ԃ<.9 / $'䀥 !=O!>~','!#T` @ܔ +}-~/1#T 3 @А' O, '!h#(@U%T'@Ϲ!>~!=*T@ϯ!Z# T!#@Ϥ@I!='!Z# !=@[D !h#(@'h(% ?/`, `@ '!=+!Z#@ؠ '؀ !#T`(!"@c'!Z# F%!4  !#T`,!h @P5!h #}''i$$4` !#x $$` !# $$ `!# $$!#T`8!i   ;X@X!#T`@@D2`P!h @  !h#(@&@-`-L`)=/,<L`#`X,: @@@@O/`, `!h#(@ !h#(@!=ܢ/`@Y#cL   !#T@/`#cL !>/` '!=ؠ/`+}-)#/`L ,`'/`!>,'`!s (L`H H@c  `O O@c!#T``!>@|#cL   !#T@q/`#cL !='`!='!#T@a!h#(@ !#T@W@Ho!=Ԁ'DA@A#`d` @3@'!=@-`@N?'ܡ/`< @2/`< '@=?`x!=#챢b-< , , , 't@@ @^!+! 㿘'D     OG H  0 1 L H U?ӂa!i #cT! @ͷcT@ʹ cT@ͱ cT@ͮ 8 !'>`'!'>h'!'>l' !'>'!h#(@!s (!'>L` X![L \,`#'~ '!h#(@@!'>p '!i !'>p #cT%@l'xL cT@b% !'>l  !#T`@Q!'>p !'>h !#T`@=!'>d' !'>'!h#(@m!'>p !{#+'~,T   !'>h'N'!'>p !{#+'~,T   !'>l'7'!'>p  !{#!'>, T "!'>p  !{#!'>, T !'>p  !{#!'>, T !'>, #̢a#'~O!'>|'L ''%'| 'L ''|$ '+'~L%'^/#'~_/, : [` P $ 'O/L/!'>^O[`"P#'~d ''',#̢a!,>''!,>'!#T`@p#'~d '!'>_O`!'>''|, [!'>, ' [!'>!'>|,!'>+'~|*-T/@?!# )'>,T'!'>t'!,>''!,>'T@), #̢a#̢aX%.!# !'>, T!'>|`$`!# +'~,T!'>|'' , #̢a#̢aW!'>t!'>|@!#T`@#'~d  '!#T`@#'~ '!'>!h#(@!'>p` !#Ta@˺%`!'>l  !#Ta@˩!'>p !'>h !#Ta @˕#'~p  ''M`$ !,>' $`@u!,>'™ !,>'`%,' $` !,>'!,>!'>`;3'!'>?!l ''M`$ !,>' $`@D!,>|'™ !,>x'`%,t' $` !,>|'!,>|!'>`;''M`$ !,>p' $`@!,>l'™ !,>h'`%,d' $` !,>l'!,>l!'>^/!i !#Ta@@E!'>d')!xM G!i B%T'@T@T$#iL`(@T@4L`( 0TD#a@֖T\!_"`a̔@ΖTt#_b`@ƖT!!b`@ʾ#cT!!@ʸcT@ʵ cT@ʲ !#Ta@ʬ !'>'!h#(@!'>, #̢a#'~Lђ!'>|'L ''%'| 'L ''|$ '+'~L%'^/, : [` N$ 'L/+'~^O[`"N}%O O!'>!'>|L` .,`!'>%', #̢aL|!>, 1$!'>%'|,!'>L/, : S O !'>L` .,`!'>%', #̢aLM !>, $#'~ '!h#(b !'>'!h#(@ X!'>, #c, !'>$!>e !'>|'!!@\!'>t'!'>|, , $, $, $, $#!b8( T ;-'/'|-` -`$-`$-` $-` $#!b81'>t- V@,#̢a-`@-`#kcKْ!'>, $!!  ' ', V@ #'~| '!!#'~ '!h#(!'>d!'>t' !'>'!h#(@$!'>-`#cL  L` ,`!>%'t, $ '#'~ '!h#(!>!'>t, $ @CU!'>d'%h#,~X',~P?!i ,~P$ $ !!"4` !#Ta@6`!#Tb!#,~P ;X@X$`!#Tb !#,~P ;X@X`!#Tb!#,~P ;X@X!'>`!L!x  #cT!"$@ВcT@͒ ,!'>`'!'>t' !'>'!!@+a-'%|, $ '`@!>!'>t,  *!'>!>!'>t, `, !'>x` ' !<|,`$?%`#'~t '!>,  !'>x'!'>t'!!@!<|!'>x-`@|-` -`$-`$-` $-` $#!b8T%'l'!#Tb`@-`#kc@J!{#, T  !#Tbd@9!s (!'>lLB_!#Tbh@*!'>'!'>x, , $, $, $, $#!b8( T 8-,`/1'>3!b8)'>x, , $, $, $, $-`T, L '`'!,>\'!#T@, , $, $, $, $, T !#Tbl@!'>t'Ho!#Tb|@!'>'!'>x, , $, $, $, $#!b8( T &+,~-/'1!"83'~x, , $, $, $, $,U, L ,', U ',!'>,O 0 1!,> H!'>@[!#Tb@q!#Tb!,>@i#'~t n'!#Tb@]!'>'!'>x, , $, $, $, $#!b8( T &+,~-/'1!"83'~x, , $, $, $, $,U, L ,', U ',!'>,O 0 1!,> O!'>@[!#Tb@!#Tb!,>@#'~t '#'~t  '!#Tb@#'~x '!!s%'t!'>x''!>(  [!>!'>t,  C#'~x '  !#Tb@Ƹ'!>!'>t, %'l'!#Tb,`#̢a@ƣ!{#, T  !#Tb@ƒ!#Tb!'>l, #c@ƅL #'~t '!>, !#Tb@r@@!'>d'!'>d'h!#$!#Tb@Y 㿀!!h#( < <  %0Pt![$ @@V#!h @K'@'  ^ !"@'䀢$""@ # @@@5@,?"![ @$  㿘#h`@?`?$`!h#(@k 㿈'D[`"D2 "* `"D2 "* `"D2 "* `"D"*  㿀[  # bJ@`* # bJ `* # bJ `* # bJ `h"  㿈' / #@J h#(.:``0`1  `Z`z   h#(/`: [` "`/`:`"* /`: *#@J @*`:  0*`:  1*:  *`:  Z*`:  z/`:  *:   h#(/`: [` "`/`:`"* /`: *#@J @*`:  0*`:  1*:  *`:  Z*`:  z/`:  *:   h#(/`: [` "`/`:`"Q* /`: *#@J @*`:  0*`:  1*:  *`:  Z*`:  z/`:  *:   h( [` "`/`:`"* [` "`/`:`"* *#@J (  㿈'D ( >[ " "J D@O/ :: .:  0/`# * `D;: .:  0* * D+: .:  0* * D .:  0* * D  [ " "J  ?ӂch''M`$ !+<'$`@!?'™ !,?'`%,' $` !?'!?`;. ''M`$ !,?' $`@!,?'™ !,?'`%,' $` !,?'!,?`;'M`$ !,?' $`@ô!,?'™ !,?'`%,' $` !,?'!,?!'?@6/@@.'  !h#(@//`#̢a!'?E˒'L  %' 'L $ '!'?L-'/, : [`"GQO O !'?L` .,`'T+c!'?@W@!{#/`T`T`@L`T`$@C`T`D@: `T`d@1!#Tc@+ ` !`#\, 4 '!'?,!'?L/, : 9 O !'?L` .,`!# /`T' '!#Tc!'?@`/`#̢a#̢aN'!# /`T`$` !# /`T'`@ ' ,`#̢a#̢aN!`#\, 4 '@,`@,`!{#/`T?` !#Tc@¤!` !#Tc@™` !#Tc@Ž `!#T`@ƒ#,' !,?'#cT! @ucT@r !h#(@!`#\, 4 ' !h#(@-h(/'1#%Ԩ /`$@, $`@F !h#(@'''!`#\/ T@@-ء, #cL`!'?/,<`L`,< ,` '!'?O 3 2 'ب '!`#\/ T@Q!`#\/ T !=Ԥ/`!,?'` $`!=Ԥ/`!,?'`  $`!=Ԥ/`!,?'` $`!h !'?Ԣ/`@$!?#@ !=Ԡ!,?'` $`!h !'?Ԥ/`$!`#\/ T@ !h#(@nb !h#(@$!h !'?Ԣ/`@$!?#@ !=Ԡ!,?'` $`!`#\/ T@ !h#(@#`H@e@!#T@s` ![$ !h#('T+`!=Ԥ.@_@T` .#̢a@X'А`.@A !h#(@'h(%/`, `@>'''!`#\/ T.ء, #cL!'?/,`<`L@ '''Oء- #c, O!+< ,' '!`#\/ T!+< ,=!h Т$''!?#@+cT-@̡<4 < %', $!='cT@ےcT@'!`#\/ T4!+< O`0 !#T`@`1 !#T`@`2 !#T`@!#T`@!#T`@ԶE'!+< L &!+< @L`3 !#T`@̠ '`2 !#Ta@u̠ 'L  #+|  H@To!#Ta@Y'!+< L &!+< @L`3 !#Ta(@?̠ '`2 !#Ta4@2̠ 'L  ]!+<  H@ToTL  %+ `L @` !#Ta@!+< @7$`++| M !'?/%+ L!'?/!+< L!'?/!+< L!'?/!'?/` 0//- !#TaX!'?!+< @˘ !#T@!h Ф$!#'!?#@+cT-p@̡<4 < %', $!='cT@cT@'!#Ta@!`#\/ T ![$ !h#(@㿘'D%T'D@l!!"4`T@d`T@\$`T@T0`T@L '#cT%@6!iL ( 0 cT!_"`!!@) cT$!_"`!!@!#Tb@x@#cT!"H@cT@ $cT@  ,cT@ L 㿘 @'DD  #cT!"@cT@ !#Tb@  !h#(@]/`#̢aAL  L ' L/, : [`"B6`,!# /`T'`/`#̢a#̢aJ#!# /`T`$` !# /`T` , #̢a#̢aJ!h#(@?ӂc`''M`$ !?' $`@W!,?'™ !,?'`%,' $` !,?'!,?`;.S ''M`$ !,?' $`@+!,?'™ !,?'`%,' $` !,?'!,?`;'M`$ !,?' $`@!,?'™ !,?'`%,' $` !,?'!,?#'@1&/ '-'//T'( :@< / !'?/T-`:,`:O@֘@!!"4`  'T@ T@%`  T@?T@` T@ dT@ ` T@ T@  #cT`@``  %T@?T@?T@!L!x ( 2!'?/Tc!'?O,`< @@@t#\ " #cT`@n``" !#Tc @aQ T@^!iL ( 0 8T@U <T@O#_b`<  %'/, : 'T@Bb` /, : T@:#a̡<  /, : T@0a̠ /, : T@( " #cT`@``" !#Tcx@+cT@cT!#''O@cT O@ cT@ %'/cT ,`:O@@?/cT ,`; @  !h#(@  '#cT`@ؐ  '/`#̢a!'??'L  %' 'L $ '!'?L+'/, : [`"@O O !'?L` .,`!#Tc@!'?@  '#cT`@  ' 'T@T@| T@x T@t T@p!{#/`T`  T@e T@a&` T@Y T@U`  T@L T@H `  T@? T@;> #'/, : %T@0/, : T@)?T@%` !`#\, 4 '!'?,!'?L/, : 0 O !'?L` .,`!# /`T''д !#TcD!'?@`/`#̢a#̢aG%!# /`T`$` !# /`T'`@ ,`#̢a#̢aG@ !#TcL@ >!#T@  '#cT`@  ' !#T@!`#\, 4 '@ ,`'Р @'Р'С,`'Р'С<  #'/, : 'T@yР /, : T@q T@m T@i!{#/`T?`  T@] T@Y&` T@Q T@M`  T@D T@@ `  T@7 T@3> #'/, : %T@(/, : T@!?T@!h#(@9  '#cT`@  ' !#T@?#T@?#T@!`#\, 4 ' !h#(@-h(/'1#%Ш /`$@, $`@ !h#(@'''!`#\.T@@-ܡ, #cL`!'?/,<`L`,< ,` '!'?O 3 2 'ܨ '!`#\.T@ Q!`#\.T !=Ф/`!,?'` $`!=Ф/`!,?'`  $`!=Ф/`!,?'` $`!h !'?Т/`@$!?#@ !=Р!,?'` $`!h !'?Ф/`$!`#\.T@!h#(@n3b !h#(@$!h !'?Т/`@$!?#@ !=Р!,?'` $`!`#\.T@!h#(@#T@ '![$ !h#(@'#pС, #̢a@ !h#(@'h(%/`, `@'Ԁ3'ܴ'!`#\.T-ܡ, #cL!'?/,`<`L@ '''Oܡ- #c, O!+<, '!`#\.T!+<,!h ̸$'!?#B-T@ T@Tc!'?O@? 4 < +}', '#}'<  %'/, : T@n /, : T@f<  /, : T@] /, : T@U!`#\.TK!+<O`0  "!#T@B #T@>&`1  "!#T@4 #T@0`2  "!#T@& #T@"  "!#T@#T@?  #'/, : %T@  /, : T@U'!+<L K!+<@M@3 "%T@T@?  #'/, : T@ /, : T@ ''2 "%T@ T@?  #'/, : T@ /, : T@ ' M@  O #%T@ T@?  #'/, : T@ /, : T@'Ժ &!+<L 1Ԡ'Ի/`&ԡ4  #'/, : %T@pԠ /, : T@h#'OT@bOT@^'!+<L K!+<@M@3 "%T@FT@C?  #'/, : T@9 /, : T@2 ''2 "%T@' T@#?  #'/, : T@ /, : T@ ' M@  W #%T@ T@?  #'/, : T@ /, : T@'Ժ &!+<L 1Ԡ'Ի/`&ԡ4  #'/, : %T@Ԡ /, : T@ԡ4  /, : T@ԡ4  /, : T@!h ̤$!#!?#B-T@ T@Tc!'?O@? 4 < +}', '#}'<  %'/, : T@z /, : T@r<  /, : T@i /, : T@a B%T@[T@X?  #'/, : T@N /, : T@G?T@C?T@?!`#\.T'ж![$ !h#(@5?!#T@+?#T@'?cp'M`$ !<' $`@!<'™ !< '`%' $` !<'!<`;+  ''M`$ !<'$`@!?'™ !?'`%' $` !?'!?`;'M`$ !?' $`@!?'™ !?'`%' $` !?'!?!i  #cT!#@cT@ @) !h#(@!{#/`T    !i !#Tc@q!i !#Tc@b/`#̢a8L  L ' L. : [`":b!i  !#Tc/`#̢a@6g` [,,!i !#Tc@$!# /`T@@!i !#Tc@@`/`#̢a#̢aB#!# /`T`$` !# /`T` , #̢a#̢aA!i @ !#Tc@֔!#Tc@`!h#(@=!i !#Tc@ !h#(@!{#/`T  !i !#Tc@  !i !#Tc@!i !#Tc@~/`#̢a7L  L ' L. : [`"9~. : Ճ O L` .,`!i !#Tc@G`xL. : e O L .$` [,,@!i !#Tc@$@!# /`T@@!i !#Tc@@`/`#̢a#̢aA#!# /`T`$` !# /`T` , #̢a#̢a@!i @ !#Tc@֔!#Tc@`!h#(@ !i !#Tc@@.!#T`@%h#'?!i $ $ !!"4` !#T`@6`!#T`!# ;X@}X$`!#T` !# ;X@kX`!#T`(!# ;X@YX !h#(@%!{#@,T  /`#cL !?'`!?'!#T@;!h#(@!#T`0@' !h#(@%!{#@,T  /`#cL !?'`!?'!#T@ !h#(@!#T`4@@.H!#T`8@%M`$  $`@  '`' $` `;" ѐ '%M`$  $`@  '`' $` `;%M`$  $`@  '|`'x $`x @&/  '%h('̠ ''`b b$(' !#T@}ȀuР '!h#(3/ #̢a@p#/ ,,L `,?,`@!# / T@p/ #̢a6F !h#(/ %,`o^!!"5d '! TH/, <  +`T)"Ħ 'O ,`L/, <  Ġ  M % ,` ! H/, <  O!",`   #`L/, <    % ,`   +b,` Pb,` ab,` gb,` eb,` b,` #b,` 0b,`'^b5` b,`b5` !h#( X',` , !h#( ',`^!5~` !h#()/ #̢aL/,<   !",`,<`!",`  !",`!h#( ',`^"5D` '!h#(+/ #̢aL/,<   !", `,<`!",` '  !",`!h#( !",` $ ''^"!"4` !h#(+/ #̢aL/,<   !", `,<`!",` '  !",`!h#( !",` $ ''^"$!"4` !h#(+/ #̢aL/,<   !", `,<`!",` '  !",`!h#( !",` $ ' ' G^"4!"4o` '!h#(+/ #̢aL/,<   !", `,<`!",` '  !",`!h#( ' !",` $ ' -^"D!"4$` !h#( ',`  ,!h#( ' !",`^"T!"3` !h#('!{#/ T   I!",` O!",`  !",`!h#( ' !",`  % -,`  !h#( -',`  -,!h#( ',`' '#^bd3@`  '`3` !h#('!{#/ T   Z!",` !",`  !",`!h#( ',` '^"3J` !h#( X',`  ,!h#( ',`,` ''`D@?@ z'L@/, <` `)"O ,'L/, <`!#T`H!"@",$ ' @*''p '!#T`L@ܔ!h#(/ #cL #cT@  cT@!h#( !#T@ ' ;6 '`T@ѐ@ z'L@/, <` `+bO`,'L/, < `  !#T@#T`X!"@'@)''!h#(̀@o%M@`$ $`@U  '\`'X $`X /O ;%M`$  $`@8  'L`'H $`H /O ;%M`$  $`@  '<`'8 $`8 /%h(`'Т`b$(̀@$( !#T@  'Ȁ ?`#`!=a1&@O@  #``O@ @*#`L c$#`L e#`L v#`L . s!=^, d!=_, f!=`,  .!=a,` s,` d,` f,`,!=a! \@@ @ $   !h#(@;!=/`$@+̪a;(/`)=0 [,,'`!# /`@T1h^"1d/`0/`1`!h#(@!=/`$ ! @H @E LT@@ !h#(@Z+{c@,T K#}T'!=P'-,#̢a@c/`T`@ `@@ a4@aH@a\@!{#/`T , ! 4`!h#(@@ڐ#cT!!x@ڒcT@ג cT PT@'M`$ !=T' $`@!=P'™ !=L'`%H' $` !=P'!=P`;. 'M`$ !=D' $`@!=@'™ !=<'`%8' $` !=@'!=@`;'M`$ !=4' $`@e!=0'™ !=,'`%(' $` !=0'!=0!=/!Z# .!=@9^#Zc $c+[`T $ 0%x, D'k, 1, U, X, N, 0%R, L'&, 1, H, Z, T, %`T#[`4  ^"[`8/N $`4@'.!Z#@`@ !#Ta!"@!h #}$'}?!=X}?!!"4`!#Ta};X@X6`!#Ta!#} ;X@X$`!#Tb!#} ;X@X`!#Tb!#} ;X@X !h#(@!{#@,T  !#Tb,#c@L `!h#(@ !#T@@&p  ?Ă`'M`$ !;=P' $`@S!;=L'™ !;=H'`%;D' $` !;=L'!;=L`;.O ''M`$ !;=@' $`@'!;=<'™ !;=8'`%;4' $` !;=<'!;=<`;'M`$ !;=0' $`@!;=,'™ !;=('`%;$' $` !;=,'!;=,!:.#@` !;=W.!;>W/!;=/!o$#8![ ![$ !s$ 4!!, 0 !!!s 4L ;0v!y!#^b@7@` @7w/ݐ #s`4%;' $`4!!L!;= '!;=`='Ȑ >/ #s`4%;' $`4!!L!;='!;= `"' >#s`4%;' $`4!!L!:':bO!;?,`#s`4%;' $`4!!L/, <`!;<'!;<`"'%;,'y#^b̐@6@ !;>-\8`@6 !;>-O+`@6֐ !;=W-B`0@6ɐ !;=-5`@@6 !;>W-(" >!#~ '~):@cT@  !h#(@!s (L` X![L \,``!h#(@ !'>p'!h#(@K/`#̢a7 !'>p'8`!i  !#TbD@~ #;} '!;=` '!i !#TbH@e!i  !#TbP/`#̢a@W`!h#(@!i !#TbT@F @!'>p !h#(@/`#̢a!:<,iL  %: L ' !:<L!:p'!h#(@&/`%̤6p !'>p'`!i  !#Tb!;=W/`@P`!h#(@ @!'>p {!h#(@v/`#̢a!:<+mL  %: L ' ':L!:p')!xM 7!i 2%T'#iL`(@T@L`( 0T@!!@TT!_"`@Th!_"`@T|!!@!#Tc\@#cT!#d@cT@  !!@f/`@/`#kc#:|*!:t$#̢a5C !!=/ / $/ $/ $/ $#!b8( T %@-` -`$-`$-` $-` $#!b8,U !'>t,$!! .U  !!`!h#(@!h !:p!:t!=.`, @`  !p'!h !:( #s`4 $`4!!L`" >y!^c@0: "![,  "![, *'#[` $`!i ( T' '@ +i`-/[, , `,T''' '![, ![, '#s`4 $`4!!L/, < @' "O ;3 >O,'#s`4$`4!!L/, < ' ",'y%^@/-|@8@ΐ 2'||, 8@8 2@@'|!^#|&&| &|X@/p-x@8q@ 2'xrx, 8e@8b 2@@'xa!^#x&&x &x'(@/?%84@/4%@@/)%XL@/%\@/% "Đ%vd@.p@. i`$%a|@.%V!y!#_`@.ْ@%G`@.ΐ%</`$@.Ð%1`0@.%&p`@@.`L@.%l`T@.%w``@.$l`t@.$+a`@.y$lV`@.n$ܒlK`@.c$ђ@%y#_`Đ@.T@4` @.L(@.F` 7@.=` 7@.4`  7@.,`$7 > L@H >!!"4 2#_`@.@`$|#_`@.@`$p#_`@-@`$d#_a@-@`$XOX 8$QXO $JOp _! $Bp#obL` _!$8@O o"$0![ , @ 'Đ!h#( @, '!h#(, @ې ' '!h#(@+hc(-s(/- $@L` 'L` ', $, '`@'![ +[`)o" ,@$'`@ '''![  '!h#(@+s`(L o-쀤@e!{#-T'$ `(,-!o"- $'Ԁ' ' '!h#(@=!s (L ,,쀤@#!{#,T'Ѐ `$` !s (,,$ܠ ' '!h#(@, $ ' '!h#(@ '![ @u![$ ,`@ 'Ԑ![ , @ 'ʐ'![ !h#(, @ ', $ '![ @'' '!h#(@<!{#-`T-`@" $ , $ '쀤-`@  $ , $ ' '!h#(@$ $ $ , $, $![ @: '쀤5' '!h#(@,쀤@ ',, $ ''!h#(@,, $ ''![ @!h#(, @A '%M`$ $`@(  '`'  $` ' ;%?+ '%M`$  $`@  '`' $` ' ;%M`$ '$` @ ' '`' $` '@/#cT! Xo@גcT @cT 8T@|cT T@Ôx@!#T`@@#cT%l@cT@cT$p@O   !ؒ_! "#cT%@؀cT@(cTX@cT@cT@cT@cT@}cT@zcT@wcT@t<cT@qXcT@nxcT@kcT@hcT@ecT@bcT@_ cT@\,cT@YHcT@VhcT@ScT@PcT@McT@JcT@GcT@DcT@A cT@> '![ @,$' '!h#(@u!{#,T'Ѐ   _',@U'!i N'',( $ '!h#(,!{#,T'Ѐ   ',@ ',- $' '!h#(@*,$!#T`H@$, $!h#(@ '![ @t!#T`p@' '!h#(@A, -̬+ .'!{#,T #'#cT'@}!s 8L cT-`@p8 cT-`,#a@e '!h#(@' '''!$!!h#(@ !{",4@!{#T'Ѐ ',#̢a s'L   'L $ 'M/, : [`""< '+a %a!{"- 4'a, , $, $, $, $#!b8( 4 '- /̮a, , 'k +a, , ,?,-!# ,T'''', #̢a)=!# , T`$`"+a!{"- 4@a, , $, $, $, $#!b8, 4 '!# T' ' , #̢a#̢a)!!, , $, $, $, $#!b8, 4!i 5!s 8L` !#T`@t !#T`Ĕ,`#a@h!# , T쀤@ !#T`Ԕ@@X !#T`@@O!h#(@'/؀[#cT%@=cT@:$cT\!o"@4cT@1tcT@-cT@*cT@'cT@$cT@!cT@cT@$cT@<cT@\cT@pcT@cT@ cT@ cT@cT@cT@cT@$cT@@cT@\cT@|cT@cT@cT@؀p'![ j, ['%T'@ВT@͒4T@ʒPT@ǒlT@”@T@T@T@T@@T@T@8T@@T@TT!iL $@T@T@T@T@T@<T@LT@XT@hTo@T@T@![ #cT!"@rcT $@n '!h#(@ !{#,T ' !#Tb@S!#Tb@K, #̢a)L @'T+b, @9@!{#, T`T@.``T@&` `T@`!s 8L` !#Tc@8 !#Tc ,`#a@!{", T''T+c,,#kc@@!{#, T`T@``T@ޒ` `T@֒`!s 8L!#Tc,!# -`@T!#Tc4,#a!# -`@T!# ,T''', #̢a#̢a'&!# , T`$` !# ,T'' , #̢a#̢a'쀤@ !#Tc<@s!#TcH@k '!h#(@#cT%P@ZcT@W؀cT@P' '!h#(@!{#,T@`'`'`!y!8T''耤 !#Tc@$耤 !#Tc@ '`  '!#Tc@ , +̪a(   !#Tc, @L!{", T'!#Tcȣ,,#kc@!# ,T''', #̢a&&!# , T`$` !# ,T'' , #̢a#̢a& '!h#(@^ '!h#(@;, +̪a'*', ǒ (,',`'c!# , @T}_!(y, ,  '!h#(@؀耤 !#Tc@V''![ , ` ' '$`'!h#(!{#,T@'Ѐ`` ',@쀤@y'`$ '!#Tc#̢a@@$ '!#Tc!y!8T, #̢a@ '!h#(@H!{#,T@'Ѐ`` 2',@쀤@('耥`$ '!#T` #̢a@Ȗ"'!#T`$!y!8T, #̢a@ '!h#(@!h#(@k '![ @O!#T`<@#cT! L@cT@ <؀#'![ ,` '!#T`$`@q '![ @' '!h#(@#, ` '䀤  !#T`@K@ ' '!h#(@䀤`!#T`@5$`$ $ ' '!h#(@#, ` '䀤  !#T`@@ ' '!h#(@䀤`!#Ta@$`$ $ ![ @H`'쀤@C' '!h#(@$,쀤@'䀤  !#Ta@є ' '!h#(@䀤`!#Ta4@$`$ , $ '![ @%T!!D@T #ob@@T <@@T@ XT@ xT@ T@ T ̔@@@T @@T!$@@T@!8T@!dT@|! ' '!h#(@2, "' @ #cT!"@\cT@Y ,!#Tc8, #̢a@N$ ' '!h#(@ ' '!h#(@2, "' @ #cT!#X@"cT@ 0!#Tc, #̢a@$ ' '!h#(@؀,'![ &, '#cT!#Ē@cT 0@cT P@ '![ @![ @P`'쀤@K, ' '!h#(@7,쀤@&'ȣ-` #cT! H@@cT ,@!#T`, #̢a@$ ' '!h#(@ '![ @#cT! @cT@} 0cT@z @cT@w PcT@t `cT@q |cT @mcT@j cT@g cT@d cT@a cT!+@\' '!h#(@2!{#,T !' !#Ta@@!#Ta@8!#Ta, #̢a@- '!h#(@#cT%p@cT'O/ /@'!!(@  #b@@`$!o"l@`D@p`P+@@`|@``@O/ @#cT@!"@̒'耢$cT!!(@Ӓ Ɛ #cT!"@˒cT@Ȓ '' '!h#(@K,  <䀤 !#Tc @ '<  . X`$  !#TcD@ '@!#TcT@!#TcX, #̢a@~ '!h#(@!#Tc\@p'' '!h#(@K,  <䀤 !#Tc`@V '<  . X`$  !#Tc@@ '@!#Tc@0!#Tc, #̢a@& '!h#(@!#Tc@؀'![ , v'!#Tc@''', ( ' '@V '<  . X`$  !#Tc@ ' !#Tc@!{#,T@  !#Tcء,#̢a@!#Tc!y!8T, #̢a@, ,'' !#Tc@ '![ @~![ @d`'쀤@_!#Tc@y'' '!h#(@B, 쀤@2 '<  . X`$  !#T`@R '@!#T`@B!#T`, #̢a@8 '!h#(@!#T` @* '![ @' '!h#(@'h(% X,`, `'@@&'Ԡ '̀?W 4 '!h#(@-, #cL  '!+`$, L #̢a!h !s 0[@@Ֆ@ '!h#(@ '!h#(@'h(, $ '@'![ '[, $ '@'' '!h#(@G,@'!{#,T  ؀, #cL /, <`!iL $@  , $ '#cL  L` ,` , $ ' '!h#(@̀4-h$'`!#T'`!s 0Đ@@?!#T%t!s 0@!y#@@'!h ' '![ @T؀  쀤`@>, 5!#T`@', ( ' '@+cT)#, L @`, ,''  !#T@ '![ @@ '@?`'M`$ !=' $`@!='™ !='`%' $` !='!=`;.雐 ''M`$ !=' $`@s!='™ !='`%' $` !='!=`;'M`$ !=|' $`@L!=x'™ !=t'`%p' $` !=x'!=x!=j@ Z/!=' !='!=l'!#~ '~)=/`$`@ !h#(@!s (L` X![L \,`!=/`$`!h#(@ !h#(@n!{#@,T _,#̢a!= #L  % L &!= L!=j/,`: [`" !=/`$1`!=/`$` /`#̢a#̢a'̦+̪a- /`$` /`!=p%l, $ '!h#(@!=/`$!=l'!i !#T`@} !h#(@!{#@,T ,#̢a!= L  % L &+} L!=j/,`: [`"d!i  !#T`/`#̢a@8!=/`$`!=,`@!i '!s (L? H"!=p%l, ' '< < @,``!#T`!= @> O'!=p%l, ' '<.% ,!#T`!= @ؖ B!=p%l, ' '!#T`@”!#T`!= !# /`@T?/`#̢a#̢a$'T+`!= !# /`T@@`  ''T@`/`#̢a#̢a!#T`@!h#(@!#T`@w!Z# $!=@~!=!Z#@  !#T`!"@U%h#}d'}X?!i }X$ $ !!"4` !#T`@76`!#T`!#}X ;X@%X$`!#Ta!#}X ;X@X`!#Ta !#}X ;X@X !h#(@}!{#@,T n,#cL   !#T@!=@. @I#cL !=/  !=/`+}-)#/`L ,`/`!=,'`!s (L`H H@%& `O O@%!#Ta!=@#cL !=l' !=h'!#T@!h#(@ !#T@~@ !='!= !#Ta@g 㿘#a @F@!Z# !!<@: @3`8 @,`P @%`h @` @` @` Q@ ` R@` "8@!Z# "T@ "l@ "@ c"@w "@n "@e b"@\ P#@S #4@J #P@A S#l@8 T#@/!Z# U#@$ #@w #@n #@e   @\  ,@S  H@J  d@A  @8  @/  @&  @!Z#  @ !@  ! @ !8@ !P@ !l@ !!@ "!@w #!@n $!@e )!@\ *"@S!Z# +"0@H ,"H@? -"`@6 ."|@- /"@$ V"@w W"@n X"@e  Y"@\!Z# !> @ >{ b> t Pom Zf \_ ^X cQ g(J!Z# lA n: -@ 3 /@N, W@G % r S    OԐ J QJ !Z# RJߐ  DB * * H O  v% cv  1  SyE T!Z#`U`P`C`C`H= y`![ zp`![ qg`Q?_` RX`!λQ`"r J`# Q"B!Z# $[9 ) Q1 *6* +s# ,v . V0 X5 Y$ 㿐 !h#(@'h(%̤)_"d /`@`@!$! !h#(@n/`/̮`/`#̢a&-!{"/`4, , $, $, $, $'!8/ 4 , , $, $, $, $/ 34- %/`,,#kc!{"/`4, , $, $, $, $'!8/ 4 , , $, $, $, $/ 4`!h#(@ 㾈'D![4 P!!$!D, %g'`$  $`D, @D,  '`'Ġ $` /Oۀ > ^ @D, %g'`$ `$`D, @D,  '`' $` /Oۀ <-Oڀ )D, #c$'쀠 ', #c '  '쀤 !R$" D, #ga@'O%h,, 'O,, 'O!h#,,'D, %g'`$  $`D, @D,  '`' $` /Oۀ %h,,!Z#  !#Tc,@xD, %g'`$ $`D, @\D,  '`' $` /Oۀ > ^ @DOۀ > @y'Oۀ @ ![4 PO#ߢc,  'O#ߢc, 'D, %g'`$ `$`D, @D,  '`' $` /Oۀ #ߢc, ''L  #ߢc 'L #ߢcL +hc,)ߨ#L`,''L@ %h,,,c@B'!!$! ''!ߠ#H '`- %ߤL@`'- '!h#(@+hc(-߬%hD, L,' '`@D, %g'`$ $`D, @D,  '`' $` 'ܣ, !!$!D, %g'`$  $`D, @]D,  '`' $` ''!ܣ, $D, %g'`$  $`D, @9D,  '|`'x $`x ''!ܣ, $D, %g't`$  $`D, @D,  'h`'d $`d '%!ܠ$'!ߠ#H `- '%ߤL `-'D, %g'P`$  $`D, @D,  'D`'@ $`@ '!h#( #D, %g'<`$  $`D, @D,  '0`', $`, , '쀤 nD, %g'(`$ `$`D, @D,  '`' $` #ߢc,D, %g'`$  $`D, @vD,  '`' $` '!h#( #D, %g'`$  $`D, @SD,  '`' $` , '쀤 D, %g'(`$ `$`D, @-D,  '`' $` ' ' '#ߢcL'`  %ߤL@`' #ߢcL '@  %ߤL@`'`  '!h#(@+hc(-h)ߨ#LD, ,''`@![T P D, #i`X'!!! $!!!D, #i`X$ '![4 P!!$!%M`$  $`@  '`'̠ $` /`<  > ^ @/`<`` %!Z# !#T@@%M`$ $`@o  '`' $` %M`$ $`@U  '`' $` '/`<  < 耤 '/`<`%h,, '耤` J,,'%M`$  $`@   '`' $` @/`<  (/`<`!h#,,'%M`$ $`@  '`' $` /`<  %h,,!Z#  !#Tc,@%M`$  $`@  '`' $` @/`<  > ^ @-/`<  > @'/`<  @ ![4 P/`<#ߢc, '%M`$ $`@  '`' $` /`<  (/`<#ߢc, '%M`$  $`@i  '`' $` @/`<  #ߢc, ''L  #ߢc 'L #ߢcL +hc,)ߨ#L`,''L@ %h,,,c@6B'((!!$!9%M`$ $`@  '`' $` 'ܣ, !!$!%M`$  $`@  '`' $` ''!ܣ, $%M`$ $`@  '`' $` ''!ܣ, $%M`$  $`@  '`' $` '%!ܠ$'!ߠ#H `- '%ߤL `-'%M`$  $`@  'p`'l $`l '!h#( %M`$  $`@j  '``'\ $`\ , '쀤 \%M`$ `$`@J  'P`'L $`L #ߢc,%M`$  $`@-  '@`'< $`< '!h#( %M`$  $`@  '0`', $`, , '쀤 %M`$ `$`@  'P`'L $`L ' X' ߐ#!!![T P  'h!!!$!!!!h$   !!L   'L  !!L   'L   ![T $!h#(@/`#cL`!!L,` L `.<`@ !h#(@!h#(@+hc(%-L/`,  ``@![T WT!!c !h @V !h#(@?/`#cL`,<`L`,,<  ,`    .<  Z  0 1 z!!c('`@ `!h#(@!!c0@ ![ T l !h#(@f!{#@,T'耤  ,/`#cL !R"H/, <  .<`O@ #&aO/`#c ,  #RbO/, <  *,#cL !x"H/, <  .<`O@ #kcO/`#c ,  #xbO/, <  `!h#(@![ 4G !h#(@A!{#/`T@ 2!y!8T, #cL /![ 8H.<   /`#cL.< @O@ ,#[`8O.<` ``!h#(@ 㾰' /!h#(@> '!h#(@5 'l !h#( @+, '![ ![$ !s$ 4!!, '`'耢O +a's4L@ ; "[$4@ $4aL/ǡ, <  "HOǀ - >Oǀ$> $,'+s`4`%`4'L@'/`4%`4L'/Oǀ S,`<  T `4 %`4 ,'#s`4$ $`4% $,' %q-@''!!'s4L@ -$4 --@ '!!!s 4L/ǡ,< #a  ,<  .'s4 $4OǠq,'!!4L/ǡ,< #a  ,<  .+s`4`%`4'L@'/`4%`4L's/Oǀ S,`<  T `4 %`4 ,q'Oǀ AOƀ T ,' lq,' d,K'Oǀ AOƀ F ,' fq,6'Oǀ DOƀ T ,' lq,' d,'Oǀ DOƀ F ,' fq,'#s`4$ $`4q* O,'#s`4`$`4!!L/ǡ, < @' ",e+ya#_a,@@n@ U'`@e@I͐ #s`4 $`4!!L =־ >ַ #s`4`$`4!!L/ơ,< @' ',<  "%s4$4!!L/Ǡ`$4,< /O/#4@@@և >1%M`$ $`@7  '``'\ $`\ ' ;'?: '%M`$ `$`@ ' 'P`'L $`L '' ;%M`$ '$` @  '@`'< $`< /Ǣ '!h#(@,$!s (L` X![L \,` '!h#(@ '!h#(@k, #̢a'L   'L $ 'L/Ǒ, : [`" , $ :'', $ ',,#̢a#̢a %!# , T T?`$` , $ ', #̢a#̢a o!h#(@, $'w''O!h Ԡ$'''L/ǣ, <` `/'Oǀ`$!#T@A@L/ǡ,< `',<  Oǀ !h ''!#T@,<  ,<  MOǀ  !h '  ?'  ?!!"4` !#T;X@X-`!#T!# ;X@X`!#T!#ȅ ;X@X` !#T!#Ѕ ;X@X,<   '!h#(@!{#,T   t', @ T#c@L  O!#T@,#cL l, ' ',`)#,L l,'',`l,$ '!s (L`H H@ߔ `O O@֔!#Tc@@Ql#c@L  O!#T@F,#cL '!#T@:!h#(@{  $!#T@-O#T@)L/ǡ, < `'!#TcD@.' 㿈'L'H'DDH??!!"4  LcH;X@X$  LcP;X@X  LcX;X@X   Lc`;X@XL''D!h#( @, '؆!h#( @, '|!h#( @, 'r!h#( @, 'h!h#(@ '_ 0//_!D'!h#(),,`$ d$@m i', $>@b!', $3 '!h#(@@O #!#?h?`!#?x?p!#?X?P!#???@?H?8_!Ln/![ ![$ !o$#8!s$ 4!!, jY !!!s 4L ;WF !!'s4L@ =$4F5 +a's4L@ ".$4'@$4aL/7, < `"O7 ; >O7/@'#s`4$`4!!L/7, <  "/@!y!#hc,w@c,#ya%_P@@ z@ "+@ݐ@@ d@Ґ@ @ Y@ǐ@@ N@@(@ C@*0@ =@!#?4@ 3@! ?8@ )@!# ?ch@~a@؅"?<@ @*D@ @!#?H@ @! ?L@ @!# ?cl@~3@؅"?P@ @*T@ @!#?@X@ ג@! ?@\@ ͒@!# ?@cp@~@؅"?@i`@ @+d@ @!#?Hh@ @! ?H_!@ @!# ?Hct@}֐@؅"?H:p@ @,x@ @!# ?8#_a̐@@ x@! ?8`@ n@!# ?8cx@}@؅"?8 #|ya@}ǐ >g#_aԤ@@ M! #?`@ C! ?`@ 9! ?` @ /! ?! (?!!"4`! 0 B?`! 8 B ?`! B?????O؀ #c@}&@'`@}" @t/* <`@`, @  '''_@ؒ@@Ғ@c@Q/`@@#cؐ@@@}؅"?@A/`@u@`@@|؅"?@4/`@h@#`(?%_@@`(`,)?Ȑ@@! ?Ȑ@@! ?Ȑ @@!  ?Ȑ@|@! ?ȅD?D? @k@$@e@c@/`@@#cؐ@@@|؅"?@/`@@`@@|؅"?@/`@@#`(?%_@7@`(`,)?Ȑ@-@! ?Ȑ@#@! ?Ȑ @@!  ?Ȑ@@! ?ȅD?D?@@@M@}/`@@#cؐ@@@|2؅"?x@m/`@@`@@|%؅"?p@`/`@@#`(?ȐD@Ғ@`(`,?ȐH@Ȓ@!  ?ȐL@@! ?xȅD?xpD?pP@@M@,/`@`@#cȤؐ@@@{؅"?h@/`@P@`@@{Ԕ؅"?`@/`@C@#`(?ȐT@@`(`,?ȐX@w@!  ?Ȑ\@m@! ?hȅD?h`Dq?``@\@M@/`@@#cФؐ@@@{؅"?X@/`@@`@@{؅"?P@/`@@#`(?Ȑh@0@`(`,?Ȑl@&@!  ?Ȑp@@! ?XȅD?XPD ?Pt@ @ @{T  '?@{I '?  @{!#B?! B?!#B B!# ?B?!#B?! B?!#B B!# ?B?@!# Bh?@! B`?@!# B h`B!# ?@H!# Bx?H! Bp?H!# B xpB!# ?H8!# BX?8! BP?8!# B XPB!# ?8 ', , #abT , , #ab#ab   BH$$@$ $ , , #ab``#ab``#ab ` `'#abT' ', ,$,$, $, $#!b8( T ')!"8, ', ', , $, $, $, $,T '- - #ab4$ 'HH#ab ` ` ', , #abT  @y, 'ҿ ', , #abT @yؐ!', $ҩ ', , #abT %M`$ `$`@y  '`' $` ' ;%?ϲ '%M`$ $`@y  'x`'t $`t ' ;%M`$  $`@yp  'h`'d $`d /77 '!h#(@+hc(%)i $M ,, '`@W '!h#(@LQ.`#cL`/7,<`L`@,< ,`O7԰ ,!h , $'` %$`"'Xa$ @y'T, $ސ, @@x, 'P, $͐ |''''7(, #cL /c, <`/@Oc/7'-`<` L@ 7-`< , 'L쀤@@,`'WD@, , @`, $!h `, $'`` %`$`#'Xa$@x, 'T, $b, @@xz, 'P, $Q'!h#(@-7* < D  '!h#(@,@ 'L %̤S@ ' ',L`/6,`c!# ,T@x^@, 5@O6, d, #̢a_@!s 8L` !#Tcܘ@x@ !#Tc,`#a@x , @ 'HH B?L /7,`<  1H ?С,`<  0@?8?!#T`;XX;X@wX ', _, @-`'HH B?L/7,`<  1H?B?,`<  0@?B ?8?B!# …B?+cT-В;XX;X@wXcT;XX;X@wX? ', cT@w, !#T`4@wr 'L'!{",`T, , #kc@b@`'/@!s 8L` !#T`<@wG@ !#T`P,`#a@w:', M, , @'HH B?-`''HH-`-`#ab`` #ab`` B#ab``B?+cT-d;XX;X@vX ', cT@v , !#T`t@v, , #abT'!h#(@t ' '!h#(@v-`@ `f'L 6%̤ ' ',L`/6,``|!# ,T@vŐ@, @O6, !#T`, #̢a@v@ *''!{"-`T, , #kc@z@`'/@!#T`@@ve@, , #abT' '!h#(@ ' '!h#(@', x'`'@!#T`@v4L ,` 'HH B??L /7,`<  1H ?С,`<  0@?8??!#T%! @ B;XX@А@;XX@u\ ' ', , @-`'HH B?L/7,`<  1H?B?,`<  0@?B ?8?B!# …B?`` '!#T`@u '!#Ta@u%T'! @ B;XX@А@;XX@u\``'T@u  'T@u!#T%! @ B;XX{@@;XX@up\? ', {%T'(! @ B! (B;XXX@@;XX@uM\T@uJ  ''L',`e, , @'HH B?-`''HH-`-`#ab`` #ab`` B#ab``B?` !#Ta8@u  '`!#Ta@@t '!#T%D! @ B;XX@А@;XX@t\ ', !#TaP@t, , #abT'!h#(@{ 㿐'D@tD@/,`<  ,`<  *,`<  =,`<  :,`<  ,`<  ,`> 㿐'H'D  ?*.<`D,`@tH@@,`<  ,`<  *,`<  =,`<  : ,`<  ,`<  D,? 㿐'H'DD]LHYLDL`@  JLHFL㿐'D DJ@` /``1   @㾸'H'D /!h ̀a#hc(, @sܐ  c( 'h(/ 6@  @D .P!h#(@K/ 6@+h`,/ #̢a7/  `, `,/ #̢aܒ/ ,,L `,?,aT!# / T@s/ #̢a !h#(D`" ''܀`   |%,  ,`D P  |',` ,`   $',` ,`쀤 'D !Z# " {!",`  % ,`   -',` -,`  % ,`   /',` *,`  % ,`  #!",`  % ,`   $!",`  % ,`   *!",`  |!",`  % ,` q  ;!",`  % ,` Y $ #!",`  % ,` A P |!",`  % ,`)D . #!",`  % ,`   % ,` D  '!h#(!{#,T !Z#   H, : 'D  D H/    H/  !s (L BD R &.#cL   D  $&D  % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",` Oa>.' ', &.#cL   D  $&` @ % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",``!s (L HZ> < ',``@ &.#cL   D  $&` @ % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",`cD . P/ #cL   !",`  J܀  D  !",`D       $ !",`,@U` ,#̢aL` !",`  ' 5` !",` !",`'ܸ !h#(D +b,`D }b,   *b, /b,` !",`쀤D '`!"L  %'`L `%,!#TaX@p"@p/@ p'H'D #hc(, @p  c($/ 6@/ %̤ @@/ ,a\!# / T@p@/ @ !h#( 'D   ;%,  ,5`   $%,  ,(`   |%,  ,`   "%,  ,`   ;%,  ,`耤 ' 'D  ;!",`  % ,`   $!",`  % ,`   |!",`  % ,`   %!",`  % ,` l  "!",`  % ,`T + $',` m,` s,` g,` ,` ",`  % ,`(  ;!",`  % ,`   % ,` '!h#(a!{#/ T  QH/ `D `   % ,`!s (L B'-@T -#̢aL` !",`  ' 4 !",` !",` Of H/    H/  >.' 'ܣ,$ % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",` ',`D  ,b H_ H/    H/  > < 'ܡ,`@$` % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",` ',`D  ,D  !",`4,@U` ,#̢aL` !",`  ' 5` !",` !",` ',`D  ,  !h#( !h#(!{#/ T  !{#,T D !{#,T D D ؀   % ,`Ԁ D    'Ԣ ',` ,`'H/ `D `   % ,`!s (L B'-@T -#̢aL` !",`  ' 4 !",` !",` Of H/    H/  >.' 'ܣ,$ % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",` ',`D  ,b H_ H/    H/  > < 'ܡ,`@$` % ,`&,@U` ,#̢aL` !",`  ' 5` !",` !",` ',`D  ,D  !",`4,@U` ,#̢aL` !",`  ' 5` !",` !",` ',`D  ,  !h#(Z  +b,`D   "b,  ;b, ` %b,  !",`耤%,!#Ta`@k@k@ 㾈'L'H'DL  'L" D@JJ@*`. :`D*&@L" OK H   0*@DJ *@"&O`1  `0*`O`1  `0*z`O`1  `0*m`O`1  `0*``T 0*Y` 1*T` 2*O` 3*J` 4*E` 5*@` 6*;` 7*6` 8*1` 9*,` A*'` B*"` C*` D*` E*` F*`  * a@W{ x  0*@DJ *@"&O`1  `0*R`O`1  `0*E`O`1  `0*8`, 0*1` 1*,` 2*'` 3*"` 4*` 5*` 6*` 7*`  * a@*'`` KD*'``D*@$8L`t`t㿠@??@@㿠@X? @ ??@@??? =p ?nO;?M}H˒???zG{?PbM?@$@Y@@?@$@Y@@@$@Y@@A BDz?@$@Y@@@$@Y@@?陙@@ 333333@H@\>. &֕=q->?PbM???zG{AeUsage: vgen sourcefile (outputfile) rCannot open source file. __vgena.vecwbCannot open temp file. Check permissions and disk space. Reading vgen program file... Insufficient memory available. rCannot open INCLUDE file. ***%s*** Source file loaded. Characters = %d. Lines = %d. ----- %s ------ subroutine = %s, line = %d VTIMESET = %s, line = %d wUnable to open Temp File. Check permissions and file space. # The VTIMESET data VTIMESET %sCYCLEBEGIN PINTYPE%s BEGIN%s END; %s VECTORDATA Processing vgen program file... TPL %ld %s Error: Undefined timeplate: %s PIN NUMBER PIN NAME VEC NUM GROUP %3d %-15s%3d %3d CYCLE = %d SCALE = %f GROUP NAME PIN LIST %-15s%3d < < < < __vgena.vecrbCannot find IVF file. Check permissions and disk space. wCannot open temp file. Check permissions and disk space. No vectors generated. wCannot open temp file. Check permissions and disk space. wCannot open temp file. Check permissions and disk space. 0 %ld %d WAVE %s %s WAVE %s%s%d%d] %s%d] :%d] END VECTORDATA_END < < Generation complete. No errors detected. Vectors in file: %s WAVES display initiated... %g%gANALOG pin defined: %s; line = %s:%d. VMAX = %g; VMIN = %g wbCannot open side file. Check permissions and disk space. %s %s Sidefile opened: %s; line = %s:%d WHITESPACE are: "%s"; line = %s:%d MERGE_BIDIRECTS order: "%s"; line = %s:%d ** A Negative delta time was detected, Re-run thru time_wheel __vgeny.vecwbCannot open temp file. Check permissions and disk space. < < __vgeny.vecrbCannot find IVF file. Check permissions and disk space. Initializing pins to: %c ; line = %s:%d Define TIMING_FILE as: %s ; line = %s:%d Define EXPECT_FILE as: %s ; line = %s:%d Define MERGE_FILE as: %s ; line = %s:%d Define STATE_TRANS ; line = %s:%d WAVES command executed ; line = %s:%d Merging external file... rbCannot find merge file: %s __vgenx.vecwbCannot open temp file. Check permissions and disk space. %gUNITS 1 UNITS .1 UNITS .01 UNITS .001 PINS %c%s %c%s[%d] %c ; >%10ld - ; < < __vgenx.vecrbCannot find IVF file. Check permissions and disk space. Merging multiple time forks... No VGEN statements were executed, so no vectors generated . Merging terminated . < < rbCannot find fork file. Check permissions and disk space. __vgen.vecwbCannot open temp file. Check permissions and disk space. UNITS 1.0 UNITS 0.1 UNITS 0.01 UNITS 0.001 PINS %c%s %c%s[%d] %c ; Warning!*** Possible conflict on pin: %s at time: %ld >%10ld - ; < < __vgen.vecrbCannot find IVF file. Check permissions and disk space. Executing SWITCH statement: expr = %d: line = %s:%d. Executing SWITCH statement: expr = %d: line = %s:%d. Executing CASE statement (true): line = %s:%d. Executing CASE statement (false): line = %s:%d. ****** SYS_CLOCK NAME ERROR ****** %s Defined SYS_CLOCK hi=%ld, lo=%ld - %s:%d :****** %s Loading DATA Table - %s:%d :****** %s TITLE set to: %s ; line = %s:%d %s%ld%s%ld$%s$%s%ld'B Keeping lowercase strings. %s %d %d Executing IF on line - %s:%d : Test passed. Test failed. Executing BEGIN on line - %s:%d :%s%ld%s%ld$%s$%s%ld'B Outputting COMMENT. Line = %s:%d Reading BUSFORMAT. Line = %s:%d ****** %s ****** %s Enabling WAVEFORM on pin %s. Line = %s:%d :****** %s ****** %s Disabling WAVEFORM on pin %s. Line = %s:%d :****** %s Defining WAVEFORM on pin %s. Line = %s:%d. ****** %s Defined PINTYPE on line - %s:%d Enabling TIMING on pins. Line = %s:%d. Disabling TIMING on pins. Line = %s:%d. ****** %s ****** %s ****** %s ****** %s Enabling PULSE on pin %s. Line = %s:%d. ****** %s ****** %s Disabling PULSE on pin %s. Line = %s:%d. ****** %s Defining PULSE on pin %s. Line = %s:%d. ****** %d UNITS %f PINS UNITS %f wbUnable to open Expect File. Check permissions and file space. UNITS %f PINS ,, %c%s %c%s %c%s[%d] %c %c%s[%d] %c ; ; Executing VGEN statement %ld times. Line = %s:%d. @%ld %d @%ld %d Executing WHILE test. Line = %s:%d : Test passed. Test failed. ****** %s ****** %c FOR loop; line = %s:%d, strt = %ld, until = %ld Executing END statement. Line = %s:%d. Executing BREAK statement, line = %s:%d Executing CONTINUE statement, line = %s:%d Subroutine %s called on line %s:%d %ld****** %s Setting default RADIX on line %s:%d Just added new inputs. Line = %s:%d. Total is now = %d Setting CYCLE to %ld on line %s:%d Setting TIME to %ld on line %s:%d ****** %s SIMULATOR set to %s on line %s:%d Executing REPEAT loop %ld times from line %s:%d Setting UNITS to %f on line %s:%d Setting SCALE to %f on line %s:%d %ld****** %s ****** %s ****** %s ****** %s %ld****** %s ****** %s ****** %s ****** %s [%ld]STRING statement read on line %s:%d ****** %s ****** %s ****** %s ****** %s ****** %s ****** %s ****** %s ****** %s %ldINT statement read on line %s:%d ****** %s ****** %s ****** %s ****** %s ****** %s GROUP %s read on line %s:%d. Assignment statement; value = 'B ; on line %s:%d Assignment statement; value = %ld; on line %s:%d Assignment statement; value = 'B ; on line %s:%d ****** %s FORK %c activated on line %s:%d. wbCannot open temp file. Check permissions and disk space. ; %ld - Unballanced comment terminators beginning on line Looking for signal name but encountered EOF on line Bus vector not terminated properly on line Illegal vector number on line Illegal vector range indicator on line Found EOF before proper statement termination on line Illegal time units on line Illegal time (cannot be 0) on line Syntax error; statement terminator not found when expected on line Illegal number on line A vectored pin and a non-vectored pin both have same name - line A vectored pin has been declared with the same vector number more than once - line Unrecognizable or undeclared item - line Pin vector (subscript) has not been defined - line Group name cannot be a vector - line Malformed statement on line Error in string syntax on line This operation results in a negative integer (not allowed) - line Illegal arith or logical operation symbol on line Subroutine CALL syntax error. Expected ( after subname - line Cannot mix INT variables with pins or strings on left side of assignment - line Cannot mix INT names with STRING names on left side of assignment - line Duplicate STRING name - line STRING name is the same as existing INT variable name - line STRING name is the same as existing pin or group name - line Variable name has not been defined - line Incorrect syntax, BEGIN keyword missing - line Subroutine has not been defined - line Cannot change time to value less than current time: time = %d; line = Cannot REPEAT a negative number of times - line Illegal radix - line Maximum number of assert groups exceeded - line Subroutine parameter mis-match - line Undefined name in subroutine parameter list - line Subroutine parameter stack depth exceeded - line PULSE directive syntax error (ON/OFF missing) - line Error in PULSE directive; pin name (or vector #) has not been declared - line Cannot have negative pulse width - line Pulse width must be less than CYCLE time - line Maximum number of programmed PULSE pins (5) exceeded - line This pin has not yet been defined as a PULSE pin - line Vectored pin listed twice in INPUTS statement - line Cannot specify negative TIME - line ****** %s Subroutine or VTIMESET name too long - line Illegal to Define new Pins after doing VGEN - line Loop or Program block nesting depth exceeded - line Syntax error in FILE name - line Syntax error in STATE_TRANS command - line Syntax error in expression - line Max number of output state trans exceeded - line Illegal assignment syntax - line ****** %s Syntax error in Merge File format (IVF) - line Negative delta time encountered - near line --> %s Illegal parameter list syntax in SIMULATOR command String Index exceeds String length - line String length exceeds maximum (1024) - line Bus index outside defined range - line Error %d - line %s:%d Cannot mix INT variable names with other data types on left of assignment statement - line Cannot mix STRING variable names with other data types on left of assignment statement - line Incorrect syntax in COMMENT statement - line Could not find COMMENT terminator - line Syntax error in FOR stmnt. '=' sign expected - line Syntax error; integer value or variable expected - line Syntax error in FOR stmnt. 'UNTIL' keyword expected - line Loop Stack Depth exceeded (max = 50) - line The specified SIMULATOR is not currently supported - line STRING variable name missing - line STRING variable name is the same as an existing GROUP name - line STRING statement terminated improperly - line INT variable name is the same as existing STRING name - line INT variable name is the same as existing INT name - line INT variable name is the same as existing pin name - line INT variable name is the same as existing GROUP name - line INT variable name missing - line Maximum number of INT variables exceeded - line Maximum number of STRING variables exceeded - line GROUP name is the same as existing STRING name - line GROUP name is the same as existing INT name - line GROUP name is the same as existing pin name - line GROUP name is the same as existing GROUP name - line Maximum number of GROUPS exceeded - line ASSERT time cannot be greater than CYCLE time - line Assignment statement syntax error. Expected '=' sign - line Assignment statement syntax error. No operands after '=' sign - line Assignment statement syntax error. Illegal OP character - line Assignment statement syntax error. Expected second operand - line Cannot mix data types on left of assignment statement - line Maximum number of SUBROUTINES/VTIMESETS exceeded. - line The first item in this statement is unrecognizable. - line INT or STRING variable name is too long (12 char max) - line Pin or GROUP name is too long (34 char max)- line BUSFORMAT syntax error, possibly missing '=' sign - line BUSFORMAT syntax error, unrecognizable bus name - line Maximum number of pins exceeded - line *** Maximum number of output strobes exceeded *** No Vectors Generated. FOPEN syntax error - line Cannot open file from FOPEN - line Max number of FOPEN files exceeded - line %s:%d Maximum number of FORK's exceeded (5) - line Illegal test in IF statement - line Syntax error, expected THEN - line Expression too complex - line Unbalanced parenthases in expression - line Error in WAVEFORM stmnt., pin name not defined - line Error in WAVEFORM stmnt., pin not defined as wave- line Cannot have neg. period or width in WAVEFORM - line Maximum number of WAVEFORMS exceeded - line Unbalanced parenthases in expression - line WAVEFORM polarity can be 0 or 1 only - line Syntax error in expression - line WAVEFORM error, width must be < period - line Syntax error in WHILE statement - line BREAK encountered outside loop or subroutine - line BREAK - unable to find end of loop - line Illegal UNITS, only .1 & .01 allowed - line Maximum number of INCLUDE files exceeded - line Nested INCLUDE files not allowed - line TRACE syntax error, expected ON or OFF - line ECHO syntax error, expected quote character - line Unable to find matching quote for ECHO/COMMENT stmnt. from line PINTIMING syntax error, expected ON or OFF - line PINTYPE syntax error, illegal type - line Exceeded max number of TABLE's allowed - line PINTYPE syntax error, expected '@' - line TABLE syntax error, expected BEGIN - line TABLE data format error - line Internal TABLE evaluation error - line TABLE index exceeds items in table - line Syntax error in SYS_CLOCK name - line Illegal SYS_CLOCK start value - line Number of allowed SWITCH levels exceeded - line Encountered CASE statement outside SWITCH block - line Expected BEGIN to start SWITCH list - line Found EOF before termination of SWITCH block - line Expected ':' as SWITCH expression terminator - line Reached EOF before end of SWITCH block - line Syntax error in WAVES command - line Pintiming enabled on pin with no PINTYPE defined - line Error, Source file and Merge file must have same UNITS. Invalid file pointer - line File is open for read only - line Syntax error in FREAD format string - line Illegal State Character detected at vector time %ld PINTIMING error, MAX number (%d) of unique timings exceeded - line Undocumented error type b: - line %s:%d Insufficient memory available. ****** %s Analog pin must be previously defined as bus - line ****** %s MAX number of Analog pins exceeded - line ****** Internal error ****** Intermediate Fork file header missing ****** Check all pins are declared before any forking. **Error: Must be in FORK A when defining pins - line **Error: Must define all pins before FORKing - line **Error: PINTYPES RZ,RO,RX,RC,SBC,RO2X,RZ2X,BIDIR require 2 or more time parameters - line Unknown error. %s:%d --VGEN %s (C) 2005 Source III, Inc. **** Intel Site License **** rsdmt.enablerUnable to open sdmt.enable file %f%f%d.%d.%d.%drError: Unsuccessful in verifying Network License for IP Address %s Error: Unsuccessful in verifying Network License for IP Address %s %u%x%ld/%ld/%ld%8x%8x%8xError: No valid VGEN key found. Key not valid for current VGEN %s version. This version of VGEN is not licensed for this node. VGEN evaluation period has expired. Key file has been corrupted. --VGEN-PREVIEW %s (C) 2005 Source III, Inc. **** Output Limited to %d Vectors **** --VGEN %s (C) 2005 Source III, Inc. ---VGEN-PREVIEW %s (C) Copyright 2005 Source III, Inc. **** Output Limited to %d Vectors **** ___vdaterUnable to write to temp file. Check write access. %x Expression = %s %ld%ld****** %s ****** %s %ld%ld****** %s rOpened file; %s, fid=%d : line = %s:%d. Closed file; fid=%d : line = %s:%d. FREAD fid=%ld; Format string ->%s<- : line = %s:%d. %d****** \%d%c ****** \%c %d%ld****** %%%d%c ****** %%%c ****** %%%d%c ****** %%%c ****** No matching parameter Added pin: %s @%10ld - ; @%10ld - ; Insufficient memory available <1>. %d%fGPL****** %s ***** %s %d%d%d**** %s Syntax Error in VTIMESET: line #%d r%ld****** %s $date %s $end $version %s $end $timescale %s $end $scope module %s $end $var %s $var %s $var %s $var %s $var %s Warning: Internal - # 44, pin_type=%d 1 %s %s $end %d %s %s [%d:%d] $end $upscope $end $enddefinitions $end $dumpvars #%ld b %s %s $end ****** %s SETUP RADIX BIN RADIX OCT RADIX HEX SET CLOCK PERIOD %ld %.1f %.2f %.3f FORCe %s %cS 0 %s-R FORCe %s %c 0 %s-R FORCe %s 1S FORCe %s 1 %ld %s-R %.1f %s-R %.2f %s-R %.3f %s-R FORCe %s 0S FORCe %s 0 %ld %s-R %.1f %s-R %.2f %s-R %.3f %s-R (%d:%d)FORCe %s 0%s%c %s%c %ld %s -A %.1f %s -A %.2f %s -A %.3f %s -A FORCe %s %c%c %ld %s -A %.1f %s -A %.2f %s -A %.3f %s -A ## Set the Aliases # set alias siv set input vector set alias scv set charged vector set alias sz set charged * set alias SEI set external input set alias SEO set external output set alias SEB set external bidirectional ## Now the pin definitions # SE%c %s%d SE%c %s ## Define the Vectors vector %s_ %s - %s vector %s_ %s rCannot open external file: %s ## External File commands ## Now the State data step %ld step %.1f step %.2f step %.3f siv %s_ 'b%s test %s_ 'b%s siv scv %s_ 'b%s test %s_ 'b%s siv %s_ 'b%c test %s_ 'b%c sz %s_ siv %s_ 'b%c ****** %s # Generation Date: %s # VGEN Version: %s waveform %s signal %s : input ; output ; bidir ; %s%d..%d] : input ; output ; bidir ; end timeplate %s period %s%s %s := %s%d] := input[0PS:P, %s%s:S]; input[0PS:S]; input[0PS:D, %s%s:S, %s%s:D]; input[0PS:S, %s%s:D]; input[0PS:U, %s%s:S, %s%s:U]; input[0PS:S, %s%s:U]; input[0PS:P, %s%s:S, %s%s:C]; input[0PS:S, %s%s:C]; input[0PS:C, %s%s:S, %s%s:C]; input[0PS:S, %s%s:C]; output[0PS:X, %s%s:Q'%s, %s%s:X]; output[0PS:Q'%s, %s%s:X]; input[0PS:P, %s%s:S]; input[0PS:S]; %s := %s%d] := output[0PS:X, %s%s:Q'%s, %s%s:X]; output[0PS:Q'%s, %s%s:X]; end pattern group_ALL (, %s%s:I, %s:O) vector(%s) := [ %c %s ]; end end wvector allpins + %s %s[%d:%d]] wfm allpins < %s %s@%ldns%-11s = @%-10ld = %s\H %s\O %s\B .HEX %s = %s%d, + %s%d,%s%d .PATT + %s %s%d %s %s %10ld %9ld.%1ld %8ld.%-2ld %7ld.%-3ld %s .EOP D %s %d X %s%d) %d X D %s%d%d,%d,%d:%d) %d D %s %d T %ld.0 T %ld.%1ld T %ld.%-2ld T %ld.%-3ld S %d S %d %c %s%s%-10ld +%-10ld * END. $DATA_HEADER$ $TYPE$ I/O VLA $FORMAT$ TIME_VALUE TIME_EVENT $TOTAL_COLUMNS$ 10 %d 10 * $BASE$ D B D B D O D H $FIELD$ %d %s %d %s%d:%d)%c %d-%d ) %d-%d )%c %d ) %d $END$ %-10ld$SIGNALS$ %s %d 1 %s %d %d $END$ %-10ld %-10ld, %d=%c%d=%sIVECTOR %s %s-%d $ TESTPATT $ %s%d %6ld %6ld ENDBLOCK $ TITLE %s ; CYCLE %ld ; FUNCTEST FC1 ; TIMING TS1 ; CYCLE %ld ; TIMESET(%d) PP, %ld, %ld ; NP, %ld, %ld ; DT, %ld ; STB, %ld, 10 ; DT, %ld ; STB, %ld, 10 ; UNDEFINED INPUT(0) %s ; INPUT(%d) %s ; OUTPUT(%d) %s ; BIDIRECT(0,%d) BIDIRECT(%d,%d) %s ; ENDTIM ; ASSIGN %s ( ( ,( , ,( , , ,[bus_chars=%d, bus_size=%d] %s %s)%s ; TESTPATT PAT1; ENABLE TS1 ; @%s$%s; /* %ld */ ; ENDTEST ; ENDFUNC ; END ; ORDER: , 3, 1, %s%s%d ; VECTORS: %s %c TABLE: %s %s ; %s TEST_VECTORS ( [, , %s%s] -> [, , %s%s] ) %s [ %c, , ^h%s^o%s^b%s, ] -> [, ^h%s^o%s^b%s, ; end wwSTIMULUS_SPECIFICATION CONTEXT: . NAME: %s INITIALSTATE: %c L1 0: 1 %ld: 0 %ld: GOTO L1 END 0: 0 %ld: 1 %ld: GOTO L1 END TESTVECTOR_SPECIFICATION TVENABLED: YES TVFILENAME: %s TIMECOLUMN#: 1 TIMEWIDTH: 10 CONTEXT: . SIGNALNAME: %s COLUMNNUMBER: %d TRACE_SPECIFICATION DISPLAYNAME: %s TYPE: Signal TraceOn: ON DisplayOn: ON CONTEXT: . TRACENAME: %s DISPLAYNAME: %s TYPE: BinaryBus HexBus OctalBus TraceOn: ON DisplayOn: ON CONTEXT: . TRACENAME: %s TRACENAME: %s TRACENAME: %s TRACENAME: %s %s TYPE: Signal TraceOn: ON DisplayOn: ON CONTEXT: . TRACENAME: %s %s%010ld %s END RADIX HEX ; RADIX OCT ; RADIX BIN ; GROUP CREATE %s = %s%d %s%d ; INPUTS %s %s\HEX \OCT \BIN ; OUTPUTS %s %s\HEX\OCT\BIN ; PATTERN %s %10ld> %11.1f> %11.2f> %11.3f> %s %s %s = %s %s %s ; #Hier @1 ROOT #Signals %d @1 %d &1 %s %s %s(%d) #Timing %s%-9ld %-12.2f %-12.3f #End %s !VERSION 4.00 !TYPE DIGITAL !VARIABLES time { %s %s } !RADIX { B1 %c%d } !COLOR { 10 } !UNITS ns { , } !PRECISION 0 1 2 3 %s%-9ld { %-12.1f { %-12.2f { %-12.3f { %s } FILE_TYPE = TABULAR_TRACE; %s ,2 ,I,O,expect ,B,expect%s%d..%d> ,16>%c ,16> ,2>%c ,2> ,8>%c ,8>%c ,2> ,2 ,I,O,expect ,B,expectSTART_TAB_TRACE; %s %10ld / %9ld.%1ld / %8ld.%-2ld / %7ld.%-3ld / %sEND_TAB_TRACE; END. RADIX 16 RADIX 8 RADIX 2 D %s, D '%s', $b%s $x%s $O%s %s D %s, %c D '%s', %c S %ld S %ld.%1ld S %ld.%-2ld S %ld.%-3ld /* DESIGN NAME: %s*/ /* FILE NAME: %s*/ /* DATE: %s*/ /* VGEN VERSION: %s*/ `timescale %s module %s ; integer _failed ; reg v_%s; wire v_%s; reg[wire[%d:%d] v_%s; :%d] v_%s; reg[%d:0] e_out%d, m_out%d; %d:0] m_out%d; event _check_out%d ; wire[%d:0] r_out%d; wire [%d:%d] %s; wire , , %s ; %dassign {%s} = v_%s; assign {, , %s} = v_%s; assign r_out%d = {%s%s, , %s%s}; always @(_check_out%d) begin if((e_out%d&m_out%d) !== (r_out%d&m_out%d)) begin $write($time, ": Incorrect response (%%b, expected %%b)\n", r_out%d, e_out%d); _failed = _failed + 1; end end always @(_check_out%d) begin if((e_out%d&m_out%d) !== (r_out%d&m_out%d)) begin $write($time, ": Actual vs. Expected mismatch for the following pins\n"); if((e_out%d[%d]&m_out%d[%d])!==(r_out%d[%d]&m_out%d[%d])) $write(" %s actual=%%b, expect=%%b\n", r_out%d[%d], e_out%d[%d]); _failed = _failed + 1; end if(m_out%d[%d]==1'b1) $fs_strobe( %s ); end %s %s (, , .%s({%s, , %s}).%s(%s)) ; initial v_%s = %c; always // system clock process begin #%ld v_%s = 1; #%ld v_%s = 0; #%ld v_%s = 0; #%ld v_%s = 1; end initial begin _failed = 0; #0 ; /* 0 */ force %s=1'b1; force %s=%d'b%s; release %s; release %s; #%ld ; /* %ld */ #%.1f; /* %.1f */ #%.2f; /* %.2f */ #%.3f; /* %.3f */ v_%s= force v_%s=%d'h%s; %d'o%s; %d'b%s; e_out%d=%d'b%s; m_out%d=%d'b%s; -> _check_out%d; v_%s=1'b%c; force v_%s=1'b%c; $fs_status($fopen("status"), "all_incr", "all_pass", "all_iter"); if (_failed == 0) begin $display("TEST COMPLETED WITH NO ERRORS\n"); end %s; end endmodule %d%d****** %s -- DESIGN NAME: %s -- FILE NAME: %s -- COMPILATION DATE: %s -- VGEN VERSION: %s %s%s ENTITY %s IS END %s; ARCHITECTURE %s OF %s IS -- *** Convert output vectors to strings *** FUNCTION vec2str(vec: %s) RETURN string IS VARIABLE stmp: string(vec'LEFT+1 DOWNTO 1); BEGIN FOR i IN vec'REVERSE_RANGE LOOP IF (vec(i) = 'U') THEN stmp(i+1) := 'U'; ELSIF (vec(i) = 'X') THEN stmp(i+1) := 'X'; ELSIF (vec(i) = '0') THEN stmp(i+1) := '0'; ELSIF (vec(i) = '1') THEN stmp(i+1) := '1'; ELSIF (vec(i) = 'Z') THEN stmp(i+1) := 'Z'; ELSIF (vec(i) = 'W') THEN stmp(i+1) := 'W'; ELSIF (vec(i) = 'L') THEN stmp(i+1) := 'L'; ELSIF (vec(i) = 'H') THEN stmp(i+1) := 'H'; ELSE stmp(i+1) := '-'; END IF; END LOOP; RETURN stmp; END; -- *** Convert %s to character *** FUNCTION std2char(s: %s) RETURN character IS VARIABLE c: character := 'U'; BEGIN IF (s = 'U') THEN c := 'U'; ELSIF (s = 'X') THEN c := 'X'; ELSIF (s = '0') THEN c := '0'; ELSIF (s = '1') THEN c := '1'; ELSIF (s = 'Z') THEN c := 'Z'; ELSIF (s = 'W') THEN c := 'W'; ELSIF (s = 'L') THEN c := 'L'; ELSIF (s = 'H') THEN c := 'H'; ELSE c := '-'; END IF; RETURN c; END; -- *** Results Arrays to hold expected output states *** TYPE out_Vector%d IS ARRAY (%d DOWNTO 0) of %s ; (%d DOWNTO 0) of %s ; (%d DOWNTO 0) of %s ; SIGNAL r_out%d : out_Vector%d; SIGNAL r_out%d : %s(%d DOWNTO 0) ; TYPE names_%d_array is ARRAY (%d DOWNTO 0) of STRING (%d DOWNTO 1); SIGNAL sim_ok%d : BOOLEAN := TRUE; -- *** Signal Declarations *** SIGNAL %s : %s ; %s : %s ; SIGNAL %s : %sSIGNAL %s : %s(%d DOWNTO %d); (%d TO %d); -- *** Procedures for checking output states *** PROCEDURE i_check_out%d ( e_out%d, r_out%d, m_out%d : IN out_Vector%d; SIGNAL sim_ok%d : OUT BOOLEAN ) IS VARIABLE index : INTEGER; VARIABLE compare : BOOLEAN; BEGIN compare := TRUE; FOR index IN %d DOWNTO 0 LOOP IF (m_out%d(index) = '1') THEN IF (e_out%d(index) /= r_out%d(index)) THEN sim_ok%d <= FALSE; compare := FALSE; EXIT; END IF; END IF; END LOOP; ASSERT (compare = TRUE) REPORT "INCORRECT RESPONSE FOR PRIMARY OUTPUTS" SEVERITY %s; END i_check_out%d ; PROCEDURE i_check_out_%d ( SIGNAL sim_ok%d : OUT BOOLEAN; e_out, r_out : IN %s ) IS VARIABLE index : INTEGER; VARIABLE dummy_r : %s(r_out'length-1 DOWNTO 0) := (others => '-'); VARIABLE ea : STRING (22 DOWNTO 1) := " : expected=X actual=X"; CONSTANT names_%d : names_%d_array := ( , "%s" "%s" ); VARIABLE compare : BOOLEAN; BEGIN compare := TRUE; FOR index IN r_out'length-1 DOWNTO 0 LOOP IF (e_out(index) /= '%c') THEN IF (e_out(index) /= r_out(index)) THEN sim_ok%d <= FALSE; compare := FALSE; dummy_r(index) := r_out(index); ea(1) := std2char(r_out(index)); ea(10) := std2char(e_out(index)); ASSERT (FALSE) REPORT "Error on " & names_%d(index) & ea SEVERITY %s; END IF; END IF; END LOOP; ASSERT (compare = TRUE) REPORT "ERRORS in Output Group %d (r_out%d)" & CR & LF & "Expected : " & vec2str(e_out) & CR & LF & "Actual : " & vec2str(dummy_r) SEVERITY %s; END i_check_out_%d ; -- *** Component Declaration *** COMPONENT %s PORT ( ; %s : IN OUT INOUT %s%s%s : IN OUT INOUT %s(%d %s(%d DOWNTO %d)TO %d)); END COMPONENT; BEGIN -- *** Process to map Output Signals to Results Arrays *** PROCESS ( , %s%s%d) BEGIN r_out%d(%d) <= %s; r_out%d(%d) <= %s; r_out%d(%d) <= %s; r_out%d(%d) <= %s; END PROCESS; -- *** Main Process for state assignments & checking *** PROC_MODULE%d: PROCESS VARIABLE e_out%d, m_out%d : out_Vector%d; VARIABLE e_out%d : %s(%d DOWNTO 0); begin ****** %c wait for 0 %s; -- %ld wait for %ld00 %s; -- %ld00 wait for %ld0 %s; -- %ld0 wait for %ld %s; -- %ld -- All inputs to Z at end %s <= ('Z','Z'); %s <= ('Z'); WAIT; END PROCESS; PROC_MODULE%d: PROCESS VARIABLE e_out%d, m_out%d : out_Vector%d; VARIABLE e_out%d : %s(%d DOWNTO 0); begin -- All inputs to Z at start %s <= ('Z','Z'); %s <= ('Z'); wait for %ld00 %s; -- %ld00 wait for %ld0 %s; -- %ld0 wait for %ld %s; -- %ld %s <= ('%c','%c'); %s <= ('%c'); %s <= ('%c','%c'); e_out%d := (%s); m_out%d := (%s); i_check_out%d(e_out%d, r_out%d, m_out%d, sim_ok%d); e_out%d := (%s); i_check_out_%d(sim_ok%d, e_out%d, r_out%d ); %s <= ('%c'); ASSERT (sim_ok%d = FALSE OR sim_ok%d = FALSE) REPORT "TEST COMPLETED WITH NO ERRORS" SEVERITY %s; WAIT; END PROCESS; -- *** Instantiation of Component *** %s : %s port map ( , %s%s) ; END %s; wCannot open CONFIG file. -- *** Declare Configuration *** CONFIGURATION %s_ctl OF %s IS FOR %s FOR %s : %s USE ENTITY WORK.%s (%s); END FOR; END FOR; END %s_ctl; w! INITIAL TSET GENERATED BY VGEN PROGRAM SET TSET 1 CLOCK = %ldNS PHASE 1 ASSERT=0NS RETURN=%ldNS WINDOW 1 OPEN=%ldNS CLOSE=%ldNS PHASE %d ASSERT=%ldNS RETURN=%ldNS WINDOW %d OPEN=%ldNS CLOSE=%ldNS PHASE %d ASSERT=%ldNS RETURN=%ldNS WINDOW %d OPEN=%ldNS CLOSE=%ldNS PHASE %d ASSERT=%ldNS RETURN=%ldNS WINDOW %d OPEN=%ldNS CLOSE=%ldNS ; SET PHASE %d TRIGGER = $T0PAT; ! **** NOW FOR THE SET DIGITALS ***** SET DIGITAL (%s %s%d%c %s%d%c %s%d%c ) PHASE = 1 FORMAT = $NRET WINDOW = 1; PHASE = %d WINDOW = %d FORMAT = $NRET; PHASE = %d FORMAT = $NRET; WINDOW = %d; PHASE = %d FORMAT = $RZERO; FORMAT = $RONE; FORMAT = $RCOMP; FORMAT = $ROFF; DECLS GROUPN %s%c FOR %s%d%c, %s%d%c, %s%d%cENDDECLS ! START OF STATE DATA OFF %s EXPOFF %s DONTCR %s EXPUNK %s DRIVE %s EXPGRP %s H %s O %s B %s LO %s HI %s OFF %s DONTCR %s EXPLO %s EXPHI %s EXPOFF %s EXPUNK %s ; ; END CIRCUIT %s ; /* CREATED ON: %s */ VECTOR %s = %s%d %s%d %s%d ; TIMEDEF PERIOD = %ldNS SENSE DELAY = %ldNS; TIMEDEF PERIOD = %.1f NS SENSE DELAY = %.1f NS; TIMEDEF PERIOD = %.2f NS SENSE DELAY = %.2f NS; TIMEDEF PERIOD = %.3f NS SENSE DELAY = %.3f NS; %dINPUT ; OUTPUT OUTPUT ; BUS %s ; DRIVE %s ; BACKGROUND %s = LO:+%.2fNS, HI:+%.2fNS ..; HI:+%.2fNS, LO:+%.2fNS ..; ; %s = '%s'%c:%ldNS'%s'%c:%.1fNS'%s'%c:%.2fNS'%s'%c:%.3fNS'%s'S:%ldNS'%s'S:%.1fNS'%s'S:%.2fNS'%s'S:%.3fNS; %s = %c:%ldNS%s = %c:%.1fNS%s = %c:%.2fNS%s = %c:%.3fNS$ END %s; %s[%d]; %s[%d], %s[%d] %s[%d]; O; H; $ %s%-10ld %-10.1f %-10.2f %-10.3f %s DECLARATION_SECTION NUMBER_OF_WAVEFORMS = %d; %s; %s%d:%d>; END_SECTION EVENT_SECTION AT %ld NS AT %ld PS AT %ld PS AT %ld PS %s := ; %s := %c; END %ld NS END %ld PS END %ld PS END %ld PS END_SECTION .TABLE + %s %s%d %9ld --TEXTIN FILE start=0; stop=%ld; radix=8; 16; 2; units=ns; signals= %s%s%d:%d]; -- PATTERN -- --TIME---------- %s%9ld => %send PATTERN ****** %s _vtran.epcw;! output_format 3.0 ;header %d .time_resolution 1.000 0.100 0.010 0.001 .simulation_time %ld .index %s%s%d%s %d .index %s %d .spa #%d .big .hex .oct %s%s%d%s%d%s %s %s%s%d%s %s%s%d%s .bio %s %s w(is=vec) (en=%s) (ot=(is=nsvt) (en=%s) (ot= %s%s%s%d%s%d%s%s,); (os=spa) (en=#%d); (os=bio) hex) oct) (en=%s) (it=%s); (en=%s%s%d%s%d%s) %s) (it=%s%s%d%s%d%s); %s); radix 1%d%d %s period %ld %s%10ld %13.3f %ld %d %d %s_vtran.epcrw;trailer %d WAVEFORM %s ; TITLE Stimulus pattern file ENDTITLE; INPUT %s OUTPUT BIDIR %s %s%d:%d] ; ; ; BASE BIN ; PROCESS SYS_CLOCK ; begin %s := %c ; FOREVER DO AT %ld %s := 1 ; AT %ld %s := 0 ; AT %ld %s := 0 ; AT %ld %s := 1 ; ENDDO end ENDPROCESS SYS_CLOCK ; begin AT %-10ld AT %-10.1f AT %-10.2f AT %-10.3f SYS_CLOCK ** start system clock process %s := = HEX %s = OCT %s %s := %c ; end ENDWAVEFORM %s Insufficient memory. Vector memory used: %ld %s x2 x1 x303 x103 %d x0x2 x1 x303 x3 %d x0x2 x1 x303 x303 %d x0x2 x1 x303 x203 %d x0 unnamed xFF00 xFFFF x1 %s x2 x%x x303 x103 %x x303 x3 %x x303 x303 %x x303 x203 %d x0 unnamed xFF00 xFFFF x1 starting event chains /******** EVENT CHAINS **********/ 0 %ld /** %s **/ doing trace %s x2 0 %ld 0 %ld 0 x2202 x2203 x2201 x2200 %ld x2200 %ld x2201 %ld x2301 %ld x%s 0 x2200 %ld x2201 %ld x2302 %ld x%s 0 x0 0 x2302 %ld x%s 0 x%s 0 x2 0 %ld 0 %ld 0 x4200 %ld 0 32 24 %d 10000 0 1000 0 100 0 10 0 xC xFFFF x2C 50 50 refCLK xC xFFFF x838 %ld %ld 3C %ld %ld %s /********** SIGNAL TABLE *****/ marker x0 x1 x303 x0 -1 x0 unnamed xFF00 xFFFF x1 v7-16-86 /****** HEADER BLOCK *****/ wav:v12-16-86%c%c%c%c%c%c,%c%c%c%crefCLK%smarker%c%c%c%c%c%c%c%c%c%c%c%c%s%s<%d:%d> starting event chains doing trace %s %c%c%c%cCODEFILE INPUTS , %s%s%d:%d]]; OUTPUTS , %s%s%d:%d]]; CODING(ROM) @%ld <@%.1f <@%.2f <@%.3f < >; END %d%d%s%-11d| %d%swCannot open .sdf output file. Check permissions and disk space. %d#============================TSSI .sdf FILE =========================== # DATE: %s # %s %d I O I O # primary input # primary output # bidirectional inout port #============================TSSI Vector FILE =========================== # DATE: %s # %s%-12.1f %-12.1f %-12.2f %-12.3f %c `timescale %s module %s; reg , v%s; reg[%d:%d] v%s; ] v%s; reg v%s; assign %s.\%s = v%s; assign %s.\%s = v%s; assign %s.\%s = v%s; initial v%s = %c; always // system clock process begin #%ld v%s = 1; #%ld v%s = 0; #%ld v%s = 0; #%ld v%s = 1; end initial begin #%ld #%.1f #%.2f #%.3f v%s=%d'h%s;%d'o%s;%d'b%s; // time = %ld v%s=1'b%c; // time = %ld #%ld $stop; end endmodule %ld%ld00%ld0%ld%ld%.1f%.2f%.3f****** %s -- DESIGN NAME: %s -- FILE NAME: %s -- COMPILATION DATE: %s %s%s ENTITY %s_tb IS END %s_tb; ARCHITECTURE %s OF %s_tb IS file testvectors : TEXT IS IN "%s" ; -- *** Convert output vectors to strings *** FUNCTION vec2str(vec: %s) RETURN string IS VARIABLE stmp: string(vec'LEFT+1 DOWNTO 1); BEGIN FOR i IN vec'REVERSE_RANGE LOOP IF (vec(i) = 'U') THEN stmp(i+1) := 'U'; ELSIF (vec(i) = 'X') THEN stmp(i+1) := 'X'; ELSIF (vec(i) = '0') THEN stmp(i+1) := '0'; ELSIF (vec(i) = '1') THEN stmp(i+1) := '1'; ELSIF (vec(i) = 'Z') THEN stmp(i+1) := 'Z'; ELSIF (vec(i) = 'W') THEN stmp(i+1) := 'W'; ELSIF (vec(i) = 'L') THEN stmp(i+1) := 'L'; ELSIF (vec(i) = 'H') THEN stmp(i+1) := 'H'; ELSE stmp(i+1) := '-'; END IF; END LOOP; RETURN stmp; END; -- *** Results Arrays to hold expected output states *** SIGNAL r_out%d : %s(%d DOWNTO 0) ; -- *** Signal Declarations *** SIGNAL %s : %s ; %s : %s ; SIGNAL %s : %sSIGNAL %s : %s(%d DOWNTO %d); (%d TO %d); SIGNAL sim_ok : BOOLEAN := TRUE; -- *** Procedure for output miscompare messages *** PROCEDURE msg_%s ( group_id : IN INTEGER; exp, actual : IN %s) IS VARIABLE MSG : STRING(1 TO 14); VARIABLE L : LINE; BEGIN MSG := "***OUTPUT GRP "; WRITE(L, MSG); WRITE(L, group_id); MSG := " MISMATCH "; WRITE(L, MSG); WRITELINE(OUTPUT, L); MSG := " AT TIME = "; WRITE(L, MSG); WRITE(L, NOW); WRITELINE(OUTPUT, L); MSG := " Expected = "; WRITE(L, MSG); WRITE(L, vec2str(exp)); WRITELINE(OUTPUT, L); MSG := " Actual = "; WRITE(L, MSG); WRITE(L, vec2str(actual)); WRITELINE(OUTPUT, L); END msg_%s; -- *** Procedure for checking output states *** PROCEDURE i_check_out ( group_id : IN INTEGER; SIGNAL sim_ok : OUT BOOLEAN; e_out, r_out : IN %s ) IS VARIABLE index : INTEGER; VARIABLE dummy_r : %s(r_out'length-1 DOWNTO 0) := (others => '-'); VARIABLE compare : BOOLEAN; BEGIN compare := TRUE; FOR index IN r_out'length-1 DOWNTO 0 LOOP IF (e_out(index) /= '%c') THEN IF (e_out(index) /= r_out(index)) THEN sim_ok <= FALSE; compare := FALSE; dummy_r(index) := r_out(index); END IF; END IF; END LOOP; IF (compare = FALSE) THEN msg_%s(group_id, e_out, dummy_r); END IF; END i_check_out ; -- *** Component Declaration *** COMPONENT %s PORT ( ; %s : IN OUT INOUT %s%s%s : IN OUT INOUT %s(%d %s(%d DOWNTO %d)TO %d)); END COMPONENT; BEGIN -- *** Process to map Output Signals to Results Arrays *** PROCESS ( , %s%s%d) BEGIN r_out%d(%d) <= %s; r_out%d(%d) <= %s; r_out%d(%d) <= %s; r_out%d(%d) <= %s; END PROCESS; -- *** Main Process for state assignments & checking *** PROCESS VARIABLE e_out%d : %s(%d DOWNTO 0); VARIABLE rd_inputs_%d : %s (%d DOWNTO 0); VARIABLE rd_binp_%d : %s (%d DOWNTO 0); VARIABLE rd_grp_%d : %s (%d DOWNTO 0); VARIABLE L_line : LINE; VARIABLE GROUP_%s : INTEGER; VARIABLE OK_%s : BOOLEAN; VARIABLE Delta_Time : TIME; begin WHILE not ENDFILE(testvectors) LOOP READLINE(testvectors, L_line); READ(L_line, GROUP_%s, OK_%s); IF (OK_%s = TRUE) THEN -- must not be comment CASE GROUP_%s is WHEN 0 => -- a delta time READ(L_line, Delta_Time); WAIT for Delta_Time; WHEN 1 => -- the inputs READ(L_line, rd_inputs_1); %s <= rd_inputs_1(%d); WHEN 2 => -- the bi-inputs READ(L_line, rd_binp_2); %s <= rd_binp_2(%d); WHEN %d => -- output group READ(L_line, e_out%d); i_check_out(%d, sim_ok, e_out%d, r_out%d); WHEN %d => -- input group READ(L_line, rd_grp_%d); %s <= rd_grp_%d(%d); WHEN others => -- skip line END CASE; END IF; END LOOP; ASSERT (sim_ok = FALSE) REPORT "TEST COMPLETED WITH NO ERRORS" SEVERITY %s; WAIT; END PROCESS; -- *** Instantiation of Component *** %s : %s port map ( , %s => %s) ; END %s; wError: Cannot open CONFIG file. -- *** Declare Configuration *** CONFIGURATION %s_ctl OF %s IS FOR %s FOR %s : %s USE ENTITY WORK.%s (%s); END FOR; END FOR; END %s_ctl; wError: Unable to open TEXTIO output file. -- The pin groups are: -- 0 : Delta Time -- 1 : Input pins -- , -- , %s -- 2 : Bi-Input pins -- , -- , %s -- %d : Output Group -- , -- , %s%s -- %d : Input Group -- , -- , %s Warning: '%c' illegal character on pin '%s' at time %s%s 0 0 %s -- %s%s 0 %s%s -- %s%s %d @NODES %s %s R16 W%d ; %s R8 W%d ; %s R2 W%d ; %s[%d] %s[%d] - @DATA %s%10ld.0 %12.1f %12.2f %12.3f %s@END Formatting stimulus file in IVF generic format... for VALID simulator... for ZYMOS simulator... for CAE simulator... for SYSTEM HILO simulator... for TEGAS simulator... for ADVANSIM_1076 simulator... for ADVANSIM_1076 simulator... for ADVANSIM_1076 simulator... for MENTOR simulator... for LDS simulator... for TEGAS simulator - incremental time... for VALID simulator... for VALID simulator... for SILOS simulator... for VIEWSIM simulator... for VIEWSIM simulator... for VIEWSIM simulator... for MACH 1000 simulator... for VERILOG simulator... as VERILOG test bench ... as VHDL test bench ... as VHDL test bench (TextIO) ... for GENESIL simulator... for IKOS simulator... for MENTOR simulator... for LDS simulator... for TIMEMILL simulator... for MENTOR simulator... for MENTOR simulator... for TIMEMILL simulator... for CUPL simulator... for ALTERA FCT simulator... for ABEL simulator... for ORCAD simulator... for MAX+PLUS simulator... for SUSIE simulator... for SUSIE simulator... for TOSHIBA simulator... for TPO format ... for IKOS simulator(binary format)... for VALID simulator... for TOSHIBA simulator... for VTI simulator... for TOSHIBA (TSTL2) simulator... for CADAT simulator... for LASAR simulator... for UDL/I simulator... for User Defined Format... in TSSI format... for SPICE analog simulator... for QSIM simulator... for ASX simulator... in WGL format... in Verilog VCD format... %s %lf%s %lf%ld %d %d ****** %s %s %.0lf%.1lf%.2lf%.3lf%g%g%g%g%g****** %s rCannot open Technology file: %s %e%e%e%e%e%e%e%e%e%e%dV%d %s %s PWL ( V%d %s %s PWL ( + %.8e %e + %.8e %e + %.8e %e ) ** V%d %s %s PWL ( V%d %s %s PWL ( + %.8e %e ) ** %dEVGEN_%d, %s - %s = Table vgen_%d (time) EVGEN_%d, %s - %s = Table vgen_%d (time) Table vgen_%d, %s,%.3lf, , %s,%.3lf, , %s,%.3lf, %s,%.3lf , , %s,%.3lf %d%s%d%s j00<0H0T0`0l0x00000000000000 0,080D0P0Z  H1 d osroCpo,DC oo ih٨W@VpW@ٴ j ,=;()@`\`"P*>]10ZXXB , ;<[:.;=\@) ,;<[()=\ ,=;() ,) ; ,(; +-|&;<>^)]*/\+-*/&|<>^\;( " ':,={ s0 s8 s< sD sH sP sX s` sh sp sx s s s s s s s s s s s s s s s s t t t t t, t8 t@ tP tX t` tl tt t| t t t t t t t t t t t t u u u u( u8 u@ uH uT u\ ul ut u| u u u u u; IOBX.vectrace!TRACE!_vgen.timVREFERENCEWGLTSTL2_vgen.tim_vgen.tim.wav.his_vgen.tim_vgen.timwaves -time &VMAXVMINVOLTSASCII._sfASCIIUNITSPINS_vgen.tim_vgen.tim__vgenx.vecONOFFOFFONHEXOCTBINONOFFASRTNRZSTBDTRZPPRONPRCRXSBCBIDRRO2XRZ2XASRTONOFFONOFFIVFIVF_ASCSILOSVIEWSIMVIEWSIM1VIEWSIM_GENCUPLALTERA_FSABELORCADMAXPLUSSUSIESUSIE_HUDFSPICEVALIDVALID_SVALID_SRVALID_PRIMZYPCAEDAISYDAZIXADVANSIM_1076DAISY_VLADAISY_TEDAZIX_VLADAZIX_TEADVANSIM_1076_VLAADVANSIM_1076_TEMENTORMENTOR_NGMENTOR_KMENTOR_FORCEMENTOR_FORCE_NGTEGASTEGAS_ILDSLDS_IHILOMACHZYCADVERILOGVERILOG_TBVHDL_TBVHDL_TB_TIOGENESILMASMIKOSEPICTIMEMILLTIMEMILL_NSVTTOSHIBATPODPOIKOS_BTOSHIBA_NWTSTL2CADATLASARUDL/ITSSIVTIQSIMASXWGLVERILOG_VCD__vgenx.vec3.8S3_LICENSES3_ROOT/sdmt.enablevgenPREVIEWping -s 64 1 > __vdate1 packets transmitted, 1 received, 0%1 packets transmitted, 1 packets received, 0% packet lossrm __vgen*.vecerase __vgen*.vecsysdef -h > ___vdaterm ___vdate````FORCALLENDREPEATVGENINPUTSOUTPUTSGROUPCYCLESCALEASSERTSTRINGINTSUBROUTINETIMEPULSEFORKSIMULATORDEFAULTBUSFORMATHEADERBEGINIFTHENELSEUNTILSTEPCOMMENTINCLUDEINCLUDE__ENDWAVEFORMWHILEKEEP_LOWERCASEUNITSBREAKCOMMENTSTRACEECHOPINTYPEPINTIMINGTABLEKEEP_IVFCONTINUEDEFINE_HEADERBIDIRECTSIKOS_CLOCKSWITCHCASESYS_CLOCKTITLEWAVESSTATE_TRANSEXPECT_FILEMERGE_FILEMERGE_BIDIRECTSFOPENFREADWHITESPACEFCLOSEINITIALIZE_PINSMAKE_SFANALOGTIMING_FILEENABLE_VTIMESETVTIMESETSYSTEM_CALLCASE_SENSITIVE HILO$SIMULATOR$NULLVECTORDATAVECTORDATA_ENDTPLVERILOG-XL 1.6.0.11 ns100 ps10 ps1 psDESIGNregwireregVERSIONTIMESCALEMODULEINPUT_VAROUTPUT_VARBIDIR_VARVHDLSUBSCRIPTSVERSIONSTRENGTH_TYPE)NS-USE_DASHUSE_DASH_tpedgewindowwindow.ast.atrdesign_ctl_inst$stop-VERBOSE-VERIFAULTTESTBENCH_MODULEMODULECOMPONENT_MODULEINSTANCE_NAMETIMESCALETERMINATE_RUN] design01XZWLHU-nsSTD_LOGICSTD_LOGIC_VECTOR_tbSTRUCTURAL_VIEWU0WARNINGLIBRARYLIBRARY ; USEUSE ; BIT_TYPEBIT_VECTORRESULT_TYPERESULT_VECTORUNITSDONT_CARETIMESCALECONFIGCOMPONENT_ARCHITECTURECONFIG_FILEARCHITECTUREINSTANCE_NAMECOMPONENTCOMPONENT_MODULEENTITYTESTBENCH_MODULEMODULEMAXLINESSEVERITYLIST_ERRORSBY_GROUPBY_PINNINE_VALUEONonoffOFFpsfsnspsusnsmsustestbench)[-]BUS_NOTATIONio _vtran.epc*** DISPLAY PROCESSOR *** SENSOR CS| MODE HP| EI| GOOD CK| KE| | | STEP # | pwr | pindef | pindef | ]UDNHLTZXstimulustop-VERBOSE-VERIFAULTMODULETESTBENCH_MODULECOMPONENT_MODULEINSTANCE_NAMETIMESCALE0 001XZWLHU-nsSTD_LOGICSTD_LOGIC_VECTORSTRUCTURAL_VIEWWARNING_tbU0INHIBIT_CHECKINGINPUT_GROUPLIBRARYLIBRARY ; USEUSE ; BIT_TYPEBIT_VECTORRESULT_TYPERESULT_VECTORUNITSTIMESCALEDONT_CARECONFIGCOMPONENT_ARCHITECTURECONFIG_FILETEXTIO_FILEARCHITECTUREMAXLINESMODULECOMPONENTCOMPONENT_MODULEINSTANCE_NAMEENTITYTESTBENCH_MODULESEVERITYLIST_ERRORSNINE_VALUEONonoffOFFpsfsnspsusnsmsustestbenchdesign.tio)INCLUDE_BI_OUTSBIT_SEPgnd_nsUNITSGROUNDVREF_NODETECHFILETRISEMINMAXTYPTFALLMINMAXTYPVILMINMAXTYPVIHMINMAXTYPTRIZMINMAXTYPNSPSUSMSTRTRISESMSUSNSPSTFTFALLSMSUSNSPSVIHVMVUVVILVMVUVTRIZVMVUV.ENDS@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)string.h 1.24 99/08/10 SMI@(#)string_iso.h 1.2 99/11/09 SMI@(#)time.h 1.39 99/08/10 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15@(#)stdio.h 1.78 99/12/08 SMI@(#)stdio_iso.h 1.2 99/10/25 SMI@(#)feature_tests.h 1.18 99/07/26 SMI@(#)isa_defs.h 1.20 99/05/04 SMI@(#)va_list.h 1.12 99/05/04 SMI@(#)stdio_tag.h 1.3 98/04/20 SMI@(#)stdio_impl.h 1.8 99/06/10 SMI@(#)ctype.h 1.33 99/08/10 SMI@(#)ctype_iso.h 1.1 99/08/09 SMI@(#)malloc.h 1.11 97/08/23 SMI@(#)types.h 1.66 00/02/14 SMI@(#)machtypes.h 1.13 99/05/04 SMI@(#)int_types.h 1.6 97/08/20 SMI@(#)select.h 1.16 98/04/27 SMI@(#)time.h 2.66 01/01/17 SMI@(#)time.h 1.39 99/08/10 SMI@(#)time_iso.h 1.1 99/08/09 SMI@(#)time_impl.h 1.5 99/10/05 SMIacomp: Sun WorkShop 6 update 2 C 5.3 2001/05/15ld: Software Generation Utilities - Solaris-ELF (4.0).interp.hash.dynsym.dynstr.SUNW_version.rela.ex_shared.rela.cpp_finidata.rela.data.rela.bss.rela.plt.text.init.fini.exception_ranges.rodata.rodata1.got.plt.dynamic.ex_shared.cpp_finidata.data.data1.bss.comment.shstrtab $   1 1 doCpCp0-CC0 =CC  PCC  [CC eDD, oE0E0|uP{HHxHH idid ihih`  jj kxkx( kk  kk n<n<" ~`~`[T~^/VE HILO$SIMULATOR$NULLVECTORDATAVECTORDATA_ENDTPL