[adegenet-commits] r906 - in pkg: R inst/doc man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Jun 13 20:04:18 CEST 2011
Author: jombart
Date: 2011-06-13 20:04:17 +0200 (Mon, 13 Jun 2011)
New Revision: 906
Modified:
pkg/R/SNPbin.R
pkg/inst/doc/adegenet-genomics.Rnw
pkg/inst/doc/adegenet-genomics.pdf
pkg/inst/doc/adegenet-genomics.tex
pkg/man/fasta2genlight.Rd
Log:
Finished off part on data import in genomics vignette.
Small tweak in as.matrix (col names).
Modified: pkg/R/SNPbin.R
===================================================================
--- pkg/R/SNPbin.R 2011-06-13 11:39:15 UTC (rev 905)
+++ pkg/R/SNPbin.R 2011-06-13 18:04:17 UTC (rev 906)
@@ -904,9 +904,9 @@
res <- unlist(lapply(from at gen, as.integer))
res <- matrix(res, ncol=nLoc(from), nrow=nInd(from), byrow=TRUE)
colnames(res) <- locNames(from)
- if(!is.null(alleles(from))){
- colnames(res) <- paste(locNames(from), alleles(from), sep=ifelse(is.null(locNames(from)), "", "."))
- }
+ ## if(!is.null(alleles(from))){
+ ## colnames(res) <- paste(locNames(from), alleles(from), sep=ifelse(is.null(locNames(from)), "", "."))
+ ## }
rownames(res) <- indNames(from)
return(res)
})
Modified: pkg/inst/doc/adegenet-genomics.Rnw
===================================================================
--- pkg/inst/doc/adegenet-genomics.Rnw 2011-06-13 11:39:15 UTC (rev 905)
+++ pkg/inst/doc/adegenet-genomics.Rnw 2011-06-13 18:04:17 UTC (rev 906)
@@ -9,7 +9,7 @@
\usepackage[utf8]{inputenc} % for UTF-8/single quotes from sQuote()
\newcommand{\code}[1]{{{\tt #1}}}
-\title{Analysing genomic-wide SNP data using \textit{adegenet} \Sexpr{packageDescription("adegenet", fields = "Version")}}
+\title{Analysing genome-wide SNP data using \textit{adegenet} \Sexpr{packageDescription("adegenet", fields = "Version")}}
\author{Thibaut Jombart}
\date{\today}
@@ -451,8 +451,11 @@
all individuals have the same ploidy
\item \texttt{chromosome}: character strings indicating the chromosome on which the SNP are located
\end{itemize}
-Each \textit{genotype} is stored using two lines, the first being
-\texttt{> label-of-the-individual}, and the second being integers corresponding to the number of
+Each \textit{genotype} is stored using two lines, the first being:
+\begin{verbatim}
+> label-of-the-individual
+\end{verbatim}
+and the second being integers corresponding to the number of
second allele for each loci, without separators; missing data are coded as '\texttt{-}'.
\\
@@ -506,7 +509,7 @@
\subsubsection{Importing data from PLINK}
% % % % % % % % % % % % %
-Genome-wide SNP data for diploid organisms are frequently analyzed using PLINK, whose format is
+Genome-wide SNP data of diploid organisms are frequently analyzed using PLINK, whose format is
therefore becoming a standard.
Data with PLINK format (\texttt{.raw}) can be imported into \texttt{genlight} objects using \texttt{read.PLINK}.
This function requires the data to be saved in PLINK using the `\textit{-recodeA}` option (see details
@@ -525,6 +528,92 @@
+
+
+% % % % % % % % % % % % %
+\subsubsection{Extracting SNPs from alignments}
+% % % % % % % % % % % % %
+In many cases, raw genomic data are available as aligned sequences, in which case extracting
+polymorphic sites can be non-trivial.
+The biggest issue is again memory: most software extracting SNPs from aligned sequences
+require all the sequences to be stored in memory at a time, a duty that most common computers cannot undertake.
+\textit{adegenet} implements a more parsimonious alternative which allows for extracting SNPs from
+alignment while processing a reduced number of sequences (down to a single) at a time.
+\\
+
+The function \texttt{fasta2genlight} extracts SNPs from alignments with \textit{fasta} format (file
+extensions '\texttt{.fasta}', '\texttt{.fas}', or '\texttt{.fa}').
+Like \texttt{read.snp} and \texttt{read.PLINK}, \texttt{fasta2genlight} processes data by chunks of
+individuals so as to save memory requirements.
+It first scans the whole file for polymorphic positions, and then extracts all biallelic SNPs from
+the alignment.
+\\
+
+\texttt{fasta2genlight} is illustrated like \texttt{read.snp} using a toy dataset distributed
+alongside the package.
+The file is first located using \texttt{system.file}, and then processed using \texttt{fasta2genlight}:
+<<>>=
+myPath <- system.file("files/usflu.fasta",package="adegenet")
+obj <- fasta2genlight(myPath, chunk=10)
+obj
+@
+
+\noindent \texttt{obj} is a \texttt{genlight} object containing SNPs of 80 isolates of seasonal
+influenza (H3N2) sampled within the US over the last two decades; sequences correspond to the
+hemagglutinin (HA) segment.
+Besides genotypes, \texttt{obj} contains the positions of the SNPs and the alleles at each retained loci.
+Names of the loci are constructed as the combination of both:
+<<>>=
+head(position(obj), 20)
+head(alleles(obj), 20)
+head(locNames(obj), 20)
+@
+
+\noindent It is usually informative to assess the position of the polymorphic sites within the
+genome; this is very easily done in R, using \texttt{density} with an appropriate bandewidth:
+<<fig=TRUE>>=
+temp <- density(position(obj), bw=10)
+plot(temp, type="n", xlab="Position in the alignment", main="Location of the SNPs")
+polygon(c(temp$x,rev(temp$x)), c(temp$y, rep(0,length(temp$x))), col=transp("blue",.3))
+points(position(obj), rep(0, nLoc(obj)), pch="|", col="blue")
+@
+
+\noindent Note that retaining only biallelic sites may cause minor loss of information, as sites
+with more than 2 alleles are discarded from the data.
+It is however possible to ask \texttt{fasta2genlight} to keep track of the number of alleles for
+each site of the original alignment, by specifying:
+<<>>=
+obj <- fasta2genlight(myPath, chunk=10,saveNbAlleles=TRUE, quiet=TRUE)
+obj
+@
+
+\noindent The output object \texttt{obj} now contains the number of alleles of each position, stored
+in the \texttt{other} slot:
+<<>>=
+head(other(obj)$nb.all.per.loc, 20)
+100*mean(unlist(other(obj))>1)
+@
+About \Sexpr{round(100*mean(unlist(other(obj))>1))}\% of the sites are polymorphic, which is fairly high.
+This is not entirely surprising, given that the HA segment of influenza is known for its high
+mutation rate.
+What is the nature of this polymorphism?
+<<fig=TRUE>>=
+temp <- table(unlist(other(obj)))
+barplot(temp, main="Distribution of the number \nof alleles per loci",
+ xlab="Number of alleles", ylab="Number of sites")
+@
+Most polymorphic loci are biallelic, but a few loci with 3 or 4 alleles were lost.
+We can estimate the loss of information very simply:
+<<>>=
+temp <- temp[-1]
+temp <- 100*temp/sum(temp)
+round(temp,1)
+@
+In this case, \Sexpr{round(temp,1)[1]}\% of the polymorphic sites were biallelic, the others being
+essentially triallelic.
+This is probably a fairly exceptional situation due to the high mutation rate of the HA segment.
+
+
%% % % % % % % % % % % % % %
%% \subsubsection{Conversions within R}
%% % % % % % % % % % % % % %
Modified: pkg/inst/doc/adegenet-genomics.pdf
===================================================================
--- pkg/inst/doc/adegenet-genomics.pdf 2011-06-13 11:39:15 UTC (rev 905)
+++ pkg/inst/doc/adegenet-genomics.pdf 2011-06-13 18:04:17 UTC (rev 906)
@@ -61,208 +61,234 @@
(Importing data from PLINK)
endobj
41 0 obj
-<< /S /GoTo /D (section.4) >>
+<< /S /GoTo /D (subsubsection.3.3.3) >>
endobj
44 0 obj
-(Data analysis using genlight objects)
+(Extracting SNPs from alignments)
endobj
45 0 obj
-<< /S /GoTo /D (subsection.4.1) >>
+<< /S /GoTo /D (section.4) >>
endobj
48 0 obj
-(Principal Component Analysis \(PCA\))
+(Data analysis using genlight objects)
endobj
49 0 obj
-<< /S /GoTo /D (subsection.4.2) >>
+<< /S /GoTo /D (subsection.4.1) >>
endobj
52 0 obj
-(Principal Component Analysis \(PCA\))
+(Simple operations)
endobj
53 0 obj
-<< /S /GoTo /D (subsection.4.3) >>
+<< /S /GoTo /D (subsection.4.2) >>
endobj
56 0 obj
-(Discriminant Analysis of Principal Components \(DAPC\))
+(Principal Component Analysis \(PCA\))
endobj
57 0 obj
-<< /S /GoTo /D [58 0 R /Fit ] >>
+<< /S /GoTo /D (subsection.4.3) >>
endobj
-62 0 obj <<
-/Length 1079
+60 0 obj
+(Principal Component Analysis \(PCA\))
+endobj
+61 0 obj
+<< /S /GoTo /D (subsection.4.4) >>
+endobj
+64 0 obj
+(Discriminant Analysis of Principal Components \(DAPC\))
+endobj
+65 0 obj
+<< /S /GoTo /D [66 0 R /Fit ] >>
+endobj
+70 0 obj <<
+/Length 1080
/Filter /FlateDecode
>>
stream
-xÚ
VKs:ÞçW°¢ Xövn2ÍÌídRïÒ.¨mRI}ÏK÷vèqÎÑÑ÷}:"VQÝ^eùþ3»º¾±y¤KetG³e¤]¡õÓ
²fè1~¿Ot\ó}
WÏGVIj³,^5ÐÆ~»ÛÀ{ÂëmðjØæ34?Ýc[Ç Ö×Ü?Æü:»¤ªiRÞ+¯ó(5ZUÚsNõ¢I
-\|ßôâs²W)cl¬5V^\Æö&4,
-ö©3JÀbf·Ùóçä¹ö¶)â»v?ÌhG^UµÊ9ǹ;
-DqNöãÊHÇZ£÷®oòC:ÇüäÊeÚByçLìÉ<dr)V5jm/*h éØ[Lèg×°CúÄ&<÷Ø-NÍMÏkÚ-ÍýÐ6óÄTñÖÍ|KRS4»*ça50ü¢6të)3jÖ2S£Ãk7æ÷VQ°E²ðÍò·Úõ²â>eyX$ig#A ÏS ¾9¨B¥Ñ°é¸ÎQ?ÂSoE$µâB§ÊªÒDSÔ²jù'[©Òë`ÿ(ÔâÀyÅÆÃíUô:¡¿rË
-mM NràOËixÁ]
-{üßælE
-K2ÞÞ©¢ô§#»'¡¸ÙÇ°^Ol¥
ö°âÛqIÁIrÙ²¨ÐrÅf5îFèDZ©ÑR?F^yn,zɦY°aó%ÓNNÔWÚ`vº3ÜDªÖVS¤jyu'ÌÒp¦¡hi¨Âôx̸ qøúÐÊ@Éèõü6>ÔG?õÉÆ[ ¿/Ê°T
wÁûoê%TH9Á´qÜi½çöøy«`q$øZnºl"©0HX°Ü4X¦Æå c¿ÿÛvÀ]Ê=Ç¡¾KNÜëmðÞc¡Ú2Å8¸<4´Õ +é²Ûl¼P$íç :]=KòÚçáÐRÝ\HE³ Ô·gÁ":ÙVGÇJkÖ´=Eßn%"EºHú`qÖ¦?®ÕNÓÂÅßÑsÞ«ÍG:°;Ô~ì¬ÏðOà.íÔúÑiø3ù%g'7{þ>0øØü(·7{]+ÖÅvmP°D@£çPîß!e¤täÆ~R»Bɯðûf>5?ðg;Ák%áë°â¯õpå®q0w5v^Ùb;Ä9òµ<ÊÙ¨t8ؤÒøÞͶåcI°/l²â]â'+ô*º¨ú© æf§NnëUP¢ã«5W9¨%µðgã|~þ¦ÿή~´
+xÚ
VMoÛ8½çWè(#¢D»Å&h]YßÒT[þhm+µäÙ_¿óEIvÜí)ÎgÞ{9VQÝßd¿yþ1»¹½³y¤Ke´Ë£Ù2ÒÖªÊû¨ÐNÙÊD³EôÜ':®alßৱÁ7«$µY¯ãºÝá,
qÚÀÏF&:þ¦?²ùõ5/o#þ«äë쪦 )_/¥R/Äáû¦ó³üSm*!ñÔhUiÏ^¢++Éeìg²HsüL©.áé¯4»ÍÖX*oR?¦ÛCæÆÅí.1~Ø9мªLq¬²eÎqR!Âa
+JÇ~à82Ò±Öèý¢Û»<ÇEÁôäÊ¥u J!ì`HJÀLæ!k±ªI¬Tk£¼«`âT ºÇ4M»æÍÒ'6a<âÒÑNà47y<¯©ZÚû) mæ©â,!Úù ä!"í®È¶!
À/bC·2£i-;5Ú¿uc~Çs")©¶ÊkÏ(¯¸Ô®÷R¹HRg#A ã%PßT!fi4lú"®sÄÄyZȤæÎ),@ £ ñlдjú'[©Òë`ÿ,Ôâò§ûè4tF;å-)æ äþÄ-=ÒpÂ*=þïDsq¢#o_(WúsÀË¢Eïc8¯'¶R§=øBçvÜQp
\¶,*4£\qZÕýønªG4?¡;Ò:\F>yn¬8ɦY°aó%Ó
ܨ
+ goT`v^ÙEK¦H[Ôóê:N¥QL.*¥¡gÓã5ãÄá¯èC+cýTO¬ç÷ñ¡OúAx¬O6ÞJø¤|UÐ }¼?pQ§Ð!åSáXi½çùøy«`q$øZÙø¤Â aÂvw!&Ò`"ëøã_8·îÒðÑsý
]ØpkäþRo÷\ô®µm³eñåòÐP©VÒ
+m#·ÙøA´_èôqè©Å\×f¸úæB:Ò¥ ¾¿Ö褬®×¬{NM
+Å0ô!é9ÄY'X2x~yVK:M]GÏy?6éÀåÐûq±¾hÂ[¾Sü¥´SëG§áÉ¿rwqs³ççÓÏòñöf`¯kÅú·øÑ®
+hôÚ}à;$°lÜÓØOzW!Yâ'üñó¯OM¥ãOüØNðZIøz%"ýP³ WÒTY¼«qñÆü¸ ίåQîF¥Ã¥Ä)µÆWôn¶-_[H=±É.w-n$Ò`ð]¸XdTÑUÕO50;uöŹ½óQ-ÊüiÍUjI-ü³)|þüM=þÝüyüÅ
endstream
endobj
-58 0 obj <<
+66 0 obj <<
/Type /Page
-/Contents 62 0 R
-/Resources 61 0 R
+/Contents 70 0 R
+/Resources 69 0 R
/MediaBox [0 0 612 792]
-/Parent 73 0 R
-/Annots [ 59 0 R 60 0 R ]
+/Parent 81 0 R
+/Annots [ 67 0 R 68 0 R ]
>> endobj
-59 0 obj <<
+67 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [346.812 477.77 353.404 485.537]
/A << /S /GoTo /D (cite.tjart05) >>
>> endobj
-60 0 obj <<
+68 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[0 1 0]
/Rect [444.422 477.77 451.014 485.537]
/A << /S /GoTo /D (cite.np145) >>
>> endobj
-63 0 obj <<
-/D [58 0 R /XYZ 132.768 705.06 null]
+71 0 obj <<
+/D [66 0 R /XYZ 132.768 705.06 null]
>> endobj
-64 0 obj <<
-/D [58 0 R /XYZ 133.768 667.198 null]
+72 0 obj <<
+/D [66 0 R /XYZ 133.768 667.198 null]
>> endobj
-61 0 obj <<
-/Font << /F34 65 0 R /F39 66 0 R /F20 67 0 R /F44 68 0 R /F49 69 0 R /F54 70 0 R /F56 71 0 R /F8 72 0 R >>
+69 0 obj <<
+/Font << /F34 73 0 R /F39 74 0 R /F20 75 0 R /F44 76 0 R /F49 77 0 R /F54 78 0 R /F56 79 0 R /F8 80 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-92 0 obj <<
-/Length 886
+102 0 obj <<
+/Length 965
/Filter /FlateDecode
>>
stream
-xÚíKo@ïþ{\lö½Ð[ê4QÚ*÷ö@1q\ù%C*åßwöe'MÓVê{YÝo^E3DÑÅÿ·ÑɹI"¤æhrÄèie
-M¦è×ëH0\ͨ¾NÞ(¢h;C~ðéÂjLPJR͵UHQÌIñªX§\áKÐÁqµmë(Oaô W^ͽ1«¼^'º¹¦)ÇbÍÆJâpoeY ¿eQc«üÎ
~bÍñwyØQÛ¨PÆì5zrÞÞ'0L¥D1e¨ÀPÌìë'çF´9µJPãÄn@ê
-®k· ç5®Áà¢~éMK)pYYc6+`_öe÷tK¯áÙ¢ð3³ÂޮֽͦcJÓôТôDüßÎ"f5ðzvÀÛ±&ÀÖ-Øü ìõu ³°íÜ=\UºdòxèËÈVweoÂM9ã{| ¤úM»}ê«Ôwò:6)Ñw³[ø¼;³dªÌ§YÚ6ÅMLút|°É9÷}Ï1N M'¸®³D©2iýv+Ý<j
-X0àÁä¨t¢ÄÑAá>fü¹lo\å¹óz颧g^3ñb~Ñh9^d(®CÙL»ESø<öoBM,Êy¹®
-T;uêÛ4³wY¯õ·Á;,¹JFÃR>+ G._¯"à¶bÙ¸ÜîzÕÍôßÍAüÉÐ5pÖ9Τƽ~ÝRÎSMÓ ®Òû Ýô;¥Mºsµaé]Õ+üïLû_MûHó@úr¹àpÀ´×áv½ô%áúãåÕÝ%¯Kp~b»$*éså@»u6[< s¯£~4ÐkrØWëµ
-ª2gúÈ~+µ³Ð Ùî·×Û:0ò0ØdãõÒ%´¨nvk®ôUþéé*³[|¬~úUÔÊǧ0b½bÉi©GÏníúSnqj÷˹͡¼¶¬5XúÓþ@¸¯º.ñoºÖÂÝ{fçN¯ÇCt
¦Ïé~].ÍcßU3dÕ-Mý1Ý~7ýEZp´
+xÚíÏsÓ:Çïý+|v¥ÕÛÜúe
+¡áïàçº!LÜdbÿ]Iöر3 ¥ÞDz,¯¤v¿Z
Ë/ϸ¿ÿ³8;¿42*Ê@°¸
+qbÒÀè$©ÅMðÍ6¡`w¡¬)»Rþ»xu&ÐvËÀÞ½$iÅCy38S"2Ðì
+m kvhmF³,ÝãU4+×oÇ|Àð<Ðg×Kêz×Ë-óë²ÆnR`düÒÿ#ì3ÊÂϨߩÔIr°ÓóËþ<a¦T öÜ FÃ>?¿Ld¯1 U¡Ûì[½Åkn$ت0ìAXl?zFJIV78æËç%q^4?¤[;;-×¥«Yô¸©hGÍ`1Ͳc7Íù#4q·½A#ZàmíÄjGZ¡s&¶éÁ£°´ÖÌÚæºOx5cèJ`8¨Ó¡W!$ÖÉvCÆ·þÁ7\ÚάTú8[©¦Pßë(Éb0néâî9irf6'ÚâëÎ']8ÞSp®\Åxåðgé,Ý`JÇ:ÉÚ¯{á^a'`}2ÁLO
+÷Hh'R}PºÉÞ×ýÉâÒçEaW½¶Þ3êÞùhü¨Þrz)¿JE3¦tqì^ß{M¬ËÆ®r«Tªúäõí&§§|$ãþÓào¹R JÁÂRz.*- K®ØÜ
²/¤Xä»ÚÓÝÜ}3ûÿúæ$I8FÒï8ÛÊ°ºÞX·4`>Õm±Uzç´Ûñ*Y§R·V*·T#?3ì
+tX+y4xÒWÕ6Ä,áLÀM߯ ánS9I¿¹zûzdé¯%8ÉÅ<(Ûx&"/¾zE´HÑañLlV9·¾7ÆÛxI«ÒÊ@3§õ£¡ÙÏDd§: ÔD&b³|ýÍÇãÊ hémÕiÐ6·ÿeiÆ
+ð?1QÆö0ðÕOE®iÕ^&ºqUîÚ}áöÃïÔ'Ð~8y5=mF2ßµqVøÂ6_» m*+ñp Gí#˾½¸Ë þ·ÖÛjWýkNg¿ÙÄH©Dú[·ãÔw9ùÓIT/+[-°ªÕ"Ô+$ÔaV»s§´ÿomû¸ß={¸`SÝÅ|6EWþóqÖ½xzW P·¥Á#TÒþeÓoübqöýüî
endstream
endobj
-91 0 obj <<
+101 0 obj <<
/Type /Page
-/Contents 92 0 R
-/Resources 90 0 R
+/Contents 102 0 R
+/Resources 100 0 R
/MediaBox [0 0 612 792]
-/Parent 73 0 R
-/Annots [ 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R ]
+/Parent 81 0 R
+/Annots [ 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R ]
>> endobj
-76 0 obj <<
+84 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [132.772 634.321 212.801 643.188]
/A << /S /GoTo /D (section.1) >>
>> endobj
-77 0 obj <<
+85 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [132.772 610.471 237.867 621.27]
/A << /S /GoTo /D (section.2) >>
>> endobj
-78 0 obj <<
+86 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [147.716 598.516 321.094 609.355]
/A << /S /GoTo /D (subsection.2.1) >>
>> endobj
-79 0 obj <<
+87 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [147.716 586.281 342.813 597.4]
/A << /S /GoTo /D (subsection.2.2) >>
>> endobj
-80 0 obj <<
+88 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [132.772 564.364 335.948 575.442]
/A << /S /GoTo /D (section.3) >>
>> endobj
-81 0 obj <<
+89 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [147.716 552.687 239.511 563.337]
/A << /S /GoTo /D (subsection.3.1) >>
>> endobj
-82 0 obj <<
+90 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [147.716 540.732 258.37 551.572]
/A << /S /GoTo /D (subsection.3.2) >>
>> endobj
-83 0 obj <<
+91 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [147.716 530.71 246.455 539.427]
/A << /S /GoTo /D (subsection.3.3) >>
>> endobj
-84 0 obj <<
+92 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [170.63 516.543 278.226 527.661]
/A << /S /GoTo /D (subsubsection.3.3.1) >>
>> endobj
-85 0 obj <<
+93 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
/Rect [170.63 504.867 329.543 515.706]
/A << /S /GoTo /D (subsubsection.3.3.2) >>
>> endobj
-86 0 obj <<
+94 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [132.772 482.67 331.794 493.748]
+/Rect [170.63 492.912 351.48 503.751]
+/A << /S /GoTo /D (subsubsection.3.3.3) >>
+>> endobj
+95 0 obj <<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [132.772 470.715 331.794 481.793]
/A << /S /GoTo /D (section.4) >>
>> endobj
-87 0 obj <<
+96 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [147.716 470.436 338.09 482.296]
+/Rect [147.716 459.039 250.38 469.878]
/A << /S /GoTo /D (subsection.4.1) >>
>> endobj
-88 0 obj <<
+97 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [147.716 458.481 338.09 470.341]
+/Rect [147.716 446.526 338.09 458.386]
/A << /S /GoTo /D (subsection.4.2) >>
>> endobj
-89 0 obj <<
+98 0 obj <<
/Type /Annot
/Subtype /Link
/Border[0 0 0]/H/I/C[1 0 0]
-/Rect [147.716 446.526 420.061 458.386]
+/Rect [147.716 434.57 338.09 446.431]
/A << /S /GoTo /D (subsection.4.3) >>
>> endobj
-93 0 obj <<
-/D [91 0 R /XYZ 132.768 705.06 null]
+99 0 obj <<
+/Type /Annot
+/Subtype /Link
+/Border[0 0 0]/H/I/C[1 0 0]
+/Rect [147.716 422.615 420.061 434.476]
+/A << /S /GoTo /D (subsection.4.4) >>
>> endobj
-95 0 obj <<
-/D [91 0 R /XYZ 133.768 647.382 null]
+103 0 obj <<
+/D [101 0 R /XYZ 132.768 705.06 null]
>> endobj
-90 0 obj <<
-/Font << /F63 94 0 R /F68 96 0 R /F8 72 0 R /F73 97 0 R >>
+105 0 obj <<
+/D [101 0 R /XYZ 133.768 647.382 null]
+>> endobj
+100 0 obj <<
+/Font << /F63 104 0 R /F68 106 0 R /F8 80 0 R /F73 107 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-100 0 obj <<
+110 0 obj <<
/Length 2656
/Filter /FlateDecode
>>
@@ -296,30 +322,30 @@
4ì§*êj±1Îó"ê!AYøèÓI°¶Ô¤ü÷]üÔ²C!HÆÅÝûB°x(è5´}Ü?*æqR¬"1ÐY?¤Éñ-d§f+ÆÆkÄlÇÌ×;¤ºû[Týãý{´ Q_4ÑÅÔ[CÚ7r'í:`Omëih|¸·±B°a°©;WêPo'¤,w±K¡JY";ùóýÿ CMaÐ
endstream
endobj
-99 0 obj <<
+109 0 obj <<
/Type /Page
-/Contents 100 0 R
-/Resources 98 0 R
+/Contents 110 0 R
+/Resources 108 0 R
/MediaBox [0 0 612 792]
-/Parent 73 0 R
+/Parent 81 0 R
>> endobj
-101 0 obj <<
-/D [99 0 R /XYZ 132.768 705.06 null]
+111 0 obj <<
+/D [109 0 R /XYZ 132.768 705.06 null]
>> endobj
2 0 obj <<
-/D [99 0 R /XYZ 133.768 667.198 null]
+/D [109 0 R /XYZ 133.768 667.198 null]
>> endobj
6 0 obj <<
-/D [99 0 R /XYZ 133.768 439.267 null]
+/D [109 0 R /XYZ 133.768 439.267 null]
>> endobj
10 0 obj <<
-/D [99 0 R /XYZ 133.768 410.631 null]
+/D [109 0 R /XYZ 133.768 410.631 null]
>> endobj
-98 0 obj <<
-/Font << /F63 94 0 R /F8 72 0 R /F73 97 0 R /F84 102 0 R /F85 103 0 R >>
+108 0 obj <<
+/Font << /F63 104 0 R /F8 80 0 R /F73 107 0 R /F84 112 0 R /F85 113 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-106 0 obj <<
+116 0 obj <<
/Length 1682
/Filter /FlateDecode
>>
@@ -343,21 +369,21 @@
D!üãBÒ{¡M,ú¬Í9r^ã: ä ¬EÚïâ"JsDÉ7,vNîJ$»-_B}`¨åÆæ4¢ç#<YÒÁþ ª+@
Ó.}©º¤~*ZY=&Øê|Pµd}»|ÀP6ÚuwÿÅ#¸Ýᩲ°¸Tûjt$ZYPn¨¶ztÕìö§òû¿ñKñ0~I¿¿Üy_㧷lt@7¸ùgÿáF9ßè(þf© oHù·<ªâ»¦ø?IÇn/¾nr©¹çC$"}ÝTâ¥&dsê_Û~iÒWùªF,1g2r}7"Hq"ñKÁäªôWu¿eÃÍw\jùFW¶å9BdÿâH$Uó|«¸«è綫&ïÊËi¡bü(açâîÞÝ=ö4ME
endstream
endobj
-105 0 obj <<
+115 0 obj <<
/Type /Page
-/Contents 106 0 R
-/Resources 104 0 R
+/Contents 116 0 R
+/Resources 114 0 R
/MediaBox [0 0 612 792]
-/Parent 73 0 R
+/Parent 81 0 R
>> endobj
-107 0 obj <<
-/D [105 0 R /XYZ 132.768 705.06 null]
+117 0 obj <<
+/D [115 0 R /XYZ 132.768 705.06 null]
>> endobj
-104 0 obj <<
-/Font << /F78 108 0 R /F73 97 0 R /F8 72 0 R /F85 103 0 R >>
+114 0 obj <<
+/Font << /F78 118 0 R /F73 107 0 R /F8 80 0 R /F85 113 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-111 0 obj <<
+121 0 obj <<
/Length 1620
/Filter /FlateDecode
>>
@@ -370,24 +396,24 @@
u"²33hW;rÜîe©mìaã+æQ®ÞHb:Cï©käS/y3=¤Ð#%ú¼ãþö\rq Y|Cr9dÅFÚ|ÿ÷^sÕnF¥~`ã#µ¼.j÷Ûuª2Oi¦|;v X;q ø&À·0ùEñÀgìÚ©\:Æj7³§ãyVÖ¸ onB¯?'=ê4ðX |5¤$u¤ô+u¼9x,êwèäBýpØÖûwwÑÂÊ9vË¡zû%üKv;Çnè_ÙC}ªÃxä§b-pfþ.)¸i9BF´j©×¯oRî®DzÙuýÖLnÍùhäùËhsæRÙ±ÐtïÇ÷WðÚÄ}Fãÿ¬ým»:2Ï é ±|DÆîFåØ¿PI at 7-ö[`CÆ?wÕ9û [¨ÜXåZ+,|¾|ô?|
endstream
endobj
-110 0 obj <<
+120 0 obj <<
/Type /Page
-/Contents 111 0 R
-/Resources 109 0 R
+/Contents 121 0 R
+/Resources 119 0 R
/MediaBox [0 0 612 792]
-/Parent 73 0 R
+/Parent 81 0 R
>> endobj
-112 0 obj <<
-/D [110 0 R /XYZ 132.768 705.06 null]
+122 0 obj <<
+/D [120 0 R /XYZ 132.768 705.06 null]
>> endobj
14 0 obj <<
-/D [110 0 R /XYZ 133.768 198.947 null]
+/D [120 0 R /XYZ 133.768 198.947 null]
>> endobj
-109 0 obj <<
-/Font << /F85 103 0 R /F8 72 0 R /F73 97 0 R /F63 94 0 R /F84 102 0 R >>
+119 0 obj <<
+/Font << /F85 113 0 R /F8 80 0 R /F73 107 0 R /F63 104 0 R /F84 112 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-115 0 obj <<
+125 0 obj <<
/Length 2157
/Filter /FlateDecode
>>
@@ -409,21 +435,21 @@
¶i
endstream
endobj
-114 0 obj <<
+124 0 obj <<
/Type /Page
-/Contents 115 0 R
-/Resources 113 0 R
+/Contents 125 0 R
+/Resources 123 0 R
/MediaBox [0 0 612 792]
-/Parent 73 0 R
+/Parent 81 0 R
>> endobj
-116 0 obj <<
-/D [114 0 R /XYZ 132.768 705.06 null]
+126 0 obj <<
+/D [124 0 R /XYZ 132.768 705.06 null]
>> endobj
-113 0 obj <<
-/Font << /F85 103 0 R /F8 72 0 R /F73 97 0 R /F78 108 0 R >>
+123 0 obj <<
+/Font << /F85 113 0 R /F8 80 0 R /F73 107 0 R /F78 118 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-119 0 obj <<
+129 0 obj <<
/Length 1803
/Filter /FlateDecode
>>
@@ -448,278 +474,280 @@
)h#×DïuÅ{=^î¨IJÇçw\fª5âÖ©¾ù$¹¼Â zh^|èôãÑ[×bI©ÿ"Àu*ÖÙL &1<yßJïð¶.ÍÇ AJ¿±´w+jboV;il º¼v=Ìådïj¾µkî\ꦀ ¿¾!ÀU×õÝмws¸T½B¥Ó¡PÞíµvH¤Ç;¢x^C¦´6ãC©p"qKÀnxåô3|üëÃ~æµ1ï~»tPe[Ð5,âö¡«Ä&GR{`DyFx½"Ô^Ò-"ä©KBö¢H§â«Á*ô×éw4·2ðâ¬ënd#wKIîèÙE\cîV sþóâT0ÏûÂóÇýpy²á¶kùÊû; .·÷m6Æzpª{ò\JìÑ{ýáôÅ¿ÂÓìÉ
endstream
endobj
-118 0 obj <<
+128 0 obj <<
/Type /Page
-/Contents 119 0 R
-/Resources 117 0 R
+/Contents 129 0 R
+/Resources 127 0 R
/MediaBox [0 0 612 792]
-/Parent 121 0 R
+/Parent 131 0 R
>> endobj
-120 0 obj <<
-/D [118 0 R /XYZ 132.768 705.06 null]
+130 0 obj <<
+/D [128 0 R /XYZ 132.768 705.06 null]
>> endobj
-117 0 obj <<
-/Font << /F78 108 0 R /F8 72 0 R /F73 97 0 R /F85 103 0 R >>
+127 0 obj <<
+/Font << /F78 118 0 R /F8 80 0 R /F73 107 0 R /F85 113 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-124 0 obj <<
-/Length 2554
+134 0 obj <<
+/Length 2553
/Filter /FlateDecode
>>
stream
xÚYK㸾ϯðQÚQ¤^9$Øl2É,°é M²¬¶=cYdÍN÷¯O=%ÊV÷`(²HVëñ
Iºà¯Û¯"mÿò·wÑ
¾WðþÖ8v`?kÆÿüøîý<YeaEfõø´2ÖY¯Ò$c¬w«_4\ ^okÛõÿñÍá¹Ó0JS^â<»
¶jxV×°×ñ?þ%Ñ®ÆZæ=4Ú
ýñ5R}ej3gâñnH
-ÌmÏ<)2x¥Q
-ÏÌeÈ^l¯¸Q?[4´*Â"ST.iBg^òô>Ö¦A¹/ðuÿè) W<L(4vµ]¹§®$À OܼI°+®äiHÓs³³`@å`ã Ç«Ô¤Õú ¼N»QÀ÷2ë gYè¢$ÁöãTð à/¢\yº¯Âd§IævYmllÃ<JWcÂ"èXqýýzcs+l¼ñÔÚÿNƹ ja0¾àlÇsw¨'Q~·ë
-,TU¸Ég<s??¼ÍÅýµc':xùhðU*SõA¨Ùw-;v¤=úòD¢GsÍ2¤1ãÂÂ90&ÇÇÃ:$þ²NRÜQ´"í¿Ñ2¢ gÃòI½G:ÚêÑ É´6£]õWÑ0QN pÍ7¨®jâ1²h@::m˼<µ(Êoã±£w´ü.ÏDôÂÔÜ5õ3w AÙiÀ¾Qä{_Ã=LæEfK}äyÂ*.´ãU+äd®ª $
-×ïgXlz`4--Ì!=Ì9õL{`+ØÄE®*hµ½öÌÜÆÀ´LÖµã)¾EÇDZnÊqñÐ=Vs»ißç»ä§ÞR¶'ÏþH¡
FØ QÜ]eÁª1*Ó £&A{¹m/;a§°¸Ø®¢cä¤jå&ø;Û>êéôÁÈ× §g:ÆÐ1:û fà©YøªÐs±1ê?J¡L,îÄÜJIbñÌ@IM<AMÈÙÐÌßW4'µ Ѿ>JD®-¹~ÖIFÉùÈ(yG#Þq*£©h'ôf¢) >,ÉJÁ¢V÷
uXA1qìâ¹GùåLBþ' QWÓVijø(ÒMá;k/]®¤wLÁö¹·½zøVbKÍà NÅ@oeµ"ÞÊsÇ䯵±§:°Zk?ªõ XÖ1ÝÙ1éGÊ8h-Z/Ñ`hs§dÅW¡µK&¢$éC¨nc0q1KfÂ9ͯNî·ØD;wíàÛs= Yv/íE¡|Q1Øt¬§dgW{½ç-Hö#¿n"Ö
-óÉYDzŲÝ-}ÑüQN¢Î·Ûü M\þÆÞP˹) ÃU®ì{ê"0L[LqEñ%ÌAÝaAtì¾GY¼Ü£oKo¥?îä9ª"8'aBwC|Â+M§àÆd·øA!Í£ìU©#ª£A´ôqçºFiPÝh`|Y¿w²N쳺à;{:KÊ»m'R!émÁ°m×Î]ëß
-Ã$¹,C3øn&.¨§`6Qfÿ)B¶ ¨úÅ%tÑôg¹*G±:³N9UGÁO¬¤½t##ÚÒì«ø
-©ÛaW `RûÅ6 tQÏòâ=ú:ô¿¬ )
-®=Äz":LûM;ÈÚÌ
-
-òØ?ÖKøñZ½°×nò¬ò¬{µ*AL±;÷5Ïú_æ|ÁëdÑ
-jA: @$ôÃe²8ÜFcà§e¥J!l!á]<á1òìk©í
-¯¸³iä¹whfúc<<ë
²ÐªL)þr&§zet94B ç*ñÉË@YD5¦u2òVÝ8ûнU£ÎJj×üµ¼-°sd(¹¯dÏ;=b-bÔm»Ô~B8k Uvè'M$
-6ÚW¡P4Ldbª¶g)PöSüì¢ÊP=
¤!ÞI,ñn
-³-Lç3
-#HgcMä#ø3èʳ!ªÄ§ûc¢ÒÔ÷^D¸0OF[¥æOcîÕ96ù|BBaØÏLò4(8äI:´ª¸6GÖX»µù*_&Tà_¼ÿ ©4åXî¢læN æj ù¡0Å&,9d¢¤<úMÓ¬@ç/k²8´E6;³ Rýu5ÏX>Uùý4ä§9bÞ7nèÈƤqÁ¿zo¥ªÈ'ûVÌ·¿·4Õ<´¹,øæ½ÂÍîâàà)
1[õ[ÄÖq&´Cv[ÝdÂ4~PË×}Zn6¥æ´BF ´©]¥8^ò
-î\þ¾±Ñé3¼÷¬ÇmR©c¿=hÁA©o¥ÀÒ¼
-âÂn¡/uÞüÓÑE uU'¾LÀÌ×ó$NÂ4ÊerÝiÞÊLî]@Ýèë&dýþX»·BIìråÒ¯ÿ«ñ¼;Ì'©£Ë8¤/¯þÊÀeÓâ(Eèê~Ë«)HHÈ_¿åÏ0_6#lnåveÃlºä«¦,˶©F¢ö{Ë^îæZï¦[¸²ªäVu
-¶Ø?ÇQ4¢Jµ¿üÒñ~ºÄMº§KÀVo&I¼{ûðEÕÝ5BL¸º~Eiw×|Ü^¹bº4µo4Ðñ>;ÍçÙ:³5}è4éRèÊm*JE¾Ø3fÚ¨f±pþAÉø'cÓåp®l%óÑð©Ì#Ò4ØÕ©RôSbsRæ «ärPWnyUÁ¶¿CXbF·+-Urܽü¿ür±ÿ[ìÙi)ÕÍ/üDü=°'ý1³fõ«¥^|Ýr_½åÿÁ¦¥gu);Lh°ízéìëy)Mýc9v<ç¸ôÁ¬Ú$øý¾_y|\ ÓDìÒà£^¹áÎhDiämJ!0(v DÊ÷ÝÍ¡dkg@ìA0 at 7]¦ÈmÓàQ¦7Æ+6½äák]²¾aLÚd1!_ÄJ/ßXú>±<°qQMP¡
Dpì¹¹ës
-A4¨WÂj4Z1üõñÝÿ<ï
+Ì
'È£Pi
+ÏÂa;g·ÏÈGÝÏv -°HãËÐÙ= s>Ö¦A¹/ðuÿè)à
+ÍÃDcWÛ{êJðÄÍëH»éJ4=÷7ë8T6ÒÙzL°ZMZ©ÙÊë´Û|ÿ!³`q
.A@l?N5Á þ÷"ʧûjq)Lv:d.iÕÆÆ6Ì£tµ1&,1«×߯76·Â±ÉïIýàdªóà>hÈv<wzeáw»ÞÀBU
\pÆ3÷
+ÀÛÑ\ܯ©Y«82Ö½|4øÁ*©z Ôì»;Ò}y"Ñ£¹ÌÌfÒqaá
+ÃããáY')î(ZößÄÄhQгaù¤ÇÞ#mõèdÚÑÃÀ®ú«h¨IM'PK
+8æTW5ñY4 ¶Êå^ÄZå·ñØÑ;Z~g"BÿëkîÎú; ìÈ4`ß(òν¯
áG&ó"³¥>ò<aÚñªòE2
+WUëM
+÷3F-6=0fNÁfÇz¦=°lâ"W
+´¿Ú^{fnc`aGZ&ëÚñߢc "-7å¸øhV«¹Ý´ïóÄLÏ]MòSo)Ûg
+
+¤ÐB#l(îÀ®²`ÕéÐQ ½\Á¶°SØO\
+ìÃWÑ1EsRµrüíõtú`d
k
Ó3cè}3ðÔ,|Uè¹Øõ¥ÄP&MwKbn%$1Èxf ÅȤ& &älhfÇï«Zh_É%"a×Ü ?ë$£ä|d¼#ÃïÈ(¢ñT´z3Ñ d¥`Q«ûÁÂ:¬ 8vñÜË£üòÃG&¡Iÿ¨«i+âY|é¦ðµ®LWÒ;¦àû\ÈÛ^=|+±¥æáJͧb Ä·²ZoeϹcAò×Í
+ÍÚØSXµÕzP,kÉîìtIÃ#e4Ä-Íh0´Å¹ÏÓN²bÍ«ÐÚ%QôËÊÄ¡d·1E¸%3áæW'wÆÛKl¢»vðí¹,»ö¢DP¾¨l:LÖS2Ƴ«=AÞó$û_7ëùdˬcÙâEÙî¾hþ(O'QçÉÛmÊ~&.co¨åÜá*Wö=u¦-¦¸¢xæ î° G:Nvߣ,^nÑ·¥·ÒÆLwòÕDDÃÄ0¡;Ø
+Á! >á¦SpMc²[ü ÁæQöªÔ@ËÕÑ Zú¸s] £4¨n´?0>Ã,¿ß;Y§DöY]ðÌÊ=%åݶO©ô¶`ضAÈkç®õo
a\Ï¡|7ÔS0(ÎI³ÿ!
+[FTýâºèú³\£XY§*Ï£à'Ö Ò^ºÂmMiöUüÔí0ÆÍ+6íÛ$ÐE=Ë÷èëHÐKþ²l4¦4h6ºöëè0íS6í kC2+(ÈcÿX/áÇkõÂ^»É³vʳîÕª1IÆîÜ×<ëG~UrDó¯FDE7¨édÐ_~
+:zÉâpA*°
wñÇȳ¯¥¶+¼âΦaçZÜ¡
+^èKbñð¬ÊBZ¨2e¦øCÈ,êÑåÐLpZ«Ä'/]8dÕL\ÖÉÈ[qtã`ìB÷Vb8k(©=\ð×Jð"´ÀΡdæ¾=ïôµQ¶^(ø ᬠbV!Ø¡06u4Øh·^þ
BÑ0©Ú"U¤0BÙOñ³¶*[@õxfx'-²Ä»)l̶X0Ï( 5|à{bÎp +Ïzt¨î/"BHSß{áÂ<mr> ¸gVçØ :Jæó
ý1`?3ÉÓ (rV\à'éX^ЪâÚY`íÖzt&æÿ©~Piðþ¤Ð c¹²q;«äÿ
 °Dæ
+òH^è4M³¿¬ÉâÐÙì Î
+$Hõ×%nRhffÔ<cù4Vå÷Óælb-x縡K"3"Æÿê}¾Qª"ì[1ßþÞ
+ÐTóÐæ²àO÷
+7»O§~ÄlÕo1[ÇÐmÚ1lu ÓøA-_÷i¹ÙÓ.
+ýiÒ¦vyzâxÉ7lºsùwúÆF§ÏLðÞG°·i>^H¥ýö !¤¾>SHóv(D'
+»
+¾ÔEzwðOGÔUø23_Ï8 Ó(Éu§y*3¹wu£¯õûcIìÞ
+%±Ë;l^J¿þ¯Æóî0¤.ãn¼L¼úKx(!L£¡/ªûP,¯Z¦ %"!ýZ?À|Ù°¹ÛYq³éS®²@.Û¦bÚWî-{¹k½¶Rnáʪ[Õ)ØbÿGÑ*Õ:üòKÇûéo4é.[½YP$ñîìÃUw×E2àêú¥Ý^óýer{å]êÒÔ¾Ñ@{Æûì4gëdÌÖô¡WФK¡+·©(ùbÏýi£qÄÂøA&ãcMÃ!ºV.²yÌGç2HÓ`wT{¤JÑNÍI¬zËA]¹åUÛ.üaMEÜ®´TÉq÷òÿFðO0ÈÅþo²g§¥T7¿ðñ;öÀô[ÆÌV Ö®zñuË}õÿÕ¥ì0µ¢Á¶ë¥³S®ç¥4ôYäØñãÒ/<³fhà÷û~å)òqL±Kzå;£¥W´5*
À Ø%qn*{Üw7f%²Á Ýt"·MGEÞ ¯Øô/¬ua:Êúj1EhÅ|+½|céûÄòÀÆE5A
zÁ±çæ®Ì5Ñ ^ s¨ÑhÅ|Fò×Çwÿî=¡
endstream
endobj
-123 0 obj <<
+133 0 obj <<
/Type /Page
-/Contents 124 0 R
-/Resources 122 0 R
+/Contents 134 0 R
+/Resources 132 0 R
/MediaBox [0 0 612 792]
-/Parent 121 0 R
+/Parent 131 0 R
>> endobj
-125 0 obj <<
-/D [123 0 R /XYZ 132.768 705.06 null]
+135 0 obj <<
+/D [133 0 R /XYZ 132.768 705.06 null]
>> endobj
-126 0 obj <<
-/D [123 0 R /XYZ 133.768 458.482 null]
+136 0 obj <<
+/D [133 0 R /XYZ 133.768 458.482 null]
>> endobj
-127 0 obj <<
-/D [123 0 R /XYZ 133.768 438.749 null]
+137 0 obj <<
+/D [133 0 R /XYZ 133.768 438.749 null]
>> endobj
-128 0 obj <<
-/D [123 0 R /XYZ 133.768 419.015 null]
+138 0 obj <<
+/D [133 0 R /XYZ 133.768 419.015 null]
>> endobj
18 0 obj <<
-/D [123 0 R /XYZ 133.768 285.031 null]
+/D [133 0 R /XYZ 133.768 285.031 null]
>> endobj
22 0 obj <<
-/D [123 0 R /XYZ 133.768 255.993 null]
+/D [133 0 R /XYZ 133.768 255.993 null]
>> endobj
-122 0 obj <<
-/Font << /F85 103 0 R /F8 72 0 R /F73 97 0 R /F89 129 0 R /F63 94 0 R /F84 102 0 R >>
+132 0 obj <<
+/Font << /F85 113 0 R /F8 80 0 R /F73 107 0 R /F89 139 0 R /F63 104 0 R /F84 112 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-132 0 obj <<
-/Length 1348
+142 0 obj <<
+/Length 1359
/Filter /FlateDecode
>>
stream
-xÚÅXKoã6¾çWÊ@Íð!Rrºé¡ÀnÑ"{Êæ µG
_°ìlòï;3$eÑcÇFÐ,Î|üf82Æþ¸à[÷ß_Ò,ê³¾&<F"ÉX*ÈèI¥£Á(º¿IÁ»¿j=PR
-%|0A³®ÿï#ÔºüÒ\@reÒ_u{I¢â%È+øY/fÕí)¥b{ÂIû:ëÊ,^Oñ÷{·'S LsóG¼Ë¸D#øÁg¼ãË®|R5DZYÄÿ¢Ý!Î±í¸±ô¨¨'ú Ú©`ÝÀ5Çõþ°&´6NK;òkÃu{WÁ/w `N@¡¬éâFÁ5¥@06BE¨È°~ª2TNK3ô×]ì&´ ç6B?4âwYyLK¨¸l®¥#÷¸|vd#å$þ6`Z³,Õg 6©)ónÀÌ1 lâFh\»½C
-$ÚÁ ;%㪻ƽ
-6eNNçÙnîÀ×®Ô~3£Ï¡ÎÂ-8oöµ-vÁGÄ.O½öÜxµð
iÕ(dÍòðþdK4KÔ¹!Zf$?0±òM"åt"ùt£Î|½pxÌÆ[`ÕǾØãï0X@JÏ9Ðæ.¢'GçehÒ0ÁåG¦Ö²¢ò8Gi¾r¸ÌgËÊVFv$á8
ªî ¨Á~"T»}ýAa¶¸3Æûé¸
-K³$;hhä»-XPl6ÂycÄ«d¬¶Å´ ø¡ø:¹©'ÞÉ#;\VÞ=wµóÒ%)Ôvx(ìü¡¥óolø UÂ2®=#>X®wcuÙãã¡=²Þ Ó¸Ò*Ç¥èó%"Ó´x´Búç¯HÌLG)àÍ
es¦JRØ#øvß ÃS¶~ løl]¤ÇI¾ ì^mçÃÅ<¨_ì$&áz®ÊùÌItnÁ<«|JÊ
â¨,²À£Î=»
-ÊmX4tmM¾þÑ&ÙE¦ñ¨súmþ7óQ 8ÿ° 0¥ÖÂý=è2@/îñ~°«pç»u®ùÙA
-Öÿ[C at N÷>È]²]dÃ2÷o"êÞ·ûìÓúÖNJ
-6Áv¿XCM|ÅäX³°À÷I9Æ^u6<!ÃVÛDʶ,š׮¯»·ÐÃ%ÖÁá$¯lqÂÑ1 fòøie%®Am×å0®"¯ªràFƸÛïTò%u.vul請w¶Ã .çÊïËôTp]CêÞ~Údö´¬lÍÛ÷áüÛ2&ø¶¶S?-Ü×ñv\f㸣âÇÍÍqnñV¢½áQÀ@,9
§a9³MG¹éÍ:¾øaíVM"6Àÿ,éÛ±¶móè¡Ú±N(dCh
-É}B.NQ$tòÄÔá¾øÛ÷
-C»_]JAçÜì>*ÉûòwÓÔ`-'Æ
-Pçí-Í©ãÒQµDÌ^¶ÛVh³¸HýµùÎ\öûÉf-`*KÜý«ÁàW{a6ÛÓi`+«má\?³uÉ7äiã,µxÞÙoO>HøÃR÷dï»twÑ*GãJd:nãÈÞÅe`<©Éýrg-®ö,~(òÐß,Þø6 LÓgÊhú®É2çYß)´óíóàâ?É»Î
+xÚÅXKoãF¾çWÚ@=f$§
+ì- غ§lZÛqTøËÎ&ÿ¾$5²b; dI3$üæ#²¦þ8ûïóó/I
+ÄÀi
+ï#§"Qqäl"´±ÑpÝv¿i%{wÿ*=P25%|R0AÂêþ ÞǨuþ¥¾"Mu)|ÑëDZé®Av²í5^ßÓűô¯N»Û9þ~ïõuã
+inywÝÍÑÂ~ðáïø²
+5Ö`ÖÆÝÑîçD3îz,}ÁÄ&ê«öV°®àZâzÿX3Z'G¹ù&Á¿áº¾)àÔ+Ppo@!¯èâFÁ5§@06BEÈAbRTHp%èÏûØÅBYÎíJüÐlßyQbÊP".¢æºÙnøáZ3JóG&ñ,#ñÃY+Òľ°YEWæNÌ}`3&¡píú5hG3.î-PÍøÔîm°'lüvíçélYåJåÇø¥pö=ÔYñËiÛbWÂh}Bìú±WÏeaÚÔ
+Y½<¼>Ùb+bó^ÄUJÊ
+XÙ.2:Êt¢Îr»b<ÓXÕñ/þø;÷hKèé¼nM;¡¤þÈ´ÂZT Pî¨3Ï6Ërá±,X°2ö#Yÿª' RûPYÉûúÂ&;mq§B#q;¤qwÐÐÈw_° ØÆlòÇW+*ÉXm'ó ÅÅåæ%ñ|Mûá¼(ÍÀØcÏÚnsBmß"´tþM} ´E*mÉO ÖëçýX9{XðW0:Ú#ï
+:+m2\j>_x"
+ë@KFk dùüÚ(¼¥òlN0q{äTÊ/ótxÆ×
+½ô8ËVݳï|¤ºóÄ$Ü.ÒM¾\°DNçÌËnÍIyÂS5++<êø7(óaÑÐ¥71üú~Fd&£~Ì´ù_ÏKDà@XÊg
+èXÈ4ñnoAWÝÝñÚ|,p§ð;íoÒ;Çoº6'ýjÜxNûLá5äô îÞ÷!Ý÷A[N
7T8è9É} 8¦Û0Rá>½@ßÊImÃ.Øî'oèÓÉ7ùë`Nð}O1£7ÏÆÈ°MHiÃòIjqíò²Ç¼
.öfYáN©ðÌ0§/q jûÎVÀ¸t<¯¨ÊA$J:ÝÅÍ`¿SeÈÖÔ¹øÕ± ¾)ZìÞøºrkX,º¤[æß~Úeö</|Íú÷1áìÛÄø¾¶S?ð×|*7ì´ÌÆá£âÇÕÕinÉV¢ð(` ÉÃIIÃ|á|×uÊâµÛÔXÿc°¨§oÇÛöÍcÙUuB!B]H¿$ÄqÒ!¡w OL½{òÐ9¶[ðÕU«tÎ-®è£lð?OSµªT+tBÃ[QÇ9§£j=Õm¶ÐfI{ëó]pþûQèz-&yþÕðkKavÍé$°V¶pnÌùºT6äií,õ¼óßåÁ áCï1à]ïçwr5y£R»+j5¼¸¸n=¶nÈ©Æâò5Ñ"
+§t ·[\5¾MÓ
+q¾kÒ=°B;ß>ÏþÎg»Ð
endstream
endobj
-131 0 obj <<
+141 0 obj <<
/Type /Page
-/Contents 132 0 R
-/Resources 130 0 R
+/Contents 142 0 R
+/Resources 140 0 R
/MediaBox [0 0 612 792]
-/Parent 121 0 R
+/Parent 131 0 R
>> endobj
-133 0 obj <<
-/D [131 0 R /XYZ 132.768 705.06 null]
+143 0 obj <<
+/D [141 0 R /XYZ 132.768 705.06 null]
>> endobj
-130 0 obj <<
-/Font << /F78 108 0 R /F73 97 0 R /F8 72 0 R /F13 134 0 R /F85 103 0 R >>
+140 0 obj <<
+/Font << /F78 118 0 R /F73 107 0 R /F8 80 0 R /F13 144 0 R /F85 113 0 R >>
/ProcSet [ /PDF /Text ]
>> endobj
-137 0 obj <<
+147 0 obj <<
/Length 1852
/Filter /FlateDecode
>>
stream
-xÚíXIoÛF¾çW
-P at 4á,ܺh
-4E"bß(¶TH¢ARôÇ÷mCR¼ÄIo=Hõ½7ß[g¢
-"'As-nüýU`¿ÏÿzùêÍ»,ÈU$¸¼
-´µ*M² Sel\ÎOáÉÔZóùDKøuø7ðÿ§Úz
-
-;6lo&SU)«?GÚB¢,+i[ø«VJ·8 å
-V3ø[
-¯h×äËåoÞ¥v$¶1ÊóÎD_Ónd;
-c¶íbe~o=LcþûK<g{;zÈóxïÔĹԩA#}6:º¿k,/¶´çø¼
ß
-ÔGÚDÅÎúg©s6lð´(é¶3·W'GôX+uÛ+ymx®¾b
-¬^;ØØ\ó,«ÜVyZÁÛª¢DÕ-¸GÞTnñ-*tEç|OGÜ7ÀYÊ©r=Ô÷+VÛ Qyj3$e±U¶û¦¢t¬éhWB%¨JxÓzÅÖ@
s]tëêPkÆ°Úð¼ÿ0ÉÜ&²:ù.£¤cÀÊ¢Ôkïêí 7vNÙؽ@cæq¬bÓåƯæ=o,$\!ºý[i<²6¹J\&('/@ùÐÕG.Iös¼Ó-!<ùä[íó9ñâQ
-¦ ,MMñmyK¨w
-g
ëªØ Ý»ÁB«fZx¼¤Üp++2-pMÖ¬H"Òøª æd:ÂArØÒ(6KÁçG=(ÅH®ÜýfÏÇÕNåcVy,Ç¥½
-Z^äúDqxÓȾÁøÙñªAZÜ[HKv^%¦åE.)%ÂÚ®Ïáûq\mX¾CÕ
-¯YnÄ&»HVú}D&ewÂUj{c¿;á§Ên*9ˬS°\ñíèFY¤à &ç³.
-
-;ÉÄÏ èëîÀ*ÀQ5½URós8Í9S¹pøE+Z6Q½&@WTN,:^qÛPùQ0MUgLËÊÒzt·¿!ÈJ%&ÔÐxÑp%óßw, >´cºrȨ¼òéþ¿,S&§Ê£8øü]ÍB¯ã1Ác^ ¹'þBKE"´ÂCFx cëÀ=¨qñÏ0
-©^t Þ¢SfP gá]Ú¤ýй)1Ú)Û§ÔàÎÅ8háÚG½õ£xÓ§òqË+ë«ñhÇ»=Ĥöþ¼÷ËÖË¿-béWY=èE'Êyks§$Ù¢ï¼uøÓuÐP Áùxéþõ¯y6¥
-«(:ÝwVôZ8ßu
§«½ãb(OSLnX4 Á»,8óà8ëÀæ>ãã] ¢±SêÅW»ÍyMÑÞ×¥@eª;e#èsg'¬)6n©H×x/GqïVÌo64"Ðë¡ÛÐn!*¦üô-çYöµÌ²pîÿCæ2YT¢Ö-}ª3ÁÆ*~äÊ<ÄNÝ['I¢Ë1Tß5(?dC|ÎÆ=e_eBHÑ2ÅO¨Ö/BÊý©3!K>öXN3wLèi¡EEÈ<Rð_ïmµá>Þòp,¥L
-îð2Tgõhð~-HÖÔW®Ë*¸p°2Q
-u·¸ZÒÆ
ÛYKβMÛMc°iIOÅ#S¦l¦_öÆ(»Yðâø%RKí#ó±9Oª¯éµa%y ÁåÕ°Ìû»ä¹t8Ó}²è9KYy±br"¢ºòlVþîIx²tA
-Úf®ª1$G ËÑÛȲ©X÷89C*ûªÐP÷º¨î*¶K±×¢?ÊÝIuäY¯¸dI^.|6¯ú*ªþvÆi©³ ñE ¥-1í»ttEÃQ¹.ÅZn=îs¹1%FÙÜ¢·õ2PÀÿÓ©lLz|p'0ø7Ho,¡nìѪRVÊÒYâÉa9v@§$!Ññ«4³þ*D×®ù)çÊ¥Òä,÷èû{¶_ê¼ÅãÄWÎ
-¥Ø¿wFñ¡Æ$<öð×r¢ÑwSHhg,9]J×òx+$¤+£xЩ3ñpaÅ
Ev±)ÅhM͹ù[©Ö¬¼¬ô` Ü;ì=÷%Û÷/&¯OT¨ìÿD`||Gªvþíß"Z/_Y¬äýQ7¿¼4^+Ìb#o[%#`3z¼~~ñùôúTrÓI¢
Kê¹÷öÛå«2¹¸
+xÚíXIoÛF¾çW
+P at 4á,ܺh
[TRUNCATED]
To get the complete diff run:
svnlook diff /svnroot/adegenet -r 906
More information about the adegenet-commits
mailing list