tufte/0000755000176200001440000000000013465724123011410 5ustar liggesuserstufte/inst/0000755000176200001440000000000013465111006012353 5ustar liggesuserstufte/inst/NEWS.Rd0000644000176200001440000000043313465111006013416 0ustar liggesusers\name{NEWS} \title{News for Package 'tufte'} \section{CHANGES IN tufte VERSION 999.999}{ \itemize{ \item This NEWS file is only a placeholder. The version 999.999 does not really exist. Please read the NEWS on Github: \url{https://github.com/rstudio/tufte/releases} } } tufte/inst/rmarkdown/0000755000176200001440000000000013357673764014407 5ustar liggesuserstufte/inst/rmarkdown/templates/0000755000176200001440000000000013357673764016405 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_ctex/0000755000176200001440000000000013357673764020557 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_ctex/template.yaml0000644000176200001440000000027312655214250023235 0ustar liggesusersname: Tufte Handout (HTML or PDF in Chinese) description: > A Chinese template for creating a handout according to the style of Edward R. Tufte and Richard Feynman. create_dir: false tufte/inst/rmarkdown/templates/tufte_ctex/skeleton/0000755000176200001440000000000013357673764022403 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_ctex/skeleton/skeleton.Rmd0000644000176200001440000001434113221101537024644 0ustar liggesusers--- title: "Tufte样式" subtitle: "一个R Markdown实现" author: "JJ Allaire,谢益辉" date: "`r Sys.Date()`" output: tufte::tufte_html: default tufte::tufte_book: citation_package: natbib latex_engine: xelatex tufte::tufte_handout: citation_package: natbib latex_engine: xelatex ctex: yes biblio-title: 参考文献 bibliography: skeleton.bib link-citations: yes --- ```{r setup, include=FALSE} library(tufte) # tufte版本变化之后更新knitr缓存 knitr::opts_chunk$set(tidy = FALSE, cache.extra = packageVersion('tufte')) options(htmltools.dir.version = FALSE) ``` # 引言 Tufte样式在Edward Tufte的书以及物理学家费曼的教科书很常见,它的一个显著特点就是边栏的使用。例如脚注和边栏注解,以及放在边栏里的小型插图。Tufte样式在LaTeX和HTML/CSS中都有实现^[参见Github库[tufte-latex](https://github.com/tufte-latex/tufte-latex)和 [tufte-css](https://github.com/edwardtufte/tufte-css)]。我们将这两种实现都纳入了[**tufte**包](https://github.com/rstudio/tufte)。若需要LaTeX/PDF输出,使用输出格式`tufte_handout`即可,类似地,`tufte_book`可以用来输出PDF书,`tufte_html`生成HTML网页。这些输出格式可以在YAML元数据中指定,或者传给`rmarkdown::render()`函数。若对**rmarkdown**包不熟悉,可参见 @R-rmarkdown。 ```yaml --- title: "一个Tufte样式示例" author: "张三" ctex: yes output: tufte::tufte_handout: latex_engine: xelatex tufte::tufte_html: default --- ``` # 章节标题 Tufte样式不主张太深的章节目录,一般仅仅使用一级标题(Markdown中用一个井号`#`)和二级标题(两个井号)。 # 插图 ## 边栏插图 插图在Tufte的书中非常常见,我们可以使用三种插图:边栏图、全宽图、主栏图。先说边栏图:使用**knitr**代码段选项`fig.margin = TRUE`即可将图形放置在边栏中,如: ```{r fig-margin, fig.margin = TRUE, fig.cap = "MPG与horsepower两个变量的散点图;颜色代表自动挡或手动挡。", fig.width=3.5, fig.height=3.5, cache=TRUE, message=FALSE} library(ggplot2) mtcars2 <- mtcars mtcars2$am <- factor( mtcars$am, labels = c('automatic', 'manual') ) ggplot(mtcars2, aes(hp, mpg, color = am)) + geom_point() + geom_smooth() + theme(legend.position = 'bottom') ``` 注意我们使用代码段选项`fig.cap`设定了图的标题。当然我们也可以设置图的长宽。 ## 任意边栏内容 事实上我们可以在边栏中放置除了图之外的内容,此时我们不再使用```` ```{r} ````写代码段,而是用```` ```{marginfigure} ````。例如右边有一个微积分第一基本定理。 ```{marginfigure} 根据微积分第一基本定理我们知道,对$x \in [a, b]$有 $$\frac{d}{dx}\left( \int_{a}^{x} f(u)\,du\right)=f(x).$$ ``` 为了文本内容的可移植性(同样的内容可以生成HTML和LaTeX文档),我们建议边栏中不要放置太复杂的内容,简单的加粗、倾斜都没有问题,但不建议在边栏中使用列表、参考文献等内容。 ## 全宽插图 代码段选项`fig.fullwidth = TRUE`可以使得一幅图占用全部页宽,例如: ```{r fig-fullwidth, fig.width = 10, fig.height = 2, fig.fullwidth = TRUE, fig.cap = "一幅全宽图形。", warning=FALSE, cache=TRUE, message=FALSE} ggplot(diamonds, aes(carat, price)) + geom_smooth() + facet_grid(~ cut) ``` 其它和图形有关的代码段选项仍然可以使用,一般情况下,全宽图形的`fig.width`选项会较大,而`fig.height`相对较小。上图的尺寸是$10 \times 2$英寸. ## 主栏插图 默认情况下,R代码段生成的图形放置在主栏里,其标题放在边栏中,例如: ```{r fig-main, fig.cap = "一幅主栏插图。", cache=TRUE} ggplot(diamonds, aes(cut, price)) + geom_boxplot() ``` # 边栏附注 Tufte样式的文档中,脚注会被自动转换为边栏附注^[这里本来是一个脚注]。脚注是带编号的,另一种边栏附注是不带编号的,这种附注需要用**tufte**包中的R函数`margin_note()`在**knitr**行内代码中生成。`r margin_note("这是一个边栏附注,它没有编号。")`与边栏插图一样,边栏附注中我们也不建议写太复杂的内容,通常只是一句简单的文字。 # 参考文献 HTML输出中,参考文献默认也放在边栏中。例如这里我们可以引用[@R-base]。这个功能需要在YAML元数据中设置`link-citations: yes`,而且`pandoc-citeproc`程序的版本应该至少是0.7.2。若这两个条件不满足,参考文献会被放在文档末尾。 # 表格 我们可以用**knitr**包中的`kable()`函数生成简单的表格。HTML输出中表格的标题也会被放在边栏中。 ```{r} knitr::kable( mtcars[1:6, 1:6], caption = 'mtcars数据的前几行。' ) ``` # 引文 Markdown语法使用`>`来生成引文,如果需要在引文下面用行内代码以及`quote_footer()`函数加上一句引文来源,例如: > "多亏了我的律师,要不然我现在还在牢里。两个人一起挖确实比一个人快很多啊。" > > `r tufte::quote_footer('--- Joe Martin')` 如果不用这个函数的话,引文底部的话只是一个普通段落: > "伟人论道,凡人论事,小人论酒。" > > --- Fran Lebowitz # 响应式页面 这个包生成的HTML页面是响应式的:如果页宽小于760像素,边栏内容会自动隐藏。此时我们可以点击脚注的序号显示它,其它边栏附注则可以通过点击圆圈加号的符号显示。 # 结语 希望诸位喜欢R Markdown的超级简洁性,同时我们感谢Tufte-CSS和Tufte-LaTeX项目的作者们,没有他们的辛勤劳动,就没有这个**tufte**包。这份文档的R Markdown源文档可以在[Github上找到](https://github.com/rstudio/tufte/raw/master/inst/rmarkdown/templates/tufte_ctex/skeleton/skeleton.Rmd),或者直接使用RStudio菜单`File -> New File -> R Markdown -> From Template`新建一个文档,或直接从R里面打开这个Rmd文件: ```{r eval=FALSE} file.edit( tufte:::template_resources( 'tufte_ctex', '..', 'skeleton', 'skeleton.Rmd' ) ) ``` ```{r bib, include=FALSE} # create a bib file for the R packages used in this document knitr::write_bib(c('base', 'rmarkdown'), file = 'skeleton.bib') ``` tufte/inst/rmarkdown/templates/tufte_html/0000755000176200001440000000000013357673764020560 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_html/resources/0000755000176200001440000000000013357673764022572 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_html/resources/tufte-background.css0000644000176200001440000000004612775025373026536 0ustar liggesusersbody { background-color: #fffff8; } tufte/inst/rmarkdown/templates/tufte_html/resources/tufte.css0000644000176200001440000001641313030560727024416 0ustar liggesusers/* Import ET Book styles adapted from https://github.com/edwardtufte/et-book/blob/gh-pages/et-book.css */ @charset "UTF-8"; /* Tufte CSS styles */ html { font-size: 15px; } body { width: 87.5%; margin-left: auto; margin-right: auto; padding-left: 12.5%; color: #111; max-width: 1400px; counter-reset: sidenote-counter; } h1.title { font-weight: 400; font-style: normal; margin-top: 4rem; margin-bottom: 1.5rem; font-size: 3.2rem; line-height: 1; } h1 { font-weight: 400; margin-top: 2.1rem; margin-bottom: 0; font-size: 2.2rem; line-height: 1; } h2 { font-weight: 400; font-size: 1.7rem; margin-top: 2rem; margin-bottom: 0; line-height: 1; } h3.subtitle { font-weight: 400; margin-top: 1rem; margin-bottom: 1rem; font-size: 1.8rem; display: block; line-height: 1; } h4.author, h4.date { font-size: 1.4rem; font-weight: 400; margin: 1rem auto; line-height: 1; } .danger { color: red; } article { position: relative; padding: 5rem 0rem; } section { padding-top: 1rem; padding-bottom: 1rem; } p, ol, ul { font-size: 1.4rem; } p { line-height: 2rem; margin-top: 1.4rem; margin-bottom: 1.4rem; padding-right: 0; vertical-align: baseline; } blockquote { font-size: 1.4rem; } blockquote p { width: 50%; } blockquote footer { width: 50%; font-size: 1.1rem; text-align: right; } ol, ul { width: 45%; -webkit-padding-start: 5%; -webkit-padding-end: 5%; } li { padding: 0.5rem 0; } table { border-top: 2px solid #111; border-bottom: 2px solid #111; font-size: 1.1rem; } th { border-bottom: 1px solid #111; } div.figure { padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; max-width: 55%; -webkit-margin-start: 0; -webkit-margin-end: 0; margin: 0 0 3em 0; } /* Links: replicate underline that clears descenders */ a:link, a:visited { color: inherit; } a:link { text-decoration: none; background: -webkit-linear-gradient(#fffff8, #fffff8), -webkit-linear-gradient(#fffff8, #fffff8), -webkit-linear-gradient(#333, #333); background: linear-gradient(#fffff8, #fffff8), linear-gradient(#fffff8, #fffff8), linear-gradient(#333, #333); -webkit-background-size: 0.05em 1px, 0.05em 1px, 1px 1px; -moz-background-size: 0.05em 1px, 0.05em 1px, 1px 1px; background-size: 0.05em 1px, 0.05em 1px, 1px 1px; background-repeat: no-repeat, no-repeat, repeat-x; text-shadow: 0.03em 0 #fffff8, -0.03em 0 #fffff8, 0 0.03em #fffff8, 0 -0.03em #fffff8, 0.06em 0 #fffff8, -0.06em 0 #fffff8, 0.09em 0 #fffff8, -0.09em 0 #fffff8, 0.12em 0 #fffff8, -0.12em 0 #fffff8, 0.15em 0 #fffff8, -0.15em 0 #fffff8; background-position: 0% 93%, 100% 93%, 0% 93%; } @media screen and (-webkit-min-device-pixel-ratio: 0) { a:link { background-position-y: 87%, 87%, 87%; } } a:link::selection { text-shadow: 0.03em 0 #b4d5fe, -0.03em 0 #b4d5fe, 0 0.03em #b4d5fe, 0 -0.03em #b4d5fe, 0.06em 0 #b4d5fe, -0.06em 0 #b4d5fe, 0.09em 0 #b4d5fe, -0.09em 0 #b4d5fe, 0.12em 0 #b4d5fe, -0.12em 0 #b4d5fe, 0.15em 0 #b4d5fe, -0.15em 0 #b4d5fe; background: #b4d5fe; } a:link::-moz-selection { text-shadow: 0.03em 0 #b4d5fe, -0.03em 0 #b4d5fe, 0 0.03em #b4d5fe, 0 -0.03em #b4d5fe, 0.06em 0 #b4d5fe, -0.06em 0 #b4d5fe, 0.09em 0 #b4d5fe, -0.09em 0 #b4d5fe, 0.12em 0 #b4d5fe, -0.12em 0 #b4d5fe, 0.15em 0 #b4d5fe, -0.15em 0 #b4d5fe; background: #b4d5fe; } /* Sidenotes, margin notes, figures, captions */ img {max-width: 100%;} .marginnote img { display: block; } .sidenote, .marginnote { float: right; clear: right; margin-right: -60%; width: 50%; margin-top: 0; margin-bottom: 1rem; font-size: 1.1rem; line-height: 1.3; vertical-align: baseline; position: relative; } .sidenote-number { position: relative; vertical-align: baseline; } .sidenote-number { font-size: 1rem; top: -0.5rem; left: 0.1rem; } p, footer, table, hr { width: 55%; } hr { margin-left: 0; } table table, li p, li pre { width: auto; } li p, li pre {margin-top: auto; } div.fullwidth, table.fullwidth { max-width: 90%; } #TOC, h1.title { max-width: 90%; } #TOC ol, #TOC ul { width: auto; } div.fullwidth p.caption { margin-right: 0; max-width: 33%; } p.caption { text-align: left; } @media screen and (max-width: 760px) { p, footer, ol, ul, table, hr { width: 90%; } pre { width: 87.5%; } ul { width: 85%; } figure { max-width: 90%; } div.fullwidth p.caption { max-width: none; } blockquote p, blockquote footer { width: 90%; }} .sans { font-family: "Gill Sans", "Gill Sans MT", Calibri, sans-serif; letter-spacing: .03em; } code { font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 1.125rem; line-height: 1.6; } pre code { font-size: 1rem; } p code { white-space: inherit; } h1 code, h2 code, h3 code { font-size: 0.80em; } .marginnote code, .sidenote code { font-size: 1rem; } pre { width: 52.5%; overflow-x: auto; } .fullwidth { max-width: 90%; clear:both; } span.newthought { font-variant: small-caps; font-size: 1.2em; } input.margin-toggle { display: none; } label.sidenote-number { display: inline; } label.margin-toggle:not(.sidenote-number) { display: none; } @media (max-width: 760px) { label.margin-toggle:not(.sidenote-number) { display: inline; } .sidenote, .marginnote { display: none; } .shownote, .margin-toggle:checked + .sidenote, .margin-toggle:checked + .marginnote { display: block; float: left; left: 1rem; clear: both; width: 95%; margin: 1rem 2.5%; vertical-align: baseline; position: relative; } label { cursor: pointer; } div.figure { max-width: 90%; } pre { width: 90%; padding: 0; } } tufte/inst/rmarkdown/templates/tufte_html/resources/tufte-italics.css0000644000176200001440000000005412775025373026046 0ustar liggesusersh1, h2, h3.subtitle { font-style: italic; } tufte/inst/rmarkdown/templates/tufte_html/resources/tufte-fonts.css0000644000176200001440000000146312775025373025554 0ustar liggesusers@font-face { font-family: "et-book"; src: url("et-book/roman-line-figures.ttf") format("truetype"); font-weight: normal; font-style: normal } @font-face { font-family: "et-book"; src: url("et-book/display-italic-old-style-figures.ttf") format("truetype"); font-weight: normal; font-style: italic } @font-face { font-family: "et-book"; src: url("et-book/bold-line-figures.ttf") format("truetype"); font-weight: bold; font-style: normal } @font-face { font-family: "et-book-roman-old-style"; src: url("et-book/roman-old-style-figures.ttf") format("truetype"); font-weight: normal; font-style: normal; } body { font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif; } .numeral, .sidenote-number { font-family: et-book-roman-old-style; } tufte/inst/rmarkdown/templates/tufte_html/resources/et-book/0000755000176200001440000000000013357673764024132 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_html/resources/et-book/bold-line-figures.ttf0000755000176200001440000021240012647360110030135 0ustar liggesusersFFTMjGDEF8 OS/2fG'{XVcmapcvt  2fpgmS/egasp@glyfB Hheadp6hhea8% 0$hmtx 8 Tloca[ maxp name/JDpostz;,prepϗwebf|1S=D*sD,833d@JPfEd ffx0  ~Sx    " & / : _ !"% Rx    " & / 9 _ !"%nJ5  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`aqdehvojuirfkzcml{bַwpxV3nhw ~D,KLPXJvY#?+X=YKLPX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-DdU./<2<2/<2<23!%!!D $hUD 1++/ְ2 2 + 901&>;2'4632"'%I-'E >CA2/ECc!(#2"b #b@@bAdP/+/ֱ +  +++ + + $90142&'&%42&'.{=H 7K1f;F9S3͘M@99!'y!M@Aq'#w?T +@33+$:22}/Sfh333+I222} +@}] +t2/+6>+ vk >4+ a-[5vv+ v+v+k!k +a)a-++a-+,a-+[F[5+G[5+Z[5+aba-+ca-+da-+kjk +vwv+xv+yv+kk +aa-+a-+kk +wv #9x9y99 99jk 999!9ba-9c9d999)9+9,9Z[59G9F9@  !)+5FGZ[djkxy,-abcvw.............................@  !)+5FGZ[djkxy,-abcvw.............................@}g9 97901674;2674+"&7&>767627>367277>?662#"72'*+"7>76&#54656&+".%676&#&"? A A#' ;m L 9))B /-5/'DO1> ;Pe+ # ##j^D 8;; ͉D  JB  }= 133 ' c1 )?-1/D!  +;#?^Q: 7=! ?%DgoV+uVu +@VN +]2H+b+&+3&+5N+/ֱhh /h +`l222p +Y222pR+#v222I +-=222IR +@I2 +I+D 鱝+ e99p]^99R\9I9/:AG$9uVe95@ @Djv~$9&=hn$90174632475&'&'&'4676=6762=6732#".'"'+.?4'&#&7=4'&'&657'3754#.'4654'&727654'&?<')/'{"9s` 6 '+'^y5'!Rd\}+!*!9}3B'/B .H7NX'>0p\0Jb^%\B> #%f='8 +3NTs)V7'u V# #r+5FG7) %L &/N :5fR@Lu/  +6z)//4/$/ /7/ֱ  +!+,,2+&8+ 9992,#$)4$94/!9 90146 #"&732654&#"6'&46 #"&732656#"L}QDFRTJBM!'%8J}RDFQ?Q򲰇dihgdeiH' 1) TbiidhH[juY+L3_+Y+D!/13)t/ v/ֱ\\+k \q+ w+k\999q _$9cd$9_DT9)YGWgn$9tkq$90147676'&54632767676'.#.#&76;76"3276#"./"&732676'&'&7654&#"H;{7TT9 =:?1# !/L/3'?W ,37!/m).+#!# ycLB  bSt \B7hPn3Bw{io +PNRPTbR5% ZMobN ^6J%- w %3? ٶh{NAׇ H\m_?qDKH7d/ /+/ֱ+9  990142'".5&Ht;@ # -ŠM@%799%  7}/ֱ +01476'&ճ-R=(JR`7HP#%Y+FlѮfU5'#;/ֱ +01676&767654'&'5Ѵ)^"[JRc=1G< !F:/q7`jN+b3/2+%+G/h3B+ N% +33 +92k/[ְ"2V '2PV[+_ +_/3P +P_ +@PD +62l+_[$Y$9P,9V%*/7676'&'.'.5463265&'&5462367632#".'&'""&547674'5#"&"')F15I97/5  LE1Z1 N>D05,43h mde542'0//D 5V5NA4'3'/ 8.5= V+ZBd'=='?LX3LN=)5 "7)!5<9'fB+(+==+#LBd/R8j1U//3+2/ +@/( +/ +@ +2/+ְ2$2$+ +@$ ++$ +@+ +3+0154>3!25476;23!2#!"+.54#!"&'P  #n 'A!\!9 '#g ; `' 8/+/ְ 2+99990174632/&67676&#&H3?J3 j5N51B\JR !=F AR3# //+015463!2%"R)u!:5!o / ++ ++ /ֱ +0174632"&D53BBfFP199/-><Go&767>"'X!ss[)`B%)#b+ 5;H+ //ֱ + +$9 $901  267654'.#";}##dg%%eC.#h)rsۘ`^lRӠ`^!08+3"21/'ֱ 2+'9999901476767673232'&'&7>326365&&';5%'%7L;)  %1N\)1)!%F 9   T#5-B?=+(+(= +@(4 +/+ +@ +@/ִ + + 7 1 +1/7 +A+9 %'+$9(=97999017&767>54&#"#"&7>32236367676732#!"&Bb XJ3`ZV# 0骨/)+7% q)+   6V%%q XR-R?V+h{zi'!צ7u>7H'  N i7 J:Q8+"/,+;/ֱ5  . <+,01999.2399"&.5$9017463232654&#"&'&7676'4&#"'&7>2#"&J;'  9@'^VE;&1%b>RXA;{+01; f~}ϋ'>  /m~ ' J>TK=WXN#+nc !y`B2>^$+0/35+250 +@5 +?/8ְ(2 28 +@8 +@+8$7990$(9599015>;2;:+&#'4./'"&73!6'454B1   %'v   {1 T=!' 6b%19%'1:  ?(Cfo<:+  : +  +/4+-/ ++=/ֱ7 >+6?+ 0//0..../0....@7",999 799-:19$9017463272654&#"'&7>3>;2%7632#"&f<)()/%VzjL\)J%@%' 3H{w); -}7(2# >r PV%`+"/ /&/ֱ + '+  $9 99"999  901%67632#"7324&#"VX31 )?uqb^PFx_ (P̖ '褲33\9m"9 +/+2 +@ +#/$+ 9 99017>%2#"'.76.#!#"#"&9 =/44 B  ^K !; % j) 27+f&3b+1/ 4/ֱ '2 /.+   5+ $91 $+$90147676'&546 #"&732654'&'&7654&#"f /Ǥ {XZ{1= {oVXNRmB{ wεd ͤ͜odT5=F `Vk3JbqjP(P/&/)/ֱ #+ *+ 99#9999&99014632'&72767676&#"&73267654&#"P9+sJ HtmS'm%qdXkoZa-)^\s -踍3%Zęy/3++/ +/ ְ2 2 +016462"462"&?b@B^A?b@B^A3c==23?3@?4/??}+`++/+ /ִ +  /3 !+ $99990174632&7654"#"&462"&}H1?Rs^!" u+;BbCCbBJ3DeJ^&MLRB3@?41AA&747%6"'$&%]1 &\))1T#'/.3% =1+%)5}(*/+&/+)/*+&990154;!2#!"7632$72#!&7L 6!T )>5 !-L)%  47$76'$%&'&=46&54&)y +)'/!V3'/^ #-+%!+%L\%/x.+)++ +  + # +0/ִ  +' , + + + +1+,  ).$99 )99014632&'&54>54&#"#"&4632#"Lw\ۜDM+P 6 oPqnPZVdBSyG35FF53D?o--^ #kLb-+VCFL8fBBfD)JYH/;;H +@;@ + /3,N+U/25/Z/ֱ88+K K2+ +[+K92 5;HR$9=@99N,  =$9U')28>$9$9901! #"74&#"&547632>7:323267>54# ! >323! %327654&#"`pѢRkm`\1)!%+^%#%j+DTew +Tc?#)Znq3#7>Jf7hv ^wb=%-J+7@1Rl? .)1+5DX`MeZI+ 3?+.C$2 +7T +7+f/g+?I)9997B999T9 _9990124326767'&67;2;2#"#&#"&547263>'.'&#!"3276#&"#362276'&'&")H'y D;^M%);' y?6 +W )T W  2 1Y(aUo@5-25fB#9#7 '?@ s$!%!=#H.E^&+42+Z+ JA& +J_/ֱ/F2/ +@ +@- +/7+!T `+/)9T(&4?$9799A4!>99J99 T99X90176762654'&'#"5476%2#"'& &5432654&'&'&'&"#532:3>54'&'&#"$+ o3c/uMXi\Lqjx֌# VbyLB#,- *<.! R):P7676&#"# bR+-15A ) BLh+鲈))" 6b'9]Z\;  WFx!-{%3? F&:j +*2+5+;/ ֱ' ' +@  +%2'-+<+-' 9* %9-995901767>7654'&+"54?$72#"'&54%3 4&'.'&#"  @!%oq. -X%Ni\?t@E*, L Z-6DN?+ D,%F10  $5pm+TTm +@T^ ++1+3 7Kl +7q/ֱN42N +@ +N*+% +C%*+G +G/;3C +r+N9G/HQj$9*+<99%C"&Z[h$9KTCEb9997A91$'=@$90176763>54&#*.'&54763$ 2'&7.'&#"";267>&'.#'"32676767632#&# '&54%!JN1/X   +Hx5754&'&56L#!B% mRj..$,[ 5l6 /P |#P-1L0%P+ =!! Z uF)4!07)F}D).fVMK+#+,2K +,@2K+N/ֱ  '+F2F' +@F: +'F +@'0 +F'+ +/ +2O+' 3K$9 4999 9,#F9K 999 9990147>322762#"#&'!"3276=4&/".467263232'# fom뢅# 7 -1B s 3TN  D'' ?m|idZ=  1*G0';=)F)!*) %F5p<95J&5:xs+T3NZm222+7<>333.B222#es +#y/ ֱj 2 j +@ w +j^+)2Kz+j 9^29Xpr$9eK9#I9H919901767:3>54&'#.63276"3!27654.'"#.763236323272#32#!"'&6;265&#* #";6!"'&54* ! ?))=  r  'N7+'3<1 %M D!  98:LF%)1L9#XH -N!) O %?}B-53  5@ R35 9/7,=59-6-!=+=s D&6= \54C2+'2+ 25/ֱ# # +@ +26+#1990174767>?'.'"'&547673272#2#&""&\?%E ! 41 'P# \  {z-7'=FFH#  *)4H =q4:W!+.28/+;/ֱ33 +@3* +3 +@ +<+3%&998 93901463267>54'.#&#&547632322762##"&@-!+D/P! N@-  PFByZ}B-E ! +R)H)7 +3kFdN7~ry+P3HYn222+0333 *7222/ֱk2k +@kr +k +@} ++k9 !&<\h$9,1990176762654&+.763233272#"67654&/&5476272'32&#"&'&63>4'.'&'"32#& #"'&54 #BA3R) $͔oO19T2$\=% &ibs- /uyG9s#=Z\# "$p! + LC'>;6P- '}  =% /;}F-C57-Fm !N5F55/>JB7'J&  #= bT)@/-=/$ 7D`9+%?+73%9 +@%, ++ 22E/ֱ"" +@C +F+";99 9901767;27654&'#.763272;26?62#$%"#""#"'&54" 2T #Tm)2)\-7:sQDJ V'#/;1! P!A-F/F)I /6s1%%X` ?/!  (X5~J+av33Q;m222,+302/+6?+ hg*q+ ZV78?S+ +++ ZWZV+ #99WZV #9@ 78ZghVW...........@ 78ZghVW...........@QJB990#$&[]j$9,'9017&54763676767654.'&763233272676327232#&#""'&7>32>&5&&#&#"''2#&#".- 58G $GV9@5 2DF>8/N  -Ju3#)5 %b*, R+-L)  tt  9)3\f-'!V #37 +98 # 3Tm5#NNN/'  & ;{8V4+M+E2(+ 3, 22W/ֱ>> +@U +>+0X+>O999"&7HM$9069EM0C99,/7;$90176325&'"&54763232#'4'&'.'"&633272#"'&'&'23#"#&#"'&56B '-g 5%;"j' !J>d3m%: &  #?3  #kT O^#1| 97;3%m+ @b&$\7V D ++/ֱ  ++  999901! ! 325#"\JDVR %9ZV1V)ZF<Ls%+02+;+H A% + M/3ֱ=2D+ N+3'9D %H$9A 9; D99K901476%2#"'&723263#"#&#""'&7>32654&#"".32654'&#")#-h-+/ 33  |' 8F-/!}CZ5#Ƅ;1+^/B"NLV!.e+-/ /&+//ֱ##*+0+*#   $9 999 99-&9901! "#"%.'&'$32>5#"NJDd\}\ ;/#WG +Z5T/{N9- N |BSFZkL+EG22.+(+i;a. +;l/ֱ@[2@ +@ +@f+m+@P9f6JN999"99EL*9;6"@F$9a!8999i9990176767326=4'&'&'"5476%2#"'&'.'&#"#&36#"'&#"#'"'&'6327>54&#" P/$Qfdn\ !IZ1J'A qDj: NN 0K7 3%UI$"fB!  ,"DZfBJ-?FR%1, %Tqm51o%H7!  Ln%gB& 7 U fhVJ@+ G++1%+K/ְ24  +4 += /= ++ +L+4BF99/#9@999+&9 @D91-=$9!90147632654.'.5463232?66&'&#"#"'&#"&'h3 =3LNhy+#F#R HZj5ե?p1 -+\TX XT;D+  @+S  \^#5sX!;7)55/Hk}G#!VGu;>}N+  ;BcV3+;)2 +J!2J +@JQ +2+3W/UִO +OC+&&+ +X+OU9C 36$9&19 ,/$99J;U9901633 72767632#"'.#!";2#&#""'&47>7:32>=454+"#"'&54\" TB  # 3/-/R:# )d#  #%##)/4 #J! /wA3F7-D 3/FN2 -L  Y%b5Gt9+++'3F .222H/>ֱ> +@> ++22 +@2, +2 +@$ +I+ (9999F2>9901&54763!2+"3 7654&'&'&4763622# .54."#&) 'T/%VrV8l n'%m: RR\h>! 57)H:}sJPhN3-NGRF5Fu% $4L6B++.3K&9222M/N+KB"<999*901&54763 72767454'&#"'&54763227232"#"'&'.'&)- 3 !m# -/H :*%NJ1k! N9/1   % B - ,6H{#'+HC 7mKO+Z\^333+@33 :(*Gh$2/+ O26JVw$99;l9990163 72#"#76'.'&54323 76#7654'&'.63272#"#"'.'&#"'&'&'.#"'&542767654'#,;)  !3%5 %7k\;#d 3 X 3Vl-RC)f$9##j5 )51 %T/ZLX%7- H )TH 5/75o'!%) '  "6 DE-m)/7Z}+\3xWf222>+3B&5222>+'$47222/+x}9B-Cn999>9017467>76>&5&'&'"&'&476323272#6?676&#"'.763 7#'& #"'&6;25&'.32#&#"&-RX)O X)'o # #)  V # ) %D  )q^ #^ZN5 ) !$%3!%RwF F5 ) DـU-3#(5! cu 6 +< < 51oy 'utiF 9$  1#?G33  55'4[B+>O2+&3Z /222\/Tֱ99T +@9@ +T9 +@T +9+- +]+9TD999#)B@LP999ZM99901&47632 72#"67654&+.76323272#2#&#""'&7>23>7654'.'" L%; % 79 Vڄ)'3-) +<=5 -e@' / -%FOT) *57#9  f\ 535 7J9) 4713QM:93m9>#3<o5+ +=/ִ  + &++ +>+ 59&3$9+0999 59()$9901767>=!"&54767!223!267>;2#"#"&"#"'&'4? CbF33 83  ך^ 1#;=;}bσ5< 9 U %k  +7!7/ /"/ֱ  +@ +2#+901467632"#'&# -#q;6! {;h#)  ! )  Jd&6;2&'J$!@ {!BT )F 7+$7"//%/ ֱ  +@  +2&+ 90147>3>5./&=4;262'&57 3\#!oZ#@V)s%##%-9#16;2&'&&#&'&1'  )3{Z17+ T% %#%;//+014>3!2#!".<= %)'  }  + %D *+ + / ִ ++ 9016372'&'w''3-D\)# u/Bs7G+ 5+/3;5+#+;5 +@;' +H/ְ2 8 >+2 I+89 59>;F$91299;5-199#+9 8>C$9017476765'&#"#"54763232763#&'#"&7326754'&+/?x mAf&)oYD% !%Z^HU<\{1'` V^;6 }/2 7NiTD5%=_#!   {b7*oo%1=%# (9s+4+4 +@ + ++.:/ֱ) 2) + +)1+ ;+1)99.9499 99014?632>32#"'&'64&54'&'32654&#"  ') (%!jH5 W=d^9s#NR5  ' -9@067@R+'31u#C+   + +!+! +@ +$/ֱ %+ 901432#"'&#"327632#"&3'f5'=N12XmP   LF'7L/s$   ' @M+K>+D+2+/ +@ +N/ֱA A +7H22 +@ + + +@  +O+ A>$9 9D>+;99K!'$$901432>4&56'4'&'&'4547676323276#'&5454&#"&732765&#"'DZ a%X .s  iσ\Ru`qb{ ?#)(5JD   7- mN+Ko +V+*++# +#,/ֱ  + +-+99#9*9901432 '"3276"3!27654#"+V! #Kuf   j B 9w1#Zz'+0+X20 +G+O9=22+++[/Tְ23 "2T3 +@TK +\+3T 9'0,9 +99901&5476767465>7632#"'&#";2#'"3236#&""#"'&547632326554'#")=P;!+#XZ5W ) # )b  '9 ^%%+{X3/B!J?6Keel{<#8{ /oIZe+cc+&+)2G/MV/<+0/^f/ְ28 [28J  /J 8`++ -2+P +Dg+`0'&54>767'&'46323276#"&#&#"'32#"&732654&'.'2654&#"/RR 'іT+!  T  ̚+!379m?R+!wo^Rw-#'?3\R`D;RT`3 7i    XTj+ !+  %3R3ك=Yx?97 # ?q|fbjo)k+88 +@ +U+#3`-D222l/cֱA 2Ac +@AI +cA +c +A3+ 3 +@ +3 +@3+ +m+AcPQ993)O999%'999`UJ98<99 99014767632763232##"#&#"'4;267674&'&'"32#"'&""'"#"'&54767263>5'4'.'&s */ H KV+.'- ) ?)B#'27/#cg 7 5!N% /); XT;> !59/yb- +/#'V=R ;%  %  sC; 752n1 &  ,?*+"2-/ֱ  +@% + +@ +.+(99017&547676;2327654/.76763232#&""&# 7br 93'7  KH 9$ %TP3r$+,3oU2+{+>a33u6M[gw$2/ ֱr 2r +@ry + r +@ +rk+X Xk +@X] +XR+0 320R +@0: ++r }99k$ae|$9X(&99R),AE_$90@9u{:JK$9o&'(0$9$!999017676763>5<&=&/&547676763276327>3232#&""'.7>:3267654&#"32#&#""&6;2654&#"32#&""'&54 790N ) 5 BG9; N' '8   9"3D?9+'A7D =4NAbr3 6y3  %19Py/-0J53% # '25PjhH?"17354=FIhHB?# !]!+HF2+9+T3>)N222^/ֱK 2K +@ +KD+# #D +@#/ +D# +@D< +_+KVY999D!7PU$9#&599>9-9H #*$9!$9016476;2654'&/&676767632763236#"'"#"&'4;>7654#0#"32&"#"'&'! ;#:) T]/   i1!1.%I$# ;& |PF#aD.%J'2:}  N% %V;;!  ! ?#4qhPB$) )q D+ +/ֱ + +  999901432#"732654&#")ݨs\s^¾尅ՠ>K+G++&+A8/02L/ֱ, ?22, +@,5 +, +@> +,D+# M+,9D&8999G8#99999016326554&'.'.76?632763232#"'&;2#&!"'&432654&#" F%  / ! e7N %3-  #/n kffVwbFf%>9/@+kr dL , &`P;j9J+3I7+>&/,2K/ֱ; ;1+B2 1 +@ +1 +@1( +L+1;%7@$9$999>749I9 99901432767676323;2#&""54>763265.#"&32765'&'.#"; ^'!!3 %qn; FD yőiNd a=mA /9_XB%  3 :!hT (7 7D-~L]&+4++C+=2M/ֱ7 :227 +@ +N+7E994=09& (, $90174>32654'.'&'&=47>7632>7>&'&#";2#"&""#"'&-9# F!;f)  ;)A"/-1)1<A+# /B/8{`   XJ+  7Vl6DVDf{<y+ + ++$31=/ְ*2/ +4+ 4+  +>+999 91 9,999014632#"'&#"#"/#"'&'&'&632654'.DzRi+b'153`sH5  % )%s+;m X!Ays+J>*% /#?%;uo D=+FN9;-D%oJ5c+ +@ ++)++6/,ֱ 2 +/7+,9!%,1$929016767632;2#'"3276#"&=4'&'&54) bH-+! %-7314 Uh 11"l-% !Z\ uPp (7Q+B+!+3F+:3+)2R/Iֱ I +I + +@22& & +@&2 +S+ F999&#:99F2A99 '/IO$9901&4767>763274>554'.'&676723267>76#"'4.54#"&54&'.'&,)=XRy1LD7 uq3;Bu5}{ 5   1$Z\ P-f   H13>  23%  )+- [Q,+,3P&5222?+R/S+P?901&547636323272+"67676.#"'&76323272#"#&'&'. #& -aE7I/5 7! Qa%755    !%  D  K=!3-@{!!G9 WiC#+>333+ :Kh$2a+R+j/k++a1Y999#G9901&5476 727&'&#&"&5&6332?232767676.'#.327636'&'&"'&'.'& L+ N #+ gM &\ #'R/HeD u! +  !--D  !1-OeF #*" DP`"` FX%Jh,/WH+43 *@222y+Z3qR_222/+qyT9#h99 901743>?6/.'&763232732+"7654.#"&".'&563227632#"#"#&#""4;254./&3#"#&#"".%DJM HBO 5+cu  ( !F%(=NL)B" G'D?YS}p)$1o `D5# IrVl+3+Z \./-/1 !u-  %:ERT1V- \1!5 b iR /  ZLF+#3  /K2229/>+M/ֱ+N++/0'999 >49901&5476;!2"7654&#.732632#"&547>5.'& P#+  5=e/#B!=3# 5D:+)!+'N-Hu/3+@ /3=-%y# P  VhsbH71H-F#3GRP}-2PI)+) +@ +!+O+9Q/R+9O95EI$9)0499017&'4?6#"#""#".747676763632367226327>7>7632!"  +-!!  +x(!   4U''  P !w   i5s  c)  A Z   =<b+0/*=/4ְ 2( 2(  /83 $2>+4 !"6$9(9* 49901&767>54'&54672#"'.5476'4&'&^g u5>  feg>'jZR, +7[u?q5{BpT<9D`u Dbt"+/ֱ 22+01%4>372#&"% !3{ \;8_+ 6/9/ ְ20 &2 3# 32# +@#+ +:+#099969#39901465676'4&547672'&'4654'.'.746&+u7>)t 8  /^Z+)X`/Ө&1+77u7{38{9 55?a )3c=57!'jZ T/+++!/ִ ++"+9 999 901>3232>#"'.#"&'uG;D }wV+E9T 71VR9D5X+LDo)++/ְ 22+01462"&62+"&EkAAkEE H I#9;=!3FDj@@b513XXAMW+KK +@K ++.+"=+N/ֱB O+B39".@9K'+E$90143232?>2#"'&3267>#"'"'"&'&76'.776'&#"X'V  + Xq7+-+ lD`7  %#+- V #wXgA Z'  -R)5%>D  / 4#  2+9ͤZ?]P/[3A+AP +AJ +V/; /63,2$/$ +$ +^/DֱMDM +DG +_+MD9VA=TX999;999 9$)9901467676?+"'&763!6>7!2#"'&'&#"7032632#%67232654&54632#"'.#"#"&b;.4b9c35m;+33 =DLENTc113 %-B;OfD=BW9;-;D}d<9V9A#8u?+mt 7-9VgR)73=XjJ 7%Y^J'K/g-33322 + 3 +/jֱP Pj +@PI +92@PW +jP +@jq +2+Pj \$9wn9|99]&\$901&63765";27654'".=432676#";2+"3%#%";2'&&74>;265'&#!"=463;'&+"&=46;>.'&'."&'&?4+"+b5?7 #'j8'18% 7+)%B3N#+%+5 %)BA} '#  +  !' %)/X3 ){'21>u1- 0vD\6// J ms"+/ְ22 +0133ٚ-#%b=No%/55% +5+ +/O/ֱG+" +P+(2;N>?$9G %8:BJ$9" 995 >E$901432#"'.'&#"#"&5463272654''&654'.'.b%+}B+-9 =9B\--h9+  ?J=aqjyL71/!)^hMT9+B5 FR:/:/C#@sXq\J'E FT/LuoXV%;S1D%1 5/3+2+/ֱ ++014632"&$4632#"1L97LIsL`L79KK97T3HH35FFfHHfHHD+ B/5(///2/E/ִ  + +2 2,+2% + +%+ +F+299,  /5B$98<$9%?9(5 2:<$9/!999901   5 432327322+"'.'&#"3267>#"HfGjk%Ll 5#' D}\lF %bPMif %+'+ ;N %%75d0>x3+.(2.++0+/B+?/ְ21 216+2@+1.96999(,99"17$901476754#"'&5476323276#"'&#"&7326=0#%B0?u \FAb] +b35 =D?V-: ;f$NP 4 5@1^d5 ' J' -HF') ?DBo!+"/#+01&776732+"'&776;2+"'D  5+û*-/#}{%3 %Z -k(/ %-u3/+ +@ +/ֱ +@ ++015!#P{R3#5463!2%"R)u!:5!5! S^ ++R  +3G33R8P22'\  + 3'_/ִ  + +C T2C +@CN +C +@ +CY+* *+ +`+ "%R999C&Q99Y '=P$9*.9:999358999RQ9\@  *=V$9'901! ! ! ! 54>54&'"=4%2#&"'#"2#&"3>54&#"5;9CEqq#+"'1T #7J;' 1  ))2be\H9FE<on#!BF%!pD+-rH / P?BX /+2+/+0154;!2#!".:-9/H#F)Xj O + ++//ֱ  ++ $9 990146  &72654&"XŖnppn‹ŠLmmLNlm/DoA+5+,/3+2, +@,% +, +@ +E/(ְ2!2!( +@! +;2(! +@( +02F+!(79015463!254&54327!2#!"+.54#!".54>2(3#$".#)1J?$@%kjD='u!NJ!!rD%l8=k'!5<3+hH+-+/+ +@# + /  +@  +./ִ  + +  +@ +& ! +!/& +/+ $9!9+9 9901567>54&#""'>32327>;2#!"&3u=6P<+b)b qmQ!<5=7+#17#?c1-k-%3sow^/LJ)!5)#}+Z?+,W*/* + +/ -/ ֱ' ' + +  #.+# %9#%99901463232654&#"'&67>54&#"&7632#"&4 %m-H-5 FG#H0#NTNu9ЃN#+NN9)5/) +IX)7PEB31q9XJ + /ִ ++016;6&a'!R/% J+a+ 2 +@" +2,/%ֱ+/+ + +@ +-+%99014$7 76+"+"54#"+"&54#$'&#!5 ##7O5-l10 -e)ZL1 ( /++ /ֱ +014632"J13FHb[EC0-E5$ //ֱ +99013#".7467>32654#"&˦d?9JuT'4 '+!\'r _=Rs  (1- ]d':/ !2(/$ֱ$ +@$ +)+$99 "901&76763272#&"&54?67n"<q' !9+:/;TF   "#/ }17d L +B+/B+/ֱ  ++ 999 9990146 #"32654&#"1hF9NjD9Nyw<`YE\}TPDq&/+'/ְ2+ 2(+ &$9017&6;2"+"&;2+"P{ . 0%û*-  /)JL) yk-$ ]oH 0SZJ+'+QTJ' +:3QA2 J' +3[/ֱ +@ + +@ +N+W2D82DN +@D= +ND +@N1 +\+99NT99D%399TQ299Y99'  34$901&7676:#&"56?265&7767;2+5632'#+"'&'5&+"732?4n">u 0%'@ F-  TFB5m+?1 N /0 1X  )9XH  /!71 :/ )% /7  ! o]L(>qo+ao+g+0+"o0 + W33OO" +@OS +r/%ֱ% +@% +T+Q +QL+Z Zj s+T?@$9L%/0;=Wa$9Z276^d$9jl9gaj9oZ9"99079901&76763272#&"&546?67&7>72'&#'%567>54&#""5>32327>;2#!"&n"@q' 9F/   F9y7q-) ;-`)e qjL)7/F7+# /7-;PL   ##" ";   % V$D`% ###%3sqya/NI'7H#+ dL,Bel\+/+c/S3fL2*/* + +/ m/ ֱ' ' + +  #'`+i2VJ2V` +@VO +`V +@`C +n+# %9`'f9V4E3999fcDO99\Kk99#'EF$901463232654&#"'&>54&#"&7>32#"&>?6"&'.%5632'#+"'&'5&+"732?45#'j/J0''!EH#J/e%VPz;чR&+1L -  Pm+?1 M // 1X  #-PP9+8!A+>]##V`THB53s:f  +)"  % /7  ! oHs"+&+*+ /+ + +,/ִ + + ++ +( ##/(-+#9 %*$9(&)99* 99014767>54'&7632632#"&462"&H3_+G#-: jP\VZVdw\LnLLnLjh'#+T' fR_"1WPkD?5HFoGG^ERbzE+!B333&):<$2 +2V +2+c/QִN +d+NQ!$XZ[$9E $9C$927;$9V9 _9990124326767'&67;2;2'&&547263>'.'&#!"76#$#&6372'&3626'&'.)H'y D;^M%);'?6 +W )T y  d(- /9J{LbP-4 o@5-25fB#9" #7 '?@ s$'%!-{' ly=yEUeaE+!B333&):<$2 +2I +2+f/g+E $9C$927;$9I9 R9990124326767'&67;2;2'&&547263>'.'&#!"76#$#3626'&'.6326&)H'y D;^M%);'?6 +W )T y  dbP-4 6d .!r! 1%o@5-25fB#9" #7 '?@ s$'%!y=AH) ,EWgaE+!B333&):<$2 +2[ +2+h/i+E $9C$927;$9[9 d9990124326767'&67;2;2'&&547263>'.'&#!"76#$#67>/.3626'&'.)H'y D;^M%);'?6 +W )T y  da{%N-bP-4 o@5-25fB#9" #7 '?@ s$'%!7 /  y=1EeuE+!B333&):<$2 +2i +2+Y/M+]MY+I+I] +IR +v/Fִc +cP+V +w+cF69P@ !&.4:?BIY$gm$9V)-+99927;$9i9 r999Ye9Mc90124326767'&67;2;2'&&547263>'.'&#!"76#$#>3232>72#"'&'"3626'&'.)H'y D;^M%);'?6 +W )T y  d8lgV{J +ybXuR  LbP-4 o@5-25fB#9" #7 '?@ s$'%! T1+5-qR7/ y=EO_iE+!B333&):<$2 +2S +2+h/M3c+H2j/FֱKKa+fk+KF@ 4:?BQT[$9aY9f@ !+.UWX$$927;$9 E $9C\$90124326767'&67;2;2'&&547263>'.'&#!"76#$#462"&3626'&'.4632#")H'y D;^M%);'?6 +W )T y  d_QwVVwQbP-4 nT;=SS=;o@5-25fB#9" #7 '?@ s$'%!\9TT9;RRy=VvRRvREO_jE+!B333&):<$2 +2S +2+N/ch/Ik/Gִ` +`f+$2L +l+`G@ 4;?BPQS$9fNTI^W$9L!&.$927;$9S9 \99cNLF990124326767'&67;2;2'&&547263>'.'&#!"76#$#4632#"3626'&'.3264&#")H'y D;^M%);'?6 +W )T y  d]ZZ\4bP-4 3%#11#%3o@5-25fB#9" #7 '?@ s$'%!Ry=#31J33Dy3+w+`p22Z+HHZ +@HS ++'+3 ' +@' +}iw3 +}-Bw3 +-/eְ2E)2eE +@e] +E>+128 ++8>#":$9Hbn99i:>;999}?899'399w901'&67>76.#"&?63$2+".'.+!"372676;2#'"'."37>767>;2#!"=47>?54'!"32#!&3!2654}=O?:+!J/*!9%Z)&''! .Z+V-`;1-L3'J +l/V   3Dhu'! %Z5oT'4-1)X%&X% ?S 7>'&#""#"'&767>32654&#"'&?6$bRH=c' BLh+鲈)(# :+q';[Rb /"'+B +B/63> +U"'+Y +r+nILo99BkC9>(9"'#`999FO>@X9992<9,!$8;$901>763>54&#*.'&763$2'&7.'&";267>&'.#'"326767676#$'6372'&'!JN1/X   +57"'+B +B/63> +U"'+Y +s+BICLjm$9>(9"'#`999FO>@X9992<9,!$8;$901>763>54&#*.'&763$2'&7.'&";267>&'.#'"326767676#$'6372&!JN1/X   +57"'+B +B/63> +U"'+Y +y+BICLs999>(n99"'#`999FO>@X9992<9,!$8;$901>763>54&#*.'&763$2'&7.'&";267>&'.#'"326767676#$'67>/.!JN1/X   +57"'+B +B/63> +U"'+Y +y+idLa99toC9>B(9"'#`999FO>@X9992<9,!$8;$901>763>54&#*.'&763$2'&7.'&";267>&'.#'"326767676#$'462"&$4632#"!JN1/X   +57?'.'.>376"#'&"&6372'&'`T!!H {R1P#] ''=%F}-'!JFEH),,5N `-%`Q/<^-++3(2+3=/ֱ# # +@ +2>+#,3999-,99 99017467>?'.'.>3676"#'&"&632>&`T!!H D;uZ1P#] a%P Z;R-'!JFEJ'*+5N `J'HN6>N<+:372#++2?/ֱ2 2 +@ +@+2%;$9<;90167>/.467>?'.'.632276"#"'&"&N y#%'.T!!HPsr%P'] ! 7 /  b)!JFEH'51375J \7 4>2+03 -2+!2=/38+2?/ֱ( ( +@ +2(+/6(+;@+2$9619;(.08=$9 21901462#"&467>?'.'.6376"#'&"&4632#"7RsRP;9S)T!!F}R1P%_ 6Q:;RR;999URwRR/'!JFEJ'51-+5L `wRRwR V5]"+,92+G+ 3" +Z3+P2^/1ְ 2]L2]1 +@]W +1] +@1 +@1 +]?+_+?] 993,*9?999 EI990156&6;26=4&#"54?6!2# &547>326764#&3267654&'.'&'"&2>32#" -o313n}hJJ T/!'iDm\?wwH- )rd7F 191 DOZB - 'F;6{V# B!H// X9L A{EdB+=2,+ +!3'22Y/M+]MY+I+I] +IR +e/ֱ66F+b +bP+V +V++f+F619b0;B=$9P>IY@$9V!/$9"999=*/3;$9Y d9MFb9901>325&'"&547632#'4'&'.'"&63%2#'&'&'23'$>3232>72#"'&#"5'-g 57' !J]3m%t #?3 &mfV{J!+|bXtN  L1<^#1| 97;3%m+  @bK퉚T1+5-qR5/% \7J %V ++&/ֱ  $+  + +'+$  $99901! ! 325#"&6372&'&\JDVR %+)- 34!' f;XV1VL- \7= &G ++'/ֱ  +(+  & $99901! ! 325#"6326&\JDVR %b +!s#J9XV1VG) \7" *G +++/ֱ  +,+  *"$99901! ! 325#"67>/.\JDVR %׳ {#)'+;XV1V7 /  \7 9 ++,/+0,++:/ֱ  +7 +327"+) +)+;+"7, $999,9979901! ! 325#">322>36#"'&#"\JDVR %mdVyJ y`VuR  J;XV1VO/)4+ mL7-  \7  (r ++/'3+#2)/ֱ  +"+&&+*+9" 9999901! ! 325#"462"& 462"\JDVR %TwTTwTgTvTTv;XV1V9TRwRRwRRwR?6&7676'.<>766767>'&.'u7 @+  / m1'm  0o_    %!)  '%X"u \o#1@o+6//A/ֱ$$:+B+$!99:,2$999699/ '<$9 99901!2?6!"'&&'&?6'&676'&#"3276'&\Pp!!%+d:' s  ~qm 9t /r Rl##f ' })b :Hv1+++ 3: &222I/6ֱF+B +B+** +@*$ +J+F1;$9B9:*69901&76 2+"3 7654&/.362# .54&#6372&'&'3-){R1T8l#'%m: RR^m-l &)7/')qd55-H:{PjN`3-NGRH9FuH! , )b:Fa1+++ 3: &222G/6ֱ+** +@*$ +H+1FA$9:*69901&76 2+"3 7654&/.362# .54&#%6372&3-){R1T8l#'%m: RR^m-lb -Sd55-H9{PjN`3-NGRH9FuH!G)(b8;Oa1+++ 3: &222P/6ֱ+** +@*$ +Q+1OF$9:*69901676 2+"3 7654&/.362# .54&'"67>/.# ){R1T8l#'%m: RR^m-ls! '.555-H:{PjN`3-PGRH9FuF!0  * )b:CK1+++ 3: &222C/J3>+F2L/6ֱ<+@@E+II+** +@*$ +M+@< 999E199I99:*69901&76 2+"3 7654&/.362# .54&#462"$462"3-){P-V8l#'%m: RR^h)lTwTTwwVwRRwd55+J:{RjN`3-NGRH7FwJ'wRT:;RTsTRwRNVatA+8L2!+#33 'U222b/OְQ255+% +c+5OBP99!;A]^$9%"/?99989!"901&7672#">7654&+.63%2:6#$"'&7>23>76'.'"6372& #%` % 79 1)'.#' $<=-w' / -%FOT)hb&P+75 9s h^#'35 #1=+y}9) 47135o9J'%yFHX0+23$;2+G 2O2 +V2 +Y/>ֱ!I22!> +@! +>! +@>8 +!R+Z+!>199R-0$9O9VR99U9GB90154376#"32#"'&;:3#$"'&7<7626=4'&'&'&32654'&"%)f3 b {R+3R +'3=) ^%%{f )+%Q #ȋ 3J1%  !7\@^  ?5RN+P3G2+'F2' +'# +<+6/ +6S/ֱC C +@CJ +C +@ +C++ + ++ ++9  T+CO99/3N$9+9GNJLO$9/996 999<90174>3676=46762#"&546322>5'&#"'&5467>54&#"3'&&F )Cs͢snߢ5L/#1-#'>}oZ\15< լ) LNV’mE 3͉3/%64{Q;** sqMRZ?%/AD3AO+ 1++3E7+P/ְ2B BH+?22 ; +Q+B4A99H 1@EN$9;-.99E1*-99 "&K$97=9017476765'&#"54763232763&'#"&6372&'&'326754&/;z oA fJoYD' )FU<^y++ B$'' j#3'` 'N^;8 }/2JNiTD5%=_#!  {b7*m1 %1= !%/AJ3AOx+ N+1++37E+P/ְ24 4:+2 Q+: 17@O$9-.9971*-99 "&=$9017476765'&#"54763232763&'#"&7326754&6;2&/;z oA fJoYD' )FU<^y3'` 'N^;` .R;8 }/2JNiTD5%=_#!  {b7*mq%1= !%F) /A23FTx+ 1++3JU/ְ2G GM+2 V+GF9M @ 17BJS$9-.99J1*-99 "&P$9017476765'&#"54763232763&'#"&67>/.326754&/;z oA fJoYD' )FU<^y9  d!#%-3'` 'N^;8 }/2JNiTD5%=_#!  {b7*m) ,  %1= !%/A3R`+ 1++3VF/:+J:F+6+a/ְ2S SY+2 =Y+A +b+=-4F$9A"9 V"&\$9FR9:4P99017476765'&#"54763232763&'#"&3232>72#"'&#"326754&/;z oA fJoYD' )FU<^y'VyH +y`VwP  J3'` 'N^;8 }/2JNiTD5%=_#!  {b7*muN/)1+ mN5+%1= !%/A3=KU+ 1++3AS/;3O+62V/4ֱ9 3> 9D+L22 QW+94 1AJ$9DI9-.OS$9A1*-99 "&G$9017476765'&#"54763232763&'#"&462"&326754&462#"&/;z oA fJoYD' )FU<^yRPnPPnPq3'` 'N^PnPN97P;8 }/2JNiTD5%=_#!  {b7*m5PP59ON%1= !%@5PNoPN/Aq3=KW+ 1++3A 5>+L +>D+2 RD+: +Y+L51999D@  7$9/E;<=999(3CGJ$9R#999!"9999990174676754#"&5476327672#!"32676#"'&#"&732754&3!2'.#"?{^Ly-; n##hc\q5 !#J;X@!"m BG\ZFV ?(P1P1u`d'/w- 18NjNcfy{%DF\/@%$ϐ BRqpVPs -FI3!1uAl+   + +&/3B/ֱ 6+#C+@96&*;>?$9#  $93&/9 #099901432#"'&#"3276#"'.76767632654&&?6#.3'd5';P30XmT$u=UV1,  6 !5V58xNF'7J3ʼnz)!9cAT{' +-+ +FD)2{+1++!+,  +,3/ֱ (+% +4+9( *1$9%/9 9919!'901432%"3276"&6372'&3!07&#"+Z %uf (- 5/Hq+wo B59w /-' ,+FJ%2O+$1+++)+  +3/ֱ 4+ 99$901432%"3276"3!07&#"76;2&+Z% %uf +wob ,P H59w /F)+F2/8U+7++2  +29/ֱ :+/9 99297099901432%"3276"67>/.7!07&#"+Z! %uf ߍ  e!#%-\+wo F59w /) ,  +D'0;+/++*  +*%/93+42/.&76767<54'.#&'&67676363'&"&  e!#%./'` +'pN133`;) ,  7 ) eF B 1#\J+-)!T 4<2+ +2/;3+72=/ֱ& & +@&. +&+/6&+:>+  2$9&619:07<999 $,99014632"&&676767<54'.#&'&6767636'&"&462"#R9;STsRJ` +'CN133`TsRRs5NKoLL% ) cH B =\J+-%)!7oKNjNT^5A^+?3+9B/ֱ6 6<+/ C+6$9<@  &)+3$9/#9?990143204'&'&'&?6'&'.?676##"32654&#"TF;/+A!'-:J1\3k/=z)w׬wd{^L=< &1s"%+ /3X%15 -Hw !/Nn+=+I+-3C&5222b/V+fVb+R+Rf +R[ +o/ְO2@ 2@ +@ +l +@;+ ; +@;3 +Y ;+_ +p+Y/EIb$9 _#9=C ';$9$9bn9Vl9016476;2654'&/&6767676763236#"$&'4;>7654"32&'&'>3232>72#"'&'"! ;#:) T]/'! i1! 16# ;& }PF#;;mfV{J!+ybXuN  M2:}  N%%V;;!  B ?#4qhPB$) R3+5-qR51 )X $i+ ++%/ֱ "+ ++ &+"  $9 99!901432#"32654&#"6372'&')٪s^q^/-'5-L 즃1) )s %Q+ +&/ֱ + '+  %999 !"$99901632#"32654&#"6;2&)9s^q^b$N즃H')E )R+'+!*/ֱ $+ ++9$$99'!9014 #"67>/.32654&#")   e!%%--s^q^) -  餃) *6+4 +./+#++7/ֱ+ +1+2  +8++ 991 ).4$94.9 9 )9901432#"'7232>72#"'&'"32654&#") VyH!+y`VwP  s^q^#N/)1+mM5+%颃) !,u+ +*/3%+2-/ֱ ++ (+""/(.+ 9" 999901432#"462"&32654&#"4632#"&)PoOOoP+s^q^%P79PP97P[5PP59ON즃5PNoPN '7/+/+%/ +(/ְ2 "2)+01543!:#!"462#"&>32#"&F #H@Z==-+BB)+??+-@F9)%-;;-+>>l)7;V=AR*5@{+4 ++:A/ֱ+ +<+ B++!'($9<17$9$9:994'.?$9$90143276?6#"'"/&7676'&776'&"2654'&R͉wT& sɓ}m!=$ y% X No J)  F^. N(H$ qW  TN PdZ ,4FS+B+ ++<+ +1+T/?ֱ Q+N +N+622" U+ ?GS999Q 763274>554'.'&6767667>76'4.54#"&54&'.'6372'&'3)=XRy1LD?uqR;Bu5}{ 5 +);)L b%+1$Z\ P-f   H17> /72A%  )+-V1) ,4FU+B+ ++<+ +1+V/?ֱ +622" W+ ?9763274>554'.'&6767667>76'4.54#"&54&'.'6;2&3)=XRy1LD?uqR;Bu5}{ 5 mb&R%+1$Z\ P-f   H17> /72A%  )+-!G',4nFY+B+ ++<+ +1+Z/?ֱ +622" [+ ?Y99763274>554'.'&6767667>76'4.54#"&54&'.'67>/.3)=XRy1LD?uqR;Bu5}{ 5  d!%%-%+1$Z\ P-f   H17> /72A%  )+--) -  ,4FR[+B+ ++<+ +1+P/Y3J+U2\/?ֱ G M +622" "X SS/X]+MG <999S999X1999 <2799 #%+?E$9901&67>763274>554'.'&6767667>76'4.54#"&54&'.'4632#"&%462"&3)=XRy1LD?uqR;Bu5}{ 5 P79PP97PPPrNNrP%+1$Z\ P-f   H17> /72A%  )+-5PP59NN95PNnPNBP3+3 %B222//4+Q/R+ 4*9901&6;!2"7654&#.732632#"&547>5.'6;2& R#+#%5?e/#B!=5# 3C:1%++J-Jw) 3+@Tb&R1//3 H=-%y# R=VhPF91H-F#!4BLP}-!I'<Gm)+?:/22E/+H/ ֱ/ =22/B+& I+/ 99B")68$9) 9?,9E&9901>72>4&554&'.5&?672762#"'&76#$&32654&#""!-   # #3`HE'E5qjkX}bVd1!0B 5  1'w ̓B3`VBLVx+3 %B222//4+U/J3P+E2W/CֱHHN+SX+HC*/4> $9N)99S($9 4*9901&6;!2"7654&#.732632#"&547>5.'462"&$4632#" R#+#%5?e/#B!=5# 3C:1%++J-Jw) 3+@TwRRwTdT:;TT;91//3 H=-%y# R=VhPF91H-F#!4BLP}-9TT9;SRsTRwRdPZi+++T+AX+^ ++g +@ +";X+ +";" +@;5 +j/ֱ[[c+>2>7+'22 +27+ +k+c[X999> U99279;A2HIJ$9"[99+0901476323263!2#&/.#!"7327674>;2+"5.#!"3!26767632#"$#"# 327>54&#"d޶Ld B'E#% (L+%\  %))L !sC7 '%y){FC` fH/}XVF+#'^%nU3)3/N%2g !BP#5HE5%k3ohVs(4>+ 32=2&+"3,&++7& +7?/ֱ) )/+ / +@ +@+/)&99$999,$97& )/$92 $9014327632#!"3276"'#"732654&#"%;25.#"Vƾo{S%/%aPLbfg^yݮkVhhZP5q {3!')ӃV??铐٦!JUOX`<+E42+!3N '222W/_3S+[2a/HְJ21U1H+PP/UZ1H+^821+% +b+1H;ISV$9^Z!:999E<89NB9901&7672#"67654&+.6%2#2#$"'&7>23>76'.'"462"& 462" #%; % 79#)'3-) +<=5 -w' / -%FOT)TwTTwTgTvRRv/57#9  f\ 5135 7J9) 47133m9j9URwRRwRRwR;0( / +/ִ ++ 90167>/'&; x!##& ) W/+++/ִ + + + + 999 99013232>72#"'&#"PH!+y`VwT TL-'/) fH5+R3#5463!2%"R)u!:5!R3#5463!2%"R)u!:5!R3#5463!2%"R)u!:5!J+//+01<767%2#$"&J! ))!#%7!/2/+016563%#%"5'#yr5*# F:+ +/ִ  + +@  +2+  990146767632#"&k%1>L5HZ\b'1JZC15Hp5/+/ִ + + ++99014632'&76=#"&L7HVq^91>5HjPZ-+%PRC6/+/ִ + + + 2+90174632'&?676#"&J3DQvc%  o-;11DiI\'/!B\?-Y++3 +"2./ֱ  +@  +2 +   +@ ( +2/+ ($90146763632#"&%467632632#"&j- 1DR7Lbk-  3AP9LbV^) -NVC15HjN^). JZC15Hls+\/(3+2,/ִ + + + 2&+ +& +& +!2-+999014632'&?676#"&%4632'&?674#"&J3DQvc%  o-;J3DRwb% o-<3FjJ\' -#DZA'3FlJ\'/!B\?N+Z/(3+2,/ִ + + + 2&+ +& +& +!2-+990174632'&?674#"&%4632'&?674#"&J3DRwb% o-<J3DTyb! o->11DiI\'/!B\?/1DiI\'/ B\?j5+ ++ +/ִ + + +01462"ȉ? K+33+ 22++ /ֱ ++!+01$462#"%462#"&%462#"&NwGH;=JwKJ;=JFwIF=;H!jDJ51Bq7HJ53>>;5DJ53@F,+3sR23+53Vs 鲄+BDd$3>K]j}$2/" ,," +,( +/ְ2v 鰅2vn+2Y 12Yn +@Yb +nY +@nh +YN+; %2N; +@NG ++v99nf999Ye$9N *Dd$9;(799 ;?v999X9s:9993999 9901&6732654&+"'&76767>7>7>#".#"%67636&"&54>26754&'"$;2#&"5473265&'&""32'$3725674'&'&"7F! X1 X%'HAHQNG)`!9V?L \VV&3+9%7 L' '"F F- ?-%Z 3 JlL 57!H ' fJyT;BVB!7B =1O77nN5 3}?5?#3i3D=]}$#3--3ɨG9d  P\ BlN9+|+33k+MOi222k +<+>Zz|$35DU`u$2/#2#/ ְ2o }2o +@oy +of+2R 鰖2RJ+2, 鱤+o {99f\^z$9R[999J #>AXZ$9,&95.GHa$9Nj99k999#< !=x{$901&767623>54&+"'&767676767>76323276323#&"'&76767>54#$36'&"&676767654#'"632'$372765676'.'.#"3!25&#"3 ++I1 T'!JPwV+%E '  2%6@ !B #b #%%`H 9  +H9L D -%fP=2J E !D- BXpBXDd +% 4B!b15 9N'{ ^ y z +lN9 nBBhH>+C+6G/23,2/(3"2 /I/ְF2* "322* +@ + 2* /* +@*0 +%2*+ +8 < +J+8@99>9G>:9 990154;547#"&=4;63276'&#"!2!!2#!327>&#"#"&'#"!^` !n)Rg! 5 G /Z!!\!!u\C/'>'=%l!/D1/8 #/3"H#/3 w!5#<G+^3MY222M62:+2(/mq$3/ @gv$2/9ֱ3+3 +@3+ ++  + C+ +C +@ +Q2C +@C= +K2z+ddz +@d\ +k2zd +@zs ++3&99!%99 9CM99N9zOVp$9/(+$9:@ RUVf|}$9MGQ99017>3%6+.#*#&"#&54>73>54'"#"&547>54&#"'&54376;6;2#32#"&"754;>54+"/&;2#&?i%# 1 DZ  -!-#  +-VB5!c1//! 1f# =)- !5'H'- +'+?ב'V8 F W @8V)FJ/)- +2/H1B6-+@P #  F=  RR./++/ִ+++011!RRJ9_Z+:3W7BE$2$+$ +$ +*OZ$ + M33*`/ְ2S &2SI+3 2a+S\9I">AXZ$93!./<$9OW69*0N999$/99017&?>54.#'.7>547>32#"'.#"37676&#""'&726367674&'&&#"J,1)G 8)?+ϞjF"/%\#943))#B! 9)3} '=%VXT'/)g  6ÕhfL35)?9<#  'bf*R 9 mXJ cf,V(@O^R+;+ 2;+M+*3%2C222[/_/ְ2@ P2@5+X2" `+@K995/GH999"9;"9[RY999016&76367654'#"'&76?65762327636'!#"'&7632654&#&"36#"&"'26327&")9X TT-!=5#h%!Rm ? D P7wyfJD,F6#  + B%d'!-B!\w%]BAb,+3sR23+53Vs 鲄+BDd$3>K]j}$2/" ,," +,( +/ְ2v 鰅2v+n21 X21 +@1b +1 +@h +1N+; %2N; +@NG ++v99f9991e$9N *Dd$9;(799 ;?v999X9s:$93999 9901&6732654&+"'&76767>7>7>#".#"%67636&"&54>26754&'"$;2#&"5473265&'&""32'$372>4&5674'&'&"7F! X1 X%'HAHQNG)`!9V?L \VV&3+9%7 L' '"F F- ?-%Z3 JlL 57!H 'fJyT;BVB!7B =1O77nN5 3}?5?#3i3D=]}$#3--3ɨG9d  \ BlN9(|+33g+GIe222g +V+69y{$3Z?.0Otv$2/!2!/ְ2j }2j +@jx +j`+2L 鰕2LD+2* 鱣+jz99`VXy$9LU$9D!97623>54+"'&767676767>763232766#&"'&7>7>54#$36'&"&676767654'&#'"36'$"72765676'.'.#"3!2'&#" ++\1 T'!JP wV+%E%# #9%8@ !B  m -2%w L 9  +H9L D <fP=2J%5#B - BXpBXD d +F  6}B!b15 9N#g ^ yz +lN9 nBBhA-_<D,D,!!D-f??LHzHEzRG;BJBfV9fP}L?#b/$XKfM&\=(;\)Nhr;%$G)>J71/^/ x3+'j+#/5/%!$& &!) ;-D%E( &IGE'-X^/Eb1^H-%DzR^5QXfff]1P]]HQb%%%%``N7\ A\\\\\\))()%\^/^/^/^/^/^/;?x3j+j+j+j+/'/'//\T&!)))))\RE,E,E,E,/Id3V;@@jzRzRzRJ-- ,+3QxJO( ,(,,,,l*&,P , ^ $  H 4nbppJzvhdz8f L!8"""##Z###$%.%&>&'f(Z)@)*0++n,-X-.R//0001n123445B5~66`6`67<8949Z::D;;;<<0=0=\=>>>?4?^??@:@@A6BCDDElF8GHIIKKLMOP"PQBQRzSNTJTU,UVJVW6WXY"YZ[T\\]^b__`ablccd de6ef.fgHghiVij2jkLklLmmnoppqtrnsst,tttttttttttttttuu?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~     glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011 figuredashuni202Funi205FEurouni25FCuniFB01uniFB02uniFB03uniFB04KPXYF+X!YKRX!Y+\X E+D E++D E++D E-++D E+D E.+Fv+D E+Fv+D E +Fv+D E F+Fv+D E $+Fv+D E #+Fv+D E "+Fv+D E+Fv+D E+Fv+DY+S|0tufte/inst/rmarkdown/templates/tufte_html/resources/et-book/semi-bold-old-style-figures.ttf0000755000176200001440000021225012647360110032060 0ustar liggesusersFFTMj GDEF8 OS/2e&fXVcmapcvt = )6fpgmS/egaspDglyf ILheadj@6hhea/x$hmtx!?{locah1) <maxpJ name4 ON0npostz;prepc|"webf}5S=D*D-7X33d@JPfEd ffmx0  ~Sx    " & / : _ !"% Rx    " & / 9 _ !"%nJ5  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`aqdehvojuirfkzcml{bַwpxV3XdT^Phw{D,KLPXJvY#?+X=YKLPX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-DdU./<2<2/<2<23!%!!D $hUD)+ +/ְ22+016462"&6;2'CcEEc9/I7F3%fBBfDB11%=Vd_ / +2/ֱ + ++ ++/+ + 9  901432'&'&%42&'&u9D 9'1i}7C9 H5ӑI>!9%5)y#I>Eq! -JJ +I33 +%?22/az|333 +S222 +@ +n2/+6>K+ ">P+ q1l;?A@+ rwig+ ++#"+q+q1+-q1+.q1+/q1+0q1+l=l;+Nl;+Ol;+?[+ ihig+iglil;+>+ jl;+kl;+qsq1+q1rsrw+>+ quq1+q1rurw+>+ vrw+"++"+qq1+q1+"+ #99 99"999#9q199+9-9.9/909kl;9j9O9N9=9vrw9hig #9@# "#+-;=NOijqsu./01ghklvw...................................@# "#+-;=NOijqsu./01ghklvw...................................@{9 901474;2676+"&7&74762>7>267>774>37623#&37:'*+"7667>.#&*"#'4656+".%676.#&"#"J 7 ?!5H J' C++5 1-6 f 5:{N  f` A ;)<  C #?B! %= Ù 9+7C! f!$ ? 1!-)!3  ; =   -D% J%yDfo}*+3*+7//#/ֱhh/h +`l222p+X~222pR+'w222J+.>222JR +@J4 +J+E 鱝+ c99p]^99R\9J*91;BH$974=ho$9#12$9*/99017463265&'.546767567362=6732#".'&+&?4''"#&7='&'&6=&'7654#&'654'&"7654'&J5#%-%=)Pn^/ )+ ^s/#)'TcZ|  %/56?5 _)% +)   -#  `^ %7/l -%RX8\%\T R Nb9%1;3PTs(X9 c  +9D3 F  R! ;sVF Vu%  ,8y*/06/$//9/ֱ  +!+--3+':+  $93-$*99960!9901462#"&632654&#"6'&4632#"&732654&#"V}{VJLVZNF9'/?{}}yVJLVZNFTppkho-Z %% RhqqjhorR Tdp!+-3%++R+E3X +R+> n/ q/ֱUU+e Uk+ r+eU999k QX$9[\999X>JK99%RAObh$9nek$90147676'&54632767654'.#&76;763276#".'."&732672'&'&'&7654&#"R3w} -mR? 9Jb'1 ' 3!) 57?e 079%3m&#71+ -ܚ}iR??k\^w`H;5>Ln+L }~y}gu !dP\ Hn5 , ^nuqRb9LD w!@T״oZJ fm`>sd FxHRBN1dH / +/ֱ ++/ ++9  90142'.'&Nn5@ ' -ɜI>'7;;" 7s/ֱ +0176'&ϰ%GcJQa=BHJ%ͲmP-!!7/ֱ +016654'&'&676&bJRbF+/#˲%N4y13%* @dk+ 3/"3i +(2_/33Y +92l/ְH2 C2+ + /L3+@2m+ Feg$9-E$9i%$9_)>Mg$9Y67676264'&'&'4332654.'&'&6767>54&#"&56764&"'&'.#"1#1BO1R1LB/%/35b1531c53)31?FH/R/DP 3+57JJ P955T1dHP!);;R#Bl /T3)5! 5'9NR/NVXJ;;%`\H)Z 93- 5 *i7J5/"3 +25 +@ +8/0ְ 2&2&0 +@& +0& +@0 +9+015454>3!265<>;23!2#!"#"'".54&#!"&  P!b#3 M=   #L?R!  7+ +/ִ+ + ++990174632'.'&7654&#&D-=HbP!y 1F9/@\HV' )JV  =Z+% / +2 +/+015463%2%"Z!sH Fy / + + + + /ֱ  +0174632"&F75BBjHP5B@53DBTp77>#"'&TR) `+D) )#  N B + / /ֱ + +  999901432#"732654&#"N{w լy)2+ 2*/ֱ  +@ +++9016767632#$&7627654#"&y@N ^ B }c-L 3P")Zo?? bX L" FD*W*+ + / ++/ֱ +@ +"+%+,+*9  #$90164767654&#"&7>32727>7676+!D šbPmr>\gwMlR:5%@D 7h1 pRek !h]iLV9 /P%o6d4/ //! +7/ ֱ1 $ 8+ +,-999$.9 1$99$.999014632654'&&7654&#"'&7632#"&oZ)L/3FL=bB7'B$'jf +B )}Xj5.;{jF5J FG)% זj#;%5=j@7-;;-+31 + 27627632#"7327654&#"\'1Z  %ꬸyfP7P|o=O?Ŝĉ- &)L{崺7P%V-+3 + /ִ+!+90163$2/.76&""&V)8D?/ϴN F3 '#-1+ /% )-f Z'5m+3/ 6/ֱ ( /(0+!2  7+0 $9 93 %+$9014676'&54632#"&732654&'&767654&#"odT^wdךЦuZNf`}% -bPL\#fBX@ d`dgNT\X+ DbjzVH)`&+ //*/ֱ#+++ 99#$999&99014632&67$76'"##"&732767654&#"H鮺{"oX1mFE!zdThӪz'$/  °# !qmu5 3+ +/ +/ְ 22+017462#"&462"=^>>/-?=^>>^\1>>b?Afc??c=1`+ +/ +/ִ+ /3+ $99990174632&7654#"#"&462"D1?Ry`)7@^AA^N1BeL`)H R^Bnc??c? &747%6'$&)3f 2#NV!# #)/#Ay,+P: } '2$+ +/ +(/)+$999015463!2#!".632$76"#!&' '.!Z!@:5!'% %47$%6&'$%.=4654&#   !!)L+{ #-##!o!VV\#,w,+' ++" +2-/ְ$2 +* ++ + +.+ ,9* '+$99"'999014632&'&'467>4&#"#"4632"VoZ՘?P-R - jNZX`ZdkI57HIk?<߰j+!/d eNZ"1]TjDDjF)KZ4+I/::I +@:A +/ 3O +,V/ 2[/ֱ77+L L1++\+L91 4:IS$9=>99O, =99V@ %'17> E$9#9901! #"74"#"&5476327>7327267654# !2$7>323! %327654&#"Zj˘Lfj`V/ 'R!u /)l+`} R`! TgC/`ps9'?s55: DCR2 =+j3F' 3/ d>/(    +H.Ga&+42+]+3NB& +<@D333Nb/ֱ/H2/ +@- +/7+! W  c+/)9W(&4@$979999B4!>999N99W990176762654.+"676%2#"'& &5432654&'&'&'&#"#532:3>7654'&'&'"+) s9 -.9/qMVeZJ!%ojv֌ [f}NF%,-  >) B7bR<\(&/((,@{JK%Z#'VL'5j"Jj474R' ! +~F2 mR3i1++4/ֱ ++5+ +1$9 !"9991+-99$'$9 9901!23276'%"327>7676&#"# mN& 6? j1'''8\!=]Xe;F UF{7#7C F';g++2+6+$7654&+"563 4&'.'&#" oߚ/@#' )t5Z)Ti^DtAG+,)DN?+ \; H5/H3/ /5b_+F F_ +@FP ++& +3 ,?^ +, c/ֱC)2C +@a +C;+028+8;++8L+T+d+;C$\9998 9Z99?F79T999,69&25$90176763>54&#"'&763$ 2'&7.'&#""73267>&'.'#";2676767632#&# '&540HR73^3 %Hx-/@wmF. %s-#'))/s#soE-$ V /-BsqM!BjX y7l"i /5 d&s$3j;:f+'#T5PM+D2+ 3! +3   +@  +'=M +' Q/ֱA#2A +@ +A4+-21+ +R+AN994(FM$91/99=D2399!M/990147>54&'.76236 2#"'&5.+"327267>'&'&#"#"';#"#&"TT48P  JwZm5LF a 8n75T UV1JL-/ V/ C^ qL// qVFD+ +(-D +(92G/ֱ $+?2?$ +@?4 +?+/H+$+.D$9 99? /99( =?99-$9 9990147>322762&'!"3276=4&/"&67 72## qnj蠃#-PBu9XN eD.hgdZ=  -&M4H>1J-+/ 3J7r<5 7J0):|{+[3 Sau222+=D335L222'k{ +' }/ ֱr!2re+,2PPe +@PW +~+r 9e8?_xz$9 {W9979017&547>3>54&'&'&6272"33272656545&54&/.76323632327232#32#!"'&6;265.#* #";6!"5 D-0A r T;#+dE %HG+  L D   ;>@P+  1P?! XH3R# -DH35 ';F'L&7F5/)+/Fw?4 3/Fw  J--3j53W1+&2+ 24/ֱ!! +@!* +2! +@ +25+!91*90174767>?'.'"'.763272#2#&""&j%B&#I  4) #T) 03 zy## -DFEL+ 0 !;+1 Hf49H!+.27/ + 7 +  +:/ֱ2;+2'(99 /29901463232767>54'.#"&#"&76323227622#"&9)- $7T N@"@ZCBwXt9+@' -R+L//*&u&'.'&'"32#& "'&54)9V) !͔oO'/X8 !$\)- l dw/ )V #C;o=_` %p #5+ a1TP+$ / ֱ" " +@ < +?+" 6998<9%+.99901767>327654&+.763272#;26?6#$#"'&54-9W Tm!)^5=>sVEJ#`0r!;H-L;L1</!;f7+'\^ /+ 2P6R|+G3>Pr222f++)312/ ֱom2+6?i+ m.l "+ _X:;?+  + + + _Y_X+[_X+\_X+]_X+^_X+  #99]_X #9^9\9[9Y9@ :;_lmXY[\]^...............@ :;_lXY[\]^..............@o z999|@dg$9@ #%&8bchj$9"'99017&4763676767654&'&'&76323272763276#"322'&#""'&7>327654'<.'4'&"'.2&#"".7  8 %A JV:?/  +DF  ) 74T)#Ju'fPHG+3P! !usVV   >)4^n#)E 9=@ &>! '9k  DR5- Eq8V9+M+F2 +'3!122W/ֱBB +@ +B+55 +@5+ +X+BO99#'=KM$9599FM5U994=@H$9 +990176325&'"547632327654&'&'.'"&633272##"'&'.26#&#""'&54J !1m+%;"j!3 !L?d q+2 $  D?) kT ?k/'Z V= 1-3+q% d!5 = f-V D ++/ֱ + +  999901! ! 325#"fF=\U+9ZV>b3PF8Hw#+.2+D+6 =# + I/1ֱ921 +@1 +@+ J+1%9@ #999= 96 @9901476%2#"'&323676'"#&#""/&7632654&#"&32654'&#"3-h++ $'3#% |# DH$5d!B^!)#ā ?% 71`7%D$%XLxV#0_+//1/ֱ% %,+ , +@ +2+,%  ! $9999/($901! #"%.'&'$3265#"XH?  b\^;->$ !A/\7R/}P: 5 {I^$vFP`N+,+&NB2+^:V, +:a/ ֱ=Q2 = +@  +=[+ [ +@( +b+= L9[3G999N(9:3=99V5999^$9017&547632326=4&'"676%2#"'&'.'&#"#&3632'"&"'&3327>54&#"&;T5+QfblZ93q#)1-= 9kJd NN 6Q 2#'B!0$@^iL  3FF1L %Tټ4 ZN3+%# T5A+iH-  !l%sVNC+ J++0#+O/ְ23+3 +@.@ +*+P+3EI99.#;C999*%9 CG90,@$9!90147632654.'.5463232766&'&#"#"'&#"'&'&s)?5NRm~+!J YF\f5ϡFd7 ##`X^)^19F;y91B/ +O \b%7x_#=;):9/Gk}E#  \N+TT%' /+iNx@+ F7bI/+5%2+A 2+3J/HִD+D;+""++K+DH9; /2$9"-9 (+$99A5E9901632336 267>#"&'.#!";2'&#""'&76732>=4+"'&74f [F +51%5V:#d N '-)56P{G=F;693)Fh7Pc.X5Ej;+ ++'3D !/222F/@ֱ@ +@@ ++33 +@3- +G+ $(;$9D3@9901&54763!2'#"3 7654&'&'&763622# .54&'"7  V5%Xv!X;qn q?I>\o+_! 61N:wuNTlV )Xbio7RF5DuH'.4H8?++*3G$7222I/J+G?:9936899901&5476323 727>&'&#"'&7632276'#"'&'.'&1$ - X' - !=  8 RN3j O+KH     1! %B#  L)#;j6!9oH]+N_33+ B33 *7>'.'.36 2#267654'&'.63272#"#"'.'&#'&'."'"'&542?67654+"' ; ))$> ';o ^B"g 4a ?Tq#VG+f  < j"7#/   1'T !Z - P\)P)/X #R! +'++;s!  '%725 [)>%u1 5%7}Jw+Y3rUc222?+3C%)79$2~/+rw9C0l99?#901743>7>764&5.'"&'&56763272#"#767654#"'&463 7##& #"'&6;2>'4'&;2#&#""&7R^+7u+`Ju # *  28? )s\R 3 )15'TuF  '%7+mـV. )-)7H7i{/  /&#G 2-)u{ H F + )'6 KR!5)++3]G+Q=2"+3+\222^/Vֱ::V +@:A +V: +@V +:+) +_+:VE9%C999)&499QGAM99NO999"901&476323 72#"67654.+&76323272#2#&#""'&767>3>7654'.'"!Lj59--"V܆*'! B?5 #e@!  )3)JSV! !-+#Qn lb (&)-!/7 -{}B-/-87TP=:=q=J37o++ + 8/ִ + #+&+9+ 09#+.$9&99 +9 %$99901747>&#!"&'4767!63!267>#"#"&"#"'&74J BbM#) 0$ 1מdQ3=;}bσ+L = V y +-@/ //ְ2 + 2 +2 +901467;2"2#'&  #d?//P7^wq! )%!T{d&6;232&'T /!)  { 9R 58 B+"J + /#/ֱ 2 +@ +2$+9 9  9014665.'.'"7543262'"5B5?6> mZ7O/^ )7# /;3&''.#&'&;:;'"d+3%-3  %J /22/+0142$2#!"53fN3-DX{3'D *+ + / ִ++  901&6372'&!1-4 ( 31s8I+ 6+/3= 6+# +=6 +@=' +J/ְ2: :@+2K+@ 36=I$9/299=629#+-99 @EI$9017476765'&#"&54763232763#"'&#"&6326754'&#"#3=|yG ejXB$ '' RVFT7Zs:+f 5H98 3!1 #JhTB5#=a))#  y_ 7*kE):D ):s+4 +4 +@ +!++.;/ֱ* 2* + +*1+ <+1*99.94 99 99014?6327> 32#"'&'64'4'.'32654&#" # #  h#: ']Ahd=s 3>T1-   ''?F; sFT /i='u!<+   + ++ "/ֱ#+ 99901432#"'&#"3276#"&=d/#9J56\qV L@#0G5ʎ|%-=J+H;+A +3++ +@ +K/ֱ>>E+ 522$ $E +@$. +L+E>;$9$9A;.899H$*'$9014322>465<5&'.'&'&7676323276&74.#"&732727&#"- DV +4 k   %w#i˺dTw byh ##%/) HH 9+ 5wR$5?o.V+-+ +$ +$//ֱ  + +0+99$9-9901432 '"3276"3!276545&#"5V(K'{iż + B#C}'(Q|%+/ +K2/<+6E2+ ++R/Hְ22 22H +@29 +H2 +@HA +S+2H 9%/,9 9901676767>5>7632&'&#";2/";#&""547672654'#"'&54)L3;P9)%^[9\ TC d %? h / }V3- JLD9Oh% c%f3+D|' 5oBS_+]]+% +#2N+9 ++@/F .WN +.`/ֱT C TZ+'+2'I+=a+T 5$9Z.39@FLP$9':99I%9NF=99.9 2999W099%+TZ$99014>76'&54>7676'&'46323276#"'"#"'#"&732654&'"'32654&#"5:9=# '˒P V Ǖ!- + 3^qs۬q`X{D3cGDXdHBX;_+'7e*  VT <"# '1 !+3׃F\C??Jupeqy(%i+H H +@ +e+23)=V222j/ֱS2S +@SZ +S +@h +SC+& !$22&C +@&0 +k+S`a99C8;_$9&4699e0Z99H"CP$99901767>5'4'.'.76763763232##"#&#"5&6;267654&'&#"32#"'&""'"#"&541+=)5 j  / %N JV+-)+ B'+H %!=%cg J>zL%@ -+ " XTZV/#-!3yg!/  D\H"")R3>k+1+%27+= +?/ֱ :2  +@ * + +@ +2 55/@+599 07=$90174543><54'&'"'.7676323232#"'&""&4632#") Ln (:"/ƖdD/3DF31#&'7iJ 8 1%?L1!%bDD31=% ^;'0P++/ +%/ % + +1/ ֱ ,2))/2+ */99/90146226=<6.'&'&67676"&462#"-J35798)d@XXuNCgAD13-JA=i %  ;+1 &ׇzB9JdFFbAAbDum+)2]+=3W4Fh222r/r +@ +v/kֱN 2w+Nk^99W -HL$9&99rp90167>7632?654'&#"&#&'&76:36#;#&""&5463254/&;2#&""#"'&7632654'&'&#&549#   +  %7s7 t'/- Y 8(  ;  5 B<N!;    'X+h w' * ! " 7{D' 0'?%+2(/ ֱ  +@ +  +@  +)+ #99017&547>32654/.7672332#&""&3 H%bu ?-7  -N%A )-DX%)0|+&3g L2+z+9W33t02CR^$2pz +/ֱq2q +@qx +q +@ +qc+O Oc +@OT +OI+*-2*I +@*4 ++q9c[\{$9O! Y999I"&<@W$9*;9pt*1IN$9gz !"$9#99901767>54'&/&676763236727>3236#&"#".>;267654&#"32#&#"&67632654&#"#36#&""'&5450;# @/ b FjH=98'Q 8  ;'7JF%=%xPB!J%D9#)+ /%H dr?@| @++ ^JB 1)4H53+ #;RŸwo7F&)F =FLP !7H$6 0[$+H +;+R3@,N222\/ ֱK 2K +@KP + K +@  +KF+& &F +@&0 +F& +@F= +]+K TW$9F#7R999&)599@;/9H")!-$9$999017&5476;2654'&/&676767632767236#"'"#""#"'46;>7654#"32&#*#"'#"3 B' A)+)  l9)1%K( ?, X%I'"I%]%J# C B4 X ;>'  :+'9sqAH -+Bq D++/ֱ  ++ 9999014 #"732654&#"B Ʈwdwd¾񼋨 AN}+J ++$+D3265.'.'&'5476767626762&'&#";2#'&#""#"'&)B&J!SX!  79)@ -'-)7=F- X4O' Ak  `+}  5St/6H H ?N{:y+ + ++&33;/ְ,21+6+ 6+ +<+999 93"9.999014632#&'.#"#"'&'#"#&5&'&632654.?yNb K1+551eoD4    "'{1@qqo)I;,%NP6)C'Aqm  ylD1;mL(\A6+ 32 +@ ++)+ +7/,ֱ 2, +@ +, +@,5 ++/8+,99"&,.$9990167676723232/&3276#"&=4'.#&54+mA$"#  /@94+ Vb{'  ;BW  &db 'sR ',Qo$+3F+:3 +,2R/Iֱ I +I + +<2) S+  !>F$9)&:99F?B99$/AI99901&547>7632765<.'&'"'&6767232?6#"'4.'&#"&54&'.'&()B^R BI-/+ot *9Js7yu 5)3 fd V)' :1+?#  1+! )/+ [K?+'3H.2228+L/ֱ, M+,)*1999H8901676323272+"677654'*.'&63272#"#&'&'.'.#&54-aE6I/ ))mAs Qb9:7     !-1'  #2  48)%DT*  Wn="+A33 ->Nm$2f+X3o/p+f3^999"J901&'476 72#7&'&'"&#"&5&6332?232767676."'.327636'&'&"'&'.'&L+ Z-1  qK0  bHP  #8 Kd N3 ( - , -1H   '2T$& 'E# /#N  Cy`Xo/W~d+33 )?222y+V3pO\222/ִl +l +ls ++l $9pyQ9 "e9901743>?6/.'&76323272+"7654.#*.'&763227632#"#"'&#""54;274./&3#"#&#""FKRHER5Î ! bx#$ ) I'+@LK `5J'G@YT~q;o /)/ +)evNV#)/\`/'%6 %~x3 ,GTV }H\3'!')6/7+' ZG3+#3F /2229/> +H/I+F>49901&5476;!2"7654.#&4732632##"&547>?.'& R +)5Aw/ /4=5 9H9#1*%H)DoDX5+F   ') 1?3=#F  ^`bwJ3/D)BgsZZ3+=u+ +<+,  / >/ִ+++/+?+99,<9(36$9%'99017&4>76#"#"&747676323763632726?6!"!+-#')#'%1   ;-)% %Rs 9y S   )-T  3<g+1/)=/4ְ 2'2' /83#2>+4 !6$9'9)1-9 49901&767>54'&'46725'.5476'4&'&^lݬq;6 jgmD-h^L 19[u?q9 {DlV>;=gm*Hki*+/ֱ  2 2+ 901%4372#&"4!1)= %^716E7/ְ21"2 3.%21+) 8+1.99)',990146567>54&547676&'&54654.746&dm+r7<)LZF/%!\d/Ϥ!'vR77s9{38Nb!'752#+kA75!1`Z:/ +/ + /ִ+!+99 901>32327>#"'".#"&1{oG  yo`%I=Y VZX \3TJ# yH+ +/ֱ +/ +9  $901462">+"&CgCCg7F7J3;7jFFjHV1++bNALa+JJ +@J + +-+ =+M/ֱB N+B5:;@$9-@9J%)E$99014322?62#"'&3267>3#"'&'&?6'.767&#"b! V ,/Vj1'-% 3Ff7  )- *  # w TgK+`%++N#0" BE ) qR5  09ͤe 55eW/c3H +HW +HQ +]/B /:3/2'/ ' +'! +f/KֱTKT +KN +g+TK!9]HD[`999B=?999 5899'90146767676+"#"'&763!6>7!2#"'&'&#"2632'%763232654&54632#"'.#"#"&c;/   +b:b3/j5'/1 HAPJPSc112/F ?Md!H>F]95)5@yd54'"&".=432676#";2+"3%'%";2"#&"&74>;265'&'!"=4254/&+"=4;2&'&'"'&6?4.+"##j3'!B 'j8!3>'# )> #3-%)H)  T'+/36 )##R#5IJ   ) (KT! !'6\R'-   2' Py7% 3L`+/# )-%## a h"+/ְ22 +0133ㅅ-m9Mq"/11" +1( +/N/ֱ E+b+O+%/7;L$9E@ "146>BI$9 991 7MB$901432#"'&'&#"#"&5463232654''&76'4'.'&'&m N<'// F9Fb/-f5% FKBfs\wP71/ !+L' mJVL'<4 JZ>/;2C%@pXsZC%@  LZ5R3wo\P+;[3Dwb55/3 +2 +/ֱ  + +01462"$4632#"5LkKKkL57MM75!fHHfHHfHHfHRC+ +A2 +A2A +@28 +%+, +2D/ִ + +//)+"+"++E+/99)  2A$9"59$9=>99%2 />$9, $99901    432326732+"'.'&'"3267>:3#"R^NnoHl -D\qG  bPMs s %-?P !/7+d1@v5+/)2+)++1+/A/ְ2228+2B+298 -/$9)9"$2;$901476754'"'&'476323276#"'&#"&7326=4&/D6Iq XF;^W -  `/1 D?;P? Db#VZ 3 /A1\d7+ L+3FF1;  LBo%)+&/ִ +'+ !$901&76732'#"'&7>;2+"#"'&'L - ż-   / } +"b{!q#9 u 5+ + +@ +/ֱ +@ ++015!#y`{Z+%5463%2%"Z!sH F? JU+ +H +0A33H5F22;M +;%S +3%V/ִ + +? K2? +@?D +? +@ +?P+((++W+  #H$9?$G99P% :+F$9(*67$9025999HG9; 99M*+$9S (999%901  ! ! 542654&'"=4%2#&"'#"2#&"&32654&#"?jIImu y /)%T'-J=Z/ osbL#9FEDz{#NN lF - #}#J# +TIH^ + / +2 + /+ ++0154;!2#!"6-39-+R'N%bj C/ / /ֱ  ++ $9 990146  &72654&#"buwuTRu‹ŠRwwRTvv 1DnB+6 +//3 +2/ +@ +E/*ְ22* +@ +<2* +@* +22F+*$9/6#9901543!254&547323!2#!&#'"/&654&#!"&546 %2#!"&B'E!s'!%! a5)''B73!9!]@!^#  -5#h=+2u0/! ( + / 3/ִ+ + + &+&/++4+  $9!09(9 $901567>54&#"&5>32;27676;2#!"&7oH7@1j)T mhN$89D9  +)7 #B^=;'7+9} ou\/LG'%; 1# Z5+-I+/+ + +/ ./ ֱ(  #/+# %9#(99901463232654&#"'&67654&#"&7>32#"&+#m1N3! + )!L5C'RLmD?JȁL$NV@-=) %\:"^%/T\NAF7aDo7NJ 6+ +/ִ ++  99  99016;6&^ B=!J*[+ 2 +@ +2+/"ֱ +/+b+ +@ +,+"901467 76+"+"54+"+"&54&#.'&%-J#-`+-7//#w)k# ghXLy1(/ + + /ֱ +01462"CZDDZ[EC0-E5* //ֱ+9 90133#"'&767632654#"&բL>;LnP-' #1+[t _?Rq !1!;/ ed##:/ 2$/ ֱ  +@  +%+ 99 901&767627#&"&54?>5r8^/ 7 #N=2ZF #';7d F +//ֱ  ++ 999 9990146 #"32654&#";%nJ=UoJ=Twu5&7767;2#56;2++&'7&#!"&732=t:e! >U : T FBJh%R' Z  d l9/XJ+++ &+ C  - #7 ! ' k eL#3hf+W f+^ +-+)+ f) +J33B i/ ֱ  +@  + G+D+D?+M Ma \+\/a+j+G 45$9?D9JQV$9M,+99fEM99 9),9901&767627#&"&54?>5>3&#'&%567>54&#"&5>32327676732#!"&r8^/ 7 #N4 F%F 7+7m=5 B1j)S mh2KT +@KD +`+! #9T%Y89Z$9K:\99ZW99(?^99>9#%:;$901463232654&#"'&7654&#"&7>32#"&6/&56;2++&'7&+"732'5#/#j#3P5#!=/')"P1W %TNrD˃P +'L/*_i%R' Z  d +m)RZ=/>-/^:"bT^PBC91o7mK#% # #7 !  'u Ry%.)+- +#/ +2//ִ+ + +++*2& &/0+&9 (-$9),99# 9-99014767>54&'&>7632632#"&462"&R1_-/  1 hLZZ`ZdnZJjJJjJog'"!19  fNZ#3[X`?<3HFjHH @MZm?+33"%5$2 +-P +- +[/KִH+\+HK RTU$9?499-/399P9 X99017626?'&6732;2#&"543263>'&'&#!&76#$#&6372'&'626'&'&J-!x BNhX%-?#56 1?K##\ V-d)% )>< m+}i5: DCR2 =+j3F'// 3/++d>/'m +FR>K[T+:33"3222 ++A ++ +\/]+"299+-199A9 I99017626?'&6732;2#&"54;>'&'&#!&76#$#&626'&'&6326362&J-!x BNhX%-?#5T1?K##\ V-d)}i5: %e %/ -'+  FDCR2 =+j3F'// 31++d>/ +F L#@S`U?+33"%5$2 +-V +- +a/b+?499-/399V9 ^99017626?'&6732;2#&"543263>'&'&#!&76#$#&67>/'&626'&'&J-!x BNhX%-?#56 1?K##\ V-d)y#}i5: DCR2 =+j3F'// 3/++d>/; # : +F@_l?+33"%5$2 +-b +- +U/H +YHU+D +m/Aִ]+]K+P+n+]A09K@  %)/59'&'&#!&76#$#&>32326766#"'&#"626'&'&J-!x BNhX%-?#56 1?K##\ V-d)ghaRxL%  t]TtR  <}i5: DCR2 =+j3F'// 3/++d>/ꇓR5/L qP9"4% +F@JWc?+33"%5$2 +-M +- +I/a3D +[2d/BֱG GX+^ e+GB@ /059<LMU$9XS9^'*OQR $9-/399 ?4U999017626?'&6732;2#&"543263>'&'&#!&76#$#&4632#"626'&'&4632#"&J-!x BNhX%-?#56 1?K##\ V-d)N57PP757}i5: N79LL97NDCR2 =+j3F'// 3/++d>/oNNoK  +Fw7NN75NMm@JWa?+33"%5$2 +-M +- +I/[ `/D b/BִY+Y^+ 2G+c+YB9< KLM$9^DIWOQ$9G"*999-/399M9 U99`[BFGA$9017626?'&6732;2#&"543263>'&'&#!&76#$#&4632#"626'&'&3264&#"J-!x BNhX%-?#56 1?K##\ V-d){XT{{TXJ}i5: !:)%99%)DCR2 =+j3F'// 3/++d>/@{{{  +FR::R9D9+b+3O b+hy2hb +@h[ ++- +3- +@-! +r9 + 2I9 +2 /mְ2L/2mL +@me +L7+<++7LF9<)AE$9Oh9r>EBw$9F92I9-9 999b~99901'&67>7654.#"&?63$2+".5.+!"372767632#'"'."37>767>;2#!"=4>5754&#!"32#"&"".4'!2654s?S? +-!J( .'9' ^  2`/\-b@- A)i)Y!+-#^))`)#9_  15/!- :9H J-#d %qRP)+M++4/?Q/ֱ B+11+ +R+B-47O$91*.)$9#($9 999?4;9)1<99#%999999901!276'%"327>7>&#"#"'&7>7632654&#"&4?6'$qNB 6? m1'''/%7]!=]Hj  #-8sN-'!  !5K  x";F hP{9#7C < U7TC##' }0 _l\+L \++) + 1F\ +1 m/ֱI,2Ik+h+h#++?#+B+B/?+R#+V+n+kI(Fl999Bh&C99?$599#\99FL>@UV$91=9) 9<$901>763>54&#*.'&763$2'&5.'"&;267>&'.+;26767676# '&6372'&+ H^-/d  %-+Dw1 s- ))-s#koJ-- V5 V #=&: jT<A #BlYw8h $i /6 d(s&7iBto''0ZkW+G W++$ + ,AW +, l/ֱD'2D++:+=+=/:+M+Q+m+=D!af999:099W99AG9;PQ$9,89$47$901>763>54&#"'&763$2'&5.'"&;267>&'.+;26767676# '672"&+ H^-/d3 %-+Dw1 s- ))-s#koJ-- V5 b %BT<A#BlYw8h $i /6 d(s&7iBto'L#0 ^q[+K [++( + 0E[ +0 r/ֱH+2H#++>#+A+A/>+Q#+U+s+AHm9>$4i999#K=?TU$90<9( 8;$901>763>54&#*.'&763$2'&5.'&";267>&'.+;26767676# '67>/'&+ H^-/d  %-+DwN s- ))-s#koJ-- V5  y %T<A #BlYw8h $i /6 d(s&7iBto'<# 0]hs7+Z+J Z++( + /DZ7 +/ g/r3a +l2t/ֱG+2_ d Gj+o o#++=#+@+@/=+P#+T+u+d_D9ojA9=@$399#Z99DJ<>ST$9/;97:9( 9901>763>54&#*.'&763$2'&5.'&";267>2&'.+;26767676# '4632#"$4632#"+ H^-/d  %-+DwNs- ))-s#koJ-- V5  J35JJ53J37HH73T<A !BjYy8f "k -6 f(s&7iBto'kIK45GIgKI63Ij 1>`/+-3(2+ 2?/ֱ!92! +@ + 2!<+?'.'&676;2272"#"2'&"&6372'&'jX%'J% -l)T) 1$ !7+7m#!'PHEL/H 4=)P'j(1=Q/+-3(2+ 2>/ֱ!! +@ + 2?+!.45$9/.9017463>?'.'&676;2272"#"2'&"&62>&jX%'J% -l)T) 1$ `>P E/ D#!'PHGL-H 4=)PN!9XBPA+?392$+-2C/ֱ44 +@ + 2D+4'@999A@90167>/'&463>?'.'&676;2272"#2#&"X w!X''L# -l)V+ -'/  %; #  !)NHEN-H 2;+3 -#95@3+13 ,2+3 2>/39 +2A/ֱ'' +@ +2'+ / 6'+< B+3$9629<'/19>$9 3299901462"463>?'.'&67;276"#2'&"&4632#"&9LkKKk X%'J# yC)V) .&0 .K67LL75LoNNoL!)NHEL/J"8;+3P7ONoLNV5Z+9,2+J+ 3 +W3 +Q2[/1ְ 2ZM2Z1 +@ZU +1Z +@1 +@1 +Z?+ \+?Z X99939*1)999?99 E90154>;26=4&#"54?6!2# &547>2326764&3267654&'.'&#"&3%2#" /v)'1o{hJJ X5+nGm`?v.%  7/H30-DOZB + -L;:k^)!D+J11 R/L!'JqFeD+B3;2.+ +"3)22Z/N +^NZ+J +f/ֱ77 +@ +7G+c+cQ+W+W+-g+G799c=9Q2BJ@Z$9W" 999#99,25=$9 9Zed99NGc9901>325&'"5476327654&'&'.'"&63%2#'&'.26#$"'>32326746#"'&#"@!1m+7!3 !L_q+d  D?)  h`RyL% #!w\RtR  ;$6k/'Z V= 1-3+q% d!5 =R5/L qR7"2%f- $V ++%/ֱ #+ + + &+#  $99901! ! 325#"&6372'&fF=\U+5!% 9+9j9ZV>b)f- &G ++'/ֱ + (+  & $99901! ! 325#"663&fF=\U+d # A9ZV>bL# f- *G +++/ֱ + ,+  *"$99901! ! 325#"67>/'&fF=\U+  {' 9ZV>b; # f- 6 +++/ +/++ +7/ֱ +4+4"+&+&+ 8+"4 +$9&#999+659949901! ! 325#">32267676#"'&'"fF=\U+i^RwN  #uZTqX  <9ZV>bM3-H jK91f-  *r ++ /(3 +#2+/ֱ + !+& &+ ,+9! 9999901! ! 325#"4632"%462"&fF=\U+O67NNoNnNNnN9ZV>b%oNNoL7ON85NN:6&>7>26767>'&.'&7676'&!7 4''/l  +%%b' ''+' L  u/!')  #a%+m  '#)'d bnu#1?t+6//@/ֱ$ $:+ A+$ "$9:!,23$99969/@  '<$9 9901!2?6!"'&&'&?6'&676'&#"3276'&bLs%d@#!s 'qm7t  (s! Rl !g'$Ȫ'k/Z >K3+ ++ 3< '222L/8ֱ8 +@8 +J+G+G+++ +@+% +M+J3@$9G9<+8990146762+"3 7654&/.762# .54&'"&&6372'&/P V5#X;q q?I>\s6n<#=(< b -+1P9uTlVP'Xdiq7RF5FuL$'/Z?Nl4+ ++!3= (222O/9ֱ9 +@9 ++,, +@,& +P+ 4NF$9=,999014676 2+"3 7654&/.362# .54&'"&%672&/+{} V5#X;q q?I>\s6nb %B -+1P9uTlVR'Xdiq7RF5FuL$L#/Z=Pk2+ ++ 3; &222Q/7ֱ7 +@7 ++** +@*$ +R+2PH$9;*7990146762+"3 7654&/.7!2# .54&'"&%67>/'&/P T7#X;q q?I>\s6n y#! -+3N9uTnVP%Xbiq7RF5Fu N$; # /Z@HR5+ ++#3> *222H/P3D +K2S/:ֱ: +@: +B+F FI+N N+.. +@.( +T+FB 999I599N"99>.:99014676 2'#"3 7654&/.362# .54&'"&$462"%462"&/+{} T1%Xv#X;q q? PP\o2nMoNNo}PoLLoP -+1P9uuNTnVP%XGRF5FuN$oNNoL7ON85NN!Q\=+G52+3 #P222]/JְL222J +@29 +2+! +^+2J3>76'.'"%676&!j59--% *'! B?5 #w!  )3)JSV!Tb3 D#-+#Qn lb P)-!/7 -{}B-/-87=q=N!)'oFDR-+/3&62+B 2I/ +S/:ֱ#E22#: +@# +@#+ +#L+ T+#:.99L-$9&-.99BIO99 90154376#"72#"'";#$".7>3276754'&'&'&32654'&''f) j  {\37X+3V  d %'j#[!‡  N3  ,bLo !D7 'MK+I3B2+& & +&" +9+ 4. +4N/ֱ?? +@?E +? +@ +?)+) +) +)7 7 +@72 +O+?J97.I$9)9KEJ999.999499999017467>=46762#"&5463232654&'&#"'&547>4&"3'&&' H'AuŞo ٞ1E)1+!7h^'@ u77BӰ!TMVb7 1ύ/+!1z !TVZJ 3/D5BP+ 3+,3F 3+# +F3 +@F' +:+Q/ְ2C CI+A22>+R+C6799I @ 03BFO$9>./99,9F3/9#*9 ILO$9:@9017476765'&#"&54763232763#"'&#"&&6372'&326754&3=|yG ejXB$ ''  RVFT7Zs# D!: y:+f 5Hf98 3!1 #JhTB5#=a))#/y_ 7*k(V):D)3/J5CR+ 3+,39 3+# +93 +@9' +G+S/ְ26 6<+2T+< @ 039BR$9,/9993/9#*9 /'&326754&3=|yG ejXB$ ''  RVFT7Zs:  c~:+f 5Hf98 3!1 #JhTB5#=a))#/y_ 7*k.# ):D)3/5Sa+ 3+,3W 3+# +W3 +@W' +I/= +M=I+9 +b/ְ2T 6T+Q+TZ+2@+D+c+ZQ039K$9,/;=I$9#W*9 Z]`$9ISR99=6Q99017476765'&#"&54763232763#"'&#"&>323267636#"'&'"326754&3=|yG ejXB$ ''  RVFT7Zs'i^RwN  !uZVqV  <:+f 5Hf98 3!1 #JhTB5#=a))#/y_ 7*k}N1-H jL9!/% ):D)3/5?MY+ 3+,3C 3+# +C3 +@C' +W/=3Q +82Z/6ֱ; 3@ ;F+N22T [+;6 3CL$9F01K$9,/QW$9#C*93/I999017476765'&#"&54763232763#"'&#"&462"&326754&4632#"&3=|yG ejXB$ ''  RVFT7ZsRJfJJfJ\:+f 5HfJ35HH53J98 3!1 #JhTB5#=a))#/y_ 7*k3JJ37HG):D)F3JJ35JJ3/q5?MW+ 3+,3C 3+# +C3 +@C' +>/Q V/9 X/ְ2@ 7@+O+@F+2TF+<+Y+O73999F@  019>CLQV$9T.9,9#C*9 FIL$9VQ7;<6$9017476765'&#"&54763232763#"'&#"&4632#"326754&3264&#"3=|yG ejXB$ ''  RVFT7ZszXT{{TXZ:+f 5HfO9)%::%)98 3!1 #JhTB5#=a))#/y_ 7*k{{{):D)R::R9JwDRa +`+;+B30 +;+H X); +Xb/ֱ  E J+2+S2+J +@+& +c+J @BHQ$9+=?$90H=?99)5>EJM$9X%99 #$]$9;990174676754#"&547632>7632#!"3267>#"'&#"&732754&23!26?.#"JtbN/D odaV  o{7 3-N=\@ % m?CZy7-J\1DP7  [7^b'11)4+JjNa \u}## HJb3A  ύBRon/3V 3RZ=!'uB+   + +@+ +'/2/2C/ֱ5+$D+5 !'+A$9$ "$92'.9@!$0999 9901432#"'&#"327>#"'.767>32654&&?6&#.=!d/#9J56\q\u! 9PzR/) #%;1G# * y L@%1J5Ύ  =^>Rv 3!%   5<D'4o+&+ +++!  +!5/ֱ 2+/+6+2 &($9 99&9+1901432%"3276"3!2'&#"6372'&'5T '{g%+uE# /5: u B)C}' (5<J'4R+&+ +++!  +!5/ֱ 6+ 99&9+3901432%"3276"3!2'&#"76;2&5T '{g%+u)c #B B)C}' J# 5<2/:S+9+ +4  +4;/ֱ <+/9 994999901432%"3276"67>/'&3!2'&#"5T '{gَ  bG%+u B)C}'.#  5<'2>+1+ +,  +,<54'&'"'.767636'&"&&6372'&) Ln?:))^!;#7 #1'7iJ 8 1%OL1%%&)J*7C(+!2.+8/ ֱ  +@$ +9+ '9."6999017&3><54'&'"'.767636'&"&6;2&) Ln?:))^w^ # ?#1'7iJ 8 1%OL1%%=!  52=4;+42>/ ֱ/ / +@/7 +?+/ :990167>/'&&3><54'&'"'.767636'&"&  c/ Ln?:))^.# J1'7iJ 8 1%OL1%%B3=1+ *2/ֱ% % +@%- +%+ / 5%+: ?+ 1$9%509:/7<999< #+99014632"&3><54'&'"'.767636'&"&4632#"!L57LMk Ln?:))^N67JJ75!fHHfHJ1'7iJ 8 1%OL1%% fHHfH^^8D[+B6+<E/ֱ99?+2F+9$9?@ !&-/6$9B<29901432'&'&'&'&?64'&'3.?676#"32654&#"^ ;B+- #I%! ' 7P ,k+!" }`uò{jd O9F's!' );\   ^u3%Nm+> +0+I35&D222c/V +gVc+R +n/ֱA2OA+k+A;+ ; +@;3 +^ ;+Y+Y/^+o+kO9;/GIRUc$9 Y#9>5 #'$99cml99VOk99017&6;2654'&/&67>7676767236#"$&'4;>7654&#"32&'#">32267636#"'&'"3 ?%=)' :-'9uqbq?H"+R50K qO9#3%BD %a+ ++&/ֱ  $+ + +'+$  $99"901432#"32654&#"&6372&'&BĮydwd^!!B !*BJ %[+ ++&/ֱ  +'+  %999!"9999$901432#"32654&#"6;2&BĮydwdb !BnL!BE *P+( +"+/ֱ%+,+9% 9999("901432#"67>/'&32654&#"B  bydvdþ-# 󮇪B )5+3 +-/ +#+ +6/ֱ**'  + /'+*0+2+7+0 $93-9)(99 '9901432#">323267676#"'&#"32654&#"Bi^RvN! !tZVqV  <+ydwd¾N1-G jL9!/%󮇪B !-p+ ++/3% +2./ֱ + +(+" "/( /+" $9901432#"462"&32654&#"4632#"&BIgIIgIydwd9J35JJ53Jže3JJ37HGش3JJ35JJ )7/ +/ +(/# +*/ְ 2%2++01543!32#!"&4632#"&>2"&I#(# 7<')77)'<:N97R:3/ '!)88)'9:x'17')7;\ ,9Ex+7+ ++<F/ֱ--?+G+-9?4E$99<&'$97(0B$9999014322?6#"'&/.>76'&7676'&'"2654'&\ɑZ3 Ï}m ! /bTlfhRmf2  R k> N% ` b3boj b(*DFT +#++<+ +1+K+U/?ֱ  S+O+O+22% V+ ?GH999S 7632765<.'&'"'&67676?6'4.'&#"&54&'.'&6372&'&/)B^R BI5/+ otF9Js7yu 5 #7+#q >3 fd V)' :1/?# &-17! )/+ *(*JFT +#++<+ +1+J+U/?ֱ  +22% V+ ?947632765<.'&'"'&67676?6'4.'&#"&54&'.'%6;2&/)B^R BI5/+ otF9Js7yu 5ub @ >3 fd V)' :1/?# &-17! )/+ L!(*EFY +#++<+ +1+Z/?ֱ  +22% [+ ?Y9947632765<.'&'"'&67676?6'4.'&#"&54&'.'767>/'&/)B^R BI5/+ otF9Js7yu 5  b >3 fd V)' :1/?# &-17! )/+ -# (*FQ\ +#++<+ +1+O/Z3J +U2]/?ֱ G L +22% %X R R/X ^+LG<99R $9X9999 <258999 &(+7?E$9 9901&7>7632765<.'&'"'&67676?6'4.'&#"&54&'.'462#"&%4632"&/)B^R BI5/+ otF9Js7yu 5JfLJ53JPL35HHjJ >3 fd V)' :1/?# &-17! )/+ D3JJ37HG83JJ35JJJ?N@+ 3? (222C+2/7 +O/P+?7-99CM901&6;!2"7654.#&4732632##"&547>?.'%6;2&R +)5Aw/ /4=5  9H9#1*%H)DoDX5+FTb@ )%') 1?3=#F))^`bwJ3/D)BgsZZ3N!DOx'+M +-+G 2+=/82P/ ֱ4 E224J+*Q+4 0>99J'-;=$9-849G09M*9'!%99014654623>554&'.=&76?60632#"'&?6'$".2654&#"1#   HmJV+L% # Zmr^f\i# Tg'5   D}χL'  f\?HTy+ 3? (2222/7 +R/G3L +B2U/AֱE EI+O V+EA27; $9I-,999O!+$9?7-9901&6;!2"7654.#&4732632##"&547>?.'462#"%4632#"&R +)5Aw/ /4=5  9H9#1*%H)DoDX5+FPjNN57N57NN75N )%') 1?3=#F))^`bwJ3/D)BgsZZ3nNNnL7NN75NNoP\k.++T+D Z+`DT +@DK + + +i'54&#"o۲Nh B'E  /N!b 1N !uG5y){FCghL1XVF!  &b, hX!!+)R+1 a#BW+9E9%s;sq`s.:F+ 38E2,+&32,+ +?, +?G/ֱ//5+ 5 +@ +H+5/,99(*$92()*999?, /5$98 $9014327632#!*3276"'&#"732654&#"%23!25.#"`¸myQ%% iVTZbe`yɴo\lo^V9 {5##!Z;? N^#KT^8+@22+3"H222T/\3O +W2_/BְD200B +@04 +R0B+M M/R U0B+Z `+BM 7:OS$9RC90UW]99Z2X\$9@81499 0999901676#"67>&+.6376#76#$"&7663676'.'#"&$4632"%462"&#1s> ?'B  0#)% 'ׅH#q ) (` HZXO67NNoNnLLnN!++``lm-+% #5B-{=-;q?o?#oNNoL7ON85NNF0 / +/ִ ++0167>/'&F  x-# Y/ ++ +/ִ+ +++ 9999 9901>323267636#"'&'"h^RwN! !uZVpV  ;ρN1-H jL9!/%Z+%5463%2%"Z!sH FZ+%5463%2%"Z!sH FZ+%5463%2%"Z!sH FN+/ 2 /+01<>7$2#%"&NX)% '  ? /  /+  90163%'%"74&/yr-) #=+ +2/ִ b+ +@  +2+ 990146762>32#"&i +:D3BZZb)%RcA-3Fn5/ +/ִ+ + ++990167654#"&54632+:H1DVs\+ T]?/3FhN\/5+ ++/ִ+ + + 2+0174632'&7654##"&D/=Ns`    )551@gG^) ' PX=-`++3" + %222./ֱ + ++   + ( +/+9"+ ($901467663632#"&%467632632#"&f%!->J5H\g%#  /;J5H\R`+ERa A-3FhL`+ )PcA-3Fh0]/"33 +(21/ֱ + ++++ +% +2+99+$9014632'&>54#"&&7654&"#"&54632'K6F^~d))FB # -=->L5F^{d+3FhN\/ 7#K0 ?%Pa ?/3FhN\/J-l+(333 +2++./ִ+ + +&++& +& +/+&#9990174632&7654#"##"&%4632&7654+#"&H3BVd! +<H3BVd+<51@dJ\)C PX?+1@dJ\'E NZ=d 5+ ++ + /ִ + + +01462#"`^?^` K+33 + 22+ + /ֱ  + + !+01$4632"%4632#"&%4632#"&N97JGsqK:7LH9;LL79JH97N#fFL31Bq5JLf>@93FLf@H25+333R p2R +CEc$3{K>@[iy$2,+" ," +,( +"  +/ְ2v鰂2vm+2X12Xm +@X` +mX +@mg +XN+;%2N; +@NG ++v99me}$9Xd$9N ,E[c$9;*799 {;?99Tqr9995R:$999 901&7632654&+"'&7>7676767>27>#"'&#"%67636&"54>2654&'"$;2#&"5473265&'&32'$3726&5676'&#"9J'X- \)}HN!%LF%ZV\PZVX9 L'@!Q'LH-%C7  P 2%JtP G)L 1Vr?WB%7@ ;+IPuR7' +rH P+38HES}C)' 3) ?#/) # !9Z%FsR;0|+33j IKh222j :+7Wy{$3@R-0^su$2+! 2! +/ְ2m}2md+O鰓2OF+2*鱡+mz99dY\wy$9O$9F!:=UX$9*$9 @*/N_t$9Ji99j 9999!:9z9901>763>54+"'&7>7676767>27632327626#&"'&76763>54'$36#&"'&676767654&#'"36#$"372>7676'&'.#"3!2'&")7/!\+   X+}JNsV1%;3   ++7 'D  J  o 5. fN 9 -J;N C >!hXD3L-)F- :VrBVB ` / H ;%F(P2 :O!`h- +# { z +sR; yHGh}JE+7I/33 -2/)3 #2 /K/ֱH22+#422+ +@+' +02+ +@ +2++:2+>+L++7E$9@B999I7<9 90154;&=#"=4;>3276&'.#"!2#!!2#!3267>&#"#"&'#"#\J3#d^T!H PlVhi 9#3;#3gbVw8/3#>#V3"'3;'#'7 #hĿ'#'N#'"'x] y-!59D+\3KU222K427 +2'/k333,=eq$2/ִ7+71+1 +@1* +++@++@ +@@: +H2u+bbu +@bZ +i2ub +@un ++17'99"%999 9@K99L9uMSl$9,'{}$97PQRxz$949KDOS999014?>3%6+.#"#"2&"&54727>54"#"543>54&'"'&54637676;2#32#!=4;>54#"+"'&'&;2#&!?i#& J_9   &!17XH-O'53 f/4 +=3   1/3#! V9 H#7 !!F9V%#JP# % ''%L%J#+%#'DX'  P!9 \\5+ ++ +/ִ + ++011!\\R0ba+936C[222"+" +" +(Pa" +( c/ְ2W $2WH+2 2d+W_9H"=@\^$92 ,.;$9P59( 99"./999017&?>54&/.7>76547>32#"'&#"76?6&#""'&>723>54&'*#"&""R"0- G 41=-ɚh> -N`!{b4 !-)?-9ub  +;}V)-o+hbH/1#+%   hm/B +q\T! ]o/H-:KWN+: 2+J+(3#/@222T+ X/ְ2=L2=3+Q2 Y+=H993-DE999 9: 9N9TR9901>7367654'#"&76?67762327632'!#"'&6732654&'"#"36#"&""3!27&"' B\ dT1#5;\ V 3-%C  D:!?hSF2J+-+  / B(R,5 !F(Lp!uHGf25+333R p2R +CEc$3{K>@[iy$2,+" ," +,( +"  +/ְ2v鰂2vm+2X12Xm +@X` +mX +@mg +XN+;%2N; +@NG ++v99me}$9Xd$9N ,E[c$9;*799 {;?99Tqr9995R:$999 901&7632654&+"'&7>7676767>27>#"'&#"%67636&"54>2654&'"$;2#&"5473265&'&32'$3726&5676'&#"9J'X- \)}HN!%LF%ZV\PZVX9 L'@!Q'LH-%C7  P 2%JtP G)L 1Vr?WB%7@ ;+IPuR7' +rH P+38HES}C)' 3) ?#/) # !9Z%FsR;0|+33j IKh222j :+7Wy{$3@R-0^su$2+! 2! +/ְ2m}2md+O鰓2OF+2*鱡+mz99dY\wy$9O$9F!:=UX$9*$9 @*/N_t$9Ji99j 9999!:9z9901>763>54+"'&7>7676767>27632327626#&"'&76763>54'$36#&"'&676767654&#'"36#$"372>7676'&'.#"3!2'&")7/!\+   X+}JNsV1%;3   ++7 'D  J  o 5. fN 9 -J;N C >!hXD3L-)F- :VrBVB ` / H ;%F(P2 :O!`h- +# { z +sR; yHGhA>C_<D-D-%mm%D-fJJVRzNEzZTNyDAo7~X\VHV?+m//XTqM0jH(+2Ef3X$srF..!G5JTB;/O3t=-t5(5V( )%$-00/0$B ?)?(E' "-GE1-b^/Em5^R-/LzZ^?Qbfffe;Zfe#RQq0000jjX9\Jfffffb////!'\'O3O3O3O3O3O3;Jt=t5t5t5t5 ) )  \^/3$B$B$B$B$B\\E(E(E(E(/Io3`#Fmmy<<|izZzZzZN--r| 203!\xRO- 20,,,,dP"Vr*Z J : . l  t >T4L8 t82@ !","~""#,#X#$6$%%&8&'()D)**, ,-*-.|//0<01v2<3348445n55667889l9:x;;d;;<<= =><>>?F?n?@@P@A~BvCTCDEVFGGHJJKLMNOPPQVR&S&STTzU"UV VWhXXYZZ[[\]~^J_<``abccdde8ef(fgZh\hiu|uv0vw wNwwyzhzh{|x|}t~8 r    z &J  p &  0ETBembo designed for Eward Tufte / Graphics Press (c) 2002 Dmitry Krasny / Deka DesignETBemboSemiBoldOSFFontForge 2.0 : ETBembo SemiBold Oldstyle Figures : 10-3-2014ETBembo SemiBoldOSFVersion 001.001 ETBembo-SemiBoldOSFWebfont 1.0Mon Mar 10 23:04:20 2014f  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~     glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011 figuredashuni202Funi205FEurouni25FCuniFB01uniFB02uniFB03uniFB04KPXYF+X!YKRX!Y+\X E+D Eg++D Eq++D E++D E++D EO++D E4++D E "++D E+D E +Fv+D E +Fv+D E [+Fv+D EC+Fv+D E+Fv+D E+Fv+D ES+Fv+D E@+Fv+D E+Fv+DY+S}4tufte/inst/rmarkdown/templates/tufte_html/resources/et-book/roman-old-style-figures.ttf0000755000176200001440000021332412647360110031324 0ustar liggesusersFFTMjGDEF8 OS/2e$=XVcmapDcvt  0fpgmS/egasp4glyf@ S<headi 6hhea0 $hmtx?V $locat{ maxp name2CLbXpost{prep?webfrQS=D"vD"033d@JPfEd@ ff+x.  ~Sx    " & / : _ !"% Rx    " & / 9 _ !"%oK6  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ardeiwpkvjsgl{cnm|b׸xqyV3ANEJ;Vbhyv,KLPXJvY#?+X=YKLPX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-DdU./<2<2/<2<23!%!!D $hUD )+ +/ְ22+017462"&&63'?cAAc?!!C;N) NN1;;1/>>%&5Jd!`/ +"/ֱ+ /+++ /+/ /+#+ 9 99901432'"&'&%42&5&o5? ;  3wu5?;!7ًF;==%!F;Ft 7^D+N33 +)@22/l}333 +^222 +@v +2/+6>+ %>N+ ysY>a+ 3\=+ ++&%+/3+13+23+\>\=+sZsY+[sY+rsY+yzy+%++++3yy+>-+ %+%+ #9999 99%999&9zy9rsY9[9Z9/391929>\=9@ %&/1=>[\rsyz23YZ..............................@ %&/1=>[\rsyz23YZ..............................@~99H901&74;2676'*#"&7&747667>367>774>37637:'*#"3726"#'"+"76&'&"#".>56&+".$6276&#&^-BiX+| L ' #E-+ 5 2G7S /9B  <'bynC<% C %D   D  s /> Ǜ%B ! ;0 l   B!! D%=  5C "   H %)! J%yDht,+3,+/$$ s/ִi .+i +am222u +X222 u +@ +uQ+){222I +/=222IQ +@I5 +I+D 鱢+ ie$9u^_q999IQ,92:AG$9299,$)099017463227&'&'&54672=6?366=6732#"'&'"+&?4#'"#&7=&'&'&74=6&37254&/&'&654'&7654/&J/!5#y#9xc31  f|)1-TeZ +53  6=K T ?1 = b ?/yb !1X ) \+H`\!n V R ` b7!+D/%5NRs$h:    +7BVNB-  '  @  BdBZu! #/:{3+-8/' //;/ֱ + $+0 06+* <+  #"$960'-99983$99014632#"&73264&#"6#"4632#"&73264&#"Zy{{wu^PR^`VNZ3! %1y{{wu^PR^`VNZox{w{n  \oxzvzV Scm'+".2++Q+H3W +Q+A k/ n/ֱT T+d dh+ o+dQ999h W$9[99WAF9'QDNaf$9kdh$90147676'&54632767>54.#.763763276#"&'&'&#"&732676'&'&'&654&#"Vy5# {D^XEN7/8-F <+3)?e %"7@+5q~Vd;  LJnTF HfqPPA;DHh/H}u{`v3[VfbYH| !  ]Nup =>d@N5wNlӴubL ojq5 sPNZJN1d1 / +/ֱ+9  90142'.'&5&Nn5@ 2 2ϖF;'7B 5u/ִ ++0176'&Ӷ=eNVg=HA<ĴhV! 5/ִ ++01664'&'&676&bNVh9> %!з!Ay;fH )! 8dnM/l3H +2/:3 +52o/^ְ&2Z +2TZ^+d +d/"3T +/2p+d^ (\999ZT)-A[$9HMQVbch$9!0Se$9$-.3$901467>7676'&'.'.546325&'&5462767632#"&'&'&"&54767674#"&/9T9>B9*+ 7/'/   JZ+J+\BB(/%O^/I L(cM+ '1HX-J- TL/!*1' % # '/5 X7 `T`#55#%X\X ;RL3D# ) F/''Z5 {O#N55'!Pv 1^/w =M;/"3 +2 ; +@  +>/7ְ 2* .+2*7 +@* +7* +@7 +?+015<>23!2654&54;23!2#!*#'".<54#!"&  P V   O7  /C?  F   7+ +/ִ @+ +@ ++990174632'.'&7654'&&B-=JhT  /D?-76762:#$&676272765&4'&&o7N J 32  3+ 3K # dk/FN#)@ #5B.?+ "+.+ +//ֱ 0+.9  %$9014767654&#"&7>32 7>7676'#!B咮qXs{/ ^guToX7)  F1Z+zXoqj[eLX=7J  {0]///i+/ +1/ ֱ,  # 2+# )9 ,$99#)999014632654'&&7$54&#".7>32#"{R%R69PTBn I@`b3Zd -'oਾ/'=lH;5LXqdokz^6%7Y%/#33( "+ *22%( +@% +8/ֱ!022 2 +@ +9+39(%")999016&7672/"+&5&7&%63723676776'&:<  i  }  'a  B  ' g)  D} 0o/e-/ +0/ ִ) + ) + +1+6m+ ........@-901463232654.'&7676#'&#"&o+u"VLwR '3  Ob^Μ1;!/ )nNX3 ϚJ b =XՅd-b)U+%/2*/ֱ "+ ++" 99999%99 9014>76763632#"7327654&#"b%#c )'謶nX>^==^>>^='Z99Z;/99/-::1X+ +/ +/ִ b+ /3 + $990174632&7674#"#"&462"D/?Td!'7>^??^J-=^J`'5Xg<{Z;9/-: &747%6'$&j#-?)-?3! 9%)!? #-BH  ", + + / +#/$+ 9901543!2#!"&632$72"#!':r'#%!b / 11%7F% -  47$%>'$%&'&=46'4&)9%A#}q=# ݌  %) !FV\!,w++% ++ + + +-/ְ"2 @+( + /+ + +.+(  %+$99%990142&'&5467>4&#"#"4632#"VŨӔ;XVX  )mLZakbfoE35DC63qݮd)!95i eJW#1eZb?=31@3UfH?+S/EES +@EK + /36Y !+b/,2g/ִB Q+B+V V +4 +324!+"20 120<+ /+h+6=+ 3.%3]%1]"]%+=_+ #]%+$]%+3231+#]% #9$92319]"#$%123........]#$%2.....@ VESY$94 ?b$9! 9bY@   36327267>54# !2$7>323! %32767654&#"Zfɍ=mbH\yb}^)   Dq?<-s-HWVs%^c  TiP4%b{5!'8+DCPy5j' #9b|[qgH! 4PE5Xs)'1AHb{F5BN``VmUS+'30HK$2+?]S +? #+n/o+S"9?;BJ$9]9 j9901767276767'&>:;2;2#&#""'&546;67654'.'."'"26#&"#&542727654'&'&'&#"\  \j^ %7C  |^? Z'5h5Nt, 3@}; D9 '7 >=5@#5kJ/  !BB #'5%#    +H*A\%+/2+W+ H=% +H]/ֱ+ B2+ +@ ++2+ Q ^+Q+%(/:$9299=/ 9H99 Q99014762654&+"6?6%2#"'& 32654&'.'&'*##532:3>7654'&'&#"+' >5}/ sMRakZ)紅mwЍ ȅTI@&$ $0- 0$ P?m[Bc)&5/C?;C#'TX! pՍpm6yV+# -N5  sR4l2+!+5/ֱ+ +6+ !,2$9 &999!2,.99'$9 $901!232762'.#"327>76&#"# sP''15ܝ@)+''1_=cXi;F WF *!  %9F F,?i+022+;+(@/$ֱ- $- +@$ +-3+ A+3-909( 399;+9016?$72#"'&547>3><54&+"543 4'.'&#"mߖ'6 4}@`1dpcDyDK-0-DN?+    ! ) - JPD.9L52 +05b]+K +* +3 1E] +1 c/ֱH -2H +@a +HA+52= +=#+ +Q+U +d+AH(99=$9#K?@TU$9*1 6;$9017>3>54&#*.'&763$ 2'&'.'&#"";2676'./;26767676# &'&542Jd33l   Oz'-JvK2  y5) #8y+osP1% N'-C L  BnX}?! b)o(Bcj,w/;k Bul   Q4QK+B2+ +  +@ +$54&'.467672!2"'.+"263>7676"'&'&#"#"';'"#& "56RX:@Ts  N'Xks= 3 !h :v;-@ZX 8RR: h:!o !I d%^R:  uVCA++',A +'62D/ֱ +< 2< +@<1 +< +/E+ *-A$9 99< .99':<99, $9 990147>32276'!"327654&474&/"&67 72'# u{nj蠃-=D}B\P e J5jgdZ= V? :\NR3## =N7v=/7J0):nm+O3HUf222+2933 +>222!_m +! o/ ֱc 2 c +@  +cY+'2E EY +@EL +p+Yc.4Sjl$9_E9!C9 B9.9017&54763>54&'.63272"3 72654&+&547636323276#3#!"'&6;265&# '";6!"5 *H5?'.'&547632327232#"#2#&#"j^--RB3g.^/9T '0TG GR6 +DP5 Hf38O+*26/ !+ 6 +  +9/ֱ0 0 +@0& +:+0!9 0901463232767>5'.#&#.763 72##"&5%++(!BZY V8%FwXn/'9%! 1VT8)  8P2kH(7{fv+O3GXm222+,/33 (3222|/ֱj 2j +@z +}+j9 $9C[g$9-90176762654&+.7633272'"767654&/&76 76'3&#"&'&672654'.'&'&32#& "'&54) ZDA]( іqO$\B!'"^)Km>*/F 'N;sDb`%qP3T%L7J%#$ C[! ! &=FR:+ !%:RR !TDO ##- 0!GmL9$P/  )#k/Z7DJ? +7?]:+' + 22@/ ֱ$ $ +@$ +A+$ 899:<9'-0999901767262327654&+.763272;26?6#$#"'&54-  B\Wo)u,5?y^HG P3$r*C-eIR<-  PV?0)`_  R' 1N6t\+Gn33>Mh222.+332u/v+6?+  c b&+ US:;?+  + + +  #9 99@ :;SUbc ...........@ :;SUbc ...........@\Z]s9993"#%Y^_$9.!&99901762367>765654&'&547632327267627:32##"'"'&74727654'4"'&2"'&549 (  -DGS7;' %H?J'7 2`!Fb#o=;1 / `s)/!   1%+>Փ@#+ F- R;3   Eq7V:+Q+M2+(3 "022W/ֱF F +@ +F+6 6 +@6, +X+FS99$(AOQ$96<9MQ699  5AB$9,999017&5476725&'&5432727654&'&'&'"&633272##"'.'&6#&#"F 7o!U>E (!O @f w3$d%  O)- nVv )!A XG$!' 6v s h$B /m'V D ++/ֱ  ++  999901! ! 32>5#"mF?`^7k/9ZV`{!r3LF9Iz"+,2+E+6 >" + J//ֱ :2/ +@/ +A+ K+/$9A "$9 96> A9901436%2#"'"32;#"#&#""'&5632654'&#"#&2654'&#"3Dh%B SG ;L16f +$Kg%)##  Q -8d" I(-\P{V!.]+,///ֱ"")+) +@ +0+)"  $999,%$901! #"%&'&'$3265#"\F?s`` ;. !G@22h/ ֱC Y2 C +@  +Cb+b +@) +i+bC6OU$99HU)99<69]9 b999017&476726=4&'"&6?6%2"#"&'&'&'.##"'"3262#"#"&3327>54&#")7\@5 bQqq\Rs!-3/? ) y3Dj'+  j> ;\ -{3'K$doZ  3RG ;#8Ifq0#1/)%  B;P?P  jR3  ) #q/sVC:+ A++-$+D/ְ20 .+ +0 +7 +7 +( +E+0<@99+$4:999(&9 :>B99-)*7$9"9014632654.'.546323276'&#"#"'&#"'&sA:VVu 7GNJWk1ɣBh9  1b`ku1ӍuD3 H ^g';d36$4131DhwF# fTdg-ib+ TF7bTh8+1B2 +N %2N +@NS +2+3U/ִQ +QG+. V+Q9G 1[ AwrwFI>\w +F` xwXT3d  H/@`   ![ L/)''  R !Kw3;dxHX+L3 +:>@$3w6$ D_t$2y/z+wX-GQku$9 5c9901636322#"676'.'.36 267656'&'.6327032#"#""'.#"#&'.'"'&543276?654#"'"#%x~ D"'D  'CsS_ qJ'f 9 m  ?UrZN-Z<7 2< _'8EX J58,7%?#!`^`.=?/a!:Z% ! !Bw H1fN ? + @5%7pGY+?3T9F`222 +&(*$3 .o222q/r+TM99 901&56763272#77654'#"&763327##&#""'&6;2'&'&;2#&#""&3>7>7>'.'"7V6F1 pj| {^iX5}En m? 1} ݂V.Xf-)`\y # ##-"&) #{} )s'! )+Vb B+ !F+;''x}73V?+9HK22$+3 -U222W/Oֱ6 6O +@6> +O6 +@O +6++ +X+6!'?999+(-99 9I999$+9901&547676323 72#"67654&+&76323272'26#&#""&7676367654'.'" N @% B/FYhBL3@1 iC # *mH`_ !)bZ rm#D!-};BF+}VP@=IqDJ35@+ */ 6/ִ +7+*9 "$99017476&#!"&'4767!23!26?>#"#"# '"&'&54J m  JR )!%q!6?3J wD V u Ө  +-M +/ /ְ2 + 2 2  +2!+9 990146762##'& ?%{!K2'V/T} /)R}d&3:'&'RK+ $VF + B+ N+/!/ ְ2 +2 / 3 +/"+901463>54'&/"=4;!'"7BJ# H7 0V'T +B/ %.673'&#".- -+)#q'# 7^%'%%J/ 2 2/+014>3!26232#!"7 3%=-)+/N<%D *+ + / ִ ++  901&6372'&  ;)) m  33s8J+ 6+-3; 6+" !+;6 +@;' +K/ְ2J J>+2 L+> 06;H$9-9;639"+/02$9 )>DJ$901747676/&'"&547632276763#"'&"#"&632675<&'&"3Rq#R `hXB" 1  RX BV9XoA0!t /cn94< # / LbTB3!;c=( wk9(g=AK! )-O-<|+8 $+8 +@ +%++3=/#ֱ. 2#. +@# +.6+ >+.#996993#98 $$99014?6227>32#"'&'64&5&'.326&#"  ''%!h+<cGsmBD/Tj/   'IJ2! C?O7g3u#<+   + +!+ $/ֱ %+ 99901432#"'&#"3276#"&3!d+5J9K+I<+B #+/B<+)2++ +@ +L/ֱ? ?F+622 F +@ - +M+F?:<$9 9)/#9:999I ?G$99 9014326564'&'.'&'&767676323272>2.4754&#"&732767&#"/Hb  %3 s#%    iǤmX}m~q  D͋  -+ 6R#  D# T'5<o%2V+1#+ +*# +*3/ֱ  + +4+99*919901432 '"3276#"3!26'.#"5X O%o  DMsٰ 3#eB"# &σ P>X T^#H{8+1A2+ #++")8 +G3" !+I/Dְ2- 2-D +@-6 +D- +@D= +J+-D9")&99901476747>7632&'&#";2#'"32;#& "'4763265&'## ^<;P9)bb?i YEfH%7#f}V1+ B PJ=On)\ L)!!L7oEUa+_R+< + +C/I 2YR +2*R + #+b/ְ 2V F 8 V\+/ /L+@ $2c+8 999V 9\@ 267>'&'47>?>'&546323276#"'&#"'3#"&732654&'&"'32654&#"7>? V(  ƒP)dŕ)+5'yu^isזufe1'j7iON^lPH`FZ) 3d)/ QV < -9 /!+/NcLHD j{zju" e+F F +@ +Z+13P*;222f/ֱM 2M +@MT +M +@d +MA+" %'22"A +@"/ +g+M\99A7:[$9"3599PZ/9F'$9901767>5'4'.'.7676327>3232##"#&#"5&3267654&'&#"32#"#&""'"#"&54))F$37 \   R{R-/R KX,/)! H11N'N"2 +Dgj 9 EN-1%1 3/D1Z-'#!':{k#5N) )R2<[-+%6+< +=/ֱ 92 44/>+49 .6<999%- +999<99017<=476767>54&'&'.7>7636#&""'4632")  ?&/%  t\"B Dm=-1>B^   9{oL +-! N7 !Z>D?' .s5ZXqZB/1=?/1+B>ArB +1-͇}?H9bDVZ;;Z>hz+2P+23G):X222h+h +@ +i/[ֱD 2D[ +@DJ +[D +[ +j+GPJ9 #<@$990147>7632?654#&7>33272';#&""5463254'&;2'"#&""5&632654'&'.+ ;% )5\ 654'&/&676763276727>3236'"#&""'&6;267674&#"32#&#""&7632654&#"36'"#&""#'D( J/ X zFhHC761X :B, >TL-D  zRDP+J@R-Ndu H%  1)/ yPF3+8{F781  +)Bw'L/  7FNPZw'N- Z+D 2D+7/N3<&J222[/ֱG 2G +@GL +G +@Y +GB+ B +@ * +B +@B: +\+GPQ999B5O999 #399<7*9D@  ';BF$99017632654'&/&47>763276763236#"#"'"#""&'43>7654#"32&"#"'"'&54! H-H) !% `JV:!E+2'M D3 `-PaJ1&M!(N1J%pD%)=@/    #.?wy1N)"!  3qF+ +/ֱ + + 99 99901432#"32654#"3LJmm @Mr+I "++$+C2( ( +@(5 +R+ H9 F999(%9F5?C999#+2ABH$9014547>7632?>54'&'.'"'&6767232327>76&/4&#"4&'.'&( )Lhd0A  T!1  qy DI;5 41qg b\9 )/ t?3 1 P113#![G2+(3D%3222;+H/I+D;9 901676323272'#"677656'&'.3272##"'&'&'&'&54 .bF8J0 /3V{@ $6ASc B=:   -Z :!  D9LejVu=k+]3t/ 0@R$3)E22v/w+tk6d999N9901&5476227236#7&'&'"&#"'&3327667765&'&'"'.327232#"'&/&+"'&/.'&q_ hX-A-!9kP!l 2' Kg R !-  -8N .  ,s  Z!! 3I`  C ; !Oo   hs5WvE+23 )?222q+Q3iJV222w/x+iqL9 !_$90174>?'.'&7623272+"767654&'*&'&763227232#'&#""4;254./&32#"#&#""JQTJPV 6ǑFJ7 -#7%5 ) ZRBN`u`#+LA \UtGu5-3/@ gxPX 4`d41aJ--B'   ,IVo|+7*  ; %'74=/ ! ^JN!+3 .E2228/= +K/ֱ*L+*$.1999=399!*I990162327276567654&'.736322##"&547>?.'&'&54# N#B(+{ 1L bP@5#?M=H+!='9f?U$76IH!0^#93!7)3 aT#J3+8$?qx_j8 *B^!+ +>+, C/ִ + + +D+9,>9()47$9!'9017>76'&#"#"'&7762323$3232727>?6 '"54 ,Aa)+-! 3 5 ,  +# DW30$ !T # B} ,# ! 4V   3?Q4/-@/7ְ 2+ 2+' ; ;/3' 2A+;7 9'+9-40901&747>54'&54672#2'.547654&'&fv mqp?@! um  sJ1hZP  {Z;\u@k; yR^Z>@  ?em.Nqj"+/ֱ 2 2+01%46372#&"&% -  G-16=/7/ְ21 !21 +@1) + 3. $28+0146567>54&547676&'&74654'.74& mu+r;D  )1jdbo1Ӧ|X9:o;y57> 77Jn#nH77 1`Z)`/ +!/ +*/ִ$ +$+ /+++$999$99! 9 9901>32232763#"'.#"'.1yj-+%   us]-JD`   ^ `1`Ry H+ +/ֱ+ / + 9 $901462"&62+"&CgCCgCL/R4A5/B@13BB J/##bN8B`+@+ +'+ 4+C/ֱ9 D+9,127$9'79!9<$9@>99901432622#"'&32676#"'&/&?6'.77&#"b# 1e d-#%' \)Ll< )- ^  { TgZ %3j# &P!+!#EH  +5 7ˤjX5f)+ ) +)# +U/d3E !+EU +EO +^/> /9312g/HֱR HR +HL +h+RH#9^EAYa999><99)9014676?6&+"'&747>3!6767!2#"'&'&"3%32#%63232654'&54632#"'&'.'&#"#"&c=1    "i^\+h/#+/ HL^JPXS+LMXp\VP7JDJh!2"/>wb=HyV?]7:(`9)m  1!M`F!-/ Hdh%d)F?=+V=!9-%1XB?29Z+q%",{/& ++/ +-/ֱ$ $)+ .+.+$ "$9) !$9$9&!$9+$9  $9017.5467'7>327'"&'326&#"υ9%%9\Js^`qP^9''9^RqnJPČNjXr\ZqN`;('<`Ru^`qI^;'';9U+W3N]2++333"%222mfU +D3m >2ytU +733y 122/aֱK Ka +@KB +42@KR +aK +@ai +v2+Ka V$9fNb9m9901475&772#;2?654'&=47376#";2'#"3%'%"";2'$"&?63265'&'#!"=426/&+"=4;26/.'"'&2?6+" q5- -L+9B)% +@) %/N  Z--%)8 # '!A:TP - -n5+  ;^W)! 4 TD @Rd!1 / \R9f h"+/ְ2 2 +0133ㅅ-  m<Wq+%/44% +4+ +X/ֱJ+" s+Y+(2:>T$9J@ %379AO$9"94 ":EU$901432#"'.'&"#"&5463272654''&767654'&'&'&'&'&m"-}q8")2 JALk//h1! JSFqwkyX945 J'+/3LF` qFJ/#71 N`C4;4E'@pXqV=!9 P`;Xo{\`)?ZLDFMolU5;/3 + 2 +/ִ+ + ++01462"$462"5HfHHf#GgJJg!fHHfHHfHHfHV=+ +;2 +;%+, +2>/ִ /+ +/ /)+2" + +"+ /+?+/99)  2$9 '45999"89%2 /5$9,)99901    432326732+"'.'&"3276'"V^R{{+Ls  )! Lяs bPM}'# εԕ  /7-d(4,+&2++!+(+/5/ֱ) 2  )/+2 6+/ #$,3$9!99 )0$901476754#"&'4763227#"'"&7326=/L?Zp XB=^R2`3= J?;Lq'N'H"^!!ah !3-?1Xd97!'PF9BC$7d ?Dq )+ /ִ ++  $90135#3#?@??:<fkwu 8+ + +@ +/ִ .+ +@ ++015!#yq{Z+&5463$2&'"Z Dr qhR P? O[+ +N +2E33N9K22?S +?# +Y3#\/ִ @+ +C P2C +@CH +C +@ +CV+* *+ /+]+ $N$9C %M$9V,>-L$9* :;$9249999NM9? 99S,-$9 *99901    543>54&'"=476326362#&"'#"2+&"32654&#"?jIIY$|ܐ73)#-# \J 'l ßynV%'9FEL{)+V%V)oF1# %N1   aTRj  + / +2 +/+ ++0154;!2#!"+?/#'\ Zbj C/ / /ֱ + + $9 990146  &72654&"bo‹ŠZZ\ Oq+-3M +52M +@& ++ +P/Hְ 2< .+*2999,;999901567>54&"&5>32;27674676;2#3!"5s4 /%IoXC mh  % - 3JM B  $%y?b) )'%$/DH@  msZ'!! !#1F  Z+3V1/  1 +  +/$ 4/ ֱ.  ' .+5+ *9')+,999 '.99901463232654&#"'&67654&#"&7>32#"&' #-%7X='#%#3%V:7'RLjD?KˁN# !bD3F d@+g#R\L=D3 _Bm5NJ *+ +/ִ ++  9016;6&d  1P  J'^+ 2 +@ +2(/ ִ ++/+ b+  +@  +)+ 901467 6'#"+"54+"+"&54.'&I#N !#$i!+ %5/%%X !L gdXu(/ + + /ֱ +01462"?Z@@Z[A@/-A5!$/"/ֱ #+  990133#"'&767632654#"&Ӫ99;NpP/'+<:dj]?Pq  9'J4dd)$:/ 2  +@  +%/ֱ &+99 9016762272#&"&37>5&'&dDR ;(!}TR !B   %?7dJ +/i+/ֱ + + 999 $90146 #"32654&#"?4wRF\yPF\>olTjhVDq * + /ְ2 ++ 99901733 V=@Ahow$fmdH"3ZeQ+)+X]Q) +?3X J2 Q) +3  +@  +f/ִ -+ +@ + +@ +V+`2M .+<2MV +@MF +VM +@V6 +g+2999V\99M'8-999]X79=d99  <999)899901676236#&"'637>5&#"&&776;2#=632++"'&'7&'#"736=4'4dBT  ?  )m  T5 Bk#PL1!  }}XN !!!  %I Z    { "     q  dH&7on+\ n+j0+jn +@je +)+,+n, + 3(J+B p/ִ -+ +@ +?+M j2Mh c /+c/h /+q+4999?8GJVY$9c0a99\j99B;FM9990167>36#&"'637654."&6767;2+"%56767654&#"5>32;2767676;2#3#!"dB2  P !)b F57 7s%+G8w-C lh /:HO  B %%}XN!!!%  %Vd  HB`j7;:1D  mt[,!)' )/E! #ZH0>bnX+3+6+`eX6 +J3` Q2.X6 +.. + +"6 / o/ ִ+ + % -++]+h2T .+G2T] +@TO +]T +@]A +p+ (9%')99]+c9TC9e`B9.Hl99%+CDG$901463272654&#"'&'&7654&#"&7>32#"&&76732'=632++"'&'7&'#"&6;6=4'&#)H+%7X;)#%  2'X5F #QLmDȁN '+ ;7Jj!Q\4#  #4`D5E  bB)i R\L=?: +j51`    { /  a  Ry!,%+* +/ + + +-/ִ /+ + ++ @+'2""/.+"9 $*$9%9* 99014767654&'&7632632#"&462#"&R5_V3) jLXbjbgĨFfFF35Dsf%#!7!5<  bJX#3c_Xq+/B@13BB MZhVL+"$33+BE$2+7]" +7 $+i/j+L#973D$9]9 f9901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&&6372'&726'&'.\  \j^ %7C ^?"Z'm  5Nt, f 61) mw D9'7 >=5@#5kJ/"#  39BB  '5%#     M[ilL+"$33+BE$2+7P" +7 $+j/\ִg +k+g\ [999L#973D$9P9 Y9901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&726'&'.672&\  \j^ %7C ^?"Z'm  5Nt, fw D9'g 27 >=5@#5kJ/"#  39BB  '5%#   P NaoYM+"$33+CF$2+7d" +7 $+p/q+M#973E$9d9 m99901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&67>/'&726'&'.Z  \ j^ )5C `="Z'j -T5A6  f y  iw D9'7 :N5@#j6J/"#  39BB  -%#?   >   MlzL+"$33+BE$2+7o" +7 $+`/T +dT`+P +{/Nִj +jW+] +|+jN=9W@ $(,2:;2;2#&"'&546;>'.'.'"26#$#&323267436#"'&'"726'&'.\  \j^ %7C ^?"Z'm  5Nt, fe RwR'## rYRtT%! -w D9'7 >=5@#5kJ/"#  39BB  '5%#R77P  oP;)8 P   MUcmL+"$33+BE$2+7X" +7 $+l/T3g +P2n/OִS+Se+j+o+SO@ 7:;2;2#&"'&546;>'.'.'"26#$#&462"726'&'.4632#"\  \j^ %7C ^?"Z'm  5Nt, fHfJJf)w D9'H35HG637 >=5@#5kJ/"#  39BB  '5%#gHHgG5   gHHgG+MWeoL+"$33+BE$2+7Z" +7 $+V/i n/Q p/Oִg @+gl+(2T Q+q+gO7IGXYZ$9l  6QVe_$9T$25+^$973D$9Z9 c99niOSTN$901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&4632#"726'&'.3264&#"\  \j^ %7C ^?"Z'm  5Nt, f{XT{{TX\w D9'!D/-AA-/7 >=5@#5kJ/"#  39BB  '5%#{{{R   ^DD^DD8+f+3P 鲅+3l{22+3* +3* +@* +t8 + /J8 +/ /pְ2M ,2pM +@pi +MF+@ /+@%+ /+W+Z2b /++FM69@7B999%&99P9t@FC_`y$9G9*8 999n9901&67>767654&#"&?67$2+".5.+!"372767676:;2#'"'."37>7674675434;2#!"754?54#!"2#"&""'3!254'&wDXA5'D*K3  3-:3.%)  9e'6b-dD/9!0?u/ !/s1#  'LmTX  )`F%N! \.d/5h0'=X '/%I%N9  7!  sROM+,3+8/BP/ֱE+5 5+ +Q+E/28;KM$95,3$9&*$9  999B8>9M5?99&(99!$9 $901!2762'.#"327>76&#"#3#"'&76762654"&7$sPH'15ܝ@)+''1_=c^5;NpP/'+<:d;FhPU %9F b\?Pq  :'J3 2 ZgX+F +'+ .@X +. h/ֱC *2Cf+c +c<+228 +8"+ +L+P +i+fC@g993>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'&6372'&- Jd33l   '-JM  y5) #8y+osP1% N's B#) s.C L  BnX}?! b)odj.w/;k Bul    2ZiX+F +'+ .@X +. j/ֱC *2C[+g +g[ +gc +g<+228 +8"+ +L+P +k+3>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'672&- Jd33l   '-JM  y5) #8y+osP1% N'e  /.C L  BnX}?! b)odj.w/;k Bul  P 2ZmX+F +'+ .@X +. n/ֱC *2C<+228 +8"+ +L+P +o+3>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'67>/'&- Jd33l   '-JM  y5) #8y+osP1% N') y .C L  BnX}?! b)odj.w/;k Bul  ?   2ZeoX+F +'+ .@X +. n/c3i +^2p/ֱC *2[ aCg+ll<+228 +8"+ +L+P +q+a[@93>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'4632"&$4632#"- Jd33l   '-JM  y5) #8y+osP1% N')D1/FDbDXF/3DD3/.C L  BnX}?! b)odj.w/;k Bul  /EE/1DD^ECbDj )6o(+&3 2+3 27/ֱ 22 +@ + 25 +5/8+5'699('99 990174>?'.'&763276"#2#&"&6372'&j^--R%E^/9T  %  ;)) m'0TG GR6/ +DP5#  j)8l(+&3 2+3 29/ֱ  +@ + 2* 6 +:+6'9('99 990174>?'.'&763276"#2#&"672&j^--R% E^/9T  d 1'0TG GR6/ +DP5#P D=[<+:342#+&3*2>/ֱ1 1 +@ +!2?+1;999<;9#%90167>/'&463>?'.'&763276"#2#$"D z ( `--T%G^1;R  ?    0TG GR6/ )FP5#71;0+.3 (2+32:/35 +2?'.'&763276"#2#&"4632#"7HfHHf^--R%E^/9T  8G45HH53gHHgGw'0TG GR6/ +DP5#gHHgGV7X+; +'+H+ 5  +O35 +U2Y/2ְ28 L282 +@8S +28 +@2 +8A+Z+A8995AS9990154327674&#"74?6!2# &54767;232676454#&3267654'&'&#"3%2#"'8}5mh?I\?%-{JpcwoT;'%- !%{H#;%#DO~?  )3R/ed(#F7N\  #!#%=%'FqIhI+G3A22++$3  -22\/P +`P\+L +i/ֱ< < +@ +<J+f +fS+Y +Y+1 j+J<7B$9fG9S $EL"\$9Y%99 078$9 99\h9Pc901&76725&'&543727654.'&'&'"&63%2#'& &6#$323267436#"'&'"J 7o!{E  (!O a w3H%%  O)-  RvR'## rXRuT% - 7 v )!A =52 $! 6v h$B /R77P  oP;)8 m' &G ++'/ֱ  +(+  "$99901! ! 32>5#"&6372'&mF?`^7k/P 51) m9ZV`{!r%  m' 'U ++(/ֱ  +% +%+)+% !$99901! ! 32>5#"672&mF?`^7k/d /9ZV`{!rP m' ,G ++-/ֱ  +.+  ,$$99901! ! 32>5#"67>/'&mD?``7k/ y ! 9ZV`{!r?   m' 8 ++,/ +0 ,+ +9/ֱ  +6 +6#+) +)+:+#6 ,$999,89 3901! ! 32>5#"323267436#"'&'"mF?`^7k/ RwR'## rYRtT%! -9ZV`{!rR77P  oP;)8 m' !)s ++!/(3 +$2*/ֱ  ++#+'+'+++# $99901! ! 32>5#"462"$462"mF?`^7k/IgHHg#HfJJf9ZV`{!r+gHHgGGgHHgG*7&76'&?66767>'&'!!s++ 15!/!t'-#+1d%%rl++ /+'$g/5o%#fuq(5Dt+:3/E/ֱ))>+F+)"$999>@ %(&07$9 9993:@ %,A$9 901!2?6!"'&/.4&6?64'76'&#"327654'&fL}yC#  {( vzbRot  !Tm  3%Eʩq0X ;Hv1+ ++ 3: %222I/6ֱ G+D +D+) ) +@)$ +J+G1=$9D9:)69901636 2'#"3 76'4&/"&362# .54&'"&6372'&-+~ Z>1[!AwwFI>\w1[!AwwFI>\w/'&-+~ Z>1[!AwwFI>\w1[!AwwFI>\w22+3 "F222W/HִT +T@ +B2+ +@ +@+3 +++  +X++TA94PR$9 "99. <999 901&7672#"67654&+&63%2'26#$"&76763676'.'"%672&! B% B/FhBL3@1 j # *m H`__d  / !)fZ rm9#D!-};BF+}IqDP 'oFJ[.+03)72+3G 2 O0 + W0 +\/;ֱ& K22&; +@& +;& +@; +&R+]+&;/9R -.$9O #9W90154772#+732#"'&;#$"&76763276754'&'&#&'+"'&32654&'&#"'u B*BZHT? D^++%` ## '-IBR'#- 0-9h  ET:/  !/dZs+Ǣb#+ 'PN+L3F2+( E2( +($ +//6=467632#"&546323265'&'"'&5467>54&#"3'&&'P!)Buԇy  u[sۖ/=#// )@38gmr#H  ٵ  )XP Vh5!Wq+%+}V-  }\N%  3-D6CP+ 4++3: 4+" !+:4 +@:' +H+Q/ְ2 7 =+O22 L +R+7E9 D9=.4:BP$9L-9+9:419")-.0$9 =?B$9HN901747676/&'"&547632276763#"'&"#"&7326754&6372'&3Rq#R `hXB" 1  RX BV9XoA0!t /co@') s94< # / LbTB3!;c=(-wk9(gl/AK!)-  3-J6CR+ 4++3: 4+" !+:4 +@:' +G+S/ְ2 7 D+P +P=+2 T+P4:B$9=.2A$9+9:419")-.0$9 =?B$9GQ901747676/&'"&547632276763#"'&"#"&73267546;2&3Rq#R `hXB" 1  RX BV9XoA0!t /coge  /94< # / LbTB3!;c=(-wk9(gl/AK!)-P  3-06IV+ 4++3M 4+" !+M4 +@M' +W/ְ2 J P+2 X+JI9P .4EMU$9+9M419")-.0$9 PRU$901747676/&'"&547632276763#"'&"#"&67>/'&3267543Rq#R `hXB" 1  RX BV9Xo5 y   lA0!t /co94< # / LbTB3!;c=(-wk9(g@  /AK!)-3-6Ub+ 4++3Y 4+" !+Y4 +@Y' +I/= +M=I+9 +c/ֱ722 V S + \+2 @+F +d+\S.49;K$9+=I999@!9"Y)-.0$9 \^a$9IU9=P901747676/&'"&547632276763#"'&"#"&323267436#"'&'"3267543Rq#R `hXB" 1  RX BV9Xo RwR'## sXRtT%! -A0!t /co94< # / LbTB3!;c=(-wk9(gyR77P  oO;)7 /AK!)-3-6ANY+ 4++3E 4+" !+E4 +@E' +W/?3R +:2Z/7ֱ= 3 B =H+O22 U[+=74EM$9H/2KL$9U!+99"E)-.0$94J9901747676/&'"&547632276763#"'&"#"&4632"&3267544632#"&3Rq#R `hXB" 1  RX BV9XoTF1/FDbFJA0!t /coF/1FF1/F94< # / LbTB3!;c=(-wk9(g/FF/1DD/AK!)-J/FF^FD3-q6@MW+ 4++3D 4+" !+D4 +@D' +?/Q V/: X/8ִO Q+ O8+ /3 A OG+2 TG+= @+Y+O8499G@ .2:?DLQV$9T-9+9"D)-.0$9 GIL$9VQ8<=7$901747676/&'"&547632276763#"'&"#"&4632#"3267543264&#"3Rq#R `hXB" 1  RX BV9Xo{XT{{TXhA0!t /coOC/-BB-/94< # / LbTB3!;c=(-wk9(g{{{/AK!)-^DD^CLwFS_++^=+D30 +=+J V)= +V`/ֱG   GL+2+ +L +@+& +a+L BDR$9+?A$9)0@ 5?@AGLN$9V%99!"$90174676754#"&5476327672'!"3267>"'&#"&7367543!26'.#"Ln`\3L qh[X sm5) 3TBd?RX^^m BFVr=3RbB=V;-1 a=ZX);:% 3 HhNifct -LPi8C ^7;FXkl5@` !9Vb3!uB~+   + +@+ +(/3C/ֱ 6+% D+6 !"(,A$9% #$93(/9@"%99 99901432#"'&#"3276#"'.7676232654&&?6&#.3!d+5J9X T^  15J".<j+- + +2+&  +&=/ֱ /+: +>+/$9999- 92;901432#%"3276#"3!26'.#"76;2&1Hy%o DMsٰ3#fAGe  0"-&σ P>X T^P  150"5AS+@ + +9  +9B/ֱ C+599999@9901432#%"3276#"67>/'&3!26'.#"1Hy%o DMsq y   C3#fA"-&σ P>X@   T^15"-9D+8 + +1  +1B/+3= +&2E/ֱ #+):+@F+)&,/$9: 8$9@49991989901432#%"3276#"4632"&3!26'.#"4632#"&1Hy%o DMsكF1/FDbF-3#fAF/1DD1/F"-&σ P>Xq/FF/1DDR T^%/FDbDDD .S+,/%2//ֱ  + + / +0+ +9  9 99901&6372'&&32654&'&'.7%6;#&&  ;)) mnX#&/%  )%?    #<oL +Z+N9 )J!/C%+/20/ֱ " - +1+-9%+.$9017&32654&'&'.7%6;#&&6;6&)X#&/%  )%?  sd   1#<oL +Z+N9 P  +04'2/+25/ֱ& 6+&1990167>/'&&32654&'&'.7%6;#&& y   CX#&/%  )%?  @  J#<oL +Z+N9 H)1~'/  2/03 +,22/ֱ ++/+++/+3+ '$9+&9/"%,1$9  9901462"&32654&'&'.7%6;#&&462"HfHHfX#&/%  )%?  %HfJJf!fHHfHB#<oL +Z+N9 fHHfH^^6B{+@4+: +$+C/ֱ7 7=+0 D+7$9=@ "&+4)$9@:099"(+$9 '9014326'&'&'.'&?>'&'"&?676#"32654#"^ F7 +H 2 3Y!o# s/+;>?'wsm -#B? !u ! )?` >-JLEu!Lk+= 2=+0/G35$C222_/S +cS_+O +l/ֱ@ 2@ +@ +M@+i +@;+ Z;+V +V/Z +m+;i@ /3EGOS_$9V!9=5@ %4;?$99_k9Sf901>;2654'&/&47>7676763236#"#"$"&'43>7654#"32&'"'323267436#"'&'" H-H) !%/`JV:!E +- D3 `-P/2 RwR'#" sXVpV#! -'N1J /pD%)=@/   #.?wy1N)"! R77P  oO;)7 /D $i+ ++%/ֱ #+ + + &+#  $9 !99"901432#"32654#"&6372'&/mmu <)+ sþ  /J &`+ ++'/ֱ +$ +$+ (+$ $99%901432#"32654#"6;2&/mme  0þlP  /0 *P+( +"+/ֱ %+ ,+9% 9999("901432#"67>/'&32654#"/ y   mmþ@  / *6+4 +./ +"+ +7/ֱ+ %2+ + /+1+   +8+1 9994.9*9%901432#"323267436#"'&'"32654#"/{ RvR'## rXRuT% -3mmþR77P  oO;)7 5/ !,q+ +*/3% +2-/ֱ  ++ (+""/(.+ %*$9901432#"32654#"462"&%4632#"&/mmF^FDbDXF/3DD3/Fþ/FF/1DD1/FF^FD $?/ +/ +"/ +%/ְ2 2&+"901543!32#!"&462#"462#"&?% % /3J11%#55F33#%53%;VJ11J3#,1#%36^&2>+1 + ++5"+?/ֱ( (8+ .+@+(!$9998.>$99591@ #*;$999014326?6#"'&/&?6'&676'&#"32654'&^ ɑ\ < Ï}n l 5y Xto#Xso9  R m H N } l jhj{r B (+DCP +i+++:+ "+0+H+Q/<ֱ O+L +L+22% R+ <DE999O :P$9L7M$9 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'&6372'&+)Lhd0  A  T)X+  qy DI;>  ;)+ s-1qg b\7 +/$t?D #1 P113#!  (+JCR +i+++:+ "+0+G+S/<ֱ D+P +P+22% T+ <9D:9P 7$9%KLN999 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'%6;2&+)Lhd0  A  T)X+  qy DI;>e  0-1qg b\7 +/$t?D #1 P113#!P  (+0CV +i+++:+ "+0+W/<ֱ +22% X+ <V99:R$9%N9 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'767>/'&+)Lhd0  A  T)X+  qy DI;> y   -1qg b\7 +/$t?D #1 P113#!@  (+CNW +i+++:+ "+0+M/U3G +Q2X/<ֱ D J +22% T%+OO/TY+JD:99O $9T7999 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'4632"&%462"&+)Lhd0  A  T)X+  qy DI;>E01EEcCXFbCCbF-1qg b\7 +/$t?D #1 P113#!9/FF/1DD1/FF^FDJ@OZ+"33 '>222D+1/6 +P/AִM +Q+MA ,996,99?9DN9016%276567654&'.7362##"&547>?.'.%6;2&##:!B({ 3J w#?M=H+!='9f?U$92I sd   /H!03h#93!7'!3  aT#J3+8$?qx_j8P  9Du +B +8/02&/<E/ ֱ, :22,?+# F+, 79? &46$98./99<&)9B#99 99017463>554&/&7476?67632#"'&?6'$"32654&#"5,%: nJV 1T  Lu{fobs! Xi75% % ! }ыW ob@HP+"33 '>2221/6 +H/O3D +K2Q/BִF+FJ+N+R+FB ,167 $9J+:$9N*$96,99?9016%276567654&'.7362##"&547>?.'.6462"$462"##:!B({ 3J w#?M=H+!='9f?U$92I IgGGg#HfJJfH!03h#93!7'!3  aT#J3+8$?qx_j8fHHfHHfHHfH{P^l,++V+D \+b + +j + +%<\, +% <% +@<6 +m/ֱ_ _g+@ "2@8+*23 +3L+Q +n+g_\999@ Y99389LV999;2#"$#"# 327>54!"{ϰLh B'M  3T ;h 8T'+wN!+ !}%zFCu)sM5VVF T )f1 ?^m-X1  '7\!; E<)}Ebs-9E+ 37D2++%31++ #+1+ +@1 +>+ +>F/ֱ. .4+ :24 +@ +G+4.+99')$9>+ (.4$97 $9014327632#!"327>2"'&#"732654&#"%3!2'.#"b ¸iyL 9qZ Jdbb] wwdswf ]A {; RE?   Rh!GOW4+.;>22+3 "F222O/V3K +R2X/@ְB2+ +@ +@+3 +M+@+I+I/M+Q+@+U+++  +Y++I 58ARW$9USV$90499 "99. <999 901&7672#"67654&+&63%2'26#$"&76763676'.'"$462"$462"! B% B/FhBL3@1 j # *m H`_IgGGg#HfHHf !)fZ rm9#D!-};BF+}IqDgHHgGGgHHgGF0/ִ ++0167>/'&F s @  Y/ ++ +/ִ + + + + 999 99901323267436#"'&'" RwR'## sXRtT%! -R77P  oO;)7 Z+&5463$2&'"Z Dr qhR PZ+&5463$2&'"Z Dr qhR PZ+&5463$2&'"Z Dr qhR PN+ / "+2 "+/+01767$2$"&Ny (G  K-/ "+2 "+2/+ 9901463$'$&74&y!    F !:+ + 2/ֱ +@  +2+ 9901467672632#"&o +:D1DZXd)Vo @+1Al2/ +/ֱ  + ++99014632'&76'4&#"&F1DXy`! +81AfN\/!Zi<8+3 ++/ִ Q+ + + 2+0174632'&7654#"#"&B/=P{d  '5;->bJ^'Xc90`+.3 +%(2221/ֱ +  + +# # +#+ +2+ 9 $+$9014676?237632#"&%467672632#"&f   +7E1DZf !+7F1DYP`- # Zk>+1AfL`- !Vo>+1Af2a/!$$3 +*23/ֱ  + ++- - +' +24+9-$9014632'&7654"#"&&76'4&""#"&54632'E4DY}d!  )9  ):F3DZ{d% 1AfN\/ To#<To<-1AfN\-J0[+).33 +2++1/ִ Q+ + +'+ Q+' +' +#22+0174632&7654"##"&%4632&47654+#"&D/?S}g '8C/?S}g '7;->bJ^)1Xc9)->bJ^'Ve9q./ + + /ִ++ +01462"&q⟟q᠞ N +33 +22 + + /ִ+ ++!+01%4632"&%4632#"&%4632"&F75DDjHC85CA57FD75DBjHV1<@31BF+3@@f>@93:@f@H(%+FHc$3}ACN]i$2+ /+% /% +/* + +8T/ +Vr338 鱇22 /ְ2x 鰗2x +@ +xo+2Z 42Zo +@Za +oZ +@og +ZQ+> '2Q> +@QJ ++x999oe999Z d$9Q!#-Hc$9>,:99 }>B99Ust9998T=$96;999#901>732654&+"'&47676367676767>7>#"'.#"%67636&"'4>2654'&;2#&"54732>5&'& 32#$"7>45676'&"# P3X%^/ {HL)+LFP1R=TZR`)?  X%}X%Z) /% H-1J3  V1 +R{T#2O  R;PXnBV@-7@ 9-K+}VF1 !%hN'A! << ML!!.KR3)D*' ) -X+J{V;0|T+7z|333O.A[t$2+# 鲌+ &2 +jz +GIf333 鱁22 / ֱn }2nb+L 鰑2LD+2+ 鱟+n {999bVXxz$9L999D #54+"'&76767676767>27632327626'"#!"&7>3>54#$36#&"&7>767>54&'*#"36#$7267676'&'&"!25&#"5 /;#a%\1{JL%oV7'=: T #/1%d 1L  5){ )7  Lo 9NrTKF-s\L9P !4M!%  !R;58XnBT@#` 1%L)) H3 /L/=% :l'Zm5 ! }% {%J{V;)NNmLG+8K/43.2/*3 $2"/M/ֱJ22, .+$522, +@,( +12, +@ +2,+ /+N+,8DG$9<=B$9K8=>99" 9990154;547#"=4;6327>&'.#"!2'!!2#!3276762&#"#"'#"yo{#Z`# !##|TujjfL(-!-'=/2D2:  Z27?/{%x+"5A%=+3U_222L+g3= +@=@ +2,/y3332 Er$2/ִ@ +@7+ 7 +@7/ ++ +H+ @+H +@ +Y22H +@HC +O2+m m +@md +v2m +@ ++7@,99+99%*999 9HU99V[|$92,#99= Z]o$9L Y99901&?>3%6+.+"32'&"&=6727>54'&+"#543>54&'"/4=463727!2##32#"&"&=4;>5&'#&;2#&#&"%Dl Pc! :  7 #\P#R;; C    59  &! 71 7  F    V>!L-  'L-!>V-NV+  //PN+   /HiiT+ !RR./ + +/ִ+++011!RRR]\+834BU222M/("/" +" +^/ְ2Q $2QG+1 _+QZ9G =AVX$91,-$9M 9(9"-.999017&?>54/.7>76547>32#"'.#"37676&+".'&763>54&'&&#""R /5)F  @@+Țh:%)g-u^V' 5+= 55!C{{3BZ\V 6p5! Õf`A++FA! mq4 1)6pcZ)%Vq9518TfZ+B @22B+S+,/33%5H222c+ g/ ְ2E U2E=+`2" h+E Q99=/3LM$9".99BJ9ZS.A99c99017&76367>54'#"'&76?65762327636+&#"'&6732>54$"36+"&"326327&#"1 H _ jV7(7I   '!' 'Q1L 5(9#s\L9R  '2Q> +@QJ ++x999oe999Z d$9Q!#-Hc$9>,:99 }>B99Ust9998T=$96;999#901>732654&+"'&47676367676767>7>#"'.#"%67636&"'4>2654'&;2#&"54732>5&'& 32#$"7>45676'&"# P3X%^/ {HL)+LFP1R=TZR`)?  X%}X%Z) /% H-1J3  V1 +R{T#2O  R;PXnBV@-7@ 9-K+}VF1 !%hN'A! << ML!!.KR3)D*' ) -X+J{V;0|T+7z|333O.A[t$2+# 鲌+ &2 +jz +GIf333 鱁22 / ֱn }2nb+L 鰑2LD+2+ 鱟+n {999bVXxz$9L999D #54+"'&76767676767>27632327626'"#!"&7>3>54#$36#&"&7>767>54&'*#"36#$7267676'&'&"!25&#"5 /;#a%\1{JL%oV7'=: T #/1%d 1L  5){ )7  Lo 9NrTKF-s\L9P !4M!%  !R;58XnBT@#` 1%L)) H3 /L/=% :l'Zm5 ! }% {%J{V;)NNmAv_<D"D"%++%D-f^JZVzNEzZLRoB|{6obVbV?+s/0XQuM0jH(+1Em3\%srF/.G5JRB./O3`3/l5#75" )%$!~  3 ?)F(E(-GE1-b^/Em5^V-/?zZ^?Qbfffd?Vdd#RQs2222jjD7\Fmmmmmf0000!'\'O3O3O3O3O3O3;L`3d1d1d1d1)\^ !/////\^E(E(E(E(/I{3b!F++c11oezZzZzZN--qro (03"QpRO1 (0,,,,jP8&Rx ,  z N X `~b:R<\$z *f !F!""8"""#"#$n$%%&'(x()x*D*+,,-.F./0 01D223n4445055567X7899: :;b;;;<==X>>??D??@@v@@ABCDtE?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~     glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011 figuredashuni202Funi205FEurouni25FCuniFB01uniFB02uniFB03uniFB04KPXYF+X!YKRX!Y+\X E+D Ei++D Ev++D E++D E++D EH++D E*++D E (++D E+D E $+Fv+D E +Fv+D E +Fv+D E8+Fv+DY+SrPtufte/inst/rmarkdown/templates/tufte_html/resources/et-book/roman-line-figures.ttf0000755000176200001440000021401012647360110030330 0ustar liggesusersFFTMjGDEF8 OS/2e$;XVcmapDcvt *fpgmS/egasp0glyfg8headi 06hhea0 h$hmtx?$ loca0maxp name0Kz$Lpost{pprepfLwebf|S=D*D,.33d@JPfEd@ ff+x.  ~Sx    " & / : _ !"% Rx    " & / 9 _ !"%oK6  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ardeiwpkvjsgl{cnm|b׸xqyV3C;JNbyvS,KLPXJvY#?+X=YKLPX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-DdU./<2<2/<2<23!%!!D $hUD )++/ְ2  2+017462"&&63'?cAAc?!!C;N) NN1;;1/>>%&5Jd!`/+"/ֱ + /++ + /+/ /+#+ 9 99901432'"&'&%42&5&o5? ;  3wu5?;!7ًF;==%!F;Ft 7^D+N33+)@22/l}333+^222 +@v +2/+6>+  %>N+ ysY>a+ 3\=+ ++&%+/3+13+23+\>\=+sZsY+[sY+rsY+yzy+%++++3yy+>-+ %+%+ #9999 99%999&9zy9rsY9[9Z9/391929>\=9@ %&/1=>[\rsyz23YZ..............................@ %&/1=>[\rsyz23YZ..............................@~99H901&74;2676'*#"&7&747667>367>774>37637:'*#"3726"#'"+"76&'&"#".>56&+".$6276&#&^-BiX+| L ' #E-+ 5 2G7S /9B  <'bynC<% C %D   D  s /> Ǜ%B ! ;0 l   B!! D%=  5C "   H %)! J%yDht,+3,+/$$ s/ִi .+i +am222u +X222 u +@ +uQ+){222I +/=222IQ +@I5 +I+D 鱢+ ie$9u^_q999IQ,92:AG$9299,$)099017463227&'&'&54672=6?366=6732#"'&'"+&?4#'"#&7=&'&'&74=6&37254&/&'&654'&7654/&J/!5#y#9xc31  f|)1-TeZ +53  6=K T ?1 = b ?/yb !1X ) \+H`\!n V R ` b7!+D/%5NRs$h:    +7BVNB-  '  @  BdBZu! #/:{3+-8/' //;/ֱ + $+0 06+* <+  #"$960'-99983$99014632#"&73264&#"6#"4632#"&73264&#"Zy{{wu^PR^`VNZ3! %1y{{wu^PR^`VNZox{w{n  \oxzvzV Scm'+".2++Q+H3W +Q+Ak/ n/ֱTT+d dh+ o+dQ999h W$9[99WAF9'QDNaf$9kdh$90147676'&54632767>54.#.763763276#"&'&'&#"&732676'&'&'&654&#"Vy5# {D^XEN7/8-F <+3)?e %"7@+5q~Vd;  LJnTF HfqPPA;DHh/H}u{`v3[VfbYH| !  ]Nup =>d@N5wNlӴubL ojq5 sPNZJN1d1 /+/ֱ  +9  90142'.'&5&Nn5@ 2 2ϖF;'7B 5u/ִ ++0176'&Ӷ=eNVg=HA<ĴhV! 5/ִ ++01664'&'&676&bNVh9> %!з!Ay;fH )! 8dnM/l3H+2/:3+52o/^ְ&2Z +2TZ^+d +d/"3T +/2p+d^ (\999ZT)-A[$9HMQVbch$9!0Se$9$-.3$901467>7676'&'.'.546325&'&5462767632#"&'&'&"&54767674#"&/9T9>B9*+ 7/'/   JZ+J+\BB(/%O^/I L(cM+ '1HX-J- TL/!*1' % # '/5 X7 `T`#55#%X\X ;RL3D# ) F/''Z5 {O#N55'!Pv 1^/w =M;/"3 +2 ; +@  +>/7ְ 2* .+2*7 +@* +7* +@7 +?+015<>23!2654&54;23!2#!*#'".<54#!"&  P V   O7  /C?  F   7++/ִ @+ +@ ++990174632'.'&7654'&&B-=JhT  /D?-5.'mbB-R'!H) LhL^;%'#)1  #+-b73N><+*+,2/+?/ִ ++ 52 4 / +//4 +@+<99%(,:;$9/-8994 19*<>9 +/14$90174>767>54&#"'"7>32667672#"&""'N `XL8 of`'!壢|;-{sU ,-y+ qZR%M:LM)ssѤ}N0-T=T6f4+F+4 + +/&+7/ ִ1 .+)1 + /) 8+ +,.999)/9 )1999017463232654&#"&'&767654&#"'&7>32#"&T/!)X=H-mfRB/ !bD\hLD/# 9vu j}{!1H3ɓu! HE^WHdcT io\L-<l +,/*331 + 3221, +@1 +=/$ֱ5722 22$ +@$ +>+$ 6999, +99129990156;72"&"5&7.'%&77676'.LG%+  '!5) #` X# 21 @^-/l  wq`97+  7 +  +/1+(/+:/ ִ4 .+;+6?+ ,++,....+,....@4 #(999 4991.90174632326&#"'&763:>7673%7632#"&q/#4;#*fy^R +Y$ ( %# =L{f!178!B1   s Ld'c+"//(/ֱ+ .+)+  $999"99 9 901%67632#"732654&#"dV4! + B{ݦzsbii`P_  X-ᢰ-㰤b-Db3/+2/ִ ++99017>%2/&76&!&D 31d !%D'b`  90 H% )!  JRf&5e+3/ 6/ֱ '2 +/0+   7+ $93 $-$90147>'&746 #"&732654'&'&7654&#"R &禠皋df:9'+RG8!`fZ\}7w  uǬa  Ǣ͑{qb:=Nj 5VB)Sm}P(h +  +/&/)/ֱ #+ .+*+ 99#$9 99&99014632'&767676&"#"&732767654&#"P)"wV N}ԲwbPu'{udww]a dj7ᶚX*3ݮu53++/ +/ְ2 2 +016462"462"&=^>>^==^>>^='Z99Z;/99/-::1X++/+/ִ b+  /3 + $990174632&7674#"#"&462"D/?Td!'7>^??^J-=^J`'5Xg<{Z;9/-: &747%6'$&j#-?)-?3! 9%)!? #-BH  ", ++ /+#/$+ 9901543!2#!"&632$72"#!':r'#%!b / 11%7F% -  47$%>'$%&'&=46'4&)9%A#}q=# ݌  %) !FV\!,w++%+++ + +-/ְ"2 @+( + /+ + +.+(  %+$99%990142&'&5467>4&#"#"4632#"VŨӔ;XVX  )mLZakbfoE35DC63qݮd)!95i eJW#1eZb?=31@3UfH?+S/EES +@EK + /36Y!+b/,2g/ִB Q+B+V V +4 +324!+"20 120<+ /+h+6=+ 3.%3]%1]"]%+=_+ #]%+$]%+3231+#]% #9$92319]"#$%123........]#$%2.....@ VESY$94 ?b$9! 9bY@   36327267>54# !2$7>323! %32767654&#"Zfɍ=mbH\yb}^)   Dq?<-s-HWVs%^c  TiP4%b{5!'8+DCPy5j' #9b|[qgH! 4PE5Xs)'1AHb{F5BN``YpUV+'30KN$2+?`V +?#+q/r+V"9?;EM$9`9 m9901767276767'&>:;2;2#&#""'&546;67654'.'."'"26#&"#&542727654'&'&'&#"\  \j^ %7C  |^? Z'6i  5Nt, 3@}; D9 '7 >=5@#5kJ/  !BB  '5%#    +H*A[%+/2+W+ H=% +H\/ֱ+B2+ +@ ++2+ Q  ]+Q+%(/:W$9299=/ 9H99 Q99014762654&+"6?6%2#"'& 32654&'.'&'*##532:3>7654'&'&#"+' >5}/ sMRakZ)紅mwЍ ȅTI@&$ $0- 0$ P?m[Bc)&5/C?;C#'TX! pՍpm6yV+ -N5 sR4l2+!+5/ֱ + +6+ !,2$9 &999!2,.99'$9 $901!232762'.#"327>76&#"# sP''15ܝ@)+''1_=cXi;F WF *!  %9F F,?i+022+;+(@/$ֱ-$- +@$ +-3+ A+3-909( 399;+9016?$72#"'&547>3><54&+"543 4'.'&#"mߖ'6 4}@`1dpcDyDK-0-DN?+    ! ) - JPD.9L52 '05b]+K+*+3 1E] +1c/ֱH-2H +@a +HA+52= +=#+ +Q+U +d+AH(99=$9#K?@TU$9*1 6;$9017>3>54&#*.'&763$ 2'&'.'&#"";2676'./;26767676# &'&542Jd33l   Oz'-JvK2  y5) #8y+osP1% N'-C L  BnX}?! b)o(Bcj,w/;k Bul   Q4QK+B2++  +@ +$54&'.467672!2"'.+"263>7676"'&'&#"#"';'"#& "56RX:@Ts  N'Xks= 3 !h :v;-@ZX 8RR: h:!o !I d%^R:  uVCA++',A +'62D/ֱ  +<2< +@<1 +< +/E+ *-A$9 99< .99':<99, $9 990147>32276'!"327654&474&/"&67 72'# u{nj蠃-=D}B\P e J5jgdZ= V? :\NR3## =N7v=/7J0):nm+O3HUf222+2933 +>222!_m +!o/ ֱc2 c +@  +cY+'2EEY +@EL +p+Yc.4Sjl$9_E9!C9 B9.9017&54763>54&'.63272"3 72654&+&547636323276#3#!"'&6;265&# '";6!"5 *H5?'.'&547632327232#"#2#&#"j^--RB3g.^/9T '0TG GR6 +DP5 Hf36O+)24/ !+ 4 +  +7/ֱ.. +@.% +8+. 9 .901463232767>5'.##.763 72##"&5%++(!BZY V8%FwXn/'9%! 1VT<)  :P2kH(7{fv+O3GXm222+,/33 (3222|/ֱj2j +@z +}+j9 $9C[g$9-90176762654&+.7633272'"767654&/&76 76'3&#"&'&672654'.'&'&32#& "'&54) ZDA]( іqO$\B!'"^)Km>*/F 'N;sDb`%qP3T%L7J%#$ C[! ! &=FR:+ !%:RR !TDO ##- 0!GmL9$P/  )#k/Z7DJ? +7?]:+'+ 22@/ ֱ$$ +@$ +A+$ 899:<9'-0999901767262327654&+.763272;26?6#$#"'&54-  B\Wo)u,5?y^HG P3$r*C-eIR<-  PV?0)`_  R' 1N6t\+Gn33>Mh222.+332u/v+6?+  cb&+ US:;?+  + + +  #9 99@ :;SUbc ...........@ :;SUbc ...........@\Z]s9993"#%Y^_$9.!&99901762367>765654&'&547632327267627:32##"'"'&74727654'4"'&2"'&549 (  -DGS7;' %H?J'7 2`!Fb#o=;1 / `s)/!   1%+>Փ@#+ F- R;3   Eq7V:+Q+M2+(3 "022W/ֱF F +@ +F+6 6 +@6, +X+FS99$(AOQ$96<9MQ699  5AB$9,999017&5476725&'&5432727654&'&'&'"&633272##"'.'&6#&#"F 7o!U>E (!O @f w3$d%  O)- nVv )!A XG$!' 6v s h$B /m'V D ++/ֱ + +  999901! ! 32>5#"mF?`^7k/9ZV`{!r3LF9Iz"+,2+E+6 >" + J//ֱ:2/ +@/ +A+ K+/$9A "$9 96> A9901436%2#"'"32;#"#&#""'&5632654'&#"#&2654'&#"3Dh%B SG ;L16f +$Kg%)##  Q -8d" I(-\P{V!.]+,///ֱ" ")+ ) +@ +0+)"  $999,%$901! #"%&'&'$3265#"\F?s`` ;. !G2f/ ֱAW2 A +@  +A`+ ` +@) +g+`A6MS$99FS)99<69[9 `999017&476726=4&'"&6?6%2"#"&'&'&'.##'"3262#"#"&3327>54&#")7\@5 bQqq\Rs!-3/? ) y3Dj'+  ABA);\ -{3'K$doZ  3RG ;#8Ifq0#1/)%  B;P?PjR3  ) #q'sVC:+ A++-$+D/ְ20 .+ +0 +7+7 +( +E+0<@99+$4:999(&9 :>B99-)*7$9"9014632654.'.546323276'&#"#"'&#"'&sA:VVu 7GNJWk1ɣBh9  1b`ku1ӍuD3 H ^g';d36$4131DhwF# fTdg-ib+ TF7bVh<+B12 +P%2P +@PU +2+3W/ִS +SF+.X+S9F 1[ AwrwFI>\w +F` xwXT3d  H/@`   ![ L/)''  R !Kw3;dxHX+L3 +:>@$3w6$ D_t$2y/z+wX-GQku$9 5c9901636322#"676'.'.36 267656'&'.6327032#"#""'.#"#&'.'"'&543276?654#"'"#%x~ D"'D  'CsS_ qJ'f 9 m  ?UrZN-Z<7 2< _'8EX J58,7%?#!`^`.=?/a!:Z% ! !Bw H1fN ? + @5%7pGY+?3T9F`222 +&(*$3 .o222q/r+TM99 901&56763272#77654'#"&763327##&#""'&6;2'&'&;2#&#""&3>7>7>'.'"7V6F1 pj| {^iX5}En m? 1} ݂V.Xf-)`\y # ##-"&) #{} )s'! )+Vb B+ !F+;''x}73V?+9HK22$+3 -U222W/Oֱ66O +@6> +O6 +@O +6++ +X+6!'?999+(-99 9I999$+9901&547676323 72#"67654&+&76323272'26#&#""&7676367654'.'" N @% B/FYhBL3@1 iC # *mH`_ !)bZ rm#D!-};BF+}VP@=IqDJ35@+*/6/ִ +7+*9 "$99017476&#!"&'4767!23!26?>#"#"# '"&'&54J m  JR )!%q!6?3J wD V u Ө  +-M +/ /ְ2 + 2 2 +2!+9 990146762##'& ?%{!K2'V/T} /)R}d&3:'&'RK+ $VF + B+ N+/!/ ְ2 +2 / 3 +/"+901463>54'&/"=4;!'"7BJ# H7 0V'T +B/ %.673'&#".- -+)#q'# 7^%'%%J/ 22/+014>3!26232#!"7 3%=-)+/N<%D *+  + / ִ ++  901&6372'&  ;)) m  33s8H+ 6+-3;6+"!+;6 +@;' +I/ְ2H H>+2 J+> 06;F$9-9;639"+/02$9 )>BH$901747676/&'"&547632276763#"'&"#"&632675<&"3Rq#R `hXB" 1  RX BV9XoA0!t /cn94< # / LbTB3!;c=( wk9(g=AK! )-O,;|+7$+7 +@ +$++232#"'&'64&5&'.326&#"  ''%!h+<cGsmBD/Tn    'IJ2! C?O7g3u#?+   + +!+%+$/ֱ %+ 99901432#"'&#"3276#"&3!d+5J9K+I<+B#+/B<+)2++ +@ +L/ֱ? ?F+622 F +@ - +M+F?:<$9 9)/#9:999I ?G$99 9014326564'&'.'&'&767676323272>2.4754&#"&732767&#"/Hb  %3 s#%    iǤmX}m~q FՏ  -+ 6R#  D# T'18o%2V+1#+ +*# +*3/ֱ  + +4+99*919901432 '"3276#"3!26'.#"1TO%o  DMsٰ 3#fA"' &σ P>X T^#H{8+1A2+ #++")8 +G3"!+I/Dְ2- 2-D +@-6 +D- +@D= +J+-D9")&99901476747>7632&'&#";2#'"32;#& "'4763265&'## ^<;P9)bb?i YEfH%7#f}V1+ B PJ=On)\ L)!!L7oBR^+\O+9+ +@/F/VO +/'O +#+_/ְ 2S C 5 SY+, ,I+= !2`+5 99S 99Y@ /39@FMQ$9,):999I'9OF=9999 9/39V1999'%*,SY$9!901467>7>'&'47676'&546323276#"'&#"'3#"&732654&'&"'32654&#"7>? V+# ƒP)dŕ)+5'yu^isזufe1'j7iON^lPH`FZ) 3d)/ QV < -9 /!+/NcLHD j{zju" e+FF +@ +Z+13P*;222f/ֱM 2M +@MT +M +@d +MA+" %'22"A +@"/ +g+M\99A7:[$9"3599PZ/9F'$9901767>5'4'.'.7676327>3232##"#&#"5&3267654&'&#"32#"#&""'"#"&54))F$37 \   R{R-/R KX,/)! H11N'N"2 +Dgj 9 EN-1%1 3/D1Z-'#!':{k#5N) (R)4k+(+2-+3+5/ֱ 02 +@ ++ +/6++ 99&-3$9(#99017&54?>54&'&'.76763236#&""4632#")X!&/%   !"B Ff@/1BF/15oL +P5N7 !Z>D?' .s5ZXqZB/1=?/1+B>ArB +1-͇}?H9bDVZ;;Z>hz+2P+23G):X222h+h +@ +i/[ֱD 2D[ +@DJ +[D +[ +j+GPJ9 #<@$990147>7632?654#&7>33272';#&""5463254'&;2'"#&""5&632654'&'.+ ;% )5\ 654'&/&676763276727>3236'"#&""'&6;267674&#"32#&#""&7632654&#"36'"#&""#'D( J/ X zFhHC761X :B, >TL-D  zRDP+J@R-Ndu H%  1)/ yPF3+8{F781  +)Bw'L/  7FNPZw'N- Z+D%+ 2D+7/N3<&J222[/ֱG 2G +@GL +G +@Y +GB+ B +@ * +B +@B: +\+GPQ999B5O999 #399<7*9D@  ';BF$99017632654'&/&47>763276763236#"#"'"#""&'43>7654#"32&"#"'"'&54! H-H) !% `JV:!E+2'M D3 `-PaJ1&M!(N1J%pD%)=@/    #.?wy1N)"!  /qF+ +/ֱ + + 99 99901432#"32654#"/LJmm @Mr+I"++$+C2( ( +@(5 +R+ H9 F999(%9F5?C999#+2ABH$9014547>7632?>54'&'.'"'&6767232327>76&/4&#"4&'.'&( )Lhd0A  T!1  qy DI;5 41qg b\9 )/ t?3 1 P113#![G2+(3D%3222;+H/I+D;9 901676323272'#"677656'&'.3272##"'&'&'&'&54 .bF8J0 /3V{@ $6ASc B=:   -Z :!  D9LejVu=k+]3t/ 0@R$3)E22v/w+tk6d999N9901&5476227236#7&'&'"&#"'&3327667765&'&'"'.327232#"'&/&+"'&/.'&q_ hX-A-!9kP!l 2' Kg R !-  -8N .  ,s  Z!! 3I`  C ; !Oo   hs5WvE+23 )?222q+Q3iJV222w/x+iqL9 !_$90174>?'.'&7623272+"767654&'*&'&763227232#'&#""4;254./&32#"#&#""JQTJPV 6ǑFJ7 -#7%5 ) ZRBN`u`#+LA \UtGu5-3/@ gxPX 4`d41aJ--B'   ,IVo|+7*  ; %'74=/ ! ^JN!+3 .E2228/=+K/ֱ* L+*$.1999=399!*I990162327276567654&'.736322##"&547>?.'&'&54# N#B(+{ 1L bP@5#?M=H+!='9f?U$76IH!0^#93!7)3 aT#J3+8$?qx_j8 *B^!++>+,C/ִ + + +D+9,>9()47$9!'9017>76'&#"#"'&7762323$3232727>?6 '"54 ,Aa)+-! 3 5 ,  +# DW30$ !T # B} ,# ! 4V   3?Q4/-@/7ְ 2+ 2+' ; ;/3' 2A+;7 9'+9-40901&747>54'&54672#2'.547654&'&fv mqp?@! um  sJ1hZP  {Z;\u@k; yR^Z>@  ?em.Nqj"+/ֱ 2 2+01%46372#&"&% -  G-16=/7/ְ21 !21 +@1) + 3. $28+0146567>54&547676&'&74654'.74& mu+r;D  )1jdbo1Ӧ|X9:o;y57> 77Jn#nH77 1`Z)`/+!/+*/ִ$ +$+ /+++$999$99! 9 9901>32232763#"'.#"'.1yj-+%   us]-JD`   ^ `1`Ry H++/ֱ  +  /+ 9 $901462"&62+"&CgCCgCL/R4A5/B@13BB J/##bN8Bc+@++'+%+4+C/ֱ9 D+9,127$9'79!9<$9@>99901432622#"'&32676#"'&/&?6'.77&#"b# 1e d-#%' \)Ll< )- ^  { TgZ %3j# &P!+!#EH  +5 7ˤjX5f)+) +)# +U/d3E!+EU +EO +^/> /9312g/HֱR HR +HL +h+RH#9^EAYa999><99)9014676?6&+"'&747>3!6767!2#"'&'&"3%32#%63232654'&54632#"'&'.'&#"#"&c=1    "i^\+h/#+/ HL^JPXS+LMXp\VP7JDJh!2"/>wb=HyV?]7:(`9)m  1!M`F!-/ Hdh%d)F?=+V=!9-%1XB?29Z+q%",{/&++/ +-/ֱ$ $)+ .+.+$ "$9) !$9$9&!$9+$9  $9017.5467'7>327'"&'326&#"υ9%%9\Js^`qP^9''9^RqnJPČNjXr\ZqN`;('<`Ru^`qI^;'';9Y+[3Ra2+.333"%222qjY +H3qB2~xY +;33~522/eֱOOe +@OF +)822@OV +eO +@em +z2+Oe Z$9jRf9q9901475&772#;2?654'&=47376#";2'#"3%'%"";2'$"&?63265'&'#!"=426/&+"=46;26/.'"'&2?6+" q5- -L+ 9B)%@) %/N  Z--%)8   '!A:TP - -n5+  ;^W )! 4 TD @Rd!1 /  \R9f h"+/ְ2 2 +0133ㅅ-  m<Wq+%/44% +4+ +X/ֱ J+" s+Y+(2:>T$9J@ %379AO$9"94 ":EU$901432#"'.'&"#"&5463272654''&767654'&'&'&'&'&m"-}q8")2 JALk//h1! JSFqwkyX945 J'+/3LF` qFJ/#71 N`C4;4E'@pXqV=!9 P`;Xo{\`)?ZLDFMolU5;/3+ 2+/ִ + + ++01462"$462"5HfHHf#GgJJg!fHHfHHfHHfHV=+ +;2 +;%+, +2>/ִ /+ +//)+2" + +"+ /+?+/99)  2$9 '45999"89%2 /5$9,)99901    432326732+"'.'&"3276'"V^R{{+Ls  )! Lяs bPM}'# εԕ  /7-d(4,+&2++!+(+/5/ֱ) 2  )/+2 6+/ #$,3$9!99 )0$901476754#"&'4763227#"'"&7326=/L?Zp XB=^R2`3= J?;Lq'N'H"^!!ah !3-?1Xd97!'PF9BC$7d ?Dq )+ /ִ ++  $90135#3#?@??:<fkwu 8++ +@ +/ִ .+ +@ ++015!#yq{Z+&5463$2&'"Z Dr qhR P? O[+ F++N +2E33N9K22?S +?# +Y3#\/ִ @+ +C P2C +@CH +C +@ +CV+**+ /+]+ $N$9C %M$9V,>-L$9* :;$9249999NM9? 99S,-$9 *99901    543>54&'"=476326362#&"'#"2+&"32654&#"?jIIY$|ܐ73)#-# \J 'l ßynV%'9FEL{)+V%V)oF1# %N1   aTRj  + /+2+/+ ++0154;!2#!"+?/#'\ Zbj I/ %+/%+/ֱ + + $9 990146  &72654&"bo‹ŠZZ\ Oq+-3M+52M +@& +++P/Hְ 2< .+*2999,;999901567>54&"&5>32;27674676;2#3!"5s4 /%IoXC mh  % - 3JM B  $%y?b) )'%$/DH@  msZ'!! !#1F  Z+3V1/  1 +  +/$4/ ֱ.  ' .+5+ *9')+,999 '.99901463232654&#"'&67654&#"&7>32#"&' #-%7X='#%#3%V:7'RLjD?KˁN# !bD3F d@+g#R\L=D3 _Bm5NJ *+  +/ִ ++  9016;6&d  1P  J'^+ 2 +@ +2(/ ִ + +/+ b+  +@  +)+ 901467 6'#"+"54+"+"&54.'&I#N !#$i!+ %5/%%X !L gdXu(/++ /ֱ  +01462"?Z@@Z[A@/-A5!$/"/ֱ #+  990133#"'&767632654#"&Ӫ99;NpP/'+<:dj]?Pq  9'J4dd)$:/ 2  +@  +%/ֱ &+99 9016762272#&"&37>5&'&dDR ;(!}TR !B   %?7dJ +/M+/ֱ + + 999 $90146 #"32654&#"?4wRF\yPF\>olTjhVDq * + /ְ2 ++ 99901733 V=@Ahow$fmdH"3ZeQ+)+X]Q) +?3XJ2 Q) +3  +@  +f/ִ -+ +@ + +@ +V+`2M .+<2MV +@MF +VM +@V6 +g+2999V\99M'8-999]X79=d99  <999)899901676236#&"'637>5&#"&&776;2#=632++"'&'7&'#"736=4'4dBT  ?  )m  T5 Bk#PL1!  }}XN !!!  %I Z    { "     q  dH&7on+\&+n+j.+jn +@je +)+,+n, + 3*J+Bp/ִ -+ +@ +?+M j2Mh c /+c/h /+q+4999?8GJVY$9c0a99\j99B;FM9990167>36#&"'637654."&6767;2+"%56767654&#"5>32;2767676;2#3#!"dB2  P !)b F57 7s%+G8w-C lh /:HO  B %%}XN!!!%  %Vd  HB`j7;:1D  mt[,!)' )/E! #ZH0>bnX+3+6+`eX6 +J3`Q2.X6 +.. + +"6 /o/ ִ+ + % -++]+h2T .+G2T] +@TO +]T +@]A +p+ (9%')99]+c9TC9e`B9.Hl99%+CDG$901463272654&#"'&'&7654&#"&7>32#"&&76732'=632++"'&'7&'#"&6;6=4'&#)H+%7X;)#%  2'X5F #QLmDȁN '+ ;7Jj!Q\4#  #4`D5E  bB)i R\L=?: +j51`    { /  a  Ry!,%+*+/+ + +-/ִ /+ + ++ @+'2" "/.+"9 $*$9%9* 99014767654&'&7632632#"&462#"&R5_V3) jLXbjbgĨFfFF35Dsf%#!7!5<  bJX#3c_Xq+/B@13BB MZhVL+"$33+BE$2+7]" +7$+i/j+L#973D$9]9 f9901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&&6372'&726'&'.\  \j^ %7C ^?"Z'm  5Nt, f 61) mw D9'7 >=5@#5kJ/"#  39BB  '5%#     M[ilL+"$33+BE$2+7P" +7$+j/\ִg +k+g\ [999L#973D$9P9 Y9901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&726'&'.672&\  \j^ %7C ^?"Z'm  5Nt, fw D9'g 27 >=5@#5kJ/"#  39BB  '5%#   P NaoYM+"$33+CF$2+7d" +7$+p/q+M#973E$9d9 m99901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&67>/'&726'&'.Z  \ j^ )5C `="Z'j -T5A6  f y  iw D9'7 :N5@#j6J/"#  39BB  -%#?   >   MlzL+"$33+BE$2+7o" +7$+`/T+dT`+P+{/Nִj +jW+] +|+jN=9W@ $(,2:;2;2#&"'&546;>'.'.'"26#$#&323267436#"'&'"726'&'.\  \j^ %7C ^?"Z'm  5Nt, fe RwR'## rYRtT%! -w D9'7 >=5@#5kJ/"#  39BB  '5%#R77P  oP;)8 P   MUcmL+"$33+BE$2+7X" +7$+l/T3g+P2n/OִS +Se+j +o+SO@ 7:;2;2#&"'&546;>'.'.'"26#$#&462"726'&'.4632#"\  \j^ %7C ^?"Z'm  5Nt, fHfJJf)w D9'H35HG637 >=5@#5kJ/"#  39BB  '5%#gHHgG5   gHHgG+MWeoL+"$33+BE$2+7Z" +7$+V/in/Qp/Oִg @+gl+(2T Q+q+gO7IGXYZ$9l  6QVe_$9T$25+^$973D$9Z9 c99niOSTN$901767276767'&>:;2;2#&"'&546;>'.'.'"26#$#&4632#"726'&'.3264&#"\  \j^ %7C ^?"Z'm  5Nt, f{XT{{TX\w D9'!D/-AA-/7 >=5@#5kJ/"#  39BB  '5%#{{{R   ^DD^DD8+f+3P鲅+3l{22+3*+3* +@* +t8 +/J8 +//pְ2M,2pM +@pi +MF+@ /+@%+ /+W+Z2b /++FM69@7B999%&99P9t@FC_`y$9G9*8 999n9901&67>767654&#"&?67$2+".5.+!"372767676:;2#'"'."37>7674675434;2#!"754?54#!"2#"&""'3!254'&wDXA5'D*K3  3-:3.%)  9e'6b-dD/9!0?u/ !/s1#  'LmTX  )`F%N! \.d/5h0'=X '/%I%N9  7!  sROM+,3+8/BP/ֱ E+5 5+ +Q+E/28;KM$95,3$9&*$9  999B8>9M5?99&(99!$9 $901!2762'.#"327>76&#"#3#"'&76762654"&7$sPH'15ܝ@)+''1_=c^5;NpP/'+<:d;FhPU %9F b\?Pq  :'J3 2 ZgX+F+'+ .@X +.h/ֱC*2Cf+c +c<+228 +8"+ +L+P +i+fC@g993>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'&6372'&- Jd33l   '-JM  y5) #8y+osP1% N's B#) s.C L  BnX}?! b)odj.w/;k Bul    2ZiX+F+'+ .@X +.j/ֱC*2C[+g +g[ +gc +g<+228 +8"+ +L+P +k+3>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'672&- Jd33l   '-JM  y5) #8y+osP1% N'e  /.C L  BnX}?! b)odj.w/;k Bul  P 2ZmX+F+'+ .@X +.n/ֱC*2C<+228 +8"+ +L+P +o+3>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'67>/'&- Jd33l   '-JM  y5) #8y+osP1% N') y .C L  BnX}?! b)odj.w/;k Bul  ?   2ZeoX+F+'+ .@X +.n/c3i+^2p/ֱC*2[ a Cg+l l<+228 +8"+ +L+P +q+a[@93>54&#*.'&763$2'&'.'&";2676'.+;26767676# &'4632"&$4632#"- Jd33l   '-JM  y5) #8y+osP1% N')D1/FDbDXF/3DD3/.C L  BnX}?! b)odj.w/;k Bul  /EE/1DD^ECbDj )6o(+&3 2+3 27/ֱ22 +@ + 25 +5/8+5'699('99 990174>?'.'&763276"#2#&"&6372'&j^--R%E^/9T  %  ;)) m'0TG GR6/ +DP5#  j)8l(+&3 2+3 29/ֱ +@ + 2* 6 +:+6'9('99 990174>?'.'&763276"#2#&"672&j^--R% E^/9T  d 1'0TG GR6/ +DP5#P D=[<+:342#+&3*2>/ֱ11 +@ +!2?+1;999<;9#%90167>/'&463>?'.'&763276"#2#$"D z ( `--T%G^1;R  ?    0TG GR6/ )FP5#71;0+.3 (2+32:/35+2?'.'&763276"#2#&"4632#"7HfHHf^--R%E^/9T  8G45HH53gHHgGw'0TG GR6/ +DP5#gHHgGV7X+; +'+H+ 5  +O35+U2Y/2ְ28L282 +@8S +28 +@2 +8A+ Z+A8995AS9990154327674&#"74?6!2# &54767;232676454#&3267654'&'&#"3%2#"'8}5mh?I\?%-{JpcwoT;'%- !%{H#;%#DO~?  )3R/ed(#F7N\  #!#%=%'FqIhI+G3A22++$3  -22\/P+`P\+L+i/ֱ< < +@ +<J+f +fS+Y +Y+1 j+J<7B$9fG9S $EL"\$9Y%99 078$9 99\h9Pc901&76725&'&543727654.'&'&'"&63%2#'& &6#$323267436#"'&'"J 7o!{E  (!O a w3H%%  O)-  RvR'## rXRuT% - 7 v )!A =52 $! 6v h$B /R77P  oP;)8 m' &G ++'/ֱ + (+  "$99901! ! 32>5#"&6372'&mF?`^7k/P 51) m9ZV`{!r%  m' 'U ++(/ֱ +% +%+ )+% !$99901! ! 32>5#"672&mF?`^7k/d /9ZV`{!rP m' ,G ++-/ֱ + .+  ,$$99901! ! 32>5#"67>/'&mD?``7k/ y ! 9ZV`{!r?   m' 8 ++,/ +0 ,++9/ֱ +6 +6#+) +)+ :+#6 ,$999,89 3901! ! 32>5#"323267436#"'&'"mF?`^7k/ RwR'## rYRtT%! -9ZV`{!rR77P  oP;)8 m' !)s ++!/(3+$2*/ֱ + +#+' +'+ ++# $99901! ! 32>5#"462"$462"mF?`^7k/IgHHg#HfJJf9ZV`{!r+gHHgGGgHHgG*7&76'&?66767>'&'!!s++ 15!/!t'-#+1d%%rl++ /+'$g/5o%#luw(5Dt+:3/E/ֱ) )>+ F+)"$999>@ %(&07$9 9993:@ %(,A$9 901!2?6!"'&/.4&6?64'76'&#"327654'&lL}yC#  {)w{bRot  !Tm  3%Eʩq0X ;Hv1+++ 3: %222I/6ֱG+D +D+) ) +@)$ +J+G1=$9D9:)69901636 2'#"3 76'4&/"&362# .54&'"&6372'&-+~ Z>1[!AwwFI>\w1[!AwwFI>\w/'&-+~ Z>1[!AwwFI>\w1[!AwwFI>\w22+3 "F222W/HִT +T@ +B2++@ +@+3 +++ +X++TA94PR$9 "99. <999 901&7672#"67654&+&63%2'26#$"&76763676'.'"%672&! B% B/FhBL3@1 j # *m H`__d  / !)fZ rm9#D!-};BF+}IqDP 'oFJ[.+03)72+3G 2 O0 + W0 +\/;ֱ&K22&; +@& +;& +@; +&R+ ]+&;/9R -.$9O #9W90154772#+732#"'&;#$"&76763276754'&'&#&'+"'&32654&'&#"'u B*BZHT? D^++%` ## '-IBR'#- 0-9h  ET:/  !/dZs+Ǣb#+ 'PN+L3F2+(E2( +($ +//6=467632#"&546323265'&'"'&5467>54&#"3'&&'P!)Buԇy  u[sۖ/=#// )@38gmr#H  ٵ  )XP Vh5!Wq+%+}V-  }\N%  3-D6CP+ 4++3:4+"!+:4 +@:' +H+Q/ְ2 7 =+O22 L +R+7E9 D9=.4:BP$9L-9+9:419")-.0$9 =?B$9HN901747676/&'"&547632276763#"'&"#"&7326754&6372'&3Rq#R `hXB" 1  RX BV9XoA0!t /co@') s94< # / LbTB3!;c=(-wk9(gl/AK!)-  3-J6CR+ 4++3:4+"!+:4 +@:' +G+S/ְ2 7 D+P +P=+2 T+P4:B$9=.2A$9+9:419")-.0$9 =?B$9GQ901747676/&'"&547632276763#"'&"#"&73267546;2&3Rq#R `hXB" 1  RX BV9XoA0!t /coge  /94< # / LbTB3!;c=(-wk9(gl/AK!)-P  3-06IV+ 4++3M4+"!+M4 +@M' +W/ְ2 J P+2 X+JI9P .4EMU$9+9M419")-.0$9 PRU$901747676/&'"&547632276763#"'&"#"&67>/'&3267543Rq#R `hXB" 1  RX BV9Xo5 y   lA0!t /co94< # / LbTB3!;c=(-wk9(g@  /AK!)-3-6Ub+ 4++3Y4+"!+Y4 +@Y' +I/=+M=I+9+c/ֱ722 V S + \+2 @+F +d+\S.49;K$9+=I999@!9"Y)-.0$9 \^a$9IU9=P901747676/&'"&547632276763#"'&"#"&323267436#"'&'"3267543Rq#R `hXB" 1  RX BV9Xo RwR'## sXRtT%! -A0!t /co94< # / LbTB3!;c=(-wk9(gyR77P  oO;)7 /AK!)-3-6ANY+ 4++3E4+"!+E4 +@E' +W/?3R+:2Z/7ֱ=  3 B =H+O22 U [+=74EM$9H/2KL$9U!+99"E)-.0$94J9901747676/&'"&547632276763#"'&"#"&4632"&3267544632#"&3Rq#R `hXB" 1  RX BV9XoTF1/FDbFJA0!t /coF/1FF1/F94< # / LbTB3!;c=(-wk9(g/FF/1DD/AK!)-J/FF^FD3-q6@MW+ 4++3D4+"!+D4 +@D' +?/QV/:X/8ִO Q+ O8+ /3 A OG+2 TG+= @+Y+O8499G@ .2:?DLQV$9T-9+9"D)-.0$9 GIL$9VQ8<=7$901747676/&'"&547632276763#"'&"#"&4632#"3267543264&#"3Rq#R `hXB" 1  RX BV9Xo{XT{{TXhA0!t /coOC/-BB-/94< # / LbTB3!;c=(-wk9(g{{{/AK!)-^DD^CLwFS_++^=+D30+=+JV)= +V`/ֱG   GL+2+ +L +@+& +a+L BDR$9+?A$9)0@ 5?@AGLN$9V%99!"$90174676754#"&5476327672'!"3267>"'&#"&7367543!26'.#"Ln`\3L qh[X sm5) 3TBd?RX^^m BFVr=3RbB=V;-1 a=ZX);:% 3 HhNifct -LPi8C ^7;FXkl5@` !9Vb3!uB+   + +@+%++(/3C/ֱ 6+% D+6 !"(,A$9% #$93(/9@"%99 99901432#"'&#"3276#"'.7676232654&&?6&#.3!d+5J9X T^  15J".<j+- + +2+&  +&=/ֱ /+: +>+/$9999- 92;901432#%"3276#"3!26'.#"76;2&1Hy%o DMsٰ3#fAGe  0"-&σ P>X T^P  150"5AS+@ + +9  +9B/ֱ C+599999@9901432#%"3276#"67>/'&3!26'.#"1Hy%o DMsq y   C3#fA"-&σ P>X@   T^15"-9D+8 + +1  +1B/+3=+&2E/ֱ #+) :+@ F+)&,/$9: 8$9@49991989901432#%"3276#"4632"&3!26'.#"4632#"&1Hy%o DMsكF1/FDbF-3#fAF/1DD1/F"-&σ P>Xq/FF/1DDR T^%/FDbDDD .S+,/%2//ֱ  + + / +0+ +9  9 99901&6372'&&32654&'&'.7%6;#&&  ;)) mnX#&/%  )%?    #<oL +Z+N9 )J!/C%+/20/ֱ " - +1+-9%+.$9017&32654&'&'.7%6;#&&6;6&)X#&/%  )%?  sd   1#<oL +Z+N9 P  +04'2/+25/ֱ& 6+&1990167>/'&&32654&'&'.7%6;#&& y   CX#&/%  )%?  @  J#<oL +Z+N9 H)1~'/  2/03+,22/ֱ + +/ +++/ +3+ '$9+&9/"%,1$9  9901462"&32654&'&'.7%6;#&&462"HfHHfX#&/%  )%?  %HfJJf!fHHfHB#<oL +Z+N9 fHHfH^^6B{+@4+: +$+C/ֱ7 7=+0 D+7$9=@ "&+4)$9@:099"(+$9 '9014326'&'&'.'&?>'&'"&?676#"32654#"^ F7 +H 2 3Y!o# s/+;>?'wsm -#B? !u ! )?` >-JLEu!Lk+=%+ 2=+0/G35$C222_/S+cS_+O+l/ֱ@ 2@ +@ +M@+i +@;+ Z;+V +V/Z +m+;i@ /3EGOS_$9V!9=5@ %4;?$99_k9Sf901>;2654'&/&47>7676763236#"#"$"&'43>7654#"32&'"'323267436#"'&'" H-H) !%/`JV:!E +- D3 `-P/2 RwR'#" sXVpV#! -'N1J /pD%)=@/   #.?wy1N)"! R77P  oO;)7 /D $i+ ++%/ֱ #+ + +&+#  $9 !99"901432#"32654#"&6372'&/mmu <)+ sþ  /J &`+ ++'/ֱ +$ +$+(+$ $99%901432#"32654#"6;2&/mme  0þlP  /0 *P+( +"+/ֱ %+,+9% 9999("901432#"67>/'&32654#"/ y   mmþ@  / *6+4 +./+"++7/ֱ+ %2+ + /+1+  +8+1 9994.9*9%901432#"323267436#"'&'"32654#"/{ RvR'## rXRuT% -3mmþR77P  oO;)7 5/ !,q+ +*/3%+2-/ֱ  + +(+" "/( .+ %*$9901432#"32654#"462"&%4632#"&/mmF^FDbDXF/3DD3/Fþ/FF/1DD1/FF^FD $?/+/+"/+%/ְ2 2&+"901543!32#!"&462#"462#"&?% % /3J11%#55F33#%53%;VJ11J3#,1#%36^&2>+1 + ++5"+?/ֱ((8+ .+@+(!$9998.>$99591@ #*;$999014326?6#"'&/&?6'&676'&#"32654'&^ ɑ\ < Ï}n l 5y Xto#Xso9  R m H N } l jhj{r B (+DCP +M+++:+ "+0+H+Q/<ֱ O+L +L+22% R+ <DE999O :P$9L7M$9 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'&6372'&+)Lhd0  A  T)X+  qy DI;>  ;)+ s-1qg b\7 +/$t?D #1 P113#!  (+JCR +M+++:+ "+0+G+S/<ֱ D+P +P+22% T+ <9D:9P 7$9%KLN999 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'%6;2&+)Lhd0  A  T)X+  qy DI;>e  0-1qg b\7 +/$t?D #1 P113#!P  (+0CV +M+++:+ "+0+W/<ֱ +22% X+ <V99:R$9%N9 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'767>/'&+)Lhd0  A  T)X+  qy DI;> y   -1qg b\7 +/$t?D #1 P113#!@  (+CNW +M+++:+ "+0+M/U3G+Q2X/<ֱ D J +22% T%+O O/T Y+JD:99O $9T7999 :'37999 &(*567632?>54'&'.'"'&67676?6&/4&#"4&'.'4632"&%462"&+)Lhd0  A  T)X+  qy DI;>E01EEcCXFbCCbF-1qg b\7 +/$t?D #1 P113#!9/FF/1DD1/FF^FDJ@OZ+"33 '>222D+1/6+P/AִM +Q+MA ,996,99?9DN9016%276567654&'.7362##"&547>?.'.%6;2&##:!B({ 3J w#?M=H+!='9f?U$92I sd   /H!03h#93!7'!3  aT#J3+8$?qx_j8P  9Du +B +8/02&/<E/ ֱ, :22,?+# F+, 79? &46$98./99<&)9B#99 99017463>554&/&7476?67632#"'&?6'$"32654&#"5,%: nJV 1T  Lu{fobs! Xi75% % ! }ыW ob@HP+"33 '>2221/6+H/O3D+K2Q/BִF +FJ+N +R+FB ,167 $9J+:$9N*$96,99?9016%276567654&'.7362##"&547>?.'.6462"$462"##:!B({ 3J w#?M=H+!='9f?U$92I IgGGg#HfJJfH!03h#93!7'!3  aT#J3+8$?qx_j8fHHfHHfHHfH{P^l,++V+D\+b ++j + +%<\, +%<% +@<6 +m/ֱ__g+@"2@8+*23 +3L+Q +n+g_\999@ Y99389LV999;2#"$#"# 327>54!"{ϰLh B'M  3T ;h 8T'+wN!+ !}%zFCu)sM5VVF T )f1 ?^m-X1  '7\!; E<)}Ebs-9E+ 37D2++%31++#+1+ +@1 +>+ +>F/ֱ..4+ :24 +@ +G+4.+99')$9>+ (.4$97 $9014327632#!"327>2"'&#"732654&#"%3!2'.#"b ¸iyL 9qZ Jdbb] wwdswf ]A {; RE?   Rh!GOW4+.;>22+3 "F222O/V3K+R2X/@ְB2++@ +@+3 +M+@+I +I/M +Q+@+U +++ +Y++I 58ARW$9USV$90499 "99. <999 901&7672#"67654&+&63%2'26#$"&76763676'.'"$462"$462"! B% B/FhBL3@1 j # *m H`_IgGGg#HfHHf !)fZ rm9#D!-};BF+}IqDgHHgGGgHHgGD0. /3 +/ִ + 2+ 90167>/'&D z   @  Y/+++/ִ + + + + 999 99901323267436#"'&'" RwR'## sXRtT%! -R77P  oO;)7 Z+&5463$2&'"Z Dr qhR PZ+&5463$2&'"Z Dr qhR PZ+&5463$2&'"Z Dr qhR PN+ /"+2"+/+01767$2$"&Ny (G  K-/"+2"+2/+ 9901463$'$&74&y!    F !<++ 22/ֱ +@  +2+ 9901467672637632#"&o  +8D1DZXd)Vo>+1Al2/+/ֱ  + ++99014632'&76'4&#"&F1DXy`! +81AfN\/!Zi<8+3++/ִ Q+ + + 2+0174632'&7654#"#"&B/=P{d  '5;->bJ^'Xc90`+.3 +%(2221/ֱ +  + +# # +#+ +2+ 9 $+$9014676?237632#"&%467672632#"&f   +7E1DZf !+7F1DYP`- # Zk>+1AfL`- !Vo>+1Af2a/!$$3+*23/ֱ  + ++- - +' +24+9-$9014632'&7654"#"&&76'4&""#"&54632'E4DY}d!  )9  ):F3DZ{d% 1AfN\/ To#<To<-1AfN\-J0[+).33+2++1/ִ Q+ + +'+ Q+' +' +#22+0174632&7654"##"&%4632&47654+#"&D/?S}g '8C/?S}g '7;->bJ^)1Xc9)->bJ^'Ve9q./++ /ִ + + +01462"&q⟟q᠞ N +33+22 ++ /ִ + + + !+01%4632"&%4632#"&%4632"&F75DDjHC85CA57FD75DBjHV1<@31BF+3@@f>@93:@f@H(++FHc$3}ACN]i$2+&+/+%/% +/* + +8T/ +Vr338%+22 /ְ2x 鰗2x +@ +xo+2Z 42Zo +@Za +oZ +@og +ZQ+> '2Q> +@QJ ++x999oe999Z d$9Q!#-Hc$9>,:99 }>B99Ust9998T=$96;999#901>732654&+"'&47676367676767>7>#"'.#"%67636&"'4>2654'&;2#&"54732>5&'& 32#$"7>45676'&"# P3X%^/ {HL)+LFP1R=TZR`)?  X%}X%Z) /% H-1J3  V1 +R{T#2O  R;PXnBV@-7@ 9-K+}VF1 !%hN'A! << ML!!.KR3)D*' ) -X+J{V;0|T+7z|333O.A[t$2+#鲌+&+&2 +jz +GIf333$+22 / ֱn }2nb+L 鰑2LD+2+ 鱟+n {999bVXxz$9L999D #54+"'&76767676767>27632327626'"#!"&7>3>54#$36#&"&7>767>54&'*#"36#$7267676'&'&"!25&#"5 /;#a%\1{JL%oV7'=: T #/1%d 1L  5){ )7  Lo 9NrTKF-s\L9P !4M!%  !R;58XnBT@#` 1%L)) H3 /L/=% :l'Zm5 ! }% {%J{V;)NNmLG+8K/43.2/*3 $2"/M/ֱJ22, .+$522, +@,( +12, +@ +2,+ /+N+,8DG$9<=B$9K8=>99" 9990154;547#"=4;6327>&'.#"!2'!!2#!3276762&#"#"'#"yo{#Z`# !##|TujjfL(-!-'=/2D2:  Z27?/{%x+"5A%=+3U_222L+g3= +@=@ +2,/y3332 Er$2/ִ@ +@7+7 +@7/ ++ +H+ @+H +@ +Y22H +@HC +O2+mm +@md +v2m +@ ++7@,99+99%*999 9HU99V[|$92,#99= Z]o$9L Y99901&?>3%6+.+"32'&"&=6727>54'&+"#543>54&'"/4=463727!2##32#"&"&=4;>5&'#&;2#&#&"%Dl Pc! :  7 #\P#R;; C    59  &! 71 7  F    V>!L-  'L-!>V-NV+  //PN+   /HiiT+ !RR./++/ִ + ++011!RRR:]\+834BU222M/("/" +" +^/ְ2Q $2QG+1 _+QZ9G=AVX$91,-$9M 9( 99"-.999017&?>54/.7>76547>32#"'.#"37676&+".'&763>54&'&&#""R /5)F  @@+Țh:%)g-m?' 5+= 55!D3BZ\V 6p5! Õf`A++FA! mq4 1)6pcZ%%Zq9518TfZ+B$+ @22B+S+,/33%5H222c+g/ ְ2E U2E=+`2" h+E Q99=/3LM$9".99BJ9ZS.A99c99017&76367>54'#"'&76?65762327636+&#"'&6732>54$"36+"&"326327&#"1 H _ jV7(7I   '!' 'Q1L 5(9#s\L9R  '2Q> +@QJ ++x999oe999Z d$9Q!#-Hc$9>,:99 }>B99Ust9998T=$96;999#901>732654&+"'&47676367676767>7>#"'.#"%67636&"'4>2654'&;2#&"54732>5&'& 32#$"7>45676'&"# P3X%^/ {HL)+LFP1R=TZR`)?  X%}X%Z) /% H-1J3  V1 +R{T#2O  R;PXnBV@-7@ 9-K+}VF1 !%hN'A! << ML!!.KR3)D*' ) -X+J{V;0|T+7z|333O.A[t$2+#鲌+&+&2 +jz +GIf333$+22 / ֱn }2nb+L 鰑2LD+2+ 鱟+n {999bVXxz$9L999D #54+"'&76767676767>27632327626'"#!"&7>3>54#$36#&"&7>767>54&'*#"36#$7267676'&'&"!25&#"5 /;#a%\1{JL%oV7'=: T #/1%d 1L  5){ )7  Lo 9NrTKF-s\L9P !4M!%  !R;58XnBT@#` 1%L)) H3 /L/=% :l'Zm5 ! }% {%J{V;)NNmA(_<D,D,%++%D-f^JZVzNEzZLFNTLqdDRPV?+s/0XQuM0jH(+1Em3\%srF/.G5JRB./O3`3/d1#75" (%$!~  / ?)F(E(-GE1-b^/Em5^V-/?zZ^?Qbfffd?Vdd#RQs2222jjD7\Fmmmmml0000!'\'O3O3O3O3O3O3;L`3d1d1d1d1)\^ !/////\^E(E(E(E(/I{3b!D++c11oezZzZzZN--qro (03"QrRO1 (0,,,,jP8&Rx 2 Z P J ^V"v z^X<, \p H!!"@""##J#z#$Z$%H&&'$(()|)*+.,J- -r../d001B123X345 5B56 6 6l778`9x9:X:;^;<?,??@>@f@AANABzCzDEEFG|HI~J|KLMNOvP|Q QR*RSTUUUVW&WtX"XYvZ Z[\t]J^^_`abtcVcd~eefRfg4gh,hijJjk2klNlmPn nopq@qrstVu?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~     glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011 figuredashuni202Funi205FEurouni25FCuniFB01uniFB02uniFB03uniFB04KPXYF+X!YKRX!Y+\X E+D E++D E++D Ei++D E*++D E+D E$+Fv+D E +Fv+D E+Fv+D E 8+Fv+DY+S|tufte/inst/rmarkdown/templates/tufte_html/resources/et-book/display-italic-old-style-figures.ttf0000755000176200001440000022134012647360110033115 0ustar liggesusersFFTMjGDEF8 OS/2e#XVcmapDcvt \fpgmS/egasp`glyf<hheadM6hhea$hmtxHloca+4kmaxp#X name5cP(xrpost{prepiE/! webf|!S"=D*~D,33d@JPfEd fft.  ~Sx    " & / : _ !"% Rx    " & / 9 _ !"%oK6  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ardeiwpkvjsgl{cnm|b׸xqyj)37?FNi/n1J~z|Zwt-D,KLPXJvY#?+X=YKLPX}Y ԰.-, ڰ +-,KRXE#Y!-,i @PX!@Y-,+X!#!zXYKRXXY#!+XFvYXYYY-, \Z-,"PX \\Y-,$PX@\\Y-, 9/- , }+XY %I# &JPXea PX8!!Ya RX8!!YY- ,+X!!Y- , Ұ +- , /+\X G#Faj X db8!!Y!Y- , 9/ GFa# #JPX#RX@8!Y#PX@e8!YY-,+X=!! ֊KRX #I UX8!!Y!!YY-,# /+\X# XKS!YX&I## I#a8!!!!Y!!!!!Y-, ڰ+-, Ұ+-, /+\X G#Faj G#F#aj` X db8!!Y!!Y-, %Jd# PX<Y-,@@BBKcKc UX RX#b #Bb #BY @RX CcB CcB ce!Y!!Y-,Cc#Cc#-DdU./<,2<,2/<,2-<,23!%!!D $hUDbL N +++/ֱ+/++ 99901747>32#"&>;2&8)%/<+'/}{-+'H 1>8-5J8O7j  XL :+3 +2/ֱ+ ++ 9901>32!7>32X!DP#-A@ T?%+P6}+#%2h\m)#5Zf+$3$+ $2 +@ + 222/$3$+$2 +@ +222 /ֱ +  +@ +2+ 5+ +@ +2 + !+6>+ > + +++ +  +  + + + + ++++ + ++@ ................@0153!5!3!33#!!#!#7!!ZQRXqXXqXR7TuZFTsVOHuttVVtvtXXw=`YoyoL+bLb +@LF +S2B+W++#3+!+&+ //ֱ 2+p p1+62, >,1+ 鰎/> 鱗+6>HC+ V QZ>+ !.I&D>]+ .o  +oo+I I!+D'D&+;D&+A+ IgI!+ t +u +ozo+II!+I!+oo+DD&+PQZ #9JI!9g999 9CD&99<9;9'9t 9u99zo999@  ';)99b@ ,.9sw~$9*901746326'&546?632322?432#"&5474654'&"&?4'"''.?.2>76'.'&76&76'&"7>54'&/%)7m} % LVF" 7 k   !Vi%R >)Cui - `NFTHG+5- :=, 'w^ ` bpPo-#55#w y!zT !!FE)D B) % rJT^% $08>$+./3 /7/(/9/ֱ :+ 9901>32#"&732#"&7676+>32#"&732'"tyuuyv;9; 3q37uwwuyw;9;טՕ51Nךד51-Ng e+2 + + +8Je +8(+[2 ,e +(3 h/ֱ/ /+/C+E2? ?+5+aA+aP+X +PX +PS +i+ 9C &,2Fe$9?;d99998J995\]99a[9PM982/Ba$9JZ9,)9 &P$9RUX$901467654'&'4$32#"'.'&#"3262.#"32$54&#"'&'&7>3232654&'432" .D+5O<#'%/q7k`?_01J/}o! 7D#:%R' F!dJ)LbRjϠTd# 5 3?N/' +3&Xo F`bRBOL,++/ִ A++ 99017>2#"B !Ff%+#u =D{>BnqB3/ֱ+0176'E{} LA%%% "y/ֱ   +@  ++01&7676&76R auCw# $srɡrp/L3+F2:/4+24<+s/aְ"2\'2h\a+3T+2t+ha$_999\T%@^999pQel999<,-Si$9: 94 )*0$90146767676'&'&'.54>3265&'&546276767632##"'&'&'&"&547>7674#"&/7B19=#D9Z5/ '%(J\ 'J)XJ %&-%/5q7B ?:1B7-)3' HZ +J+ VL!%!(1% %#'- -X9 qEX%!33!`\Z 7V -3-'! % %1--Z8K !'33'!# ?3_)-{ X/3#+2 +@ + +@ + / ְ2 4+2 +@  + +@ + +015!3!!#wwovv n0/+/ֱ  + ++901&7>54'&54632t P4!!:#-9" =53%5=)=V=ݨ{yq*/ %+2%+/ִ ++01&7476763!2'!  Vy #  %X 7++++ /ֱ +9017>2#"&;N-9-/+V/@8+5JD}674>/&m   3 \#8/N+F+{LH +++/(+/ֱ++ 9999014$32#"&73254&#"{TLuqL,JS:h^BbJ ӁњK!߆o-q#^"/2$/ִ +%+6>+ ........@"9990176767676&&'47%6322#$"\3 {  9Z  Dp @ 9EF1I1/" + /,+2/ ֱ3+ '*,999"1,99 (+$901267676$7674&#"&76323!27676#$DT5;==N75i9-b~X]Vω  -\% =% ^<=EHR9<:73 ߅VF}A4 7B  c^4Z3/3 + +/.+5/ ֱ/ / + +  $6+ ,9$,9990146323254&#"'47$54&#"&76723#"R=5{PD5>\C1 & H^! bD5DՃ/)!Xq 3B -F'X- 2DSݞq$.#/3'"+ 2//0+6>1+ *  +*+* #9 9 *...... *......@'#901747?632#"'#"&76.#!"732773 P9 }# R HP }bZ?q5u   l@b>/$+> + +./+3+A/ ֱ9 9 + +B+9 !)*999.*9999!)99901463232654.'.7>7>:;767>'"&#"#"&1P=!VxT:  %' #7  d`Pq/jG#R~>D#  ' /X; \TV!\-h+#+++ ) +"+./ֱ  &+/+& 999 9)#$9  901>72767>32#"73254&#"JLF9 R-ju;yђyjJXG-;uH%s?Hd4  9 9gB{eoVkf\&C/ 3+2 +@$ +'/ִ +(+ 99901>76'$'.7>763276+"b X-1/%) F!J3%J5 %!- +y    #B;u$0s+./ 1/ֱ +% %!+ +!+ 2+%999!#'.$9 9.#'$9014%6'&547>32#"'&732654'>54&#"u;y#.X yZXL95Ø9DF-+) aurKB yhVݠ}d'5d1BwiLN .R/ /$%+,/)+//ֱ!!)+0+)! 999,$ $90147676'&#"&54>3232>54&#"L T HBPhb8{}LC6WeEnDZf T% #L^b岞yG#'9m1\d)f K ++/ +/ֱ ++  99999017>32"&62"&>)'-9[/Y%/;V0X1>8-5JHo9-5HFj!f>/+/ֱ  + + + 9901&7654'&46324632#"&j !!6&-<-%1jo!99V5 PRyhۃss /"+/"+/ +015!5!PPyyyy75 5PP#h+L -++++ + +./ֱ*+  /*+" +/+ 99* 999&'$9",99017>2#"67>7654&#"#"&54632&9N/<-RyW3)F}fNr nRm!x^%%V1@8-7Hws+)NjF^!/#1@hA1HFV LL]J/@ /31P+Y/:/^/ֱ= =+MM7+;+_+7M :@JV$9YP@ !$)7=CGE$9'901! #"7476'"&547632>76?326765! ! 67! %32767654&#"-H  ?>}pRkro. 'T#%-3#%75R^^s ^!}?B/wB'-F5VP`;P';R8qh6ya / 5oVTAdQfI;TXwXBQ`qiV=P+73#2222 ++@ ++,+Q/<ִ0 +0C+&2C +@ +R+0<999C!58P$99+0999 @H901'63>767632;#"#& "&632654&#!"32#&""543%54'&'"VRbPT 3-:{ߦ  _m'u5  r#'FiT u;.FbN3#L G"+0AQ/+42+N2E+  @Q  + +@?@Q+B@Q+  #9 9?@Q9B9 ?@BQ ........ ?@BQ ........@&J$9<$&99E# 999017&5476327>7>.#&#"763!2!"#& "%327654&+";27654'&+"%+B= 5+ BܟyP}ZǮlX { aZjB` Tm)-!Gm+qljT@>fË a7E 4L-;N-@++$++./ֱ/++"'99!$9014$!2&765! 3 >"'&#"# ; LEH=. !!\l7kZ   !V7  !H=+$>]#++2+62?/0ֱ @+6>+   %> %>.... %>....@017&'476?>7>.#"#"763! !"#!"%27654.'&#"" CJ5 41+  `J6 %zmvan   Cy?+<' +0'Bdۍt ]+e]+N2+% 2% +@% ++=] ++f/9ֱ55!+ &+g+6>+ @'(@'+(@' #9'(@.....'(@.....@59]9!/2SWY$99=N58UY$9+49%03999901763>7674+&763!2#".654&#!"3!267654&#!"232;27>7>#$ "'&54# /J< 5!  m}-hP\^'%'Z)X #)u74) )!@ ;Db[9Z }y f[ 9R 3P9g" T'25 h  &+]\+T2+-2 +@$ +6K\ +6^/GֱCC=+AA(+""( +@" +_+6>+   N12N1+3N1+4N1+MN1+MN1 #9294939 34MN12........ 34MN12........@=CB9"(9\X9KBEU99960?A9999017&'4763267654+"76323 72".4654&+"&7:3>7>&54&#!"36& " TI # 5 Xs% ;$iNT+9BZP  k'  Hl[9Z   oT{{%;P ɣ hH.!%&}&L?<+++$< ++2@/ֱ+33 +@3& +3 +A+!<$93"9  #01789$99+899$ 99901!2'.# !267>54&/.6327#!"$}/)^#(1Jk  -7#  A FH^' X-"534b% )'L+}z+N3HVk222+43 .=222$bz +$~/+6>+ e >+ \)BAe!e +\(\)+]\)+ede +de #9!9]\)9(9@  !()AB\]de............@  !()AB\]de............@z|9b9 $+901'63267654+&743 72*#"3!26764'&#"'&543 72#26& "&767623>7654#!"32326#"#& "54)\TD" bQH  J  E'j5HD [1! . F?J}P b KTyD?X  Fn  a:J Tw(!1   L`a -!&( ,l+4j1+(2+25/6+6>+  "! !".... !"....@139$990176232767654'&'*&763 72'3232& "54/\#% f   dF  jX%'h]/"*   @n+ /%R+3=+(22/ $+ 2 +  +4/5+ '.99#901476323232767654'&'*'"763 72'##"1!% E*< N - |F;W\ّ'( 7T 9# + H`L|)fN+`3F[22+.3 (9222g/h+6>+ UU+TU+TU #99TU......TU......@ F;QW$9017>3>7674+763 72+767654&#".76327;2#&""'36& &541LB }v `NLDy;%1 P T;wP  FR ;H w Jd]5%ZFo /1R)!   {L7q% /$/ +JGA+2A++3&2K/L+2 >997=9999017&54767:7>7654'&#""&6563 72"+"367676#"%&#"#"! LJ G  `P QӴk\X < '݁  Xq@@#% Fn$4;3m #!),mj+@Tg3337Gc222$+3- 2n/lִ` +o+6+ YX>+ LM1001LMXY........01LMXY........@`li999j=Rhl$9-O999$(9901'66767656'&'"'&6327632763272'#"3232'& 7627>76&#"#&'&2'&""54 j8)9 h+ TKp\  d9 `R e H7;;C   HNX D11'8-   Hn+$4   NZe  F%)-?@+M6+J+B22++#3 .22N/O+6>K+ <;>+ 2.11;<.......12;<........@JL9 999990176>7.'&7632727654'&'"56327232#"#"'&2#&"54fY +< -xK7  #} a  `c An ]a{ ''0$31  el L%.%2!9 BL D ++ /ֱ  +!+  999901! ! 723 76&'&#"#"H _&rqj}L9=dH߉q-EpB+92+02%B +F/+ֱG+6>+ 3223....23....@%901'63>7676'4'&#&763!2#"'&632767654&'&#"32#& "54' ^P %V=Fʞu[7. VNi>PRF?!h) qR{73*#%1e$ ' *\w^ (** bHL%3\+//'+4/ֱ& &,+5+,&  $ $9999/ )$901! 3276".'&'&73 4#"N!nK0*=2 oNlj%/ JoL7X8  ^RZ'-_LqL-J_G+?2++%+\ 26N+ +6`/VֱV +@' +a+6>+ 9_89_+K9_+89_ #9K989K_......89K_......@GI96 23$9N99\901763267654'&#".763!32"&'.'&'#"32#& 5432767676545&'&'"hR a/ͮ 5+?iPb +N!%-#L;@ l t  73QN2-JLFp](&, %!1yV}R?PyJ`jF+ )* { 2-\TZ d<= 9<:++!3.=/ֱ / +11+77) ,,/)), +@)' +>+1:9.49$979.()7$99017&47>32654.546323276"5!" '&Aqq/)% 1{'wJt  nPsyb) -q\X'wӁqF/+3&2 +<2< +@< ++3G/EֱAA+H+6>+ 89! !89.... !89....@AE9)0$9<3B99 901676723!26767"'4'&'&#!32#& "7627>76+"'&54;5>1oO)G, n P=ћ -P="Ú;%+"u  #' ?3; 0B$Ff+/IL xo/O7++%3J /222P/>ֱ> +@>N +Q+6>+ @A>=+ 3223@A........23@A........@>FI999J>9N9016 72'"#"3267654'&#"7>327232'!"&'&'&54767456'&+"'&54y % V $tͶ+h '} h@`Rh?F9q  F# !!vuV+,":/  RϚjdkXd VS7*& n-@`4++#3? .222A/7ֱ7 +@* +7 +@7 +B+72:;$9?41999901&54763 72'"&7654.'&'"'6327##"&565&'&+o  `D^ 4 R!  ie ?eI?+7Y  H^1  UV ND$+]#-dS+I3Y++ :33'5_$2e/1ִ? +f+6?d+ Y.ZZ...YZ....@?1;F99S-FO$9BC9901632327232#754&'"&63 72#7654'&#"&763272'#"'&54#"'&7654&'"'"54^r f: T 7c  { q/; <<4; ; 3\>%B  ^'%+  Bu ;LH) 0l +T2.    NV %N bF-N+j<a+A3]=K222+)3 %3222k/l+ ]S9901'63>76'.'"563 72#67654&'763272##& "#"7>>&'&#&#"'&'4 {?X #`m  X> 5?V i bP 7Sb { )-0D &S ~T(!X?,1#5  %5#! LR f<+!%E( +Mm:+3A2+3J (222N/O+6>-+ EF-,,-EF....,-EF....@J3999016327'7654'&4763232723232#& &4636767.'"54az FyP hN DE;? `1 ̤ #/A%A: D#\!;  /G- (#9!r4KV:+8K5+$+9/*ֱ.:+.*/9$5099 +/$99901766&#!""7>763 %232!267676#$ &54s<-#L  f}7NXF'+ y"  (0F;'y-ys[++/3 +/+6>+ .  ......@01!#";ys )! g-F--)+L?+3+3/ֱ++6+ @013#L-s^ + + 2/3+/+6>+ . .. ....@0173267654+7!T)%Ah--!-P '+o3# o!hX9%!//+ 9901?43 7'!&)   T % ]B,+  +/ִ ++  99016;2#"'X b 5 +L1m)<+8#+'+3-#+=/ֱ*>+6>2+ "0  + +"/"0+/"0 #9 99"/0 ......."/0 .......@*'9-'98 $%2$901747672767676#"545676&#"&732%654'&"#L٦ y 9 RV'> E3L'P }`XkǞO`T%'A ZRd9P?U B;/C+;!+*+4D/.ְ22 0228+$E+6>b+ .0++00+C0+ #99C0990C........C......@2.998 A$9;4$.$901676&?6327>3#'&54732>54&#" 3 >+  6#?/7-3%{\'`TA')cQ %7># )i  <&D+/3Wvc^nu\7G/4I4P`wk`  Ho(B+)+ + +&+)+)/ֱ*+#9990174632#"'&#"3276#"&Hp1=!%@!F;94bjLFRd}3+')%#XDD<(&8BXg}d:G+C8+*3=%+H/ֱGI+6>+ - - - +.- +/- +@- +A- +.- #9/9@9A9 9@ /@A-..........@ /@A-..........@G89=8,9C$5999 90174767672676&'&?6323276#"54676#"&63267&#"d>> 53eD" X ;-/"d/7D$#^;-TNVxBh/, + y" /| \D-#3V3{Ns":V+5 +-+;/ֱ /+ <+/ #$9995'$901432723676#"&327676765&'&"#NP\7gP -+BZ XGX{ qOs*m7/)|PF[ 1<\63pLPP';o'bX\VQ/Q + +G/3A":/-:- +:5 +W/X+6>>+ LJ?+ 'LJJ >'+J?J>+IJ>+LKLJ+KLJ #9'9IJ>9?9@ '>?IJKL..........@ '>?IJKL..........@01632 3267676766#&7667>7676763232#"'.#"32+#"'&54 <" -Zim7% ##9Lx=/-F W.B01-#} \!FnLdgB1*?; C3+sb^m  iZ" *?RKJ') 7J$"V=q4CQ+N %+2/8+R/ֱ5 5 +D D)  /) DK+"; / S+D  28?@$9) 99;',>GN$9/-998 /@DGK$9N9014767&5476'.5467632332/&#"&732654'&'&327654&#"{\MHRfjo' V%K@fK=Roì߁vDj y#L3?@\D5Bl3HR?T =6 +Z^TX= bQV7XB#;7^s/\udeDZD3#/f^NlVy\bwe G3+8)+*+C3H/FֱA @2A6+6 +@60 +12I+6>+ @. >3+ 1.4 >^+ @@+1214+314+@;@+=@+?@+?@ #9=9;99214939@34;=12?@..............@ 34;=2?............@AF96 *$9998*"9990176"'&?632327323276#"'&545>7654#"+54j \ '  TxJ-!  l'T7 NC%3 w t9V)3 b")7H(0y! m'*8++!+9/7ְ+2022:+6>:+ +.2  2+++++ +++ #99 9 29 +2 ........  ......@07$9*#99901&547632276#&5474>&'"#">3#"54qT, y d  /5<m*3 625#6  <&/w =V* -7O1@H7HA-.>1+;+)// +?/=ֱ752@+6>_+  %$  + + +  #999 $% ....... $% .......@7= "99-$9 "901>32767>76'&#".7>32#"'&5467232#&54#!' -   ) # L)09my;#J/ J:=!#-";|%g#& % `kD&:L#!s.uJmG_+Z(+7+C3-"+S$7 +Se+`/Wֱ a+6>n+ @ @+?@+?@ #99?@......?@......@ W14999$-(2;999ZS99014656&'&?633732#"'327676"'&'&'&#"'"&272322327654&#"m  -  ;g1JdbP/)-'=  XR1!b]T3E90GB1#)yX y3y%kF {DCT'F;% D qAB5( ''9}!$2!+*+%/#ִ +&+#9!#90176#"'&?>7232327>"54 g! %n \I'9u 5}c"^(mmW+33O&+@2]+7H33n/9ֱ&&9 +@&2 +o+6>_+ _`X>c+ LMFXX+FF+F+F+F+EF+XTX+UX+VX+WX+WX #9U9V9T99EF99999@EFLMTW_`UVX..................@EFLMTW_`UVX..................@&97>@999O]@ #(2932327727>3232767676#"5476&#"+"&76#"#"#"76#"'&54`?'&>!  =0QJZ)< r  !H(6=<'7)+ P7B  / )  Fmb24+#K1X7aCiC1[$1  %% dE-<#^FS+7j3o))H^oX+3;%+J+23Y/4ֱ 4 +@+ +9+Z+6>+ NOF =+ 67F F +EF +EF #9 9@ 67EFNO..........@ 67EFNO..........@42;999!99;J@ &-4W$901&4732367>322327676#"547654#"+"5474"&dF$% gKmb)V{ I3  J1B '1/<-7!+?:$ JF 8x \w@;B',P;!   dvP!/#)-3H;L-;  ^NoG+-++/ֱ ++999901667672#"3254&#"NRH{q/JH+FR7f]A`ZZ{Ó=w!Nf mxPoN_+,3[$+5+SH/B2`/ְ 2X+/a+6>++  . <  +  +  +<:< +O< +_< +  #9 9 9:< 9O9_9@  :767><&#"&7>3236767>32#"'&2#"#&"&54323254&#"+)3 #93!L-' M%LD#FI^l??..9ypv  *-#!\HH1#)- B@ !q@;-s+T#of-Q'+ |?Zuy^qjDo/>+:"+-+2#+/!2?/ֱ0 08+@+6>+ $6 $&$6+5$6+&$6 #959 $&56...... $&56......@0-9998!+$9999!9:2(+99901747%:36#"'&"&46>766'"#"&73267654#j*)") zj  h<^ ?83LE}JYRb "w  )H3Nq}HBIm7+3 ++3+.+8/ִ +9+6>+ 01+ + +)+ +*+ +)+ #9*99 +01)*....... +01)*.......@ $9 .76$93#901&54767272732#"/+"76#"P :'  E $RNQ%8! l L ^ <=Vb;$0 +D 1 )-V}%07Xo8m+%% +%! +3+  3 +  +9/ֱ( (+0 +:+(399 %-9990#9% 0990176763232654.'&547672#"'&#"#"'&540&+$!/?-BN[ff5e##;-+R'1ZN.)L> >-9A%J]PT_f_1*+d^-05%7 h`{'yS}86+.++%/3% +@ +9/ֱ,:+6>i+ *))*....)*....@, 6$9.69%19 99017476476+"&7>767632732'#03276#"&y+T NmI \  / n#)=HNR'7w#   -qK+32+=3#+L/4ֱ!!4 +@!- +M+6>+ AB  AB.... AB....@!427:$9#24?999*/67;J$901&547>32676767637232767676#"5476#"5476#"&)-. d'#J'$!  7 N!+B }B=\ ## f=B /!(% D7\7!" m  ; b@n8V%"0 NVo/+3++#+'+0/%ֱ 222*%+(3 2* +@* ++ + +1+6?-+ (. .(  '   + + '( ......'.@*%#+99999+%.$999901&54763232654'&54632#"54764#"&PV/P BŠJ!)5T9>hbJ)V+G!BJ9j}Cg{,, ? oZi++33+H+73 '+ 2[/JְN2  2 J +@  + ;+ 222$+. \+6?`+ N.P ?DW+ .==+++?9+ =>=+?=+@=+A=+>= #9?9@9A99@ =ANP>?@...............@ =AP>?@..........@ JH9; F999E99$ '($9.+9 H;9$.FJRV$901>32327667232654'&74632&'&547>76#"#"5476776&'&74HM{%+ J1<3'&d 5;)'3ō(FTD1 R  o-bqU(< #4=gN%t)\)6F3=q 9LX.#%ql;7=j  3 oTc+*3$+62H+Q3? +?H +@? +U/4ִ0+V+?HS9@  "%2BEKMO$9.901763>?6/.#"&7>3267676762&'&#"3676#"&/&#"54\   )5-7Xd6:% Tc3-9%D ='2$ FL\fN%5B  Bb7+')LJh@/?9o 7)@`kF^ ='B!ATL8!a6dZN>oQl+/3#+J/A2R/ ֱ &+2 &2 +&, +S+ AEJ999&6799A"*6$9,2990163>76767654'&#"'&76726754'&'&546323:#0#&#""54*\-q/=8#C  PZ!  3#'1H!s$#}! V qu_a 2な7EG^# ﻔC;  %6>1H9զPNJ1 #jX++3(+G+W3?%+P7W +Pe+7P +@7; +% / <+ % +@ +Y/ִU +U)+-:+Z+)U2C$97P=9 @  29AB$9%9017476%67676&#"'.#".7632727656327632276#".'&#"#"#Cw7= fZ<7YL%)51 Rs)% d "n-FNITom2ZF ;;#)-X?' )#5[=%' 1 /+? CS'^:PH@'??k Xi  N)%-  1b+ '/#2/*ְ 2!2*! +@* +! --/32- +@ +3+# *9901547>54&54676#.54654&'&`s1۬qx)m;H!%) /hb rG77^75m; u77<55LoN"+/ִ 4+ 4++013w'g 2J+1/3/ְ2!*2 3.24+9.990163>54&54767>'&'476'4'.63#`qx(l58 /wl jy1۬#\97l5  {u/?55Rs(uL57BS/+/+/ֱ + I++ 9999 9901>322676#"'&#"o;sh\0mfŏ=F^*);PZTjPdR {#f ;/+/ֱ+++999016;+"&>32"&{ y)+/<'%/+ /) //+) ) +) +) +() +/0/+:/+;/+0/ #9:9;99() 999 9@  ()/0:;............@  ()/0:;............@539>999017476767632#"'&7676/"&76'.7676'&VŃL J q%?#wRX  stI  JHT% n 1JôJ#mT(%!}  j )f wuN) ` Pb9RA+ +  +  +G/P36,+M/1A /*3 (2S/9ֱD 9D +9> +T+D9 9M64K991/9999A;D99014676767!7!77632#".'&#"!!63232654/&54632#"'&'&+"&b\FA) !Nh+  !5^PB~T/#V FC9?Bhw]BY ')3ɅY!I!D7y\Z)=%XH5+-yfѴf>=i)G+ETV= >-N>H 6X *{/$#+)/ #++/ֱ" "'+ 5+,+" $9' $9$9$$9)$9  $9017.467'7>27'#"&'326&#"˃;%&:RLloNP;%'9PRo\^jLEōƌ XsoRT=%%=TTsoLR=''="'+3鱄224+"ER333/KN22/ +z3kp22/ +a33;=Z222/+6=q+ ~"+  9!  +99+9 #9  9@ 9~..........@ 9~..........@ox$9h9<994V901763:326/&'+&?46567673726'.'"&"'"574>372#"7276764&'"&?63676;2'&#"32372#&"2#&"57632>327>7&!.767676&+"'m'# - %!/+ H= %t /)/D ;P \-!9 $  P)[Z %5i#5Z  -##w u 13=F 1   )fL    )/3H/H?1  .1R!#w5 3s+) % ;  Nv N(+/ְ2 4+2 4+ +0133www'  Z/B!+,+! +! +-/ -+ - +  +C/ֱ0 0 +5 +?5 +$ +59+) D+ 0299537A999$?<99&;99! )7A$9014763232654&'&747672#"'.#"#"&64'&'&547P!;J5%\-HwPw-%79B+JbqN+TqTAJ+f;/w$')1TBn:+)A++o`:\k/=W  ? /3+2+/ֱ  + +  99014632#"& 4632#">-+=?)->V@-+==+-J-??-+@@Z??Z@8+ +6- +6!+' +29/ִ + +**$+B+ + +:+$*@   -6$9 /0$9 399!- *0$9' $9901    432326732#".'&#"3276#"^R}!)Lt   PӖq  cNN%f'- ն٘ 1L /+3/3$0/ִ! +!+ 1+6>y+ .+"*++*+ #9*+....*+.....@!9'9 9$9 $9014676;27>7#"&547#"&7327>?͍k``%R 'Z'1!3\ )P! 5`39H^:59 #)^#%IRL%1!G #%H^ 3#3#37E8:5sw\u8+"+ +@ +/ִ 5+ +@ ++015!#Rumx{yq&7476763!2'!  Vy #  %hNY+ +L +.E33L9J22?Q +?#W +3#Z/ִ ++CO2C +@CH +C +@ +CT+&& + +[+!L$9C "K$9T(#>)J$9&$ ;<$9 .0:999LK9?99Q ()$9W&999#901    543>54&'"=4762#"#&'#"2'&&32654&#"bL%}95Nj#/# =])p{pX%)kJLz{1 /V#V-lB1%  )L7`VRm1;2/ +2+/ִ ++ 901767>323!2'!"0  +TN -E! N Q+,+/ ++/ִ + + ++ 99 $901632#"264&" _ j+"+/ 3#+ 2 +@ + +@ +/ְ2 4+2  +@  + 2 +@ +2+015!5!3!!#Rww-yyFvvJ/T+   +@  +./.+. +@$ +0/ ֱ 1+ '9.9 990147>7>&#"#"7>32;27672'"&"t-i7> 554&#"'&7632&#TN;91'< {X)!59 LpH^u  V#'RJP-5 =N'$9ZB3N5^b'D2+  +/ִ ++ 9 901676766&NZ, ; 1R+#[+2 +@ +$/ִ + +/+ +  +@  +%+901463!2'#'.'4+""54&#$'&V%#n+'b/)V )!VZ (/++ /ֱ  +014632#"@+-??-+-Z@@ZAPj8 +/+/ֱ + 99 9014732654'&?3#"'&PX^VD+5>?;D-O9bo '}L$j+!/2%/ִ +&+6>f+ .#.......@999901&7>3276&&?676322#&- %3 b LG f #' ` 9- "7m%# 1LE+ //ֱ + ++ 99990147632"&732654&#"N95Ju+1La5%?i<+;`q3qNj1{L=Uo?YH^ 733>6/}5lw^V/uu'v$/Q[G++++NTG +;3N?2TN +@T6 +!G +3!\/]+6>f+ #>A)+ JXC$9BC9+JKJX+WJX+KJX #9W9BC99@ 9BCJKWX...........@ 9BCJKWX...........@!TZ989901&7>3276&&?676322#&>'&&7673232##'"?6'#"'&732?6&- %3 b LG f #' ` $!= ! RF \!G%#'  9- "7m%# qh ){ 05! Z 'v$/_^+P,+P^ +@PV ++++#^ +3#+<2#F#F +@#A +`/:ְS2I Yt+a+6>f+ #........@Y:U9I+*99P^0199#I9F901&7>3276&&?676322#&>'&%5>7>&#"#"7>32327632'&- %3 b LG f #' ` $!5 i;iAB 5A)+ WeP$FOPF+WXWe+dWe+XWe #9d9OPF9FOPWXde.......FOPWXde.......@ (9,'*99Tg99 %,$9014632327654&#"'67>54&#"'&7632&>'&&7673232##'"?6'#"'&732?6&#TN;91'< {X)!59 LpH^u  V#$!= ! RF \!G%#' 'RJP-5 =N'$9ZB3N5^b'uh ){ 05! Z jf$0\"/+" + +./(+1/ִ + +22+ "0&$9. 99014767>7676732327632#"&>32#"&jm/LN=!  EpbSgN5JoP;)'-;-/'f-%'3-9O!['@7e?F^/#1@-1A9-5HJh3>NZ+02333+222$/6,+O/9ְ2 P+ 9DF$91999$ )99901'63>7676;'&"&632654&#!"32#&"3%54&6;20#"'VRbPT'+ 3-:  _m'u5  #' c FiT  u;. FbN3#LG=+h3>Oy+02333+222$/6,+P/9ְ2 L 9+?x+?/Lx+Q+?99 L@AK$91999$ )99901'63>7676;'&"&632654&#!"32#&"3%54& 676366&VRbPT'+ 3-:  _m'u5  #'NZ+ W}  FiT  u;. FbN3#LG/%j m3>QW+02333+222$/6,+R/9ְ2 S+ 9991999$ )99901'63>7676;'&"&632654&#!"32#&"3%54&&76363#'&VRbPT'+ 3-:  _m'u5  #' + HF FiT  u;. FbN3#LG - 3>V+02333+222$/6,+M/U3D+P/A+H2W/?ּS&+S9+2  F+J&+X+S?U99P9 A999FDM$9$ )999M6 <$9DS901'63>7676;'&"&632654&#!"32#&"3%54&632327632#"&#"#"VRbPT'+ 3-:  _m'u5  #'F#FmRL!'&FiT  u;. FbN3#LG)yj5Hy3>JT+02333+222$/6,+H/S3B+N2U/9ְ2 E 9+? ?/E L+Q V+9?BH99E9 9QL9991999$ )999H6 <$9BLP9901'63>7676;'&"&632654&#!"32#&"3%54&4632#"& 4632#"VRbPT'+ 3-:  _m'u5  #'=-+>@)+?V?+->>-+FiT  u;. FbN3#LGT-@@-+AAZ@@ZAh3>HQ+02333+222$/6,+G/LP/BR/9ְ2 I 9+@7+@/I7+ N+E9+S+ IBGKP$9NLO99E9$ )999G6 <$9PL?DE@$901'63>7676;'&"&632654&#!"32#&"3%54&4632#"'264&"VRbPT'+ 3-:  _m'u5  #'2tPRqqRP)FfHHfFFiT  u;. FbN3#LGLwus3HHfJH/ut+UWr333I[j222t +@O ++3$2cyt +c*At +**A +@*0 +//ִ4+4+鱂+6>+ ^}D%&'D&+CD&+^_^}+|^}+_^} #9|9CD&9'9&'CD^_|}........&'CD^_|}........@4 O99Q9c67=$9*A59$499901'676767>7674&'.767%2#/.#!3!27>2;'#.?4&#!;27>732#$"763>76&#!"#$&3!2745 ZD93L3P !  Zqbx4 ) Tz TPm18$ T #%XL3 B3T mT y@$9-)99'$98049@-9 %99 $9014$!2&765! 3 >"'&#"##"'&74732654'&?$;  LEH=. !!\l5>X_V>7k\ . !V7  !#P7bo @;D} F\ap]+_3K2+$ 2$ +@$ +*>] +*q/8ֱ44 +&+r+6>+  @&'@&+'@& #9 &'@..... &'@.....@48]9 .1SWY$99K]^9>47UY$9$*/3999017663>7674+&763!2#".654&#!"3!2676'&54&#!"232;27>7>#$"&6;2#"' /J< 5! m}-hP\^'5Z+V  )0u74) )!@/ b !Db[9Z}y f[ 9Rb  P9g#T'25 h  +\ar]+_3K2+$ 2$ +@$ +*>] +*s/bִox+o8+44 +&+t+6>+  @&'@&+'@& #9 &'@..... &'@.....@8ocdn9994]9 .1SWYj$99K]^9>47UY$9$*/3999017663>7674+&763!2#".654&#!"3!2676'&54&#!"232;27>7>#$"&676366& /J< 5! m}-hP\^'5Z+V  )0u74) )!@/fNZ+ X}  !Db[9Z}y f[ 9Rb  P9g#T'25 h /%j \at]+_3K2+$ 2$ +@$ +*>] +*u/8ֱ44 +&+v+6>+  @&'@&+'@& #9 &'@..... &'@.....@48]p99 .1SWYno$99K]^9>47UY$9$*/3999017663>7674+&763!2#".654&#!"3!2676'&54&#!"232;27>7>#$"&&76363#'& /J< 5! m}-hP\^'5Z+V  )0u74) )!@/H + HE !Db[9Z}y f[ 9Rb  P9g#T'25 h  - \yamw]+_3K2+$ 2$ +@$ +*>] +*k/v3e+q2x/bֱh ho+t 8to+4t +&+y+6>+  @&'@&+'@& #9 &'@..... &'@.....@to.1]99948qv99 SWY999>K47UY$9$*/3999017663>7674+&763!2#".654&#!"3!2676'&54&#!"232;27>7>#$"&4632#"& 4632#" /J< 5! m}-hP\^'5Z+V  )0u74) )!@/>-+=?)+@V@-+==+-!Db[9Z}y f[ 9Rb  P9g#T'25 h -@@-+AAZ@@ZA/h"2p!+32+3 23/4+6>+ ........@! 9 990176676&'&763%2'72$"6;203#"'/dJ,f dFDs v cNh]VT  ! @njN   +/h"3z!+32+3 24/#ִ0x+5+6>+ ........@! 9 990176676&'&763%2'72$">76366&/dJ,f dFDs  +!V/ 3Nh]VT  ! @njN qJ/o"5p!+32+3 26/7+6>+ ........@! 9 990176676&'&763%2'72$"&76363+'&/dJ,f dFDs , + HF Nh]VT  ! @njN  - /y"-7!+32+3 2,/63&+028/#ֱ) )/+3 9+6>+ ........@)#9/9993999! 9 99&,/3990176676&'&763%2'72$"4632"& 462#"/dJ,f dFDs S;-+>>V=V=Z<>+-Nh]VT  ! @njN />@-+AAZ@>/-A?+++K)+/2"+82 )" +E3#+=2L/2ֱ%M+6>8+ JI>X+ JIJ&:+J;J:+ #9;J:9:;IJ........:;IJ........@ 98%299901?6;2674+&76'67367654+"57636-"&%3 4.+"366+"?bD;%/ F )j3i?A^1`׃='Z%)  #A F1)-[D^  TD3y7t8-;-5;S:+8332)++!33 %22J/R3A+M/>+E2T/<ּP&+PC+G&+U+6>K+ 0/>+ ).((/0.......()/0........@P<R9C,>J$9 -999 99AJP90176>7.'&7637276&'"563%6#'&2#$632327672#"&#"#"fY +< Z7  F}  `c3 A7o F"FlRL!''a{ ''sbel L%op  yj5HB )I ++*/ֱ  +++  $$999901! ! 74"6;23#"'H _&dj} c L9=dHq9 +B *` +++/ֱ  +'x+'+,+  9'9$9999901! ! 74">76366&H _&dj}R+!X- 5L9=dHq qHB ,I ++-/ֱ  +.+  &$999901! ! 74"&76363+'&H _&dj} + HF L9=dHq - B 1 ++(/03++/+#22/ֱ  +.&+.!+%&+%+3+.09! ($9999(.901! ! 74"632327632#"&#"#"H _&dj}GF#FmRL ''L9=dHq#yj5HBy $.x ++#/-3+'2//ֱ  + &+* *+0+  999999#&*9901! ! 74"4632"& 462#"H _&dj}<-+==V>V>Z;=+-L9=dHqN/>@-+AAZ@>/-A 7 7   ZRRXR^XVNVPTTTy .:t+3+* +;/ֱ!!6+<+!$96@   '0$9 999*3@  $9$901!2?6!"'&.?6'&776'&#"7 4'&@˝ w-u )Ϡ E  uh{ycPL5g  >q Բ`myF}#ym:J,++338 $222K/1ֱL+6>+ 23  >=+ (' '(23........ '(23........@1579989016%2'&32676&#"7>76'!"&'.7>&+"&6;20#"'y %hHtͶ+hN} Vp`Rh?F9q ?F# j b   !BvuV+w^ ! RϚjdkX`7U3 +ym:K,++338 $222L/1ֱ;+Hx+M+6>+ 23  >=+ (' '(23........ '(23........@15799;,$989016%2'&32676&#"7>76'!"&'.7>&+"&%676366&y %hHtͶ+hN} Vp`Rh?F9q ?F# JNZ, X}    !BvuV+w^ ! RϚjdkX`7U3/%j ym:L,++338 $222M/1ֱN+6>+ 23  >=+ (' '(23........ '(23........@1579989016%2'&32676&#"7>76'!"&'.7>&+"&%&76362+'&y %hHtͶ+hN} Vp`Rh?F9q ?F# 9 )CF   !BvuV+w^ ! RϚjdkX`7U3 - ymy:FP,++338 $222D/O3>+J2Q/1ֱ;+A AH+M R+6>+ 23  >=+ (' '(23........ '(23........@15799; ,$9A999MH99989>DHL99016%2'&32676&#"7>76'!"&'.7>&+"&%4632#"& 4632#"y %hHtͶ+hN} Vp`Rh?F9q ?F# A>-+=?)+@V@+-==-+  !BvuV+w^ ! RϚjdkX`7U3-@@-+AAZ@@ZA=N/+-33(2+333< 222O/>ִKx+P+6>-+ 78%$$%78....$%78....@K>(93/.9<9999901637'7654'&467272#$&4636767.'"%676366&F+yP ͝ DE;?1j1  #/A%A<NZ+ X}   ;F#\!;  /GdJ9!r4KV:/%j `1TS+Q3G2+218S +1"AS +"U/<ֱ)V+6>+   DC CD.... CD....@A8)699017>67>7654#"7622763232#".7>3276'4&'&#"32#$"`  =< #\ NP% B^h-  'kJKB=10g   UjDD^ LR#1isi3 q^`P {P&+00& +0, +I+B+N/N + +Q/3ֱ"3" +3) +?"3+R+6>K+   H#G GH.... GH....@?39B0"99014632326767767>32#"&5463272654'&'&76767674&#" "&{''>?+'N/ m3-)H;RdgV5-  qv3B#%6Lj^)Z9P>;w!;7P9[5N`uLn"/5B5mo+|w^NamX-  ^u-'#:^-jPd\G3mQ`BL/B%3C+#+3)#+6+D/ֱ&E+6>2+ ,  + ++,++, #9 99+, .......+, .......@&#9)  !.$96@901747672767676#"7676&#"&732%6&6;22#"'L٦ y 9  RV'B E3L'P}`Xk bǞO`T%'AZRq9P?U B;+L/D%3D+#+3)#+E/ֱ&F+6>2+ ,  + ++,++, #9 99+, .......+, .......@&#9)  !.$901747672767676#"7676&#"&732%6&676766&L٦ y 9  RV'B E3L'P}`XkNX- X ǞO`T%'AZRq9P?U B;/%hL!%3F+#+3)#+G/ֱ&H+6>2+ ,  + ++,++, #9 99+, .......+, .......@&#9)  !.$901747672767676#"7676&#"&732%6&&76763+'&L٦ y 9  RV'B E3L'P}`Xk + HE ǞO`T%'AZRq9P?U B;X - L%3K+#+3)#+B/J39+E/6+=2L/ֱ&&4+H&+H;+?&+M+6>2+ ,  + ++,++, #9 99+, .......+, .......@&#94)9HJ9;!6B$9)  !.$99#H96E;?9901747672767676#"7676&#"&732%6&632327632#"&#"#"L٦ y 9  RV'B E3L'P}`XkLF#FmQL!''ǞO`T%'AZRq9P?U B;yj5HLZ/?IR-+33%+;/%+H/Q3C+L2S/ֱ0 0A+F FK+92O OK+ / T+6>+ 9.   ! 9+" 9+# 9+7 9+! 9 #9"9#979 79!"#........ 7!"#.......@A039K$99O LR$93-9;')*$9CHKO9901747672727676#"747>7'65##"&7327676&#4632#"$462"Lצ y; %)"'! D  M3J'|R=BdZk^>-+??+-@Z==ZǞM`RXC )-q P BXoJ=\H D=Z??Z@BZ??-/@L/B%3=F+#+3)#+7+E +>C+:9+H+6>2+ ,  + ++,++, #9 99+, .......+, .......@&#95)9C> !7<$9:99)  !.$9EA49:5$901747672767676#"7676&#"&732%6&4632#"'264&"L٦ y 9  RV'B E3L'P}`XkuORqqRP(EgGGgEǞO`T%'AZRq9P?U B;wus3HHfJHLf.<J"+++2%+I/ 2K/ֱ//%+42 G+ L+%/+29969G ">$9 999I2@   %(&7?$990174!2676323272#"&54#"'&73276&%76767>4&#"L  uuLbm` T?L߅Rqh4+V+?TwTj{ %!bB)33) BjSBF{+=#?4Vmi hb+qDR`2?@  #/^Z7({o<n+ )+  +  +0+')+ ++9'/79990999'9 *-99901&747654'&?6&'.54632#"'&#"3276#3') foX )?Jp1=#!B'D9*#1F`h  #;} G@B T wV{3-%!+%;ɇ E2PxNB/>C+*+-+2+?/ֱ @+*"$92;9014327676#"&767676&6;2#"'NP\7gT  ZHZ XGX{qOs3/m7/( `|PF[ 1<\kpLPT ';o/?bX3 +ND/@6+*+-+A/ֱ B+*"$9014327676#"&767676&>76766&NP\7gT  ZHZ XGX{qOs3/m7/)#Z- ; |PF[ 1<\kpLPT ';o/?bX3sRN!2B6+=+-+C/ֱ D+=5$9014327676#"&&76763+'&767676&NP\7gT  ZHZ XGX{ + HF qOs3/m7/|PF[ 1<\kpLPB -  ';o/?bX3N )9C+4+-+(/B3#+=2D/ֱ  +%%;+@E+  9%+99;9@02$94,$9#(;?99014327676#"&462"&767676&4632#"NP\7gT  ZHZ XGX{;R<> ';o/?bX3V;;V>kB!1+#+$+$ ++2/ִ +3+6>x+  ++ #99............@ ",$9 !99$.901&762676#"74>&#"6;2#"'mv Z 9HX-T i)0  c {}?b! JBR )9 +kTD!0+#+/+1/ִ+ +2+6>x+  ++ #99............@+0($9 !9901&762676#"74>&#"676766&mv Z 9HX-T i)0 NZ+ ; {}?b! JBR )91RPm!4&+#+//+5/ְ2 +6+6>x+ (, ()(,++(,+)(, #9+9()+,......()+,......@ !-$9/49901&76763+'&&762676#"74>&#"P + HF v Z 9HX-T i)0  - }?b! JBR )9k!-7+#+/++/63%+128/"ְ2( (/+4 9+6>x+  ++ #99............@("999/ 9949 !99%+/39901&762676#"74>&#"4632#"& 4632#"mv Z 9HX-T i)0 =-+>@)-=V?-+>>+-{}?b! JBR )9-??-+@@Z??Z@^bH3?1+7=/@/ֱ4 4:+ 2.A+6 + &'))+&+%&+& #9%9)9%&).......%&).......@:41$9.#+999=79901%63265&'.&/4?6'.'&?6?6 #"&73254&#"^X #   ,> qV J eRsO`1#V qQ > 5 +--/o+/{Ñq!fdIm+3.%+=+)3^/P$+^P +@^l +b/L%+Lb +@LU +n/Jֱho+6>+ ?@:=+ +,::+8:+9:+9: #9899@ +,89?@:...........@ +,89?@:...........@P= $H`d$9b\9LNY[99901&77>327676#"76#"+"74"&323267632#"'&#""d E3%iFh`'X{N3  H1^'.'1/<-7!+?:/ JBPfF-%3 ZT`L';4 Fgx Wr<;B'PV;!   dvb-3H;L-; )^ T;=T o}R?p  NB,`+-+++-/ֱ +.+%999')99999)901667672#"3254&#"6;2#"'NRH{q/JH+FR7f]A` c ZZ{Ó=w!Nf m?+ND+Q+-++,/ֱ +-++ 999%999901667672#"3254&#"676766&NRH{q/JH+FR7f]A`NV/ 1 ZZ{Ó=w!Nf m/FN;!/S+-++0/ֱ +1+/999%&9999901667672#"3254&#"&76763+'&NRH{q/JH+FR7f]A`@ + HE ϺZZ{Ó=w!Nf m - N{4+-+++/33"+./+&25/ֱ +1&+1+$+(&+6+1399.$9"+99999"+1901667672#"3254&#"632327632#"&#"#"NRH{q/JH+FR7f]A`F#FmRL!''ZZ{Ó=w!Nf myj5HNP&0}+-++%//3 +*21/ֱ +" "+'2- 2+9*/99999 %(,9901667672#"3254&#"462"& 4632#"NRH{q/JH+FR7f]A`F=V@@V=V?+->>-+ZZ{Ó=w!Nf mV-??-+@@Z??Z@ ? /+/$+/+/ ְ2 2+ 9015!4632"462#"&R-#!++A02=--#/qttrB--B-)+B/1=-f(6B +9%+4/ .+C/ֱ) )<+D+)"$$9< 1B$9 $99 ("$$94-#?$9  99901?6'&547>32?6#"'&'&676'&#"254'&=< H@9@1  5 n/JH(?23 J -N^+BfHT\ϨNnK ; ?DbÑ=w!J;7! bd#!B<L|+31+&3 +?+M/N+6>+ 3434....34....@ 1(99@  #*,/<$9?I901&7>326767676372767676#"5476#"#"76#"6;22#"')-D!d'#J'$) $7  N!+B{B\/\ ## `Z=!(% D7\7!4m; ;b@%"0  +D<Mq+31+&3 +N/O+6>+ 3434....34....@ 1(99@  #*,/<$901&7>326767676372767676#"5476#"#"76#">76766&)-D!d'#J'$) $7  N!+B{B\/\ ## )#Z- ; Z=!(% D7\7!4m; ;b@%"0 sR!<Oq+31+&3 +P/Q+6>+ 3434....34....@ 1(99@  #*,/<$901&7>326767676372767676#"5476#"#"76#"&76763+'&)-D!d'#J'$) $7  N!+B{B\/\ ## + HF Z=!(% D7\7!4m; ;b@%"0 } - <GP+31+&3 +F/O3@+J2Q/=ֱC CI+M R+6>+ 3434....34....@C=/99I&+.($9M 999 1(99@  #*,/<$9@FIM9901&7>326767676372767676#"5476#"#"76#"4632"& 462")-D!d'#J'$) $7  N!+B{B\/\ ## ;-+>>V=T?Z<9 ".$9$*990163>767676#"'&767267'&'&546323:'&676766&-\-q/=58#C  PZB  3#'1H!s$#}!!V %NZ+ X 12な7^# ߽ w %6>1H9զPNJB&  9/%hu q>L(+C+ 0 0+,0+-0+.0+/0+?0+L0+/0 #9.9-9,9?9L99@ ,-?L./0...........@ ,-?L./0...........@<;9IC%990167>766'"'&7>32727>32#"'&2'&&7254&#" #NM% P%9!}D=/F)'%!5'  -81%#])EX= !bV- )J1  n9=Xq?IS+'3 #+=/?362H/R3C+M2T/ ֱ  @+E$+**P KK/PU+  6:=BH$9K./CG$9P'996=>9 ".$9$*99CHKO990163>767676#"'&767267'&'&546323:'&462"& 4632#"-\-q/=58#C  PZB  3#'1H!s$#}!!V }1H9զPNJB&  }+;;+)>>V;;V>m5[lU+Y3?_2?U +@?I ++i21Y +m/ֱ\\"+$$++n+6>=+ de5(5+45+45 #9945de......45de......@"\+-AWY$9$GK99?U=91)\999i#$$90147632!6"'54&#!":3676&'654&#!23232>767672&#!"# 7327>7654# .=dy-i')+#)R{R $+ \^=V3  T  so"jM15 麼H?))gp o\ /   X>g#)+9Q)E)l{/#Dd,7B*+"3/.+2@/ 2 5C/ֱ--2+ =+ D+2-$*99= "8$9 995/@ $%'9=$901%627632"3276#"'&#"&73254&#"7>54&#"DmRu3yR` d  Ù97>qGLnXL7d <-P=JSFZF)5o  %9)H,jM-V/;y=IS/+-33(2+333< 222G/R3A+M2T/>ֱD DK+P U+6>-+ 78%$$%78....$%78....@D>9K(-+999P9993/.9<99999AGKO9901637'7654'&467272#$&4636767.'"4632#"& 4632#"F+yP ͝ DE;?1j1  #/A%A<>-+=?)+@V@-+==+- ;F#\!;  /GdJ9!r4KV:-@@-+AAZ@@ZA!6/ 3 +/ְ2 ++ 9901&76763+'& + HE  - ;j/3+/+ 2/ּ&++ &++9999 9901632327632#"&#"#"F"FlRL!'' yj5H{yq&7476763!2'!  Vy #  %{yq&7476763!2'!  Vy #  %{yq&7476763!2'!  Vy #  %y}  /%+%+ /+01747!2#!"y 5=Bw'/%+%+/+ 99014654!'!&#    ' ; %B2++/ֱ  +  ++9014676#"&bS/%/@sHBf:++/+)9T N'0/ +/ֱ + ++ 90167>54'&54632 dS/%/BBf:+(/.)7OBqH0/ +/ֱ + ++ 90167>54'&54632'dS!1'3>Dh;)/3+-:VD%B0X+3+.21/ֱ  +  + +' ' +'+ +2+ 999014676#"&%4676 #"& bR0$1> ) % 1#1=sH  Bf:++3')9T?sF '/3')9TK%'B%X +3+%2&/ֱ  + ++" " + +'+9 9901&7>54'&54632&7>54'&54632TbR/%1;bR0$/<' Bf;'+3)+8TBsE -Bf;+)1)+8TBqHSB)X/'3 +!2*/ֱ + ++$$ + +++99 990167>54'&4632&7&7>54'&54632&RdR!1'1> dR1%1@Dh;)/1Z:VDwL  Dh;)/3+-:XBwL  ./++ /ִ + + +01462#"&՚ljmmo'  P+33 +22++!/ ֱ+"+ 9901>2#"%>32#"&%>32#"& 9N-;-/:)V<-5%>)'/;./-%b>8+7Hs1>o5>J+1<8+5JHo+g'++/3 鰑2/w339Y20/P3'.+H2/+6>+  *5?+ A*U?b+ quba +?+  + +65+VU+qrqu+squ+tqu+}U+~U+U+A+A+5+ #995969A99~U99}9V9rqu9s9t9@ 56AUVabqu}~rst.........................@ 56AUVabqu}~rst..........................@o 99gjm9909,L9901>2326767>766&'&567676767>32'.#"3:327676767>32'."7276763276#"7>76#&"#"&7623267676766&#&+#"&  +%+X^ V`3;L7Jo#,(`+J1)#s #7M7I=k^V-G3)RTL)11}+csf * /A ZGkKdg?e J '%-X `B9FV77HydgBbB 'A17g%'-  ,_BORB&q%P 3yc`FML/`g'R!} ØNݶZB {7JJ(D 'A15@\7-/ǃXJJW+O"++/l3 z2/_336-+2-/$-+/+6>5+ >+ 2>z+ =d ?+ [M+L++?0+ +32+[\[+2+2+2+2+>c+ dd+[[+ #9929939d9\[99@23=LM[\d.......................@23=LM[\d........................@W r99ORf$969-)901>232>7>766&'5&7676767>32'.#"3:;276767>767623276#"'&76&'&##"&7>23267676766'&+"*##"&3:327. ''+X1^ V^';L7Jo%,*b)H1)#FNDL  9L-D % +\ rH` L !T!CoJdfBd! '%+X^!GJ= 8V75a=dgBd% qb#-T7D1)B'A_n%'- SYDORB(q%P-bY7R) 5s  N-X 0%}ߤ7JJ+ '?1/oyy}/#-sSs-JJl%)b%\PBD:+?+1C/-3'2/$3 2/ +@ +E/Bְ2.%2.B +@.* +B. +@B +@B +.   / +@! +.4+8t+8+t+F+ /941:?$9859999C:5<99 90146;47#"546;6 "5#"!2#!!2#!326762&#"#"&#"wbi3@t  Չ)b jqh4"4N (BU''T)D #+(JM'\)->5:+3P[222H+c3: +@:= +22T+Y+)/q333/Ajz$2/ֱ==3+3 +@# +3 +@3, ++  D+ +D +@ +D +@D? +K2}+gg} +@g` +n2}g +@}u ++3=)99(99'99  99DP99Q99}RYr$9/)?u999:1UVX$9H901&?>3%6+.#*;##&"&=473>54.#"#47>54&'.54546376676;2#!&54>23>54'"+"'&;2+&&;gP`7  7 \NE;< f   5: 9  7m ! T= L-*K'=T-NT-  0OP)   0G I"lT+qq5++++/ִ + ++011!qqpY+Q++n/a/3? 7/)q/r+6>+ "g 3267676766&+&767676767>32'.'&"372627>72>3276#"766#&"#"&- -[-b hb&;M7Jo"+)  /)K/-#b]5 1 -gt`I [!EmLdgBa=C1%{}M p[BOP?'  3%J 5 '7JGQ_+<+4*+O/D/3U"`/a+6>/+ $J_?+ @Z2 1$+$+$+@A@Z+JGJ_+HJ_+IJ_+RJ_+@Y@Z+$ #999IJ_9H9G9R9A@Z9Y9@$12@AGHRYZ_IJ.................@$12@AGHRYZ_IJ.................@<9DO7901>326767>766.+"767676767>6763276#"'&74#!"#"&3727. -[` i9N'7P1C6 'l rDi [EmLdgBa Z9D1-=C1+u#+? S_;R3# u1  L%^17JGVf(_Jo+g'++/3 鰑2/w339Y20/P3'.+H2/+6>+  *5?+ A*U?b+ quba +?+  + +65+VU+qrqu+squ+tqu+}U+~U+U+A+A+5+ #995969A99~U99}9V9rqu9s9t9@ 56AUVabqu}~rst.........................@ 56AUVabqu}~rst..........................@o 99gjm9909,L9901>2326767>766&'&567676767>32'.#"3:327676767>32'."7276763276#"7>76#&"#"&7623267676766&#&+#"&  +%+X^ V`3;L7Jo#,(`+J1)#s #7M7I=k^V-G3)RTL)11}+csf * /A ZGkKdg?e J '%-X `B9FV77HydgBbB 'A17g%'-  ,_BORB&q%P 3yc`FML/`g'R!} ØNݶZB {7JJ(D 'A15@\7-/ǃXJJW+O"++/l3 z2/_336-+2-/$-+/+6>5+ >+ 2>z+ =d ?+ [M+L++?0+ +32+[\[+2+2+2+2+>c+ dd+[[+ #9929939d9\[99@23=LM[\d.......................@23=LM[\d........................@W r99ORf$969-)901>232>7>766&'5&7676767>32'.#"3:;276767>767623276#"'&76&'&##"&7>23267676766'&+"*##"&3:327. ''+X1^ V^';L7Jo%,*b)H1)#FNDL  9L-D % +\ rH` L !T!CoJdfBd! '%+X^!GJ= 8V75a=dgBd% qb#-T7D1)B'A_n%'- SYDORB(q%P-bY7R) 5s  N-X 0%}ߤ7JJ+ '?1/oyy}/#-sSs-JJl%)b%\PAiݔ_<D,D,{md{mD`dXpZBrItnn{t{ OEjtEfuL``jnnn9v+";XKd}/,Ob" xn"]~tytxo]SLQfHdNC/Ve mm d^^/NxhjIAy?N?3~#9&9gh`{5Vbn'&/n{/9 n`P'''9j;KKKK/////?Opryyyy`{SLSLSLSLSLSLLf(NNNN k k P kd^d/N/N/N/N/Np9=~u~dD_//le{{{y`/`KS"lp,,,,L`,fH & 0 < $ . B f zztt|*TD(~xJ > !j!!"0"F"v"#b$0$%d%&'()^*++V,--./0d012624&456P667Z77789:;;> >L>p?z??@P@A>AvABBFBCC(D0E"F@FG`HHIJ~KRLMRNdOPQRVRS~T4UVVWW~XXXYlZ0[[\]^>__`aXbTcZdJeeffg&gh|iijkJljlmRmnjno?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~     glyph1uni000Duni00A0uni00ADuni00B2uni00B3uni00B9uni2000uni2001uni2002uni2003uni2004uni2005uni2006uni2007uni2008uni2009uni200Auni2010uni2011 figuredashuni202Funi205FEurouni25FCuniFB01uniFB02uniFB03uniFB04KPXYF+X!YKRX!Y+\X E+D E*++D Eb++D E;++D E5++D E+D E+Fv+D E +Fv+D E +Fv+D E +Fv+D E +Fv+D E +Fv+D E#+Fv+D E +Fv+D E+Fv+D E+Fv+DY+S| tufte/inst/rmarkdown/templates/tufte_html/resources/envisioned.css0000644000176200001440000000037212775025373025437 0ustar liggesusers@import 'https://fonts.googleapis.com/css?family=Roboto+Condensed'; body { font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif; background-color: #fefefe; color: #222; } .numeral, .sidenote-number { font-family: "Roboto Condensed"; } tufte/inst/rmarkdown/templates/tufte_html/resources/LICENSE0000644000176200001440000000207112647360110023552 0ustar liggesusersThe MIT License (MIT) Copyright (c) 2014 Dave Liepmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tufte/inst/rmarkdown/templates/tufte_html/template.yaml0000644000176200001440000000024612643402674023244 0ustar liggesusersname: Tufte Handout (HTML or PDF) description: > Template for creating a handout according to the style of Edward R. Tufte and Richard Feynman. create_dir: false tufte/inst/rmarkdown/templates/tufte_html/skeleton/0000755000176200001440000000000013465575430022373 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_html/skeleton/skeleton.Rmd0000644000176200001440000003420713312023351024646 0ustar liggesusers--- title: "Tufte Handout" subtitle: "An implementation in R Markdown" author: "JJ Allaire and Yihui Xie" date: "`r Sys.Date()`" output: tufte::tufte_html: default tufte::tufte_handout: citation_package: natbib latex_engine: xelatex tufte::tufte_book: citation_package: natbib latex_engine: xelatex bibliography: skeleton.bib link-citations: yes --- ```{r setup, include=FALSE} library(tufte) # invalidate cache when the tufte version changes knitr::opts_chunk$set(tidy = FALSE, cache.extra = packageVersion('tufte')) options(htmltools.dir.version = FALSE) ``` # Introduction The Tufte handout style is a style that Edward Tufte uses in his books and handouts. Tufte's style is known for its extensive use of sidenotes, tight integration of graphics with text, and well-set typography. This style has been implemented in LaTeX and HTML/CSS^[See Github repositories [tufte-latex](https://github.com/tufte-latex/tufte-latex) and [tufte-css](https://github.com/edwardtufte/tufte-css)], respectively. We have ported both implementations into the [**tufte** package](https://github.com/rstudio/tufte). If you want LaTeX/PDF output, you may use the `tufte_handout` format for handouts, and `tufte_book` for books. For HTML output, use `tufte_html`. These formats can be either specified in the YAML metadata at the beginning of an R Markdown document (see an example below), or passed to the `rmarkdown::render()` function. See @R-rmarkdown for more information about **rmarkdown**. ```yaml --- title: "An Example Using the Tufte Style" author: "John Smith" output: tufte::tufte_handout: default tufte::tufte_html: default --- ``` There are two goals of this package: 1. To produce both PDF and HTML output with similar styles from the same R Markdown document; 1. To provide simple syntax to write elements of the Tufte style such as side notes and margin figures, e.g. when you want a margin figure, all you need to do is the chunk option `fig.margin = TRUE`, and we will take care of the details for you, so you never need to think about `\begin{marginfigure} \end{marginfigure}` or ` `; the LaTeX and HTML code under the hood may be complicated, but you never need to learn or write such code. If you have any feature requests or find bugs in **tufte**, please do not hesitate to file them to https://github.com/rstudio/tufte/issues. For general questions, you may ask them on StackOverflow: http://stackoverflow.com/tags/rmarkdown. # Headings This style provides first and second-level headings (that is, `#` and `##`), demonstrated in the next section. You may get unexpected output if you try to use `###` and smaller headings. `r newthought('In his later books')`^[[Beautiful Evidence](http://www.edwardtufte.com/tufte/books_be)], Tufte starts each section with a bit of vertical space, a non-indented paragraph, and sets the first few words of the sentence in small caps. To accomplish this using this style, call the `newthought()` function in **tufte** in an _inline R expression_ `` `r ` `` as demonstrated at the beginning of this paragraph.^[Note you should not assume **tufte** has been attached to your R session. You should either `library(tufte)` in your R Markdown document before you call `newthought()`, or use `tufte::newthought()`.] # Figures ## Margin Figures Images and graphics play an integral role in Tufte's work. To place figures in the margin you can use the **knitr** chunk option `fig.margin = TRUE`. For example: ```{r fig-margin, fig.margin = TRUE, fig.cap = "MPG vs horsepower, colored by transmission.", fig.width=3.5, fig.height=3.5, cache=TRUE, message=FALSE} library(ggplot2) mtcars2 <- mtcars mtcars2$am <- factor( mtcars$am, labels = c('automatic', 'manual') ) ggplot(mtcars2, aes(hp, mpg, color = am)) + geom_point() + geom_smooth() + theme(legend.position = 'bottom') ``` Note the use of the `fig.cap` chunk option to provide a figure caption. You can adjust the proportions of figures using the `fig.width` and `fig.height` chunk options. These are specified in inches, and will be automatically scaled down to fit within the handout margin. ## Arbitrary Margin Content In fact, you can include anything in the margin using the **knitr** engine named `marginfigure`. Unlike R code chunks ```` ```{r} ````, you write a chunk starting with ```` ```{marginfigure} ```` instead, then put the content in the chunk. See an example on the right about the first fundamental theorem of calculus. ```{marginfigure} We know from _the first fundamental theorem of calculus_ that for $x$ in $[a, b]$: $$\frac{d}{dx}\left( \int_{a}^{x} f(u)\,du\right)=f(x).$$ ``` For the sake of portability between LaTeX and HTML, you should keep the margin content as simple as possible (syntax-wise) in the `marginefigure` blocks. You may use simple Markdown syntax like `**bold**` and `_italic_` text, but please refrain from using footnotes, citations, or block-level elements (e.g. blockquotes and lists) there. Note: if you set `echo = FALSE` in your global chunk options, you will have to add `echo = TRUE` to the chunk to display a margin figure, for example ```` ```{marginfigure, echo = TRUE} ````. ## Full Width Figures You can arrange for figures to span across the entire page by using the chunk option `fig.fullwidth = TRUE`. ```{r fig-fullwidth, fig.width = 10, fig.height = 2, fig.fullwidth = TRUE, fig.cap = "A full width figure.", warning=FALSE, message=FALSE, cache=TRUE} ggplot(diamonds, aes(carat, price)) + geom_smooth() + facet_grid(~ cut) ``` Other chunk options related to figures can still be used, such as `fig.width`, `fig.cap`, `out.width`, and so on. For full width figures, usually `fig.width` is large and `fig.height` is small. In the above example, the plot size is $10 \times 2$. ## Main Column Figures Besides margin and full width figures, you can of course also include figures constrained to the main column. This is the default type of figures in the LaTeX/HTML output. ```{r fig-main, fig.cap = "A figure in the main column.", cache=TRUE} ggplot(diamonds, aes(cut, price)) + geom_boxplot() ``` # Sidenotes One of the most prominent and distinctive features of this style is the extensive use of sidenotes. There is a wide margin to provide ample room for sidenotes and small figures. Any use of a footnote will automatically be converted to a sidenote. ^[This is a sidenote that was entered using a footnote.] If you'd like to place ancillary information in the margin without the sidenote mark (the superscript number), you can use the `margin_note()` function from **tufte** in an inline R expression. `r margin_note("This is a margin note. Notice that there is no number preceding the note.")` This function does not process the text with Pandoc, so Markdown syntax will not work here. If you need to write anything in Markdown syntax, please use the `marginfigure` block described previously. # References References can be displayed as margin notes for HTML output. For example, we can cite R here [@R-base]. To enable this feature, you must set `link-citations: yes` in the YAML metadata, and the version of `pandoc-citeproc` should be at least 0.7.2. You can always install your own version of Pandoc from http://pandoc.org/installing.html if the version is not sufficient. To check the version of `pandoc-citeproc` in your system, you may run this in R: ```{r eval=FALSE} system2('pandoc-citeproc', '--version') ``` If your version of `pandoc-citeproc` is too low, or you did not set `link-citations: yes` in YAML, references in the HTML output will be placed at the end of the output document. # Tables You can use the `kable()` function from the **knitr** package to format tables that integrate well with the rest of the Tufte handout style. The table captions are placed in the margin like figures in the HTML output. ```{r} knitr::kable( mtcars[1:6, 1:6], caption = 'A subset of mtcars.' ) ``` # Block Quotes We know from the Markdown syntax that paragraphs that start with `>` are converted to block quotes. If you want to add a right-aligned footer for the quote, you may use the function `quote_footer()` from **tufte** in an inline R expression. Here is an example: > "If it weren't for my lawyer, I'd still be in prison. It went a lot faster with two people digging." > > `r tufte::quote_footer('--- Joe Martin')` Without using `quote_footer()`, it looks like this (the second line is just a normal paragraph): > "Great people talk about ideas, average people talk about things, and small people talk about wine." > > --- Fran Lebowitz # Responsiveness The HTML page is responsive in the sense that when the page width is smaller than 760px, sidenotes and margin notes will be hidden by default. For sidenotes, you can click their numbers (the superscripts) to toggle their visibility. For margin notes, you may click the circled plus signs to toggle visibility. # More Examples The rest of this document consists of a few test cases to make sure everything still works well in slightly more complicated scenarios. First we generate two plots in one figure environment with the chunk option `fig.show = 'hold'`: ```{r fig-two-together, fig.cap="Two plots in one figure environment.", fig.show='hold', cache=TRUE, message=FALSE} p <- ggplot(mtcars2, aes(hp, mpg, color = am)) + geom_point() p p + geom_smooth() ``` Then two plots in separate figure environments (the code is identical to the previous code chunk, but the chunk option is the default `fig.show = 'asis'` now): ```{r fig-two-separate, ref.label='fig-two-together', fig.cap=sprintf("Two plots in separate figure environments (the %s plot).", c("first", "second")), cache=TRUE, message=FALSE} ``` You may have noticed that the two figures have different captions, and that is because we used a character vector of length 2 for the chunk option `fig.cap` (something like `fig.cap = c('first plot', 'second plot')`). Next we show multiple plots in margin figures. Similarly, two plots in the same figure environment in the margin: ```{r fig-margin-together, fig.margin=TRUE, fig.show='hold', fig.cap="Two plots in one figure environment in the margin.", fig.width=3.5, fig.height=2.5, cache=TRUE} p p + geom_smooth(method = 'lm') ``` Then two plots from the same code chunk placed in different figure environments: ```{r fig-margin-separate, fig.margin=TRUE, fig.cap=sprintf("Two plots in separate figure environments in the margin (the %s plot).", c("first", "second")), fig.width=3.5, fig.height=2.5, cache=TRUE} knitr::kable(head(iris, 15)) p knitr::kable(head(iris, 12)) p + geom_smooth(method = 'lm') knitr::kable(head(iris, 5)) ``` We blended some tables in the above code chunk only as _placeholders_ to make sure there is enough vertical space among the margin figures, otherwise they will be stacked tightly together. For a practical document, you should not insert too many margin figures consecutively and make the margin crowded. You do not have to assign captions to figures. We show three figures with no captions below in the margin, in the main column, and in full width, respectively. ```{r fig-nocap-margin, fig.margin=TRUE, fig.width=3.5, fig.height=2, cache=TRUE} # a boxplot of weight vs transmission; this figure # will be placed in the margin ggplot(mtcars2, aes(am, wt)) + geom_boxplot() + coord_flip() ``` ```{r fig-nocap-main, cache=TRUE} # a figure in the main column p <- ggplot(mtcars, aes(wt, hp)) + geom_point() p ``` ```{r fig-nocap-fullwidth, fig.fullwidth=TRUE, fig.width=10, fig.height=3, cache=TRUE} # a fullwidth figure p + geom_smooth(method = 'lm') + facet_grid(~ gear) ``` # Some Notes on Tufte CSS There are a few other things in Tufte CSS that we have not mentioned so far. If you prefer `r sans_serif('sans-serif fonts')`, use the function `sans_serif()` in **tufte**. For epigraphs, you may use a pair of underscores to make the paragraph italic in a block quote, e.g. > _I can win an argument on any topic, against any opponent. People know this, and steer clear of me at parties. Often, as a sign of their great respect, they don't even invite me._ > > `r quote_footer('--- Dave Barry')` We hope you will enjoy the simplicity of R Markdown and this R package, and we sincerely thank the authors of the Tufte-CSS and Tufte-LaTeX projects for developing the beautiful CSS and LaTeX classes. Our **tufte** package would not have been possible without their heavy lifting. You can turn on/off some features of the Tufte style in HTML output. The default features enabled are: ```yaml output: tufte::tufte_html: tufte_features: ["fonts", "background", "italics"] ``` If you do not want the page background to be lightyellow, you can remove `background` from `tufte_features`. You can also customize the style of the HTML page via a CSS file. For example, if you do not want the subtitle to be italic, you can define ```css h3.subtitle em { font-style: normal; } ``` in, say, a CSS file `my_style.css` (under the same directory of your Rmd document), and apply it to your HTML output via the `css` option, e.g., ```yaml output: tufte::tufte_html: tufte_features: ["fonts", "background"] css: "my_style.css" ``` There is also a variant of the Tufte style in HTML/CSS named "[Envisoned CSS](http://nogginfuel.com/envisioned-css/)". This style can be used by specifying the argument `tufte_variant = 'envisioned'` in `tufte_html()`^[The actual Envisioned CSS was not used in the **tufte** package. We only changed the fonts, background color, and text color based on the default Tufte style.], e.g. ```yaml output: tufte::tufte_html: tufte_variant: "envisioned" ``` To see the R Markdown source of this example document, you may follow [this link to Github](https://github.com/rstudio/tufte/raw/master/inst/rmarkdown/templates/tufte_html/skeleton/skeleton.Rmd), use the wizard in RStudio IDE (`File -> New File -> R Markdown -> From Template`), or open the Rmd file in the package: ```{r eval=FALSE} file.edit( tufte:::template_resources( 'tufte_html', '..', 'skeleton', 'skeleton.Rmd' ) ) ``` This document is also available in [Chinese](http://rstudio.github.io/tufte/cn/), and its `envisioned` style can be found [here](http://rstudio.github.io/tufte/envisioned/). ```{r bib, include=FALSE} # create a bib file for the R packages used in this document knitr::write_bib(c('base', 'rmarkdown'), file = 'skeleton.bib') ``` tufte/inst/rmarkdown/templates/tufte_handout/0000755000176200001440000000000013357673764021256 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_handout/resources/0000755000176200001440000000000013357673764023270 5ustar liggesuserstufte/inst/rmarkdown/templates/tufte_handout/resources/tufte-handout.tex0000644000176200001440000000767712775044720026605 0ustar liggesusers\documentclass[$if(fontsize)$$fontsize$,$endif$$if(lang)$$lang$,$endif$$if(papersize)$$papersize$,$endif$$for(classoption)$$classoption$$sep$,$endfor$]{$documentclass$} % ams \usepackage{amssymb,amsmath} \usepackage{ifxetex,ifluatex} \usepackage{fixltx2e} % provides \textsubscript \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[$if(fontenc)$$fontenc$$else$T1$endif$]{fontenc} \usepackage[utf8]{inputenc} $if(euro)$ \usepackage{eurosym} $endif$ \else % if luatex or xelatex \makeatletter \@ifpackageloaded{fontspec}{}{\usepackage{fontspec}} \makeatother \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} \makeatletter \@ifpackageloaded{soul}{ \renewcommand\allcapsspacing[1]{{\addfontfeature{LetterSpace=15}#1}} \renewcommand\smallcapsspacing[1]{{\addfontfeature{LetterSpace=10}#1}} }{} \makeatother $if(euro)$ \newcommand{\euro}{€} $endif$ $if(mainfont)$ \setmainfont[$for(mainfontoptions)$$mainfontoptions$$sep$,$endfor$]{$mainfont$} $endif$ $if(sansfont)$ \setsansfont[$for(sansfontoptions)$$sansfontoptions$$sep$,$endfor$]{$sansfont$} $endif$ $if(monofont)$ \setmonofont[Mapping=tex-ansi$if(monofontoptions)$,$for(monofontoptions)$$monofontoptions$$sep$,$endfor$$endif$]{$monofont$} $endif$ $if(mathfont)$ \setmathfont(Digits,Latin,Greek)[$for(mathfontoptions)$$mathfontoptions$$sep$,$endfor$]{$mathfont$} $endif$ $if(CJKmainfont)$ \usepackage{xeCJK} \setCJKmainfont[$for(CJKoptions)$$CJKoptions$$sep$,$endfor$]{$CJKmainfont$} $endif$ \fi % graphix \usepackage{graphicx} \setkeys{Gin}{width=\linewidth,totalheight=\textheight,keepaspectratio} % booktabs \usepackage{booktabs} % url \usepackage{url} % hyperref \usepackage{hyperref} % units. \usepackage{units} $if(lang)$ \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[shorthands=off,$for(babel-otherlangs)$$babel-otherlangs$,$endfor$main=$babel-lang$]{babel} $if(babel-newcommands)$ $babel-newcommands$ $endif$ \else \usepackage{polyglossia} \setmainlanguage[$polyglossia-lang.options$]{$polyglossia-lang.name$} $for(polyglossia-otherlangs)$ \setotherlanguage[$polyglossia-otherlangs.options$]{$polyglossia-otherlangs.name$} $endfor$ \fi $endif$ $if(numbersections)$ \setcounter{secnumdepth}{2} $else$ \setcounter{secnumdepth}{-1} $endif$ % citations $if(natbib)$ \usepackage{natbib} \bibliographystyle{$if(biblio-style)$$biblio-style$$else$plainnat$endif$} $endif$ $if(biblatex)$ \usepackage{biblatex} $for(bibliography)$ \addbibresource{$bibliography$} $endfor$ $endif$ % pandoc syntax highlighting $if(highlighting-macros)$ $highlighting-macros$ $endif$ % longtable $if(tables)$ \usepackage{longtable,booktabs} $endif$ % multiplecol \usepackage{multicol} % strikeout \usepackage[normalem]{ulem} % morefloats \usepackage{morefloats} $if(ctex)$ \usepackage{ctexcap} $endif$ % tightlist macro required by pandoc >= 1.14 \providecommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} % title / author / date $if(title)$ \title{$title$} $endif$ $if(author)$ \author{$for(author)$$author$$sep$ \and $endfor$} $endif$ $if(date)$ \date{$date$} $else$ \date{} $endif$ $for(header-includes)$ $header-includes$ $endfor$ \begin{document} $if(title)$ \maketitle $endif$ $if(abstract)$ \begin{abstract} \noindent $abstract$ \end{abstract} $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ { $if(colorlinks)$ \hypersetup{linkcolor=$if(toccolor)$$toccolor$$else$black$endif$} $endif$ \setcounter{tocdepth}{$toc-depth$} \tableofcontents } $endif$ $if(lot)$ \listoftables $endif$ $if(lof)$ \listoffigures $endif$ $body$ $if(natbib)$ $if(bibliography)$ $if(biblio-title)$ $if(book-class)$ \renewcommand\bibname{$biblio-title$} $else$ \renewcommand\refname{$biblio-title$} $endif$ $endif$ \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} $endif$ $endif$ $if(biblatex)$ \printbibliography$if(biblio-title)$[title=$biblio-title$]$endif$ $endif$ $for(include-after)$ $include-after$ $endfor$ \end{document} tufte/NAMESPACE0000644000176200001440000000044113465575276012643 0ustar liggesusers# Generated by roxygen2: do not edit by hand export(margin_note) export(newthought) export(quote_footer) export(sans_serif) export(tufte_book) export(tufte_handout) export(tufte_html) importFrom(htmltools,htmlDependency) importFrom(knitr,is_html_output) importFrom(knitr,is_latex_output) tufte/R/0000755000176200001440000000000013465575264011623 5ustar liggesuserstufte/R/utils.R0000644000176200001440000000506013231707264013073 0ustar liggesusers#' @details \code{newthought()} can be used in inline R expressions in R #' Markdown (e.g. \samp{`r newthought(Some text)`}), and it works for both #' HTML (\samp{text}) and PDF #' (\samp{\\newthought{text}}) output. #' @param text A character string to be presented as a \dQuote{new thought} #' (using small caps), or a margin note, or a footer of a quote #' @rdname tufte_handout #' @export #' @examples newthought('In this section') newthought = function(text) { if (is_html_output()) { sprintf('%s', text) } else if (is_latex_output()) { sprintf('\\newthought{%s}', text) } else { sprintf('%s', text) } } #' @details \code{margin_note()} can be used in inline R expressions to write a #' margin note (like a sidenote but not numbered). #' @param icon A character string to indicate there is a hidden margin note when #' the page width is too narrow (by default it is a circled plus sign) #' @rdname tufte_handout #' @importFrom knitr is_html_output is_latex_output #' @export margin_note = function(text, icon = '⊕') { if (is_html_output()) { marginnote_html(sprintf('%s', text), icon) } else if (is_latex_output()) { sprintf('\\marginnote{%s}', text) } else { warning('marginnote() only works for HTML and LaTeX output', call. = FALSE) text } } #' @details \code{quote_footer()} formats text as the footer of a quote. It puts #' \code{text} in \samp{
} for HTML output, and #' after \samp{\\hfill} for LaTeX output (to right-align text). #' @rdname tufte_handout #' @export quote_footer = function(text) { if (is_html_output()) { sprintf('
%s
', text) } else if (is_latex_output()) { sprintf('\\hfill %s', text) } else { warning('quote_footer() only works for HTML and LaTeX output', call. = FALSE) text } } #' @details \code{sans_serif()} applies sans-serif fonts to \code{text}. #' @rdname tufte_handout #' @export sans_serif = function(text) { if (is_html_output()) { sprintf('%s', text) } else if (is_latex_output()) { sprintf('\\textsf{%s}', text) } else { warning('sans_serif() only works for HTML and LaTeX output', call. = FALSE) text } } template_resources = function(name, ...) { system.file('rmarkdown', 'templates', name, 'resources', ..., package = 'tufte') } gsub_fixed = function(...) gsub(..., fixed = TRUE) pandoc2.0 = function() rmarkdown::pandoc_available('2.0') tufte/R/html.R0000644000176200001440000002125613465575264012720 0ustar liggesusers#' @details \code{tufte_html()} provides the HTML format based on the Tufte CSS: #' \url{https://edwardtufte.github.io/tufte-css/}. #' @param tufte_features A character vector of style features to enable: #' \code{fonts} stands for the \code{et-book} fonts in the \code{tufte-css} #' project, \code{background} means the lightyellow background color of the #' page, and \code{italics} means whether to use italics for the headers. You #' can enable a subset of these features, or just disable all of them by #' \code{NULL}. When this argument is not used and the \code{tufte_variant} #' argument is not \code{default}, no features are enabled. #' @param tufte_variant A variant of the Tufte style. Currently supported styles #' are \code{default} (from the \code{tufte-css} project), and #' \code{envisioned} (inspired by the project \code{Envisioned CSS} #' \url{http://nogginfuel.com/envisioned-css/} but essentially just sets the #' font family to \code{Roboto Condensed}, and changed the #' background/foregroudn colors). #' @param margin_references Whether to place citations in margin notes. #' @rdname tufte_handout #' @export tufte_html = function( ..., tufte_features = c('fonts', 'background', 'italics'), tufte_variant = c('default', 'envisioned'), margin_references = TRUE ) { tufte_variant = match.arg(tufte_variant) if (missing(tufte_features) && tufte_variant != 'default') tufte_features = character() html_document2 = function(..., extra_dependencies = list()) { rmarkdown::html_document( ..., extra_dependencies = c( extra_dependencies, tufte_html_dependency(tufte_features, tufte_variant) ) ) } format = html_document2(theme = NULL, ...) pandoc2 = pandoc2.0() # when fig.margin = TRUE, set fig.beforecode = TRUE so plots are moved before # code blocks, and they can be top-aligned ohooks = knitr::opts_hooks$set(fig.margin = function(options) { if (isTRUE(options$fig.margin)) options$fig.beforecode = TRUE options }) # make sure the existing post processor is called first in our new processor post_processor = format$post_processor format$post_processor = function(metadata, input, output, clean, verbose) { if (is.function(post_processor)) output = post_processor(metadata, input, output, clean, verbose) knitr::opts_hooks$restore(ohooks) x = xfun::read_utf8(output) fn_label = paste0(knitr::opts_knit$get('rmarkdown.pandoc.id_prefix'), 'fn') footnotes = parse_footnotes(x, fn_label) notes = footnotes$items # replace footnotes with sidenotes for (i in seq_along(notes)) { num = sprintf( '%d', fn_label, i, if (pandoc2) 'footnote-ref' else 'footnoteRef', fn_label, i, i ) con = sprintf(paste0( '', '', '%d %s' ), i, i, i, i, notes[i]) x = gsub_fixed(num, con, x) } # remove footnotes at the bottom if (length(footnotes$range)) x = x[-footnotes$range] # replace citations with margin notes if (margin_references) x = margin_references(x) # place figure captions in margin notes x[x == '

'] = '

' # move to the same line as ; the previous line should # start with ', x), grep('^$', x[i])) { j = j + 1 x[i] = paste0(x[i], x[i + j]) x[i + j] = '' } } # place table captions in the margin r = '^$' for (i in grep(r, x)) { # the previous line should be
(.+)
or
if (!grepl('^$', x[i - 1])) next cap = gsub(r, '\\1', x[i]) x[i] = x[i - 1] x[i - 1] = paste0( '

', '', cap, '

' ) } # add an incremental number to the id of