parserInternals

Name

parserInternals -- 

Synopsis



#define     XML_MAX_NAMELEN
#define     INPUT_CHUNK
#define     IS_CHAR                         (c)
#define     IS_BLANK                        (c)
#define     IS_BASECHAR                     (c)
#define     IS_DIGIT                        (c)
#define     IS_COMBINING                    (c)
#define     IS_EXTENDER                     (c)
#define     IS_IDEOGRAPHIC                  (c)
#define     IS_LETTER                       (c)
#define     IS_PUBIDCHAR                    (c)
#define     SKIP_EOL                        (p)
#define     MOVETO_ENDTAG                   (p)
#define     MOVETO_STARTTAG                 (p)
int         xmlIsBaseChar                   (int c);
int         xmlIsBlank                      (int c);
int         xmlIsPubidChar                  (int c);
int         xmlIsLetter                     (int c);
int         xmlIsDigit                      (int c);
int         xmlIsIdeographic                (int c);
int         xmlIsExtender                   (int c);
int         xmlIsCombining                  (int c);
int         xmlIsChar                       (int c);
xmlParserCtxtPtr xmlCreateFileParserCtxt    (const char *filename);
xmlParserCtxtPtr xmlCreateMemoryParserCtxt  (const char *buffer,
                                             int size);
xmlParserCtxtPtr xmlNewParserCtxt           (void);
xmlParserCtxtPtr xmlCreateEntityParserCtxt  (const xmlChar *URL,
                                             const xmlChar *ID,
                                             const xmlChar *base);
int         xmlSwitchEncoding               (xmlParserCtxtPtr ctxt,
                                             xmlCharEncoding enc);
int         xmlSwitchToEncoding             (xmlParserCtxtPtr ctxt,
                                             xmlCharEncodingHandlerPtr handler);
void        xmlHandleEntity                 (xmlParserCtxtPtr ctxt,
                                             xmlEntityPtr entity);
xmlParserInputPtr xmlNewStringInputStream   (xmlParserCtxtPtr ctxt,
                                             const xmlChar *buffer);
xmlParserInputPtr xmlNewEntityInputStream   (xmlParserCtxtPtr ctxt,
                                             xmlEntityPtr entity);
void        xmlPushInput                    (xmlParserCtxtPtr ctxt,
                                             xmlParserInputPtr input);
xmlChar     xmlPopInput                     (xmlParserCtxtPtr ctxt);
void        xmlFreeInputStream              (xmlParserInputPtr input);
xmlParserInputPtr xmlNewInputFromFile       (xmlParserCtxtPtr ctxt,
                                             const char *filename);
xmlParserInputPtr xmlNewInputStream         (xmlParserCtxtPtr ctxt);
xmlChar*    xmlSplitQName                   (xmlParserCtxtPtr ctxt,
                                             const xmlChar *name,
                                             xmlChar **prefix);
xmlChar*    xmlNamespaceParseNCName         (xmlParserCtxtPtr ctxt);
xmlChar*    xmlNamespaceParseQName          (xmlParserCtxtPtr ctxt,
                                             xmlChar **prefix);
