Her er en 3-9 Barcode font...
Skriv *00000000000000* for en gyldog streg kode..
Forresten skal de fleste scannere have en checksum, som beregnes ved at
gange det første ciffer med 9, det næste med 7, med 9, med 7.... Alle
resultaterne lægges sammen og det sidste ciffer i relsutatet, er
checksummen...
"Bjarne Østergård" <boe@gigasoft.dk> wrote in message
news:9k9kjn$fuk$1@news.cybercity.dk...
> Her er et modul der kan lave stregkode:
>
>
> --
> Med venlig hilsen
> Bjarne Østergård
>
www.gigasoft.dk
> boe@gigasoft.dk
>
>
> Put dette i en form
>
> Private Sub Command1_Click()
> PaintCodeBar39 Picture1, 10, 10, 40, 2, "*9999*", True
> Printer.EndDoc
> End Sub
>
> Private Sub Command2_Click()
> PrintForm
> End Sub
>
> Denne kode udskriver *9999* som stregkode
>
>
>
>
>
>
> Put dette i et modul:
>
>
>
> Public Type C39
> char As String * 1
> bar(1 To 5) As Boolean
> spe(1 To 5) As Boolean ' 5th space for character gap
> End Type
>
> Dim CODE39(43) As C39
>
> Sub InitArray()
> CODE39(0).char = "0"
> CODE39(0).bar(1) = False
> CODE39(0).spe(1) = False
> CODE39(0).bar(2) = False
> CODE39(0).spe(2) = True
> CODE39(0).bar(3) = True
> CODE39(0).spe(3) = False
> CODE39(0).bar(4) = True
> CODE39(0).spe(4) = False
> CODE39(0).bar(5) = False
> CODE39(0).spe(5) = False
> CODE39(1).char = "1"
> CODE39(1).bar(1) = True
> CODE39(1).spe(1) = False
> CODE39(1).bar(2) = False
> CODE39(1).spe(2) = True
> CODE39(1).bar(3) = False
> CODE39(1).spe(3) = False
> CODE39(1).bar(4) = False
> CODE39(1).spe(4) = False
> CODE39(1).bar(5) = True
> CODE39(1).spe(5) = False
> CODE39(2).char = "2"
> CODE39(2).bar(1) = False
> CODE39(2).spe(1) = False
> CODE39(2).bar(2) = True
> CODE39(2).spe(2) = True
> CODE39(2).bar(3) = False
> CODE39(2).spe(3) = False
> CODE39(2).bar(4) = False
> CODE39(2).spe(4) = False
> CODE39(2).bar(5) = True
> CODE39(2).spe(5) = False
> CODE39(3).char = "3"
> CODE39(3).bar(1) = True
> CODE39(3).spe(1) = False
> CODE39(3).bar(2) = True
> CODE39(3).spe(2) = True
> CODE39(3).bar(3) = False
> CODE39(3).spe(3) = False
> CODE39(3).bar(4) = False
> CODE39(3).spe(4) = False
> CODE39(3).bar(5) = False
> CODE39(3).spe(5) = False
> CODE39(4).char = "4"
> CODE39(4).bar(1) = False
> CODE39(4).spe(1) = False
> CODE39(4).bar(2) = False
> CODE39(4).spe(2) = True
> CODE39(4).bar(3) = True
> CODE39(4).spe(3) = False
> CODE39(4).bar(4) = False
> CODE39(4).spe(4) = False
> CODE39(4).bar(5) = True
> CODE39(4).spe(5) = False
> CODE39(5).char = "5"
> CODE39(5).bar(1) = True
> CODE39(5).spe(1) = False
> CODE39(5).bar(2) = False
> CODE39(5).spe(2) = True
> CODE39(5).bar(3) = True
> CODE39(5).spe(3) = False
> CODE39(5).bar(4) = False
> CODE39(5).spe(4) = False
> CODE39(5).bar(5) = False
> CODE39(5).spe(5) = False
> CODE39(6).char = "6"
> CODE39(6).bar(1) = False
> CODE39(6).spe(1) = False
> CODE39(6).bar(2) = True
> CODE39(6).spe(2) = True
> CODE39(6).bar(3) = True
> CODE39(6).spe(3) = False
> CODE39(6).bar(4) = False
> CODE39(6).spe(4) = False
> CODE39(6).bar(5) = False
> CODE39(6).spe(5) = False
> CODE39(7).char = "7"
> CODE39(7).bar(1) = False
> CODE39(7).spe(1) = False
> CODE39(7).bar(2) = False
> CODE39(7).spe(2) = True
> CODE39(7).bar(3) = False
> CODE39(7).spe(3) = False
> CODE39(7).bar(4) = True
> CODE39(7).spe(4) = False
> CODE39(7).bar(5) = True
> CODE39(7).spe(5) = False
> CODE39(8).char = "8"
> CODE39(8).bar(1) = True
> CODE39(8).spe(1) = False
> CODE39(8).bar(2) = False
> CODE39(8).spe(2) = True
> CODE39(8).bar(3) = False
> CODE39(8).spe(3) = False
> CODE39(8).bar(4) = True
> CODE39(8).spe(4) = False
> CODE39(8).bar(5) = False
> CODE39(8).spe(5) = False
> CODE39(9).char = "9"
> CODE39(9).bar(1) = False
> CODE39(9).spe(1) = False
> CODE39(9).bar(2) = True
> CODE39(9).spe(2) = True
> CODE39(9).bar(3) = False
> CODE39(9).spe(3) = False
> CODE39(9).bar(4) = True
> CODE39(9).spe(4) = False
> CODE39(9).bar(5) = False
> CODE39(9).spe(5) = False
> CODE39(10).char = "A"
> CODE39(10).bar(1) = True
> CODE39(10).spe(1) = False
> CODE39(10).bar(2) = False
> CODE39(10).spe(2) = False
> CODE39(10).bar(3) = False
> CODE39(10).spe(3) = True
> CODE39(10).bar(4) = False
> CODE39(10).spe(4) = False
> CODE39(10).bar(5) = True
> CODE39(10).spe(5) = False
> CODE39(11).char = "B"
> CODE39(11).bar(1) = False
> CODE39(11).spe(1) = False
> CODE39(11).bar(2) = True
> CODE39(11).spe(2) = False
> CODE39(11).bar(3) = False
> CODE39(11).spe(3) = True
> CODE39(11).bar(4) = False
> CODE39(11).spe(4) = False
> CODE39(11).bar(5) = True
> CODE39(11).spe(5) = False
> CODE39(12).char = "C"
> CODE39(12).bar(1) = True
> CODE39(12).spe(1) = False
> CODE39(12).bar(2) = True
> CODE39(12).spe(2) = False
> CODE39(12).bar(3) = False
> CODE39(12).spe(3) = True
> CODE39(12).bar(4) = False
> CODE39(12).spe(4) = False
> CODE39(12).bar(5) = False
> CODE39(12).spe(5) = False
> CODE39(13).char = "D"
> CODE39(13).bar(1) = False
> CODE39(13).spe(1) = False
> CODE39(13).bar(2) = False
> CODE39(13).spe(2) = False
> CODE39(13).bar(3) = True
> CODE39(13).spe(3) = True
> CODE39(13).bar(4) = False
> CODE39(13).spe(4) = False
> CODE39(13).bar(5) = True
> CODE39(13).spe(5) = False
> CODE39(14).char = "E"
> CODE39(14).bar(1) = True
> CODE39(14).spe(1) = False
> CODE39(14).bar(2) = False
> CODE39(14).spe(2) = False
> CODE39(14).bar(3) = True
> CODE39(14).spe(3) = True
> CODE39(14).bar(4) = False
> CODE39(14).spe(4) = False
> CODE39(14).bar(5) = False
> CODE39(14).spe(5) = False
> CODE39(15).char = "F"
> CODE39(15).bar(1) = False
> CODE39(15).spe(1) = False
> CODE39(15).bar(2) = True
> CODE39(15).spe(2) = False
> CODE39(15).bar(3) = True
> CODE39(15).spe(3) = True
> CODE39(15).bar(4) = False
> CODE39(15).spe(4) = False
> CODE39(15).bar(5) = False
> CODE39(15).spe(5) = False
> CODE39(16).char = "G"
> CODE39(16).bar(1) = False
> CODE39(16).spe(1) = False
> CODE39(16).bar(2) = False
> CODE39(16).spe(2) = False
> CODE39(16).bar(3) = False
> CODE39(16).spe(3) = True
> CODE39(16).bar(4) = True
> CODE39(16).spe(4) = False
> CODE39(16).bar(5) = True
> CODE39(16).spe(5) = False
> CODE39(17).char = "H"
> CODE39(17).bar(1) = True
> CODE39(17).spe(1) = False
> CODE39(17).bar(2) = False
> CODE39(17).spe(2) = False
> CODE39(17).bar(3) = False
> CODE39(17).spe(3) = True
> CODE39(17).bar(4) = True
> CODE39(17).spe(4) = False
> CODE39(17).bar(5) = False
> CODE39(17).spe(5) = False
> CODE39(18).char = "I"
> CODE39(18).bar(1) = False
> CODE39(18).spe(1) = False
> CODE39(18).bar(2) = True
> CODE39(18).spe(2) = False
> CODE39(18).bar(3) = False
> CODE39(18).spe(3) = True
> CODE39(18).bar(4) = True
> CODE39(18).spe(4) = False
> CODE39(18).bar(5) = False
> CODE39(18).spe(5) = False
> CODE39(19).char = "J"
> CODE39(19).bar(1) = False
> CODE39(19).spe(1) = False
> CODE39(19).bar(2) = False
> CODE39(19).spe(2) = False
> CODE39(19).bar(3) = True
> CODE39(19).spe(3) = True
> CODE39(19).bar(4) = True
> CODE39(19).spe(4) = False
> CODE39(19).bar(5) = False
> CODE39(19).spe(5) = False
> CODE39(20).char = "K"
> CODE39(20).bar(1) = True
> CODE39(20).spe(1) = False
> CODE39(20).bar(2) = False
> CODE39(20).spe(2) = False
> CODE39(20).bar(3) = False
> CODE39(20).spe(3) = False
> CODE39(20).bar(4) = False
> CODE39(20).spe(4) = True
> CODE39(20).bar(5) = True
> CODE39(20).spe(5) = False
> CODE39(21).char = "L"
> CODE39(21).bar(1) = False
> CODE39(21).spe(1) = False
> CODE39(21).bar(2) = True
> CODE39(21).spe(2) = False
> CODE39(21).bar(3) = False
> CODE39(21).spe(3) = False
> CODE39(21).bar(4) = False
> CODE39(21).spe(4) = True
> CODE39(21).bar(5) = True
> CODE39(21).spe(5) = False
> CODE39(22).char = "M"
> CODE39(22).bar(1) = True
> CODE39(22).spe(1) = False
> CODE39(22).bar(2) = True
> CODE39(22).spe(2) = False
> CODE39(22).bar(3) = False
> CODE39(22).spe(3) = False
> CODE39(22).bar(4) = False
> CODE39(22).spe(4) = True
> CODE39(22).bar(5) = False
> CODE39(22).spe(5) = False
> CODE39(23).char = "N"
> CODE39(23).bar(1) = False
> CODE39(23).spe(1) = False
> CODE39(23).bar(2) = False
> CODE39(23).spe(2) = False
> CODE39(23).bar(3) = True
> CODE39(23).spe(3) = False
> CODE39(23).bar(4) = False
> CODE39(23).spe(4) = True
> CODE39(23).bar(5) = True
> CODE39(23).spe(5) = False
> CODE39(24).char = "O"
> CODE39(24).bar(1) = True
> CODE39(24).spe(1) = False
> CODE39(24).bar(2) = False
> CODE39(24).spe(2) = False
> CODE39(24).bar(3) = True
> CODE39(24).spe(3) = False
> CODE39(24).bar(4) = False
> CODE39(24).spe(4) = True
> CODE39(24).bar(5) = False
> CODE39(24).spe(5) = False
> CODE39(25).char = "P"
> CODE39(25).bar(1) = False
> CODE39(25).spe(1) = False
> CODE39(25).bar(2) = True
> CODE39(25).spe(2) = False
> CODE39(25).bar(3) = True
> CODE39(25).spe(3) = False
> CODE39(25).bar(4) = False
> CODE39(25).spe(4) = True
> CODE39(25).bar(5) = False
> CODE39(25).spe(5) = False
> CODE39(26).char = "Q"
> CODE39(26).bar(1) = False
> CODE39(26).spe(1) = False
> CODE39(26).bar(2) = False
> CODE39(26).spe(2) = False
> CODE39(26).bar(3) = False
> CODE39(26).spe(3) = False
> CODE39(26).bar(4) = True
> CODE39(26).spe(4) = True
> CODE39(26).bar(5) = True
> CODE39(26).spe(5) = False
> CODE39(27).char = "R"
> CODE39(27).bar(1) = True
> CODE39(27).spe(1) = False
> CODE39(27).bar(2) = False
> CODE39(27).spe(2) = False
> CODE39(27).bar(3) = False
> CODE39(27).spe(3) = False
> CODE39(27).bar(4) = True
> CODE39(27).spe(4) = True
> CODE39(27).bar(5) = False
> CODE39(27).spe(5) = False
> CODE39(28).char = "S"
> CODE39(28).bar(1) = False
> CODE39(28).spe(1) = False
> CODE39(28).bar(2) = True
> CODE39(28).spe(2) = False
> CODE39(28).bar(3) = False
> CODE39(28).spe(3) = False
> CODE39(28).bar(4) = True
> CODE39(28).spe(4) = True
> CODE39(28).bar(5) = False
> CODE39(28).spe(5) = False
> CODE39(29).char = "T"
> CODE39(29).bar(1) = False
> CODE39(29).spe(1) = False
> CODE39(29).bar(2) = False
> CODE39(29).spe(2) = False
> CODE39(29).bar(3) = True
> CODE39(29).spe(3) = False
> CODE39(29).bar(4) = True
> CODE39(29).spe(4) = True
> CODE39(29).bar(5) = False
> CODE39(29).spe(5) = False
> CODE39(30).char = "U"
> CODE39(30).bar(1) = True
> CODE39(30).spe(1) = True
> CODE39(30).bar(2) = False
> CODE39(30).spe(2) = False
> CODE39(30).bar(3) = False
> CODE39(30).spe(3) = False
> CODE39(30).bar(4) = False
> CODE39(30).spe(4) = False
> CODE39(30).bar(5) = True
> CODE39(30).spe(5) = False
> CODE39(31).char = "V"
> CODE39(31).bar(1) = False
> CODE39(31).spe(1) = True
> CODE39(31).bar(2) = True
> CODE39(31).spe(2) = False
> CODE39(31).bar(3) = False
> CODE39(31).spe(3) = False
> CODE39(31).bar(4) = False
> CODE39(31).spe(4) = False
> CODE39(31).bar(5) = True
> CODE39(31).spe(5) = False
> CODE39(32).char = "W"
> CODE39(32).bar(1) = True
> CODE39(32).spe(1) = True
> CODE39(32).bar(2) = True
> CODE39(32).spe(2) = False
> CODE39(32).bar(3) = False
> CODE39(32).spe(3) = False
> CODE39(32).bar(4) = False
> CODE39(32).spe(4) = False
> CODE39(32).bar(5) = False
> CODE39(32).spe(5) = False
> CODE39(33).char = "X"
> CODE39(33).bar(1) = False
> CODE39(33).spe(1) = True
> CODE39(33).bar(2) = False
> CODE39(33).spe(2) = False
> CODE39(33).bar(3) = True
> CODE39(33).spe(3) = False
> CODE39(33).bar(4) = False
> CODE39(33).spe(4) = False
> CODE39(33).bar(5) = True
> CODE39(33).spe(5) = False
> CODE39(34).char = "Y"
> CODE39(34).bar(1) = True
> CODE39(34).spe(1) = True
> CODE39(34).bar(2) = False
> CODE39(34).spe(2) = False
> CODE39(34).bar(3) = True
> CODE39(34).spe(3) = False
> CODE39(34).bar(4) = False
> CODE39(34).spe(4) = False
> CODE39(34).bar(5) = False
> CODE39(34).spe(5) = False
> CODE39(35).char = "Z"
> CODE39(35).bar(1) = False
> CODE39(35).spe(1) = True
> CODE39(35).bar(2) = True
> CODE39(35).spe(2) = False
> CODE39(35).bar(3) = True
> CODE39(35).spe(3) = False
> CODE39(35).bar(4) = False
> CODE39(35).spe(4) = False
> CODE39(35).bar(5) = False
> CODE39(35).spe(5) = False
> CODE39(36).char = "-"
> CODE39(36).bar(1) = False
> CODE39(36).spe(1) = True
> CODE39(36).bar(2) = False
> CODE39(36).spe(2) = False
> CODE39(36).bar(3) = False
> CODE39(36).spe(3) = False
> CODE39(36).bar(4) = True
> CODE39(36).spe(4) = False
> CODE39(36).bar(5) = True
> CODE39(36).spe(5) = False
> CODE39(37).char = "."
> CODE39(37).bar(1) = True
> CODE39(37).spe(1) = True
> CODE39(37).bar(2) = False
> CODE39(37).spe(2) = False
> CODE39(37).bar(3) = False
> CODE39(37).spe(3) = False
> CODE39(37).bar(4) = True
> CODE39(37).spe(4) = False
> CODE39(37).bar(5) = False
> CODE39(37).spe(5) = False
> CODE39(38).char = " "
> CODE39(38).bar(1) = False
> CODE39(38).spe(1) = True
> CODE39(38).bar(2) = True
> CODE39(38).spe(2) = False
> CODE39(38).bar(3) = False
> CODE39(38).spe(3) = False
> CODE39(38).bar(4) = True
> CODE39(38).spe(4) = False
> CODE39(38).bar(5) = False
> CODE39(38).spe(5) = False
> CODE39(39).char = "$"
> CODE39(39).bar(1) = False
> CODE39(39).spe(1) = True
> CODE39(39).bar(2) = False
> CODE39(39).spe(2) = True
> CODE39(39).bar(3) = False
> CODE39(39).spe(3) = True
> CODE39(39).bar(4) = False
> CODE39(39).spe(4) = False
> CODE39(39).bar(5) = False
> CODE39(39).spe(5) = False
> CODE39(40).char = "/"
> CODE39(40).bar(1) = False
> CODE39(40).spe(1) = True
> CODE39(40).bar(2) = False
> CODE39(40).spe(2) = True
> CODE39(40).bar(3) = False
> CODE39(40).spe(3) = False
> CODE39(40).bar(4) = False
> CODE39(40).spe(4) = True
> CODE39(40).bar(5) = False
> CODE39(40).spe(5) = False
> CODE39(41).char = "+"
> CODE39(41).bar(1) = False
> CODE39(41).spe(1) = True
> CODE39(41).bar(2) = False
> CODE39(41).spe(2) = False
> CODE39(41).bar(3) = False
> CODE39(41).spe(3) = True
> CODE39(41).bar(4) = False
> CODE39(41).spe(4) = True
> CODE39(41).bar(5) = False
> CODE39(41).spe(5) = False
> CODE39(42).char = "%"
> CODE39(42).bar(1) = False
> CODE39(42).spe(1) = False
> CODE39(42).bar(2) = False
> CODE39(42).spe(2) = True
> CODE39(42).bar(3) = False
> CODE39(42).spe(3) = True
> CODE39(42).bar(4) = False
> CODE39(42).spe(4) = True
> CODE39(42).bar(5) = False
> CODE39(42).spe(5) = False
> CODE39(43).char = "*"
> CODE39(43).bar(1) = False
> CODE39(43).spe(1) = True
> CODE39(43).bar(2) = False
> CODE39(43).spe(2) = False
> CODE39(43).bar(3) = True
> CODE39(43).spe(3) = False
> CODE39(43).bar(4) = True
> CODE39(43).spe(4) = False
> CODE39(43).bar(5) = False
> CODE39(43).spe(5) = False
> End Sub
>
> Sub PaintCodeBar39(PictObj As Object, x, y, h, wf, text As String, tf)
>
> InitArray
>
> PictObj.ScaleMode = 3
> PictObj.CurrentX = x
> PictObj.CurrentY = y
>
> xpos = x
> ypos = y
>
> text = Trim(text)
>
> For j = 1 To Len(text)
> d = Mid(text, j, 1)
> N39 = AscTo39(d)
> If tf Then
> PictObj.CurrentX = xpos + (16 * wf - PictObj.TextWidth(d)) / 2
> PictObj.CurrentY = y + h
> PictObj.Print d
> End If
> 'Plot 5 bars and 4 spaces and gap
> For bs = 1 To 5
> 'Bar
> If CODE39(N39).bar(bs) Then
> w = 3 'Wide
> Else
> w = 1 'Narrow
> End If
> 'Draw line for bar
> For i = 1 To w * wf
> PictObj.Line (xpos, ypos)-(xpos, ypos + h)
> xpos = xpos + 1
> Next
> 'Space
> If CODE39(N39).spe(bs) Then
> xpos = xpos + 3 * wf 'Wide
> Else
> xpos = xpos + 1 * wf 'Narrow
> End If
> Next
>
> Next
>
> End Sub
>
>
> Function AscTo39(c)
> AscTo39 = -1
> If c >= "0" And c <= "9" Then
> AscTo39 = Val(c)
> Else
> c = UCase(c)
> If c >= "A" And c <= "Z" Then
> AscTo39 = Asc(c) - 55
> Else
> Select Case c
> Case "-"
> AscTo39 = 36
> Case "."
> AscTo39 = 37
> Case " "
> AscTo39 = 38
> Case "*"
> AscTo39 = 43
> Case "$"
> AscTo39 = 39
> Case "/"
> AscTo39 = 40
> Case "+"
> AscTo39 = 41
> Case "%"
> AscTo39 = 42
> End Select
> End If
> End If
> End Function
>
>
>
>
>
>
>
>
begin 666 3OF9.TTF
M``$````.`( ``P!@3U,O,ANVM0T``#R<````3E!#3%0?.?24```.. ```#9C
M;6%PVZ28[ ```.P```-T8W9T( E!#DH```1@````+F9P9VT"$<)A```$D ``
M`=AG;'EF5XR^O ``#G ``"J :&5A9((^6-\```9H````-FAH96$O>R33```\
M> ```"1H;71X\@<8O@``./ ```-H;&]C80`<B"@```:@```#;&UA>' "*0%:
M```\6 ```"!N86UE,1M^1P``# P```(K<&]S=(@7&"8```HH```!X7!R97"#
M!Y^8```*# ```!P````"``$``````!0``P`````!&@```08```$`````````
M`0(````"`````````````````````0``+M+3U"DJU=;7V"<KV2@M+ 0>'R A
M(B,D)2:RL[2UMK>X`P4&!P@)"@L,#0X/$!$2$Q05%A<8&1H;'!VMKJ^PL;DO
M,#$R,S0U-C<X.3H[/#T^/T!!0D-$149'2*FJJZP`;6YP<GI_A8J)BXV,CI"2
MD9.4EI67F)J<FYV?GJ.BI*6^64M,4,E?B%=2S5U1`&^!`%H``$Y>``````!3
M8P"/H6A*50"[``!49+U):6Q^Q-#*R\?(Q<:@`*C1`$W#SP``OV"ZO,%K<VIT
M<79W>'5\?0![@X2"`,#,6 ```&$`````! ):````% `0``,`! !^`/\!80%X
M`9("Q@+<(#HA(O__````( "@`5(!> &2`L8"W" 3(2+__P``````````````
M`````````````!0`T &.`:P!K &L`:P!K 'Z`?H`+@#2`-,`U `I`"H`U0#6
M`-<`V `G`"L`V0`H`"T`+ `$`!X`'P`@`"$`(@`C`"0`)0`F`+(`LP"T`+4`
MM@"W`+@``P`%``8`!P`(``D`"@`+``P`#0`.``\`$ `1`!(`$P`4`!4`%@`7
M`!@`&0`:`!L`' `=`*T`K@"O`+ `L0"Y`"\`, `Q`#(`,P`T`#4`-@`W`#@`
M.0`Z`#L`/ `]`#X`/P! `$$`0@!#`$0`10!&`$<`2 "I`*H`JP"L`$D`2@!+
M`$P`30!.`$\`4 !1`%(`4P!4`%4`5@!7`%@`60!:`%L`7 !=`%X`7P!@`&$`
M8@!C`&0`90!F`&<`: !I`&H`:P!L`&T`;@!O`' `<0!R`',`= !U`'8`=P!X
M`'D`>@![`'P`?0!^`'\`@ "!`((`@P"$`(4`A@"'`(@`B0"*`(L`C "-`(X`
MCP"0`)$`D@"3`)0`E0"6`)<`F "9`)H`FP"<`)T`G@"?`* `H0"B`*,`I "E
M`*8`IP"H`,0`T ````````````````````````````````#"`,X`T0"[`, `
MS #*`,L`````````Q0#&`+H```#'`,@`O ```+X`OP#)`````````+T`````
M````````````````````P0``````````````````````PP#/`,T````&``0`
M"@`%``\`"/_R```````4`;H!L@&1`0X`0@:/`QL"H &B`9H`I "<`$(``$ 6
M%103$A$0#PX-# L*"0@'!@4$`P(!`"RR`( `0R"*8HHC0F96+2RR*@``0U1X
ML `K6!<Y6; `*U@7/%FP`"M8L HJ6; !0Q"P`"M8%SQ9L `K6+ **EDM+"LM
M+"NP`BHM++ "*BTLL %BL `C0K$!`R5"($8@:&%DL ,E1B!H(+ $0R-A(&2Q
M0$"*5%@A(2$AL0`A'%E06"$AL0`$)2!&:+ ')45AL !16"$;L 5#.%D;8619
M4U@C+R/Y&R\CZ5FP`2LM++ !8K `(T*Q`0,E0B!&(&AA9+ #)48@:&%D4U@C
M+R/Y&R\CZ5FP`2LM++ !8K `(T*Q`04E0C_IL $K+2RP`6*P`"-"L0$#)4(_
M^; !*RTL$1(7.2TLP2TLL@`!`$,@(+ $0XI%L -#86E@1&!"+2Q%(+ #(T*R
M`0(%0W9#(T.*(V%I8+ $(T(8L LJ+2RP`"-"&$5IL$!A(+ `45@AL$$;L$!A
ML !16+!&&[!(65FP!2-"12"P`2-":; "(T*P#"H8+2P@16A$+2RZ`!$`!?_
M0BLM++(1!0!"*RTL(""Q`@.*0B.P`6%"1F@@L$!46+! 8%FP!"-"+2RQ`@-#
M$4,2%SDQ`"TL+BTLQ2TL/[ 4*BT``0````$``&.,4:A?#SSU``,0````````
M`````````````````/_C(R<,``````8``@`!``````````````!*````2@``
M`$H```#:```!:@```?H```**```#&@```ZH```0Z```$R@``!5H```7J```&
M>@``!PH```>:```(*@``"+H```E*```)V@``"FH```KZ```+B@``#!H```RJ
M```-.@``#<H```Y:```.Z@``#WH``! *```0F@``$2H``!&Z```22@``$MH`
M`!-J```3^@``%(H``!4:```5J@``%C8``!;"```73@``%]H``!AJ```8^@``
M&8H``!H:```:J@``&SH``!O*```<6@``'.H``!UZ```>"@``'IH``!\J```?
MN@``($H``"#:```A:@``(?H``"**```C&@``(ZH``"0Z```DR@``)5H``"7J
M```F>@``)PH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH`
M`">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``
M)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```G
MF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:
M```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH`
M`">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``
M)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```G
MF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``">:
M```GF@``)YH``">:```GF@``)YH``">:```GF@``)YH``"J ```J@ ``*H `
M`"J ```J@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``
M*H ``"J ```J@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``*H ``"J ```J
M@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``*H ``"J
M```J@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``*H ``"J ```J@ ``*H `
M`"J ```J@$ 2!0X!#A0*#0,4!1,"%!0/#3 `C;@#/(4=*RL``@```````/^<
M`#(```````````````````````````#:`````0`"`"0`$P`E`"8`)P`H`"D`
M*@`K`"P`+0`N`"\`, `Q`#(`,P`T`#4`-@`W`#@`.0`Z`#L`/ `]`!0`%0`6
M`!<`& `9`!H`&P`<``T`$ `'``@`#@`2`!$``P!$`$4`1@!'`$@`20!*`$L`
M3 !-`$X`3P!0`%$`4@!3`%0`50!6`%<`6 !9`%H`6P!<`%T`K "C`(0`A0"]
M`)8`Z "&`(X`BP"=`*D`I $"`(H`V@"#`),`\@#S`(T`EP"(`,,`W@#Q`)X`
MJ@#U`/0`]@"B`*T`R0#'`*X`8@!C`) `9 #+`&4`R #*`,\`S #-`,X`Z0!F
M`-,`T #1`*\`9P#P`)$`U@#4`-4`: #K`.T`B0!J`&D`:P!M`&P`;@"@`&\`
M<0!P`'(`<P!U`'0`=@!W`.H`> !Z`'D`>P!]`'P`N "A`'\`?@" `($`[ #N
M`+H`7@!?`& `80`^`#\`0 !!`$(`'0`>`!\`( `A`"(`(P!#`,0`I@#%`*L`
M@@#"`-@`Q@#D`+X`L "V`+<`M "U`(<`LP"R`-D`C #E`+\`L0"[``0`!0`&
M``D`"@`+``P`#PIS;V9T:'EP:&5N````````$ #&``$`````````, ````$`
M``````$`#@`P``$```````(`!P`^``$```````,`&0!%``$```````0`#@!>
M``$```````4```!L``$```````8`"P!L``$```````<```!W``,```0)````
M8 !W``,```0)``$`' #7``,```0)``(`#@#S``,```0)``,`,@$!``,```0)
M``0`' $S``,```0)``4```%/``,```0)``8`%@%/``,```0)``<```%E*&,I
M(#$Y.3,L($-!24P@4WES=&5M<R!,=&0N($%L;"!R:6=H=',@<F5S97)V960N
M,R!O9B Y($)A<F-O9&5296=U;&%R1F]N=$UO;F=E<CHS(&]F(#D@0F%R8V]D
M93,@;V8@.2!"87)C;V1E,T]F.4)A<F-O9&4`* !C`"D`( `Q`#D`.0`S`"P`
M( !#`$$`20!,`" `4P!Y`',`= !E`&T`<P`@`$P`= !D`"X`( !!`&P`; `@
M`'(`:0!G`&@`= !S`" `<@!E`',`90!R`'8`90!D`"X`,P`@`&\`9@`@`#D`
M( !"`&$`<@!C`&\`9 !E`%(`90!G`'4`; !A`'(`1@!O`&X`= !-`&\`;@!G
M`&4`<@`Z`#,`( !O`&8`( `Y`" `0@!A`'(`8P!O`&0`90`S`" `;P!F`" `
M.0`@`$(`80!R`&,`;P!D`&4`,P!/`&8`.0!"`&$`<@!C`&\`9 !E`````0``
M``" 2 D`````````````,R!O9B Y($)A<F-O9&4``/____\W___^````````
M``"&``````("````"@`*```#``<`(D ;#@(&``8$#@`'``<"!!8#!0`%%@<!
M``8""0\#*S$`*S A$2$1)Q$A$0(`" !"^(0*`/8`0@E\]H0`!0!2```(]@P`
M``,`!P`+``\`$P`Z0"X1#0D%`043$P</!PL'!P<#!Q,*" `%%!(0``84#@P`
M!A0&! `&$P(```8%%0\#*S$`/S\_/S\J,!,A$2$!,Q$C`2$1(0$S$2,!,Q$C
M4@&:_F8"/:2D!,T!FOYF_'NDI (]I*0,`/0`# #T``P`] `,`/0`# #T````
M!0!2```(]@P```,`!P`+``\`$P`Z0"X1#0D%`043$P</!PL'!P<#!Q0*" `%
M$Q(0``83#@P`!A0&! `&% (```8%%0\#*S$`/S\_/S\J,!,S$2,!,Q$C`3,1
M(P$A$2$!(1$A4J2D`4BCHP:XI*3[A0&:_F8"/0&:_F8,`/0`# #T``P`] `,
M`/0`# #T````!0!2```(]@P```,`!P`+``\`$P`Z0"X1#0D%`043$P</!PL'
M!P<#!Q,*" `%%!(0``84#@P`!A,&! `&% (```8%%0\#*S$`/S\_/S\J,!,S
M$2,!(1$A`2$1(0$S$2,!,Q$C4J2D`4@!F?YG!<(!FOYF_'NDI (]I*0,`/0`
M# #T``P`] `,`/0`# #T````!0!2```(]@P```,`!P`+``\`$P`Z0"X1#0D%
M`043$P</!PL'!P<#!Q0*" `%%!(0``84#@P`!A,&! `&$P(```8%%0\#*S$`
M/S\_/S\J,!,A$2$!(1$A`3,1(P$S$2,!,Q$C4@&:_F8"/0&:_F8%PZ2D_'ND
MI (]I*0,`/0`# #T``P`] `,`/0`# #T````!0!2```(]@P```,`!P`+``\`
M$P`Z0"X1#0D%`043$P</!PL'!P<#!Q,*" `%%!(0``83#@P`!A0&! `&% (`
M``8%%0\#*S$`/S\_/S\J,!,S$2,!,Q$C`2$1(0$A$2$!,Q$C4J2D`4BCHP7"
M`9K^9ON%`9K^9@,SI*0,`/0`# #T``P`] `,`/0`# #T````!0!2```(]@P`
M``,`!P`+``\`$P`Z0"X1#0D%`043$P</!PL'!P<#!Q4*" `%%!(0``82#@P`
M!A0&! `&$P(```8%%0\#*S$`/S\_/S\J,!,A$2$!,Q$C`3,1(P$A$2$!,Q$C
M4@&:_F8"/:2D!<N<G/M]`:+^7@,[I*0,`/0`# #T``P`] `,`/0`# #T````
M!0!2```(]@P```,`!P`+``\`$P`Z0"X1#0D%`043$P</!PL'!P<#!Q0*" `%
M%!(0``83#@P`!A,&! `&% (```8%%0\#*S$`/S\_/S\J,!,S$2,!(1$A`3,1
M(P$A$2$!,Q$C4J2D`4@!F?YG!KBDI/N%`9K^9@,SI*0,`/0`# #T``P`] `,
M`/0`# #T````!0!2```(]@P```,`!P`+``\`$P`Z0"X1#0D%`043$P</!PL'
M!P<#!Q,*" `%$Q(0``84#@P`!A0&! `&% (```8%%0\#*S$`/S\_/S\J,!,S
M$2,!,Q$C`2$1(0$S$2,!(1$A4J2D`4BCHP7"`9K^9ON%I*0"/@&9_F<,`/0`
M# #T``P`] `,`/0`# #T````!0!2```(]@P```,`!P`+``\`$P`Z0"X1#0D%
M`043$P</!PL'!P<#!Q0*" `%$Q(0``84#@P`!A0&! `&$P(```8%%0\#*S$`
M/S\_/S\J,!,A$2$!,Q$C`3,1(P$S$2,!(1$A4@&:_F8"/:2D!<.DI/N%I*0"
M/0&:_F8,`/0`# #T``P`] `,`/0`# #T````!0!2```(]@P```,`!P`+``\`
M$P`Z0"X1#0D%`043$P</!PL'!P<#!Q0*" `%$Q(0``84#@P`!A,&! `&% (`
M``8%%0\#*S$`/S\_/S\J,!,S$2,!(1$A`3,1(P$S$2,!(1$A4J2D`4@!F?YG
M!KBDI/N%I*0"/0&:_F8,`/0`# #T``P`] `,`/0`# #T````!0!2```(]@P`
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
MI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I
M+A$-"04!!1,3!P\'"P<'!P,'% H(``44$A `!A0.# `&% 8$``84`@``!@45
M#P,K,0`_/S\_/RHP$S,1(P$S$2,!,Q$C`3,1(P$S$2-2I*0!2*.C!KBDI/N%
MI*0"/:2D# #T``P`] `,`/0`# #T``P`] ````4`4@``"/8,```#``<`"P`/
M`!,`.D N$0T)!0$%$Q,'#P<+!P<'`P<4"@@`!102$ `&% X,``84!@0`!A0"
M```&!14/`RLQ`#\_/S\_*C 3,Q$C`3,1(P$S$2,!,Q$C`3,1(U*DI (]I*0%
MPZ2D^X6DI (]I*0,`/0`# #T``P`] `,`/0`# #T````!0!2```(]@P```,`
M!P`+``\`$P`Z0"X1#0D%`043$P</!PL'!P<#!Q0*" `%%!(0``84#@P`!A0&
M! `&% (```8%%0\#*S$`/S\_/S\J,!,S$2,!,Q$C`3,1(P$S$2,!,Q$C4J2D
M`CVDI 7#I*3\>Z2D`4>DI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV
M# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``43$A `!A0.
M# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP$R$1(0$S$2,!,Q$C`3,1(P$A
M$2%2`9K^9@,SI*0$S:2D_'NDI %'`9K^9@P`] `,`/0`# #T``P`] `,`/0`
M```%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(
M``43$A `!A0.# `&$P8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$A$2$!
M,Q$C`3,1(P$A$2%2I*0"/0&:_F8%PZ2D_'NDI %'`9K^9@P`] `,`/0`# #T
M``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'
M"P<'!P,'$PH(``44$A `!A0.# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP
M$R$1(0$S$2,!(1$A`3,1(P$S$2-2`9K^9@(]I*0$S0&:_F;\>Z2D`CVDI P`
M] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-
M"04!!1,3!P\'"P<'!P,'$PH(``44$A `!A0.# `&$P8$``84`@``!@45#P,K
M,0`_/S\_/RHP$S,1(P$A$2$!(1$A`3,1(P$S$2-2I*0!2 &9_F<%P@&:_F;\
M>Z2D`CVDI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`
M#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``44$A `!A0.# `&$P8$``83
M`@``!@45#P,K,0`_/S\_/RHP$R$1(0$A$2$!,Q$C`3,1(P$S$2-2`9K^9@(]
M`9K^9@7#I*3\>Z2D`CVDI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV
M# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'$PH(``44$A `!A,.
M# `&% 8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$S$2,!(1$A`2$1(0$S
M$2-2I*0!2*.C!<(!FOYF^X4!FOYF`S.DI P`] `,`/0`# #T``P`] `,`/0`
M```%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'%0H(
M``44$A `!A(.# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP$R$1(0$S$2,!
M,Q$C`2$1(0$S$2-2`9K^9@(]I*0%RYR<^WT!HOY>`SNDI P`] `,`/0`# #T
M``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'
M"P<'!P,'% H(``44$A `!A,.# `&$P8$``84`@``!@45#P,K,0`_/S\_/RHP
M$S,1(P$A$2$!,Q$C`2$1(0$S$2-2I*0!2 &9_F<&N*2D^X4!FOYF`S.DI P`
M] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-
M"04!!1,3!P\'"P<'!P,'$PH(``43$A `!A0.# `&% 8$``84`@``!@45#P,K
M,0`_/S\_/RHP$S,1(P$S$2,!(1$A`3,1(P$A$2%2I*0!2*.C!<(!FOYF^X6D
MI (^`9G^9PP`] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`
M#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``43$A `!A0.# `&% 8$``83
M`@``!@45#P,K,0`_/S\_/RHP$R$1(0$S$2,!,Q$C`3,1(P$A$2%2`9K^9@(]
MI*0%PZ2D^X6DI (]`9K^9@P`] `,`/0`# #T``P`] `,`/0````%`%(```CV
M# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``43$A `!A0.
M# `&$P8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$A$2$!,Q$C`3,1(P$A
M$2%2I*0!2 &9_F<&N*2D^X6DI (]`9K^9@P`] `,`/0`# #T``P`] `,`/0`
M```%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(
M``43$A `!A,.# `&% 8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$S$2,!
M,Q$C`2$1(0$A$2%2I*0!2*.C!KBDI/J/`9K^9@,S`9K^9@P`] `,`/0`# #T
M``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'
M"P<'!P,'$PH(``44$A `!A0.# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP
M$R$1(0$S$2,!(1$A`3,1(P$S$2-2`9K^9@(]I*0$S0&:_F;\>Z2D`4BDI P`
M] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-
M"04!!1,3!P\'"P<'!P,'$PH(``44$A `!A0.# `&$P8$``84`@``!@45#P,K
M,0`_/S\_/RHP$S,1(P$A$2$!(1$A`3,1(P$S$2-2I*0!2 &9_F<%P@&:_F;\
M>Z2D`4BDI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`
M#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``44$A `!A0.# `&$P8$``83
M`@``!@45#P,K,0`_/S\_/RHP$R$1(0$A$2$!,Q$C`3,1(P$S$2-2`9K^9@(]
M`9K^9@7#I*3\>Z2D`4>DI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV
M# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'$PH(``44$A `!A,.
M# `&% 8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$S$2,!(1$A`2$1(0$S
M$2-2I*0!2*.C!<(!FOYF^X4!FOYF`CZDI P`] `,`/0`# #T``P`] `,`/0`
M```%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'%0H(
M``44$A `!A(.# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP$R$1(0$S$2,!
M,Q$C`2$1(0$S$2-2`9K^9@(]I*0%RYR<^WT!HOY>`D:DI P`] `,`/0`# #T
M``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'
M"P<'!P,'% H(``44$A `!A,.# `&$P8$``84`@``!@45#P,K,0`_/S\_/RHP
M$S,1(P$A$2$!,Q$C`2$1(0$S$2-2I*0!2 &9_F<&N*2D^X4!FOYF`CVDI P`
M] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-
M"04!!1,3!P\'"P<'!P,'$PH(``43$A `!A0.# `&% 8$``84`@``!@45#P,K
M,0`_/S\_/RHP$S,1(P$S$2,!(1$A`3,1(P$A$2%2I*0!2*.C!<(!FOYF^X6D
MI %(`9K^9@P`] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`
M#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``43$A `!A0.# `&% 8$``83
M`@``!@45#P,K,0`_/S\_/RHP$R$1(0$S$2,!,Q$C`3,1(P$A$2%2`9K^9@(]
MI*0%PZ2D^X6DI %(`9G^9PP`] `,`/0`# #T``P`] `,`/0````%`%(```CV
M# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``43$A `!A0.
M# `&$P8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$A$2$!,Q$C`3,1(P$A
M$2%2I*0!2 &9_F<&N*2D^X6DI %(`9G^9PP`] `,`/0`# #T``P`] `,`/0`
M```%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(
M``43$A `!A,.# `&% 8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$S$2,!
M,Q$C`2$1(0$A$2%2I*0!2*.C!KBDI/J/`9K^9@(^`9G^9PP`] `,`/0`# #T
M``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'
M"P<'!P,'$PH(``44$A `!A0.# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP
M$R$1(0$S$2,!(1$A`3,1(P$S$2-2`9K^9@,SI*0#UP&:_F;]<:2D`4>DI P`
M] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-
M"04!!1,3!P\'"P<'!P,'$PH(``44$A `!A0.# `&$P8$``84`@``!@45#P,K
M,0`_/S\_/RHP$S,1(P$A$2$!(1$A`3,1(P$S$2-2I*0"/0&:_F8$S0&:_F;]
M<:2D`4>DI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV# ```P`'``L`
M#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'% H(``44$A `!A0.# `&$P8$``83
M`@``!@45#P,K,0`_/S\_/RHP$R$1(0$A$2$!,Q$C`3,1(P$S$2-2`9K^9@,S
M`9K^9@3-I*3]<:.C`4>DI P`] `,`/0`# #T``P`] `,`/0````%`%(```CV
M# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'$PH(``44$A `!A,.
M# `&% 8$``84`@``!@45#P,K,0`_/S\_/RHP$S,1(P$S$2,!(1$A`2$1(0$S
M$2-2I*0"/:2D!,T!FOYF_'L!FOYF`CVDI P`] `,`/0`# #T``P`] `,`/0`
M```%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'"P<'!P,'%0H(
M``44$A `!A(.# `&% 8$``83`@``!@45#P,K,0`_/S\_/RHP$R$1(0$S$2,!
M,Q$C`2$1(0$S$2-2`9K^9@,SI*0$U9R<_',!HOY>`D6DI P`] `,`/0`# #T
M``P`] `,`/0````%`%(```CV# ```P`'``L`#P`3`#I +A$-"04!!1,3!P\'
M"P<'!P,'% H(``44$A `!A,.# `&$P8$``84`@``!@45#P,K,0`_/S\_/RHP
M$S,1(P$A$2$!,Q$C`2$1(0$S$2-2I*0"/0&:_F8%PZ2D_'L!F?YG`CVDI P`
M] `,`/0`# #T``P`] `,`/0````*`%+_XR,G"U@`$P`G`% `4P!K`(<`E@"F
M`+8`P0"/0(.EH0(A48)L33$)!3.$`@FQK:.,4A\&P+Z\N;6SKZNIFYF3>G=@
M2QX:$@L<(04&% $"#%$S$ 9P.@H'!(0*# D!!P,$;@=4!ST'*0>]M[*LJZ>?
MEY"(;%-12D8]/#@M*1\4"0`8$GEW<&YK8 9U9PEZ`1" =1 %7U0H`Q!G6P0&
M`L,/`RLK*S\_/S\K*C 3(102%Q8$,R E`P0A("4D)R8#`A$0$Q(W-B4D(2 %
M$R0A(@0'!@(5`2$V-S8U-"<F)P,A`P8'!A44%Q87(38W-C<!-C<V-30G)B<A
M`1<>`1<)`0$!-C<V/0$1-30G)B<A!@<&'0$1%107%A<!`R$V-S8]`1$U-"<F
M)R$&!P8=`1$6%Q8S,C<V$Q0'!B,B)R8U-#8S,A<6!S0G)B,B!P85%!<6,S(W
M-B<4!P8C%R,G(Q4C$3,R%Q8'-"<F*P$5,S(W-E(#&XET>0$1O &%`4P=_I;^
MV_ZC_M+^Q.7A>WM[>^'E`3P!1 %'`3L!5!W^M/Y[N_[X@WB%$F;ZZ58M+@D,
M$(S\K&89&!T9&&O\BW<Y.D$"4B4A&"T\.P0A`R<(6E+%^EK^V?[="#YJ*2$Q
M3CD$AVX=*3%.-0B#I/BL7BTI*5(Y!(=\%R5><VZ(O(N,>E96=G=65JQ[=E=1
M)$I.9F=*24E&:V9.2EL<'3%F/5Y*,9L^)1PQ%!$U7EHM&1@%GMO^:H6&C-W]
MIC9:7\3%`2,!( $V`2X!* $>Q<E>6CG]IN&)BH+^:MWZ8D8U.5X^(24@`:+^
MW45?7C5"*4%2<VIGN :X:UY:-5(^3R/W:1'MM+D$W0-,_+3[%TYS=IR/!DJ+
MM6*:)D]Q@)>+^;:/MUNA( ):_:9#?I9\CP9*B\)=DB9?67.PB_D_+0P0*2D(
M`'M66EI6?W:M5E=V9DY*3DIF;T9-14[!,A@=FYN;`6 5%#48$0QS# D,``(`
M```````````)2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()
M2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(
M`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`
M4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2
M"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()
M2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(`%()2 !2"4@`4@E(
M`%()2 !2"4@`4@E(`%()2 !2"4@```E(```)2 ``"4@```E(```)2 ``"4@`
M``E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``
M"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)
M2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(
M```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@`
M``E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``
M"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)
M2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(
M```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```CUP!2"4@`
M``E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``
M"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)
M2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(
M```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@```E(```)2 ``"4@`
M``E(```)2 ``"4@````!````V@#"``H```````(`# `&`!8```$>`(\`! `!
M``$```P`_\\``"/7`%(`4B,G``$```````````````````#:```)2 &0``4`
M``,S`N$``````S,"X0``````S 0D```$`G(`````````````````````````
:````````````0 `@)FL,`/_C```,```=````
`
end