xmlChar*    xmlNamespaceParseNSDef          (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseQuotedString            (xmlParserCtxtPtr ctxt);
void        xmlParseNamespace               (xmlParserCtxtPtr ctxt);
xmlChar*    xmlScanName                     (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseName                    (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseNmtoken                 (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseEntityValue             (xmlParserCtxtPtr ctxt,
                                             xmlChar **orig);
xmlChar*    xmlParseAttValue                (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseSystemLiteral           (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParsePubidLiteral            (xmlParserCtxtPtr ctxt);
void        xmlParseCharData                (xmlParserCtxtPtr ctxt,
                                             int cdata);
xmlChar*    xmlParseExternalID              (xmlParserCtxtPtr ctxt,
                                             xmlChar **publicID,
                                             int strict);
void        xmlParseComment                 (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParsePITarget                (xmlParserCtxtPtr ctxt);
void        xmlParsePI                      (xmlParserCtxtPtr ctxt);
void        xmlParseNotationDecl            (xmlParserCtxtPtr ctxt);
void        xmlParseEntityDecl              (xmlParserCtxtPtr ctxt);
int         xmlParseDefaultDecl             (xmlParserCtxtPtr ctxt,
                                             xmlChar **value);
xmlEnumerationPtr xmlParseNotationType      (xmlParserCtxtPtr ctxt);
xmlEnumerationPtr xmlParseEnumerationType   (xmlParserCtxtPtr ctxt);
int         xmlParseEnumeratedType          (xmlParserCtxtPtr ctxt,
                                             xmlEnumerationPtr *tree);
int         xmlParseAttributeType           (xmlParserCtxtPtr ctxt,
                                             xmlEnumerationPtr *tree);
void        xmlParseAttributeListDecl       (xmlParserCtxtPtr ctxt);
xmlElementContentPtr xmlParseElementMixedContentDecl
                                            (xmlParserCtxtPtr ctxt,
                                             xmlParserInputPtr inputchk);
xmlElementContentPtr xmlParseElementChildrenContentDecl
                                            (xmlParserCtxtPtr ctxt,
                                             xmlParserInputPtr inputchk);
int         xmlParseElementContentDecl      (xmlParserCtxtPtr ctxt,
                                             xmlChar *name,
                                             xmlElementContentPtr *result);
int         xmlParseElementDecl             (xmlParserCtxtPtr ctxt);
void        xmlParseMarkupDecl              (xmlParserCtxtPtr ctxt);
int         xmlParseCharRef                 (xmlParserCtxtPtr ctxt);
xmlEntityPtr xmlParseEntityRef              (xmlParserCtxtPtr ctxt);
void        xmlParseReference               (xmlParserCtxtPtr ctxt);
void        xmlParsePEReference             (xmlParserCtxtPtr ctxt);
void        xmlParseDocTypeDecl             (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseAttribute               (xmlParserCtxtPtr ctxt,
                                             xmlChar **value);
xmlChar*    xmlParseStartTag                (xmlParserCtxtPtr ctxt);
void        xmlParseEndTag                  (xmlParserCtxtPtr ctxt);
void        xmlParseCDSect                  (xmlParserCtxtPtr ctxt);
void        xmlParseContent                 (xmlParserCtxtPtr ctxt);
void        xmlParseElement                 (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseVersionNum              (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseVersionInfo             (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseEncName                 (xmlParserCtxtPtr ctxt);
xmlChar*    xmlParseEncodingDecl            (xmlParserCtxtPtr ctxt);
int         xmlParseSDDecl                  (xmlParserCtxtPtr ctxt);
void        xmlParseXMLDecl                 (xmlParserCtxtPtr ctxt);
void        xmlParseTextDecl                (xmlParserCtxtPtr ctxt);
void        xmlParseMisc                    (xmlParserCtxtPtr ctxt);
void        xmlParseExternalSubset          (xmlParserCtxtPtr ctxt,
                                             const xmlChar *ExternalID,
                                             const xmlChar *SystemID);
#define     XML_SUBSTITUTE_NONE
#define     XML_SUBSTITUTE_REF
#define     XML_SUBSTITUTE_PEREF
#define     XML_SUBSTITUTE_BOTH
xmlChar*    xmlDecodeEntities               (xmlParserCtxtPtr ctxt,
                                             int len,
                                             int what,
                                             xmlChar end,
                                             xmlChar end2,
                                             xmlChar end3);
xmlChar*    xmlStringDecodeEntities         (xmlParserCtxtPtr ctxt,
                                             const xmlChar *str,
                                             int what,
                                             xmlChar end,
                                             xmlChar end2,
                                             xmlChar end3);
int         nodePush                        (xmlParserCtxtPtr ctxt,
                                             xmlNodePtr value);
xmlNodePtr  nodePop                         (xmlParserCtxtPtr ctxt);
int         inputPush                       (xmlParserCtxtPtr ctxt,
                                             xmlParserInputPtr value);
xmlParserInputPtr inputPop                  (xmlParserCtxtPtr ctxt);
xmlChar*    namePop                         (xmlParserCtxtPtr ctxt);
int         namePush                        (xmlParserCtxtPtr ctxt,
                                             xmlChar *value);
int         xmlSkipBlankChars               (xmlParserCtxtPtr ctxt);
int         xmlStringCurrentChar            (xmlParserCtxtPtr ctxt,
                                             const xmlChar *cur,
                                             int *len);
void        xmlParserHandlePEReference      (xmlParserCtxtPtr ctxt);
void        xmlParserHandleReference        (xmlParserCtxtPtr ctxt);
int         xmlCheckLanguageID              (const xmlChar *lang);
int         xmlCurrentChar                  (xmlParserCtxtPtr ctxt,
                                             int *len);
int         xmlCopyCharMultiByte            (xmlChar *out,
                                             int val);
int         xmlCopyChar                     (int len,
                                             xmlChar *out,
                                             int val);
void        xmlNextChar                     (xmlParserCtxtPtr ctxt);
void        xmlParserInputShrink            (xmlParserInputPtr in);
void        htmlInitAutoClose               (void);
htmlParserCtxtPtr htmlCreateFileParserCtxt  (const char *filename,
                                             const char *encoding);
void        (*xmlEntityReferenceFunc)       (xmlEntityPtr ent,
                                             xmlNodePtr firstNode,
                                             xmlNodePtr lastNode);
void        xmlSetEntityReferenceFunc       (xmlEntityReferenceFunc func);

Description

Details

XML_MAX_NAMELEN

#define     XML_MAX_NAMELEN

Identifiers can be longer, but this will be more costly at runtime.


INPUT_CHUNK

#define     INPUT_CHUNK

The parser tries to always have that amount of input ready. One of the point is providing context when reporting errors.


IS_CHAR()

#define     IS_CHAR(c)

Macro to check the following production in the XML spec:

[2] Char ::= x9 | xA | xD | [x20-xD7FF] | [xE000-xFFFD] | [x10000-x10FFFF] any Unicode character, excluding the surrogate blocks, FFFE, and FFFF.

c : 


IS_BLANK()

#define     IS_BLANK(c)

Macro to check the following production in the XML spec:

[3] S ::= (x20 | x9 | xD | xA)+

c : 


IS_BASECHAR()

#define     IS_BASECHAR(c)

Macro to check the following production in the XML spec:

[85] BaseChar ::= ... long list see REC ...

c : 


IS_DIGIT()

#define     IS_DIGIT(c)

Macro to check the following production in the XML spec:

[88] Digit ::= ... long list see REC ...

c : 


IS_COMBINING()

#define     IS_COMBINING(c)

Macro to check the following production in the XML spec:

[87] CombiningChar ::= ... long list see REC ...

c : 


IS_EXTENDER()

#define     IS_EXTENDER(c)

Macro to check the following production in the XML spec:

[89] Extender ::= x00B7 | x02D0 | x02D1 | x0387 | x0640 | x0E46 | x0EC6 | x3005 | [x3031-x3035] | [x309D-x309E] | [x30FC-x30FE]

c : 


IS_IDEOGRAPHIC()

#define     IS_IDEOGRAPHIC(c)

Macro to check the following production in the XML spec:

[86] Ideographic ::= [x4E00-x9FA5] | x3007 | [x3021-x3029]

c : 


IS_LETTER()

#define     IS_LETTER(c)

Macro to check the following production in the XML spec:

[84] Letter ::= BaseChar | Ideographic

c : 


IS_PUBIDCHAR()

#define     IS_PUBIDCHAR(c)

Macro to check the following production in the XML spec:

[13] PubidChar ::= x20 | xD | xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]

c : 


SKIP_EOL()

#define     SKIP_EOL(p)

Skips the end of line chars.

p : 


MOVETO_ENDTAG()

#define     MOVETO_ENDTAG(p)

Skips to the next '>' char.

p : 


MOVETO_STARTTAG()

#define     MOVETO_STARTTAG(p)

Skips to the next '<' char.

p : 


xmlIsBaseChar ()

int         xmlIsBaseChar                   (int c);

Check whether the character is allowed by the production [85] BaseChar ::= ... long list see REC ...

VI is your friend ! :1,$ s/\[x\([0-9A-Z]*\)-x\([0-9A-Z]*\)\]/ (((c) >= 0x\1) \&\& ((c) <= 0x\2)) ||/ and :1,$ s/x\([0-9A-Z]*\)/ ((c) == 0x\1) ||/

c : 
Returns : 


xmlIsBlank ()

int         xmlIsBlank                      (int c);

Check whether the character is allowed by the production [3] S ::= (x20 | x9 | xD | xA)+ Also available as a macro IS_BLANK()

c : 
Returns : 


xmlIsPubidChar ()

int         xmlIsPubidChar                  (int c);

Check whether the character is allowed by the production [13] PubidChar ::= x20 | xD | xA | [a-zA-Z0-9] | [-'()+,./:=?;!*#@$_%]

c : 
Returns : 


xmlIsLetter ()

int         xmlIsLetter                     (int c);

Check whether the character is allowed by the production [84] Letter ::= BaseChar | Ideographic

c : 
Returns : 


xmlIsDigit ()

int         xmlIsDigit                      (int c);

Check whether the character is allowed by the production [88] Digit ::= ... long list see REC ...

c : 
Returns : 


xmlIsIdeographic ()

int         xmlIsIdeographic                (int c);

Check whether the character is allowed by the production [86] Ideographic ::= [x4E00-x9FA5] | x3007 | [x3021-x3029]

c : 
Returns : 


xmlIsExtender ()

int         xmlIsExtender                   (int c);

Check whether the character is allowed by the production [89] Extender ::= x00B7 | x02D0 | x02D1 | x0387 | x0640 | x0E46 | x0EC6 | x3005 | [x3031-x3035] | [x309D-x309E] | [x30FC-x30FE]

c : 
Returns : 


xmlIsCombining ()

int         xmlIsCombining                  (int c);

Check whether the character is allowed by the production [87] CombiningChar ::= ... long list see REC ...

c : 
Returns : 


xmlIsChar ()

int         xmlIsChar                       (int c);

Check whether the character is allowed by the production [2] Char ::= x9 | xA | xD | [x20-xD7FF] | [xE000-xFFFD] | [x10000-x10FFFF] any Unicode character, excluding the surrogate blocks, FFFE, and FFFF. Also available as a macro IS_CHAR()

c : 
Returns : 


xmlCreateFileParserCtxt ()

xmlParserCtxtPtr xmlCreateFileParserCtxt    (const char *filename);

Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

filename : 
Returns : 


xmlCreateMemoryParserCtxt ()

xmlParserCtxtPtr xmlCreateMemoryParserCtxt  (const char *buffer,
                                             int size);

Create a parser context for an XML in-memory document.

buffer : 
size : 
Returns : 


xmlNewParserCtxt ()

xmlParserCtxtPtr xmlNewParserCtxt           (void);

Allocate and initialize a new parser context.

Returns : 


xmlCreateEntityParserCtxt ()

xmlParserCtxtPtr xmlCreateEntityParserCtxt  (const xmlChar *URL,
                                             const xmlChar *ID,
                                             const xmlChar *base);

Create a parser context for an external entity Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

URL : 
ID : 
base : 
Returns : 


xmlSwitchEncoding ()

int         xmlSwitchEncoding               (xmlParserCtxtPtr ctxt,
                                             xmlCharEncoding enc);

change the input functions when discovering the character encoding of a given entity.

ctxt : 
enc : 
Returns : 


xmlSwitchToEncoding ()

int         xmlSwitchToEncoding             (xmlParserCtxtPtr ctxt,
                                             xmlCharEncodingHandlerPtr handler);

change the input functions when discovering the character encoding of a given entity.

ctxt : 
handler : 
Returns : 


xmlHandleEntity ()

void        xmlHandleEntity                 (xmlParserCtxtPtr ctxt,
                                             xmlEntityPtr entity);

Default handling of defined entities, when should we define a new input stream ? When do we just handle that as a set of chars ?

OBSOLETE: to be removed at some point.

ctxt : 
entity : 


xmlNewStringInputStream ()

xmlParserInputPtr xmlNewStringInputStream   (xmlParserCtxtPtr ctxt,
                                             const xmlChar *buffer);

Create a new input stream based on a memory buffer.

ctxt : 
buffer : 
Returns : 


xmlNewEntityInputStream ()

xmlParserInputPtr xmlNewEntityInputStream   (xmlParserCtxtPtr ctxt,
                                             xmlEntityPtr entity);

Create a new input stream based on an xmlEntityPtr

ctxt : 
entity : 
Returns : 


xmlPushInput ()

void        xmlPushInput                    (xmlParserCtxtPtr ctxt,
                                             xmlParserInputPtr input);

xmlPushInput: switch to a new input stream which is stacked on top of the previous one(s).

ctxt : 
input : 


xmlPopInput ()

xmlChar     xmlPopInput                     (xmlParserCtxtPtr ctxt);

xmlPopInput: the current input pointed by ctxt->input came to an end pop it and return the next char.

ctxt : 
Returns : 


xmlFreeInputStream ()

void        xmlFreeInputStream              (xmlParserInputPtr input);

Free up an input stream.

input : 


xmlNewInputFromFile ()

xmlParserInputPtr xmlNewInputFromFile       (xmlParserCtxtPtr ctxt,
                                             const char *filename);

Create a new input stream based on a file.

ctxt : 
filename : 
Returns : 


xmlNewInputStream ()

xmlParserInputPtr xmlNewInputStream         (xmlParserCtxtPtr ctxt);

Create a new input stream structure

fIjf6}VRu/)&=_rdv yݜ[Q:k&f'OaYA贓ts4mQ$I£g~8r l|>/HԓH`<"%vsbT8w#M4P%8r 1/C1^΄љFSC \ں̙9:쩸@jM7U`eh1Jcj$D?ˆ| Ԅ3IB))X -dFQHLڶ~dY${$R`,hD_M/ G]R }8Z :/ xBTFպbyؘ hJt.4 4R1[dojeWґ+ۣ !#]Mz6iEG9r&# qf('; Jm BS Xg X^l4r*N̕(Biyd4fl cWĿbJvL#)rqY fwmt]hcnTIG.Kg,,q"Ae1F.;j˩CAGVe4z}H ɔ zK{2mjE7oliT{$f5aP ʀ9\^izrr4A6 ) Jpr2c)y} 8=OJ2jA$m7zp͌;*b+bάNڭ^% iXFA nܥ iv*+{u/|ʉkFU~X?4KOV`z)m;y\=~ =7=pǰ?G7 Y. Sed ?G P#Ol&9>hQvܥS*Y> (dCkd BA\pٵc_%X>+|och?W$J^aG O(Ail#uX8k?HB̅iy/ 4a|LGV"^I}˩P=chPp7ЁNYh a ({CG^DT f,^ ^o9Qab6_n Fۘަ!_\zULFNt/U::PV kK^(R _H6/Y.rg`sbXp\djN0Bϓ o.OA@&6e{uXҼAGAMI~sVAQsk,8V\ẵ&[:Wx"Dَ[p aAUlh03DrZe1H Y*6Wg 7޿(nT|4*vAW&kȤ<ͪKL8k WɊ]uBunUf(X \yW珲1R8f-1` U}z9H챬Wz~@ahZ܁#NiY)iC#VCϱ*<Fhh_RXΗT6V5eJ u?ϙ/%0Kr+`Kفa: "&#a[#>;lqD'^y8poNWQD*>%9,.Ca7s[Qɕ/Ij<pho9@?±fW[mZQ6Щ qd,,{dۺ: 0[Z+k R}1e ޹/| My;HBTH,Ӿ>c~1{ZMv&YJQ~\-9,AԪqVvߵ <33&29n[ӺؾDžGSǶUw3$M (cչj?uV{Yu` X7+29]*զXԃ%WWv IctڦgB 1;|jK ,I_̗P@HRXpI4ސf9 V7gpd9m.])!B:%\--y+gZm +aj]L5pw&l3Zqg !*k|vL3tgƀ|h..tszBx# Qz: 4DݿJ g"=kL֗z?CE4Oͤ@'}+Q>MH8^Rf$sU`ڎ%g .[\SbykJ+Y0U%ԆO ᖉUQ)"b- ӿ JX3yH61м^3ȦB-lʬxU[4)E@E!%qNpO3 BP73(`iU#]z d{RB AQ 7,tS ?1;u0GW=4ěK1mL-22WN\~N+{6WoceC͛iGXq+NƒPս*`"DsyGZꍾ\r` y"!2_㈘`PU676J:;}k؅h!}vc{>zb F8hMoꋲM, b |y7qaZVE|2MN/{$DXV.]9A6?O~) 05@Z'^aqpEs|?{`Vo7pu9̇kqvoސGovda7&JH{8E=/~dQC{dp;Ϣ"JRV|2T3讜ջ4gFKt$gw:+ôwSƎ"y`1Ntj)W6ט'9Sj6lN|G}{21J`!'U*c+xr|ED-{Չ`\P/JUsf@܊z.G9`X i lM}Cѫ=IfEQ83xPk{G8ANl&ǢeQ `eоW,NJD!#I2% j'/kiL4>6V$^4$TZJWZw~kjĮHwMźw'Y,-2]`!?$m!+ݴ?>:y4gӯ/WF~6SŎiaa.Zaw 4/.xl™1rlو|uhMuNXg_ ΐ ] $;~Gx d ~ "i=E3z.E#Կ.ttk FfY\V%@?UQwg!}^m3-K+]#zDN􇱳8L"ŤU$Ђypˆ Yjh7‹~S~Rcwp:P08"ݸVzc$GegHe*R͸QՕ#:9I?Rw[2v7&hIJ-V l o\ݣu[0w=v$MM,_A,CK[7Ү7?h BU-)K5z9$O`G#/51Ezz3J~rۙ뼤c }`^UFZ\sqf'VR vʸy<+sK1;d>)W,6qtdk+q\-+kr:Ty+owQf SZ6+auޖ6'tgge/L#_,VC *b4n| fSZR-zdA_5:t*[  9IUf3V C{H%OJ}1sI09Li4NZkf[#uն}Ubuv۽Ea$cK ΙC焖16(ptGD8TO a^M)nOr/OXY{HDŽֲ9y$ #8"(u1zd}퀰/cD Sə{::pq *4@3J/S.: fLo5\90vFi2|Qs>:^k[[+8S"O[9I^uۑu2Wʼn)KZ/ =z?4F4#F τ^\Eˆf!Ʉ1Plm$]e{Aĥ#08fjlCŚlgSWai plZR)6 a 5^Pʘ)f ~|bf!9apMjյm YI/8#SE҂3L%`Wz26* s %GXi2QĔMj&v "q{Bn!ؽJdG.A.ał)Adsb"><8zo{Ni5VsA6>yYyƞKM(]QƚϢzPܢn$cK;ե G08T:dd':8o tC$/E[`28;v9n{1@)gtPwcqO4 cuzv)z7FM,?;cybD6xpZrip[Xwia(`}e}+}8K+ / RC+qC8VU 96{Ձnepw?qfGqmqH!RCUҪȘT| Fxl[V@D(cG_௣s{?EIyځ!XN}zZؑI}a Amt_]ڞkJ1:4 U|ldv$؃@@U`:rlGYDDRn¡ 4f\Ev YƯͰrB4|%ߊ#е鴃Qh`]],n<$,NP qw"VoL؅-܂Vbs^{_8Zf#t&NyPfU /6aocïhWy-&l5Y{ q]fAln$Wm=\qXb#Nfi$2 2ߣ 2 fT6>vemI)&8Yi.ʈ6 ;OmadOsng2[*K7DJ#FdH2~[[zwuG(l3S b`*5uDYo6ffLedYep`msn0v䂕IGqHqs#&__已#~-A'r)AW= "kEi5"a)LZ)>W˒A#/J8^D(+˭Ųtz/ːIc:$RgJYvj6a&@,ZV/Xmi'dFuS~@/{]=Yv sņf r~eeY68o7Թ2\LjU%,U+ 4[Hn4'k^$!i:aىux%&yV(w$XZ6GPARʛ3*{xL $]aEM$`uدT nN͎-g7VL)U?^/pybܧ DsB91 2bK~&s#ޘCY}3(FCD[&󌽴sDSLAkhY (IYy:do1whNx?KkBn`a6d9#C;x"(?i}+)ǣgk[ki /yJ.o]J y' ybDA)^Nd~Qx,ںׄlhYZƸj&M|_G>N? - m.w d_{S(0ʩ;Lє|a#S#$o|YRGh<9囦'lO ӫd\< ,6jG\LϔX^YCG#- ]Kf4o՛a.5=* DK{+8t>0hrŬ  %_H7k^& ϲ:ѝ.UQ6?o1$DGE> bϧZfNIhN#/r{e%mtСh3S 5}/ n}ּ0Q:tg|$Ôc+cLQ$ rGyh‘d 0A1D'DQ▔ult9ɵ75vHw#i? فYMI1h:F}Z4 63R; 6Tn?rukqJⰇp k[ i'].-@TP)Rv|n;C{F&@{/{U|- )e(,a,iUt-zSn\9+QB~RpM/㻙K?f!lpQ+ W a2<"K$p%׆”'YmL',)Jlzepߐd 5{WR$=J}tO"kWwL߮s07y0br-B Y#лIKȺ-7l;׆5L2B%&WtAT% \a%m{J1Eݻ;@a7:GPB?b2JtzKˁ9y'SlZ;մft+= O>%uF1 ++PQwgU3ԗ2Ԧ,  tDWY(z"|N=<ʝ~W9ĿptYYJML[]5ŷWJ2XyxU,>_Ң#lZ,)˱;|[mV y8("P$VmZ:>7rX+?FoB,ʋAY؇^{s:(%L!LHo]i.=I%봌^nK0= n͉8.s'G񠒁5ọ\ʆ[uSwm.4f<]; l2OVqY]0\ bqU`nM2;-s,={-`^&EWHzYTIC>Wܟ;BLt|ol|:RU4xx˘j@D I=ThJ݉qG_+k@kS=e0:㝸7ޗIksÓW7;T#'v!kyn^:f7/8V@ j̎ #c-ҵ{f`Pemk=\wmGEʆJBm2-8VT2.{3̤*QBZAKJ4P&W U`ݤE/哴oߟj7lWfZN߳`t/(vQJH-/Rm`Ri!@WpKWτ蘙Ɍ˙ Irqd%Rԓ}T#%C8P|NGEuiJ5P#| B:TDUl3(FΟ߮a]җ`.tBeB0l,[8~vC|>g3K&. l#'Dz;$ÿ`r;AK#oG0Ss!Di$G , }" O0*g\*c웩|!^XJI`UZa6g5+577H5wjm g `.9f 9"G݁6[9>,MN/<ﺻՍ2b 'E!&=JnZljH0dJtׂq&c;ss=| M0&g{i *nRD)9Lj=²w'J_wޝ t(M\Ǝ]Ɉϼ $Q_"A:Y?5P: b zmaڔQ~TN464/.p||E, hqP!$yOʬ@zu'u=U?$m+Z鼽ڥ'3_Ho'at9$b[L~.P&'臫Pin9J' wb.Qt|X-?HbWK <d%qـڇ!"g8TUԽbHnQig޻pdxY{E? 6;)4֚/.ݜ'__^OD'DektC #]9iË+#vqNTW"?/gn9?V{9+_Gz6Ǒ bV"oGX^\76gϝQ^ U ;Tln5+mGTpJ{~vU=rhLz:6:HKqe> $CMKb\xWFW:-q fe{C2 Ue#_/p?{-b&yLCAD<$bI,h*ZJL%MRcOL44Iţ)N!:9 [[#x<#5 ‚|ZtD9I$a6 vqv7%. tZ!ϥjqyЄ:N=]$1uUMdpZA) H1*HkrA{(e>5L0 recWeoF $f>rh~*YUIGW;gEapQyE`}*AyXpȧ9yV>uVЌ`IYRvV.@(4>92yZ|M𞌏9s:@ 0gU_/?^w\e4S4fPY'qJB/Qu XAs֏Y-g44:wcyqiZz@yLY<6?~Z涊,/.1q?؇sw?_vIao}dHNP0*A>"xR<.A0L%.= =m.<0z!hf,G/Pϴ%m `H{t֝J lhOgP9j?gm/д"IHݸL:.1)X|+]/HGCF MӺ6xRB}@Wvx5+qb33gF&ZJ +B5**ٓPTk^((L 3oeqw*s}ܕn[ &aW8w2c:zwvmz*N3[!NԷ@j"MJ Sϒ=H:.{~)~y)Cmt/^JRbkݏނ-ĖƼ^x\9dҥ^ZiΦ@2&¥$/YKN , :`iq]W]SCJ?4ˌzޠ3)BOHBK-<'(VaJmc#a7-FP]IQdw'.)DѧblY)G.Sbr=PG;`/1B?fp5BϮ.)JbUf⧂XM=\,A 17kbAa7Jun ~d4h&n@0 8u[S8q""=$:1M/suAKQ@BM go:Ŕ:6X ?8x>& 4qc3/ȒRy]h+I<ȉsqP,{sŮ>pbpR˺1. m~lʚCLksgc<'\ ᗍ^f=Xo+ᘩ۱ĶG 4k|y[GI #m *>Y|u"6jY}$wL?sW ?S%Zllä I *F;%~q"u S6(3r%yʰk%q0z?DjͳWٺDB! S44ui}Ȇ<+(aׅ >6}T[M,l/sg'5SVlKR܊ ܎y =M-6 )'rv4kV҄R2#VS,zOPRK#7ElkђUKON` I6WP0;pz]mYA [9Y:TL 'Qg5'.R3Xy[WKv\9"P<1iަ<Oذ" žųIgRʢ&=#LDE#@ v৴tmTl JtH@l&@|/7Z9IkmOYSh=->^eh¦/0~<貕pO (L6  y}{|.`*/ΘWu2ϳKA/L.!~tmBhF,]Q©^,-1 Fףa.%Nh_l!x%4F}lWS یߍSbH&hҏY !WCvWÏgO 0Ӥ8yFg{n[ס9ZY'a\NJ1i393?sIPdV.gE,N+SxѧU5'QW8xs݌u U2=L-py88R{] ']t !<>*Iorhfaֈa&zt"l^dZzg&^Ct[;JK\Zkn4%q;6}~oú;o[TB uv-0{3'o#ZaJQ "itmyUY^Ӭfؙ-~<%zRy=_VT1~X[9в妍U Q.?CAO_[yH)spk +ZVǘ^t8G3 4@IHq/ġ(qg/~އ8E#XD.7I{+e+-O vbٖe6Xbڸ󏠾&s fg P'$ui;vh%4zNwk(g|R֮g/J\ ,v's:u=O&'?ho78_Vxj3Ydf`ODn9@hmD44aDnrGW8'Qa9J2CwG.&N<8Wp-F<)[CLdߟԏTR(=SQ_?Q}r85A&"_XA ,_V.@Kٞ+~IzkE.ݱ6o訯F>3`U#vu'_t紉Cfv w-3(R]u7诀Ôm8ٓ:#rFý:n-ώV, ?1}|wΰ8J7c7qGÔQ w^f8Q8n )MٸœA͆0ܗ敤>^OC0v,= iΘ~Mr0pG |&$}eBs)IHϻ\)]zb|}p[-e| %K/j%*ZfZ A;@#{@_g7=#+mj+H+^qJl_UlP{eø) ף/\Y'6@&Ϥlj(E݄X~Zs}VzfޏdXaؖ$ޑ)b $7'Aܫdc:t4=}ӼFYan=S>}H͝ V.14 ^ؾmGp0m&9Hd;4qSTDʤ5\MEFb`<de=Pl²rG(Q%#N{ml7ae^ nX2Ln+ZK0157$RhPi\yܯOiuKLl穔DM5ߚ{^Rm_%|0f6>"e,>Ĩe@# Eb.W}cKS,q½N,0Dvln-40|emMF#j )툥Jk+kJ$v= ]nL]VێcydxY> w3BR6 rbcT'70< HW~1IJa[HVDnʈY*裼'zSbLc y3| ޟQT%N|;#2ҧݦnzݥR 2(ؑ(rn NV>A2-F2 l</9BHoH>:V}q<w-wFeXS\9s M>zltC> hS˄$X1a (;˄֤I`6{RokK8 ž9ïD>AWTPmpXԿheQr#Y{y#^$RN̿4IaaY#6x/l V;Cz: ٰ6^"?15df6V,.jen2A8uCR(!4"oWu8x@ ФP* .:QQԩWm v׏\f,XI9B]l3wC>GU6/n>֎Kppj(TrkЄ2o`+RI~SWttX!3܊?wVfl,!qNJ #∪2ɞԴ_45EHgZZ6q@ py!}C9e^8*@Wo ]ɽ{o%̚E֔1ʍ Ic]dqAGWa8>~! u()2l>!ˑ⣥_{D:N2$b?:_JG&Cňi=}.l< ?kQd@߷`qNlkÊ|~9qÝʖ1zU8sIz%Be $2zxBdY2 Ö3=ɔXߖ,DQ1ُGYљy_wZt$*7Y3J;k#?綠mq$XrM|cw6o}\Sd|X1sIW?~|Nݠ]5J56Va<?<~ 6zǙUmU|Bf.d k߼pZ`^z}}{>JfIVzت{7)& Xַ~tFHhVg쬗}SggAP# S7p^ e++zM'oSjAՊ-ŧf E`fMn”[!5K±)-KމeNI*G^ig<`9ff\`&'j`[ʄ0Ԋf3w$.:YAkb+ΫU؟GNGKGP㋁bϟ23G%zaO ],+  U*påuXXgvNnngpw:TA~Eƕϊ2UPrUP7 3V= .{û WDUR]'۰15H;z=e[hǜ+"U5K@ai˝xخC %jұk^|dU>A4 )5M*sBzŻ/e.ͳ"3NʵRx, .1?r0TR]y@CEQ;~ )ϑ;<~ kACmpeςB5 NT&|8L? 43,QaB(n/c$٦$ˋJ w +/ znUvDpϺ1@)@ff&(DaE*spJHzMd}(/vl@6Ntn+(l+/'(J(h,Uj}(${˧d  BoVӺ?D4(bQ>'h=q8vUx_۽*%Aۦ z` UXl7 ׀X kwI9QY&G&Y6`V*LBj<ı{ݹPK1{wi#CRdA墧o8^_.}F:>l(`F~@/0nBiż©5c] b=+2t̗+Umvq;x4|먺t峹.Nsξ:=bGc|KΤ?5(3W?ըXT%J4洏ʵTu"hn36BoqB/@޶[)hVVPbm2"H ,C= DF'.Y ƬU)/Nf tCIB#o#ҖB#\BvlM5P\{8>A&_a;HqQ|u׏]D+8-,^f6Q@`'&`5{t%UzOຎ9毛^-H@ ':L\Fݏ!l /^>g[>ClM3}"?}#*#X64H6^>T"/C"/HH$vc8^AҸ89fWB}L?ۭ uMedGɀ;*JPmK &ZЩ`[5 ڜ;nPІq>19=2EXk-X LOe/WrhmFU,u~JBAX<$wكcddr}n7oB@gh5[x^레V(@!i^cJGͲ@ ~'D89~:.4Lt[՚- nvWa'x!) եK]GɞTai77T2@tؕƂ#ƤirQ4oPWZA) "NX7I@WY;Pǎ\̘r{Z`\v,ߘ, 5&;* gx ]H䡚0ڸ` 47F2L(3[oOwW01 WQޜuӍwv@<`ANՕ=ih46Fr)'t#娾uggH]Ʉew$Ղ0iN0zkBgY=m`J%eAּ.uC2x\o |qVJ_t}X#P/]<ƓڸDlTtv<@vx7lsotן"Ն(.&ꏦw]C/&;&zHef$̽ZXW 4=E|)bIRHbgeV- l ZUUF`}7Ͳ&4320%"O"H]#57 p)Q'hzVx^YzWwETqKL2"T޵y8dvrf+'}f$ytǐv{ha@!FƠHH!t!H3GJUA-SްR|rHWAB,;*]^6Ũ7&D;sbܤ4/ _LUi)W\*72ۑ6Sd\uS{gmZV.Bw!# Mʑt+y X]Op5 a@כӠ "o2f9Él>3FT$\\zg%v}5vu/$/Kr@Rcw-yL Z>ēmIknPm[A[f>>ĊSrبN֩azp«~7_ءeiCIa@Q Z篙ny7l4>l ?*a+9Cu[|b-udnB&ģܩ!%qY薕27%2 c,{te%ae`L66F93G* yM$\sђ-* H4C?:.]Q 5Vd;ZQ,a'?'T$K>˾7QrML] u!r$f'h KhYk]c1pUt? Q/FgŨLMn9/΃dr(K~'"p摸_7QBk̈d1y9XObV5SqVpq>t܍['.(Ai ԵMAYu'O?L~{EGׇ1da:):8fQ;y}Lr,LR=DJiaʔu7tdCƒyYf.eXvfjzUjشiA&$hGHk0npOfb|}&$&o/ ~"vtD$&`pG@vZ`nGЏ%eȴjtַݖN7/C!zz/dE' u:@w#_FV 'Rp0x`n\[-%ġg<݆E6JlџpHDF}>qU娥"5!- {x[%Q>[c|rv%0(pI[4JW|?\㫇.0 C !w%|”RDf1Ec=NFW,7Ёm2M2T@S"9N:/΄>i?̍EhP,\P 2HgYtL9䡆-X]t'm5,Q#Ix6}VEQ@E ks\8';yO|;~21#%/&( ڣ Xjݒ>Rlz{UH@[&ku =G%T̰7SJ.2Lm m@ɉ2Ξ%>Ը{%\0 : !n6=d&n-aٴ5wQE ٧Ɉ'UߪK"zGc꽰3 ,(3;{rG&w4TMVTX3Rf)c{/ <:am;%Yvt;@Q ׍cer$+ t2e{[TNng.~~Nn,a?ɒ<)Z4ˣr0\ &]^ޔAp.ƅ,o>AIm^J?:NsGJx'_~%>ٌ  [$uqSb;"9uRosi^rl6`,> +D:)DE)wq2g^7was5Hw*lxk 9~9;l>pPnDj͐ǸB&3**7N* p^/U vr}[%nƜ_w*"::A]҄/6[Fj#BC%!)fK@MC(~4'Ͽиo^F^Y$7X]®> psC%7k>.q RԒ=8"풖PFݪR&b H(783a+]3ljڙӵ6Wc9M֡ ~L~)KNؕ9Thi7 +?S蟠n[i O&8wGzw5D_^j"=nFo:r7vq 1y281@u-#򀈚]ŲX( vcI@fJVVD6)̴P;g d ZAVĨFYd!"aT$8aiN.SZ1.A>u,jğ$\-(g],E:a@b]I\ؐIH*m1-!2ca_Ϧ(0B(f:0OPU}VM\*4Pe Wh82ՊIqoN]hn>U[n;cC%_ nvAPW"< U`<8Ϧ;ɢb #CF.u,PdzYWsѴ/B4ky9{f'!sVK}A',\Ejj[j!ͩi&411q+f˓SDAi9*D ʫ87h=Up"K!?ڴ 4zL8_͹ R8>K.\9_rc`}|_g/e* a2KK2B_MTp΅Ѿ5&g7bA/7]^ |4o[u?;Gt$Nk~GK'V@Z>7Z6#7Z:r =ܝx,,82DB1wHYU<,j5W>8#6e]G6^@+T%tl9{T{W$UXa*RepŕL A OإI$"I)H]ҐlI7oQ*ַvԒ+uI0Nf*`;em8{8jVg#z5h>sWF N 7^ΊQ`د En,W:u++,5r\TY7c ?;H;fEqSou(Ʈf"i")20a`78o͢HGf3iz~bĔ1+r<oYv٧B=G #Arbд«UY#mW㥻كI, IR2[o*b3BWYa`QCcۡ"{"l .h}i!kX{ ۔.OS3Kg1yG;ۭ%&Oح>#fՐOT h@@86Miz7\~,Cq3~ꓨ (3N=Iŏ̒tqZ\*VMU◰r"W rMCWV|@Nb>&D_ >{gx.?ZU: uCWD`q;o#=tpMD՚,,}gj _mmD(y O`3=9euwYxױs@F[BNJHCK"9CUew+0RZX{o5}bqHh]Lj@fiЕ 5EX~KF'}% .kIh@?70sDN8-6AjezI҆r5rcZ,t2^0tzʚ%nslel#dOhu hLߧ _t?m5ވe)~ڋ+J]c (c7[ΓB}塎QcK82D;l*: Kes3 <;-m^BBJԨR;sّF ULJ7˭c|,a]#fQȲ ~\$YСӊsZBp{?9 LeJˌA'D)+LUWOK|Qz|e tp(ZGl}T[9Obx[VnT6 r7ʀ~KxjY}뤁9Qd >Xg$1U Ii9O[} ec~'m˔1ޞ{ydugFx3.ꢊ 0m6/^V~xqjppAP ^c"ZHW^9؃--BQnCK-?0>=ex/,UnN10E$+"|WM'=ڗC~B6n=\@{j!rx+Cc#=}fRO/ki"OZ%oBfKdZ?%zLWޭq;OpUѝ_#doIiNԪ H/Rr %4aOœ g!4mp7" ǛiVY Znfڷ> 'WoI25nFΥv!O_wP|6{, 88`W؁U|/Z~7\nS5o^0.&L|"R§m}FDAM֭*byNU=V|űLֈK(L/㴀'[G%^̉4}BFG+C!FMG>V"-*8I-s6E\IjL(+KYJfvxX&fA^ص<}]^uU@> 7#׮δ,T`Mt-jki ޑ;ζV\Zw'˜-cq&LWz1SV!ILL{aQ_drb8L։;0f[~žz@[e);oD3*TnaX嫂Cцw[Ht!lc7q -51(l7=0֊+)4eKiF6Йc(?`2noO<gI9/5uR>{ٸ7Ur]ߑs1ޛ$S'yk5$aN'#ΣZVfcAi f%HF&,QCwLQ xO-i4xgG t%!mN&˕\rʹ­ne:{x_yarV~Y5*p)  ÃS5e#zM(~X?үNbJ~>q۹tA}Grz+n.Rn+yMZR.J9]E~eĆM5*w0%4rzOhgm턍oiDۨ]l 77Yg۾̓q.W5%kf})1l5߮[s`)Q}_Q˜B-_m`PFQgQ5%9XG >L?5Mpv%-WP-F9טǟ4D&yлhz{}3Heb m]]k]:#wu癞9aOŠM̧>XPe̤ `O5:B9c_yMeT{Qa[Z/\(LVO]Z!  o(̕#[YWF:-& kyΖĀR9*xR+`)'Q(="xHQ{u!O\?T<]R\U%zF!_u}>NTMAs x^m3 fL,wٽ.NψcFR9*) *>r6V?wz˰/.%%4M&NZ" ]IVӅ_zL f==1~;-Q*9&^@b*-0+l<\P$ Bru$,oY4Vxpa`yUPB,yDXXLv]m3 3;Ʒ'%AMkXlb7C+/ 4{7PՎxd7esp5D* auM:^,3+! bpdKl5O" ɳ,A=.6;V0vW0ؙX`kȡ\;e)du"˦-֊aܴ;Z[GvfdH´3z frnjWM %-_Wf;5B WsMɖBHOBy/:{vňgS*1iqD+{RNC|ɚQom)ץlܼ{ 7EY_RN$GRŤz,Sf{ ^rGܐ$q2zj);sɻgI#и6I쾭(c#6 ۷'s}k6c OJ:e\EQ~R/>s:#o@5pxUˑWu2 aOK+яֳ晎FBpt_-OT+ʛG]U-UvYkd€@t)N\5<:/jU\&$&" s^-=L]+@-ZzcgiCI_Bӑ(POQ6wG]r}2K4gUv/YK0tg~Rf_%o;_v?%N^3{ 7ٜZ;> FG=kQDsva<0aO\s"LTyލki]wϒXsPL`sd 5D< 3<܈M^ptOBd[ 5h8pg.M4vȥX0*߃{%1 A(>fKY8NLtlĐFVZDDUFVS7ۉrZw塚<)Kdۛ{"0˯Q[2) "Co" F6Njo 7T8Y"2V@ ͆e[g -@5q}|r3R?fWKFDŽ 5*bu-l=􇒞= Xmݹ$&6l(3x݆oT5yaqc`bydp3@qŵS+AD c-c@.& ZS S!{|`^MGLUT]m\sItDwޑ2)~&=#!mߵ bx0p;/֝́ U:z eĐ(è"{ڐ1.CF5+ޜE'hǹHMީŅ/1ڴEֈ`B\|N|@U02ɱbO?7!٠hxn=8rvy)r6fw |UĔ/ zt]}xf -P~9 '\hz ;F85C@ѻPc{aME{@)j]g6W3*pxN߉=TgYO*݃lM&+{7̖c䔏>T 8fn`zzjQH(SGq9B}-BH@v|墲ũٜa#?Ey5/a0>B)=TƧWc"M̨IlRĠ ͮ,!x yYs/^uh^-L;[mRDȔWp@,2ߏf aK\ͫ虘RQ]ʃd2BfŝOYqn ͖_ϻU`^::-dTamLfZ| M6aV sxM/k+P øY@cwÁUkܗfnXFMrbWRyn)ގz=pֻэ=|^ ~h42P|dHʡ10[7{7goaʉwqƀ!DwFmO&~;wA1cφmR<;zntlWfEs%$r7L>yGMAN< s=X0ysP4"#6T6@RݼŸvi80`$v}ކi| <#}N!cg'>xݓٻ$jKF:5gg'̨? Іx mg vy9_7,wYE-WknqU?M ⻢Sy8 /} &-r:TU=^G2iwvU~۱ٍ%`ZHe}"-E+2͌C&Wm( jJvR*}CR8 z%TCbl^1gfS@\DMEsjw6]zvE.9-ٍgsuþpY 4|sG4y:lGJO.54xr3k )W$8y1b ]~3T0sZ<Cɽ*px~QCֻF| c!\-iP#)$X .2 ~ջ W#E#z Rr<`$ڑGZXCA0HSѽly!FM&x /,r%!D'}Npu)RI"MψW^3{\W(zEBHmZ7*Lx9Esd'4Yh ^1õ[bxacifr~BIEghkMWZxLĚ n|[*FuxL6 H4 ki9¥0VLOwn`#zTJNtkH8 +J" s@PuA" C~.8b 4,38f܅v79A/wRULP>tu`R ֈ$ڤ2KޘK=;r"Z'GIϛG;@iD.3P/ 23""};z0e6.I (D\t:`nX>{tES.fk˚v2%ZtFȜ"~oR80#D6IQuIZ#M:Beeh0^h05{AصĵH R3Aj7';s= M5p?_gܫgeNZ+yf}knLӫV,;Ns6eK9TJ.AK{S׆~v ؄[Qdݴ@E;Lb ѭ+6 =>T?!a0su=s^(g Pj"T[#xbg@6 Sس1>Zm@SS Zk}7QhN&&;?X U0{澚U5(DN Q5[1$x|8få*̸Ɠ NI̹3 ^Tu(<6XC@DžÐp6?ĂxmG͇-ӫ~| -ٳ ݱ/{7y,B] 4 zbQD,%<:]s_Y7 s?E;f{el H;AM,te-QYC?ٌ`dAJC4W]:IR;؉47eqAL" ǔ_PUwr]]rw&O+\]yVܟT@E̔+w$ >}9EaQNk,W54Nv'н=B+= 3nqzY.5-ct-O(8,-v)96.TlXݼ \.P㜀s84=yڹ ?mw1mDCu2$$vm$ǜcEcu Ybd}wK$5_= M!iJi6DvBeǽmc{^>~/HyawzG [WR"b*Qpx/?U}S^ҚLO 쉃Y~lwjde \SYOv[Pܜ6 ::H fEHQi_%JX`Ngyou3O-x }i%7H9+OR1:6:Y&} pLS"MFR==e8Fda+QۢVDc TGt:7F-s>x"=HkU10 [z _҈z!-ny[,K'c&_/+}tBȼ@O¼fP_}{cJZWh!ñcRXoSv*4DJtwTgyO(&Ѳòl1M_P%R%L(y&>5Eeɘ.*)ÁdW˕z@􀎳y@?.{ڬTXQ*xi i}xB/1ZΞٞ '-G2UMQQEH1/*S>K,Fl"C~GO ##Bf|#Gl n}kP;ǣ._<;-qZ4ï5ڬ+HCoAq@1_PSnLA1 9;JNM`FpUtvE"\~ ~*{e_)revj63ql&bTqQ]O].wdM(Ed UɈh9+ahRPz+MO3iE%*f0ad FAp&; J1b(o9 7c P;4^*=KP QH#8Nv&cֶ&YE':;}"gCx ,o5/ t߮eX4ZqJc" e$s"du2s+,* xXS'_4Y ^a5/S&Jٻ cw>:omkb7ش-p v\܁Q8O?1EӶ*4sZ{9{t!*}Q,9ѭ5r ?XiS{ o6փ" 50Sn5<`m;ߩڒK%/Ms&ϫտ ns&T_$IFv4TXA~z724EPOXMK<-Ll.C5Xj2Xu|n1$w&ɕgfY?h[$@nsDGPYGG&jƝ]\.#CU =Z㽉bV7?a-%X01)5Q2ٽw[@ |43ݩTޯg]KGڎֱoxb .BC@,8 h` A?ߒNKZ5@en?R5Ŵbv@뙵 1P+%|88dy0A 6<Ճ?SߐÀ 3h\BN6lp I8ng 5#U?ټH\a 6aAW;4q,֢fI3ky &~FJ`rq`:pԄ :O}iLnwk$Fر?<:[BKxLq;]i~e9\@tv~4 }>Os?Lt Ѿ3uN,=2 = Tp@O]G EBJfw r djnK\^RtHfW #g^ Mj?wS#@Qt=mHtgDiWW' ٰ]Oh)VM7!H$^sRKW[t38ڜ#7ս6~pE;6 yÕ-c\l F)6ƳĊqr+YHJi-).uliH M*U>|֠qz?lu5۪5D.(e<CUfdݢѵ/L^m ,uckԘG WKvj\WڴRFcc v{UI0Co6V'3fL9IbFlI![\u.k TVOھ ijk7 LLe/>ӣ! |m?9=n /޷MQ;a| 03]jY ٣0>?Wpc&[29yrR7%xYdAi`|p$w9rB̘UeOFm%Y!.\Pd.P pQN{RqQJ k V#y{`'SI3@ rKscuLP~ELW9L!I&کk^#J8鈆f͚U*+4`@(֬"Dhф|\@!}2GQoWFW-.%}7sRҽv|",Ħ UVN '|vho dߪՕf"%4fjvA >j9j/%CN(VZy,(ؼ:1<jDu}2YTOpb\tu{BVJnFNI>.A6Z\Y`D|GHPۅtsx< ArPުy$AH'<7%+5 x.ӈY<=;uzNXSh*|Նw3.pO/cFX43 ^}`V\Eyo,_ZI-fkq|VW >(kMl$™2eĵt-s/`=Kx"![ X[A;oYdpKZb)S/ YIhR&&i % j.AUYI}PtWC~J/ca`Rާ=ȅˁ߬p 2Bs)̸Sp2|/my./H3ƣh`hM.U9^?T=ZX#˳Y#uzgBLUEtTh[ajpRF:w<ɔ]dHý+c>1}$${:cDBp%vI+ :H:I&:7 \$Mn zY=٢Yx7 ^8%(R+b@gêww!|asmY =d|!hC?)n5U:䌀G}W͠rE+ D) h i;8ur4|_,?&zZ{vW'#J5h4&̓KE|+S= חh@MTzAvݶ_Z9!QkK6ayl)gs)¯1DT?ҔS̻Ѫ+ Z 5jG[7G:KCKB4S{߀8ku1p= p[)/Sxĵn(u9ˊxb{2ArӶ+濽y&4g]x5thU;c>akAûP)cUۦK{|mom"UdF=$b[p#85I[ٻ*+VBMoZ f҆= C!˥*!CШB[4.u>Rg[V„ ˫ܭ"!AUȪԧώOԊiHL<u/w-O)o:xw񮜍(Q'-Y{[HJX@64g^. EYSU%?cU y9.A+1}z 0dɱ {>HM :KG}0;6C҇pM~3:p=T8F>D@b;Qkwyq`b7AH1= %K*s3~:5Ar3B@A^'Q=?rK{x92Z>'nyoT/f'VWutmzY$`-:]}ٕ{08<=ar9>I#wAgrAdԱ2/s4&-m~_puHp )U:joI%fzffޝГId/%؝+*sx BؽPwX"`f+~2J,6zRr``/$ӄaY3ALȩ97O[%$ԌR*0?/f3c ?U}d6"o6Pn`0x cV _uljߙPŌF^a_8p` XjfH0d 7>Nms v7L"tcr($VGw>F+%9rI [Sޯ[?%Y8GrqƙV3}dv6K'؊"'ߎ-<9eO;VO]N!,bKH&)NUb#ݢKtTle1R ɧay£|1idV yUs8B[.Rc',$ăL|>)1Z^L(;iɷ[>֡IAK/ԷΤ 1?P%S:Rz4 zUR 9yr%"CXrIOedTxDr|Pt%ܶr"E_703dlivZtaX3"2uǴH%fr̮^Dm#߸67QVWַm_ 3 c7D@,6G3DR+"`0heh:Zv;fj#JU5Si~N`856A"{\Dyn2G#BTE) #,\o-K}y p/k>o`ax.rT8Aj8ecg9t=Ӟ]*XjtZUAr gMBW0(w٩Cκǁ?"Qvy?'8k's̈́|'uc'jo)Zrl9KQ#vǹ a|nJNU D l X:i `Ìnk@X!V @ƏVR\@71V|~;vmWD4^?~d밙orKxuNbaA1' > _j/Ah?e \J*"!Ӌ'-6>? o͠lȸ?ʸf(/yۣ?h4c^\ =fA+U&-u%;EP{旲ڶ>,j'v˪7!ySV8)6(rk?/b {R7S .OBڋ&+|2WbX(]r'JH>s CWR2Go6L,ޙ,aV_F eGzD?5J[TѿٌŅ@~>K @껤帡FP"0%{t(AQzN/`[:n"&JD [:8ť->_׌ ͟+}De[ s9E[>76m.nܑSEZ@=g Ue~bF\"K%V2$]"ۜfrc>35,Na&LQs8ޣj7P*W?{q2gҢCxw3]sHaA Cih+r[`O]@`^;O׻4+ V<³tm4!# N wX=ْg^P4_ 9vA$L÷7RoGltk wcG&YOC\ YuymQX{P*^3hp1e1(s*v\N䭔%rxb=VS=z7s[\R7}z.K`".D)k%VCߔ/AM{ۨ7Y_<>PQ O}*lBMS' A| Vt91)nV5'QEbX`KEny2و~4I-b%Ѓp!2" >A]Vt7Z>$ Xs&gDPDSN wkJOm:lxuF)a6;ꛎܿg!#~6BZֈq?Co eиz,6C)6ܮuf p(8*C8-;IU{mj5† y'67eS>8mq9L5US]W5E7T@rsU擫.ze}\ Ng,yycJ@9Ó& ` ӑ5%"S(فnx[ sj&JC)CiG B,t,V>?5=-a8$I̺sU`dEf6&/$j WmFw\P* ӞDH)U\~2 u` X{8.m;L9], 6L\Ƒ./Hh]'4l${MJNb*E#m;dhd'-9F@IhVQQoc}07U3C|;&؉ ) it K}PAh\F;ʫ A}Zl>&`;kQr%[UzcU Eqqx$5;e&z\ {:QmpBỲX([}BkI]"E;Πs:V VюRMȷMrosƥ`͐mYMcr/$1p"NJ (xUحfe^IR"e}n#`itaر_C09ISk]hv|i꩘o/dAxI %x9WȀX@)Z)i7,'BC:Zlςr@H)`)5+uN8NnBpoƌ;1U,DyG!uιň7h:*oJƱ-!{59, BLUE[ajBz"iViOn.N~pxOh4b?5K" >HXΩ^|Ҷ/t7+װZԝ%+F(ypB&MR9wnxSC68XwA#cA*ÿ^2(G;!JQX7Duq U5[ެA1h *f1)VAd5|H؃b*1UQiuPBU0imZteϷ C@&**d {i +Uj4wUfhg@tˎxcN)jzhG<ǶO[sibkuf`c5>yqndW;SJOs)fء&4)Gw1k#0d;]ٕ/8 V!a/Ly\Olv, -]H޴ޡ v6w_2x>x"&)u?=[/24pm RqFlqMfiPśZ,)6:Y4+Sqd(چ8"\޹gRl,ESIl,ySU|A<0T.'u JxѼ:2FSʬ&ӡ6-"~JM|*w ug1 QWe=E2犜W\Qy"r(76'|*p-ۣnLmK9*ՖS癙e}Tȧ:x,4B"<$#wiQC~gWgOAvDž>4v%91ؗЋ<ڠ 55]mLcTy AT-d<ԔXFq_ $.ϡT1;O6K&IDi!|wOؓK$J5JCx3~M"Ԗ!ȳ J}lCFNsNJᏳZ⬸%rURKz+a}c+Օc삢fM /]!.@83!{0%A“~G a7%@ŷPJ@>foy 餙V* FQ V,_5}tZ 8MӖV}Jq1ڢ/5Gެ|bK#:wur:|wyQ`kVdw׸k=>}6(%+ a ]SceTQa<" l?ĵDrA y"!6{_uwgFW f3xjY <"LMt'[ < 1:fnY9 eT/ݨ?߿`:[nTØA/OW>Z #L,b.'9@w'5(Suoq5&V=`YJ%*R~{H a;T!U^nh20tlQѻ5Z; X쒐CA8a0M=3X3J'z_TLc,Yxqepnnl(5 d_/fʜ nZHٳ2@KN墊Fwm29: F~|]| qFw,*w;686&dɂt/, D;GP<]3æ4FŸ^̮\-8lvjJ=>G_\8!д~t &Q>5KeV%"u :2 rHIIiWy0QYq\ YVVa5F361R~8* =_HtweoR\'5e=I twS'kx#/qmj^* ABܛ %:fݥH_ShCMV,Y,՝V'趇 _lϯy@уX"z(O~P7FMkQVgHySpo+Pz8UQV2p^ourb'[֘Xҧۥ,λ$#|"(+CjD?Hpalez#9'C#xR i#SLxxF6ǟ$,iKIjmH{6kHZG5jUFr5:3xUj"z7:$eh8,!9E$jayO',uӾS5@% F0XO˓wNW:>JRNJ-!*.$>gZ1@~.Lg(_ݳ6\LW>P(8/~BKLųאqVIM~qIۼ7>[Ji֒\s=8Y &EtiW֬nitwuQE^dV$ۀ4ט_"5 P~aV/r_/baB؈)9N^ceѯ/t#Txyy*,Gkb_< ·3!6Seޯx~75Uz }TY2sI7棲H@Qa0M̥*->@C](*FTFpbGfvux&5hi@oXV+f:lL]ZqġCwPem/tZG GJwYhZQfKJ*K5˨bVMoH]L4pm%%֑{[dV[R#ٰ 8b#e|2GٗHdy~rIe4ʼn)<俍lk9CIH%QРT) X!ds) eGnI$ xՠ .PN@KSeEQU,%!/ "cDDL~zB \χ[Ei7+3,V*[2Z &m:(q,*L=! 9~=^ozu> 8EXH"?K ̢ A#׳&7^@ېs$l.Cv$cku\^?U@բbI^G$BgL:gQʌmp]Mn7Q0}S?hpeG$VT'XK/ 'GYp LdHPd:`Sr6#o!GǑ #n#܈+!{W(0r ho:J$ mFw}&lWiyfǟ`0+Dsftn.MQ5vd3DJV;):cQE/P _ %=M[).ޯpη2HR?KJ 4pPOd ݲWx]qP u\,`azz3]'cȭ Q9.s~8;xˤgy2+09yDWH9Puko0m$6|BMeŢ"8ug-|[g rO=:k) !ffY3.W@L?Q]Js/N2:ܯ>{dEr7~yB*Öv>k\?Go ԰ֈP R_*h 4 0Ops7pZPNLڶ5@s[b-R\_R">rEsxPȨ'@0֌R=2ѷ<27Y㚊Ɓ/X+x ~1-;40^T[c̒*pNy'XlLc@Rv; ,#'X 5 8pPx#ڥb7FL2A{P-놽㖗Hw_>ij&9VyPOGC_]hQAuNTL8DjXmq8 )ǍT =$\~JZKB-Ownk W<:o"TQ̻H[j^"Oc%|:j V)HpǠ1Kλ Hxc^ `O@rdPFnnnjKwa_q5 |^:Cnň:Be+ gA[+OыE?4rj4WsefEY]2#~ٮa KJŇkr^O%M{J (|> Ten~ȭ6eYYD^+)M] wѐ lC$Dr163_i0>q7cNN'I{|׫֭'IY( m^g_Ygēh#;zFܘr|2]j= Ϙ.F # _{i16}?^:$4%Zd%#tӹM{j;'p'Cbn~)>)CaTn3TJxl/- 9;VX#;Z5M, 8wIS 6&+zxJZ'|AU3@auXϢ۸퐝4\Fyd$B?F#kVvyPWLMK^ $q6!{f(0jڍ8`}ѓ!.:1yZj3=c5 [Ib2\8 /{1SAõC٣bdV0Kw\rBQ;`j{D oL9 L8pWbKR)[eua_Ss'iKc`]-ʱ*"B̉y& %#WYPչ6dϗS|V:A T~ÍmA7F#\ F7 e[9Fٱ}J) &eZ*7Ŝ"-J^ݝuKd`get1 6z ,˰Kc1J`Ƌ9Ԁ<*5@ozVĺ7ǐd1 Dv7 n # ݒgaj{U:mC@pՖ+= g d3}` y)*35oPs}т%Ӊ+;(^,i>ܔ%(KM% `cgKjBDאepzش<|HH֘@l`~H:69$Y53{V SoȔQ EK}#ѿj;-Y<:5<<:q:b!_N -`le5Tjt!F.3ir{Hr]`SwrlBxpqh>QLHb'N1D<[:_)-d@$Yeluˊm! Pl5WS峵RJRůD$b%CVn*erW<wT܅r*pi,jW0 7H, h"F`8/ɫt&M#߈O!QSԵj'_CwQw?;ja&bګkbK|v HT`S89w-KGXy 75l=[v5Vڳ2ug3 l1tyms)/`m!tЊ#>mcbe©vJI /3GLshL^Hډ'bC_wǬ%p TU>#ʏ-q)tq@ƺ nXD&,Q؈ŵu%/GCyo]_0䲸.KDZG#ޮLJ1@`lDž¶yĉ>;,ldU;(Yh>7Pv[=k| 06w@4/ ulQ=| Q~l]*xP"7^>-f%<. YA"v?JݳVnwxxi`;v8OE?Xz]ſbz34I0ۑh$Q[^N9~Y>jft[0d$2m 8q u(sndMd76o+qބl8pt)$F("Q@WEoG;a%sl8W6O'dSm4BhRȃf̵˅m=2%FyUB/$W*U;:xD 9m@jސy~kK<<>pMat=)t&Gg>n*4Mb݉eiLI7zw̌R`̡1\@zuyT2int xmlParseSDDecl (xmlParserCtxtPtr ctxt);

parse the XML standalone declaration

[32] SDDecl ::= S 'standalone' Eq (("'" ('yes' | 'no') "'") | ('"' ('yes' | 'no')'"'))

[ VC: Standalone Document Declaration ] TODO The standalone document declaration must have the value "no" if any external markup declarations contain declarations of: - attributes with default values, if elements to which these attributes apply appear in the document without specifications of values for these attributes, or - entities (other than amp, lt, gt, apos, quot), if references to those entities appear in the document, or - attributes with values subject to normalization, where the attribute appears in the document with a value which will change as a result of normalization, or - element types with element content, if white space occurs directly within any instance of those types.

ctxt : 
Returns : 


xmlParseXMLDecl ()

void        xmlParseXMLDecl                 (xmlParserCtxtPtr ctxt);

parse an XML declaration header

[23] XMLDecl ::= '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>'

ctxt : 


xmlParseTextDecl ()

void        xmlParseTextDecl                (xmlParserCtxtPtr ctxt);

parse an XML declaration header for external entities

[77] TextDecl ::= '<?xml' VersionInfo? EncodingDecl S? '?>'

Question: Seems that EncodingDecl is mandatory ? Is that a typo ?

ctxt : 


xmlParseMisc ()

void        xmlParseMisc                    (xmlParserCtxtPtr ctxt);

parse an XML Misc* optional field.

[27] Misc ::= Comment | PI | S

ctxt : 


xmlParseExternalSubset ()

void        xmlParseExternalSubset          (xmlParserCtxtPtr ctxt,
                                             const xmlChar *ExternalID,
                                             const xmlChar *SystemID);

parse Markup declarations from an external subset

[30] extSubset ::= textDecl? extSubsetDecl

[31] extSubsetDecl ::= (markupdecl | conditionalSect | PEReference | S) *

ctxt : 
ExternalID : 
SystemID : 


XML_SUBSTITUTE_NONE

#define     XML_SUBSTITUTE_NONE

If no entities need to be substituted.


XML_SUBSTITUTE_REF

#define     XML_SUBSTITUTE_REF

Whether general entities need to be substituted.


XML_SUBSTITUTE_PEREF

#define     XML_SUBSTITUTE_PEREF

Whether parameter entities need to be substituted.


XML_SUBSTITUTE_BOTH

#define     XML_SUBSTITUTE_BOTH

Both general and parameter entities need to be substituted.


xmlDecodeEntities ()

xmlChar*    xmlDecodeEntities               (xmlParserCtxtPtr ctxt,
                                             int len,
                                             int what,
                                             xmlChar end,
                                             xmlChar end2,
                                             xmlChar end3);

This function is deprecated, we now always process entities content through xmlStringDecodeEntities

TODO: remove it in next major release.

[67] Reference ::= EntityRef | CharRef

[69] PEReference ::= '%' Name ';'

ctxt : 
len : 
what : 
end : 
end2 : 
end3 : 
Returns : 


xmlStringDecodeEntities ()

xmlChar*    xmlStringDecodeEntities         (xmlParserCtxtPtr ctxt,
                                             const xmlChar *str,
                                             int what,
                                             xmlChar end,
                                             xmlChar end2,
                                             xmlChar end3);

Takes a entity string content and process to do the adequate substitutions.

[67] Reference ::= EntityRef | CharRef

[69] PEReference ::= '%' Name ';'

ctxt : 
str : 
what : 
end : 
end2 : 
end3 : 
Returns : 


nodePush ()

int         nodePush                        (xmlParserCtxtPtr ctxt,
                                             xmlNodePtr value);

Pushes a new element node on top of the node stack

ctxt : 
value : 
Returns : 


nodePop ()

xmlNodePtr  nodePop                         (xmlParserCtxtPtr ctxt);

Pops the top element node from the node stack

ctxt : 
Returns : 


inputPush ()

int         inputPush                       (xmlParserCtxtPtr ctxt,
                                             xmlParserInputPtr value);

Pushes a new parser input on top of the input stack

ctxt : 
value : 
Returns : 


inputPop ()

xmlParserInputPtr inputPop                  (xmlParserCtxtPtr ctxt);

Pops the top parser input from the input stack

ctxt : 
Returns : 


namePop ()

xmlChar*    namePop                         (xmlParserCtxtPtr ctxt);

Pops the top element name from the name stack

ctxt : 
Returns : 


namePush ()

int         namePush                        (xmlParserCtxtPtr ctxt,
                                             xmlChar *value);

Pushes a new element name on top of the name stack

ctxt : 
value : 
Returns : 


xmlSkipBlankChars ()

int         xmlSkipBlankChars               (xmlParserCtxtPtr ctxt);

skip all blanks character found at that point in the input streams. It pops up finished entities in the process if allowable at that point.

ctxt : 
Returns : 


xmlStringCurrentChar ()

int         xmlStringCurrentChar            (xmlParserCtxtPtr ctxt,
                                             const xmlChar *cur,
                                             int *len);

The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer.

ctxt : 
cur : 
len : 
Returns : 


xmlParserHandlePEReference ()

void        xmlParserHandlePEReference      (xmlParserCtxtPtr ctxt);

[69] PEReference ::= '%' Name ';'

[ WFC: No Recursion ] A parsed entity must not contain a recursive reference to itself, either directly or indirectly.

[ WFC: Entity Declared ] In a document without any DTD, a document with only an internal DTD subset which contains no parameter entity references, or a document with "standalone='yes'", ... ... The declaration of a parameter entity must precede any reference to it...

[ VC: Entity Declared ] In a document with an external subset or external parameter entities with "standalone='no'", ... ... The declaration of a parameter entity must precede any reference to it...

[ WFC: In DTD ] Parameter-entity references may only appear in the DTD. NOTE: misleading but this is handled.

A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xmlentproc i.e. - Included in literal in entity values - Included as Parameter Entity reference within DTDs

ctxt : 


xmlParserHandleReference ()

void        xmlParserHandleReference        (xmlParserCtxtPtr ctxt);

TODO: Remove, now deprecated ... the test is done directly in the content parsing routines.

[67] Reference ::= EntityRef | CharRef

[68] EntityRef ::= '&' Name ';'

[ WFC: Entity Declared ] the Name given in the entity reference must match that in an entity declaration, except that well-formed documents need not declare any of the following entities: amp, lt, gt, apos, quot.

[ WFC: Parsed Entity ] An entity reference must not contain the name of an unparsed entity

[66] CharRef ::= '&#' [0-9]+ ';' | '&x' [0-9a-fA-F]+ ';'

A PEReference may have been detected in the current input stream the handling is done accordingly to http://www.w3.org/TR/REC-xmlentproc

ctxt : 


xmlCheckLanguageID ()

int         xmlCheckLanguageID              (const xmlChar *lang);

Checks that the value conforms to the LanguageID production:

NOTE: this is somewhat deprecated, those productions were removed from the XML Second edition.

[33] LanguageID ::= Langcode ('-' Subcode)* [34] Langcode ::= ISO639Code | IanaCode | UserCode [35] ISO639Code ::= ([a-z] | [A-Z]) ([a-z] | [A-Z]) [36] IanaCode ::= ('i' | 'I') '-' ([a-z] | [A-Z])+ [37] UserCode ::= ('x' | 'X') '-' ([a-z] | [A-Z])+ [38] Subcode ::= ([a-z] | [A-Z])+

lang : 
Returns : 


xmlCurrentChar ()

int         xmlCurrentChar                  (xmlParserCtxtPtr ctxt,
                                             int *len);

The current char value, if using UTF-8 this may actually span multiple bytes in the input buffer. Implement the end of line normalization: 2.11 End-of-Line Handling Wherever an external parsed entity or the literal entity value of an internal parsed entity contains either the literal two-character sequence "xDxA" or a standalone literal xD, an XML processor must pass to the application the single character xA. This behavior can conveniently be produced by normalizing all line breaks to xA on input, before parsing.)

ctxt : 
len : 
Returns : 


xmlCopyCharMultiByte ()

int         xmlCopyCharMultiByte            (xmlChar *out,
                                             int val);

append the char value in the array

out : 
val : 
Returns : 


xmlCopyChar ()

int         xmlCopyChar                     (int len,
                                             xmlChar *out,
                                             int val);

append the char value in the array

len : 
out : 
val : 
Returns : 


xmlNextChar ()

void        xmlNextChar                     (xmlParserCtxtPtr ctxt);

Skip to the next char input char.

ctxt : 


xmlParserInputShrink ()

void        xmlParserInputShrink            (xmlParserInputPtr in);

This function removes used input for the parser.

in : 


htmlInitAutoClose ()

void        htmlInitAutoClose               (void);

Initialize the htmlStartCloseIndex for fast lookup of closing tags names. This is not reentrant. Call xmlInitParser() once before processing in case of use in multithreaded programs.


htmlCreateFileParserCtxt ()

htmlParserCtxtPtr htmlCreateFileParserCtxt  (const char *filename,
                                             const char *encoding);

Create a parser context for a file content. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time.

filename : 
encoding : 
Returns : 


xmlEntityReferenceFunc ()

void        (*xmlEntityReferenceFunc)       (xmlEntityPtr ent,
                                             xmlNodePtr firstNode,
                                             xmlNodePtr lastNode);

Callback function used when one needs to be able to track back the provenance of a chunk of nodes inherited from an entity replacement.

ent : 
firstNode : 
lastNode : 


xmlSetEntityReferenceFunc ()

void        xmlSetEntityReferenceFunc       (xmlEntityReferenceFunc func);

Set the function to call call back when a xml reference has been made

func :