xpathInternals

Name

xpathInternals -- 

Synopsis



#define     xmlXPathSetError                (ctxt, err)
#define     xmlXPathSetArityError           (ctxt)
#define     xmlXPathSetTypeError            (ctxt)
#define     xmlXPathGetError                (ctxt)
#define     xmlXPathCheckError              (ctxt)
#define     xmlXPathGetDocument             (ctxt)
#define     xmlXPathGetContextNode          (ctxt)
int         xmlXPathPopBoolean              (xmlXPathParserContextPtr ctxt);
double      xmlXPathPopNumber               (xmlXPathParserContextPtr ctxt);
xmlChar*    xmlXPathPopString               (xmlXPathParserContextPtr ctxt);
xmlNodeSetPtr xmlXPathPopNodeSet            (xmlXPathParserContextPtr ctxt);
void*       xmlXPathPopExternal             (xmlXPathParserContextPtr ctxt);
#define     xmlXPathReturnBoolean           (ctxt, val)
#define     xmlXPathReturnTrue              (ctxt)
#define     xmlXPathReturnFalse             (ctxt)
#define     xmlXPathReturnNumber            (ctxt, val)
#define     xmlXPathReturnString            (ctxt, str)
#define     xmlXPathReturnEmptyString       (ctxt)
#define     xmlXPathReturnNodeSet           (ctxt, ns)
#define     xmlXPathReturnEmptyNodeSet      (ctxt)
#define     xmlXPathReturnExternal          (ctxt, val)
#define     xmlXPathStackIsNodeSet          (ctxt)
#define     xmlXPathStackIsExternal         (ctxt)
#define     xmlXPathEmptyNodeSet            (ns)
#define     CHECK_ERROR
#define     CHECK_ERROR0
#define     XP_ERROR                        (X)
#define     XP_ERROR0                       (X)
#define     CHECK_TYPE                      (typeval)
#define     CHECK_TYPE0                     (typeval)
#define     CHECK_ARITY                     (x)
#define     CAST_TO_STRING
#define     CAST_TO_NUMBER
#define     CAST_TO_BOOLEAN
xmlXPathObjectPtr (*xmlXPathVariableLookupFunc)
                                            (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisterVariableLookup  (xmlXPathContextPtr ctxt,
                                             xmlXPathVariableLookupFunc f,
                                             void *data);
xmlXPathFunction (*xmlXPathFuncLookupFunc)  (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisterFuncLookup      (xmlXPathContextPtr ctxt,
                                             xmlXPathFuncLookupFunc f,
                                             void *funcCtxt);
void        xmlXPatherror                   (xmlXPathParserContextPtr ctxt,
                                             const char *file,
                                             int line,
                                             int no);
void        xmlXPathDebugDumpObject         (FILE *output,
                                             xmlXPathObjectPtr cur,
                                             int depth);
void        xmlXPathDebugDumpCompExpr       (FILE *output,
                                             xmlXPathCompExprPtr comp,
                                             int depth);
int         xmlXPathNodeSetContains         (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
xmlNodeSetPtr xmlXPathDifference            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathIntersection          (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathDistinctSorted        (xmlNodeSetPtr nodes);
xmlNodeSetPtr xmlXPathDistinct              (xmlNodeSetPtr nodes);
int         xmlXPathHasSameNodes            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeLeadingSorted     (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathLeadingSorted         (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeLeading           (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathLeading               (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeTrailingSorted    (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathTrailingSorted        (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
xmlNodeSetPtr xmlXPathNodeTrailing          (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);
xmlNodeSetPtr xmlXPathTrailing              (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);
int         xmlXPathRegisterNs              (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix,
                                             const xmlChar *ns_uri);
const xmlChar* xmlXPathNsLookup             (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix);
void        xmlXPathRegisteredNsCleanup     (xmlXPathContextPtr ctxt);
int         xmlXPathRegisterFunc            (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathFunction f);
int         xmlXPathRegisterFuncNS          (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathFunction f);
int         xmlXPathRegisterVariable        (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathObjectPtr value);
int         xmlXPathRegisterVariableNS      (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathObjectPtr value);
xmlXPathFunction xmlXPathFunctionLookup     (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);
xmlXPathFunction xmlXPathFunctionLookupNS   (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisteredFuncsCleanup  (xmlXPathContextPtr ctxt);
xmlXPathObjectPtr xmlXPathVariableLookup    (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);
xmlXPathObjectPtr xmlXPathVariableLookupNS  (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);
void        xmlXPathRegisteredVariablesCleanup
                                            (xmlXPathContextPtr ctxt);
xmlXPathParserContextPtr xmlXPathNewParserContext
                                            (const xmlChar *str,
                                             xmlXPathContextPtr ctxt);
void        xmlXPathFreeParserContext       (xmlXPathParserContextPtr ctxt);
xmlXPathObjectPtr valuePop                  (xmlXPathParserContextPtr ctxt);
int         valuePush                       (xmlXPathParserContextPtr ctxt,
                                             xmlXPathObjectPtr value);
xmlXPathObjectPtr xmlXPathNewString         (const xmlChar *val);
xmlXPathObjectPtr xmlXPathNewCString        (const char *val);
xmlXPathObjectPtr xmlXPathWrapString        (xmlChar *val);
xmlXPathObjectPtr xmlXPathWrapCString       (char *val);
xmlXPathObjectPtr xmlXPathNewFloat          (double val);
xmlXPathObjectPtr xmlXPathNewBoolean        (int val);
xmlXPathObjectPtr xmlXPathNewNodeSet        (xmlNodePtr val);
xmlXPathObjectPtr xmlXPathNewValueTree      (xmlNodePtr val);
void        xmlXPathNodeSetAdd              (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
void        xmlXPathNodeSetAddUnique        (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
void        xmlXPathNodeSetAddNs            (xmlNodeSetPtr cur,
                                             xmlNodePtr node,
                                             xmlNsPtr ns);
void        xmlXPathNodeSetSort             (xmlNodeSetPtr set);
void        xmlXPathRoot                    (xmlXPathParserContextPtr ctxt);
void        xmlXPathEvalExpr                (xmlXPathParserContextPtr ctxt);
xmlChar*    xmlXPathParseName               (xmlXPathParserContextPtr ctxt);
xmlChar*    xmlXPathParseNCName             (xmlXPathParserContextPtr ctxt);
double      xmlXPathStringEvalNumber        (const xmlChar *str);
int         xmlXPathEvaluatePredicateResult (xmlXPathParserContextPtr ctxt,
                                             xmlXPathObjectPtr res);
void        xmlXPathRegisterAllFunctions    (xmlXPathContextPtr ctxt);
xmlNodeSetPtr xmlXPathNodeSetMerge          (xmlNodeSetPtr val1,
                                             xmlNodeSetPtr val2);
void        xmlXPathNodeSetDel              (xmlNodeSetPtr cur,
                                             xmlNodePtr val);
void        xmlXPathNodeSetRemove           (xmlNodeSetPtr cur,
                                             int val);
xmlXPathObjectPtr xmlXPathNewNodeSetList    (xmlNodeSetPtr val);
xmlXPathObjectPtr xmlXPathWrapNodeSet       (xmlNodeSetPtr val);
xmlXPathObjectPtr xmlXPathWrapExternal      (void *val);
int         xmlXPathEqualValues             (xmlXPathParserContextPtr ctxt);
int         xmlXPathNotEqualValues          (xmlXPathParserContextPtr ctxt);
int         xmlXPathCompareValues           (xmlXPathParserContextPtr ctxt,
                                             int inf,
                                             int strict);
void        xmlXPathValueFlipSign           (xmlXPathParserContextPtr ctxt);
void        xmlXPathAddValues               (xmlXPathParserContextPtr ctxt);
void        xmlXPathSubValues               (xmlXPathParserContextPtr ctxt);
void        xmlXPathMultValues              (xmlXPathParserContextPtr ctxt);
void        xmlXPathDivValues               (xmlXPathParserContextPtr ctxt);
void        xmlXPathModValues               (xmlXPathParserContextPtr ctxt);
int         xmlXPathIsNodeType              (const xmlChar *name);
xmlNodePtr  xmlXPathNextSelf                (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextChild               (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextDescendant          (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextDescendantOrSelf    (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextParent              (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextAncestorOrSelf      (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextFollowingSibling    (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextFollowing           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextNamespace           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextAttribute           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextPreceding           (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextAncestor            (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
xmlNodePtr  xmlXPathNextPrecedingSibling    (xmlXPathParserContextPtr ctxt,
                                             xmlNodePtr cur);
void        xmlXPathLastFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathPositionFunction        (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathCountFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathIdFunction              (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathLocalNameFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNamespaceURIFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathStringFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathStringLengthFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathConcatFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathContainsFunction        (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathStartsWithFunction      (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSubstringFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSubstringBeforeFunction (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSubstringAfterFunction  (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNormalizeFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathTranslateFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNotFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathTrueFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathFalseFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathLangFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNumberFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathSumFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathFloorFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathCeilingFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathRoundFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathBooleanFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);
void        xmlXPathNodeSetFreeNs           (xmlNsPtr ns);

Description

Details

xmlXPathSetError()

#define     xmlXPathSetError(ctxt, err)

Raises an error.

ctxt : 
err : 


xmlXPathSetArityError()

#define     xmlXPathSetArityError(ctxt)

Raises an XPATH_INVALID_ARITY error.

ctxt : 


xmlXPathSetTypeError()

#define     xmlXPathSetTypeError(ctxt)

Raises an XPATH_INVALID_TYPE error.

ctxt : 


xmlXPathGetError()

#define     xmlXPathGetError(ctxt)

Get the error code of an XPath context.

ctxt : 


xmlXPathCheckError()

#define     xmlXPathCheckError(ctxt)

Check if an XPath error was raised.

ctxt : 


xmlXPathGetDocument()

#define     xmlXPathGetDocument(ctxt)

Get the document of an XPath context.

ctxt : 


xmlXPathGetContextNode()

#define     xmlXPathGetContextNode(ctxt)

Get the context node of an XPath context.

ctxt : 


xmlXPathPopBoolean ()

int         xmlXPathPopBoolean              (xmlXPathParserContextPtr ctxt);

Pops a boolean from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopNumber ()

double      xmlXPathPopNumber               (xmlXPathParserContextPtr ctxt);

Pops a number from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopString ()

xmlChar*    xmlXPathPopString               (xmlXPathParserContextPtr ctxt);

Pops a string from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopNodeSet ()

xmlNodeSetPtr xmlXPathPopNodeSet            (xmlXPathParserContextPtr ctxt);

Pops a node-set from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 
Returns : 


xmlXPathPopExternal ()

void*       xmlXPathPopExternal             (xmlXPathParserContextPtr ctxt);

Pops an external object from the stack, handling conversion if needed. Check error with xmlXPathCheckError.

ctxt : 


xmlXPathReturnBoolean()

#define     xmlXPathReturnBoolean(ctxt, val)

Pushes the boolean val on the context stack.

ctxt : 
val : 


xmlXPathReturnTrue()

#define     xmlXPathReturnTrue(ctxt)

Pushes true on the context stack.

ctxt : 


xmlXPathReturnFalse()

#define     xmlXPathReturnFalse(ctxt)

Pushes false on the context stack.

ctxt : 


xmlXPathReturnNumber()

#define     xmlXPathReturnNumber(ctxt, val)

Pushes the double val on the context stack.

ctxt : 
val : 


xmlXPathReturnString()

#define     xmlXPathReturnString(ctxt, str)

Pushes the string str on the context stack.

ctxt : 
str : 


xmlXPathReturnEmptyString()

#define     xmlXPathReturnEmptyString(ctxt)

Pushes an empty string on the stack.

ctxt : 


xmlXPathReturnNodeSet()

#define     xmlXPathReturnNodeSet(ctxt, ns)

Pushes the node-set ns on the context stack.

ctxt : 
ns : 


xmlXPathReturnEmptyNodeSet()

#define     xmlXPathReturnEmptyNodeSet(ctxt)

Pushes an empty node-set on the context stack.

ctxt : 


xmlXPathReturnExternal()

#define     xmlXPathReturnExternal(ctxt, val)

Pushes user data on the context stack.

ctxt : 
val : 


xmlXPathStackIsNodeSet()

#define     xmlXPathStackIsNodeSet(ctxt)

Check if the current value on the XPath stack is a node set or an XSLT value tree.

ctxt : 


xmlXPathStackIsExternal()

#define     xmlXPathStackIsExternal(ctxt)

Checks if the current value on the XPath stack is an external object.

ctxt : 


xmlXPathEmptyNodeSet()

#define     xmlXPathEmptyNodeSet(ns)

Empties a node-set.

ns : 


CHECK_ERROR

#define     CHECK_ERROR

Macro to return from the function if an XPath error was detected.


CHECK_ERROR0

#define     CHECK_ERROR0

Macro to return 0 from the function if an XPath error was detected.


XP_ERROR()

#define     XP_ERROR(X)

Macro to raise an XPath error and return.

X : 


XP_ERROR0()

#define     XP_ERROR0(X)

Macro to raise an XPath error and return 0.

X : 


CHECK_TYPE()

#define     CHECK_TYPE(typeval)

Macro to check that the value on top of the XPath stack is of a given type.

typeval : 


CHECK_TYPE0()

#define     CHECK_TYPE0(typeval)

Macro to check that the value on top of the XPath stack is of a given type. Return(0) in case of failure

typeval : 


CHECK_ARITY()

#define     CHECK_ARITY(x)

Macro to check that the number of args passed to an XPath function matches.

x : 


CAST_TO_STRING

#define     CAST_TO_STRING

Macro to try to cast the value on the top of the XPath stack to a string.


CAST_TO_NUMBER

#define     CAST_TO_NUMBER

Macro to try to cast the value on the top of the XPath stack to a number.


CAST_TO_BOOLEAN

#define     CAST_TO_BOOLEAN

Macro to try to cast the value on the top of the XPath stack to a boolean.


xmlXPathVariableLookupFunc ()

xmlXPathObjectPtr (*xmlXPathVariableLookupFunc)
                                            (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Prototype for callbacks used to plug variable lookup in the XPath engine.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisterVariableLookup ()

void        xmlXPathRegisterVariableLookup  (xmlXPathContextPtr ctxt,
                                             xmlXPathVariableLookupFunc f,
                                             void *data);

register an external mechanism to do variable lookup

ctxt : 
f : 
data : 


xmlXPathFuncLookupFunc ()

xmlXPathFunction (*xmlXPathFuncLookupFunc)  (void *ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Prototype for callbacks used to plug function lookup in the XPath engine.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisterFuncLookup ()

void        xmlXPathRegisterFuncLookup      (xmlXPathContextPtr ctxt,
                                             xmlXPathFuncLookupFunc f,
                                             void *funcCtxt);

Registers an external mechanism to do function lookup.

ctxt : 
f : 
funcCtxt : 


xmlXPatherror ()

void        xmlXPatherror                   (xmlXPathParserContextPtr ctxt,
                                             const char *file,
                                             int line,
                                             int no);

Formats an error message.

ctxt : 
file : 
line : 
no : 


xmlXPathDebugDumpObject ()

void        xmlXPathDebugDumpObject         (FILE *output,
                                             xmlXPathObjectPtr cur,
                                             int depth);

Dump the content of the object for debugging purposes

output : 
cur : 
depth : 


xmlXPathDebugDumpCompExpr ()

void        xmlXPathDebugDumpCompExpr       (FILE *output,
                                             xmlXPathCompExprPtr comp,
                                             int depth);

Dumps the tree of the compiled XPath expression.

output : 
comp : 
depth : 


xmlXPathNodeSetContains ()

int         xmlXPathNodeSetContains         (xmlNodeSetPtr cur,
                                             xmlNodePtr val);

checks whether cur contains val

cur : 
val : 
Returns : 


xmlXPathDifference ()

xmlNodeSetPtr xmlXPathDifference            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets difference() function: node-set set:difference (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathIntersection ()

xmlNodeSetPtr xmlXPathIntersection          (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets intersection() function: node-set set:intersection (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathDistinctSorted ()

xmlNodeSetPtr xmlXPathDistinctSorted        (xmlNodeSetPtr nodes);

Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set)

nodes : 
Returns : 


xmlXPathDistinct ()

xmlNodeSetPtr xmlXPathDistinct              (xmlNodeSetPtr nodes);

Implements the EXSLT - Sets distinct() function: node-set set:distinct (node-set) nodes is sorted by document order, then exslSetsDistinctSorted is called with the sorted node-set

nodes : 
Returns : 


xmlXPathHasSameNodes ()

int         xmlXPathHasSameNodes            (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets has-same-nodes function: boolean set:has-same-node(node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeLeadingSorted ()

xmlNodeSetPtr xmlXPathNodeLeadingSorted     (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)

nodes : 
node : 
Returns : 


xmlXPathLeadingSorted ()

xmlNodeSetPtr xmlXPathLeadingSorted         (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeLeading ()

xmlNodeSetPtr xmlXPathNodeLeading           (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) nodes is sorted by document order, then exslSetsNodeLeadingSorted is called.

nodes : 
node : 
Returns : 


xmlXPathLeading ()

xmlNodeSetPtr xmlXPathLeading               (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets leading() function: node-set set:leading (node-set, node-set) nodes1 and nodes2 are sorted by document order, then exslSetsLeadingSorted is called.

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeTrailingSorted ()

xmlNodeSetPtr xmlXPathNodeTrailingSorted    (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)

nodes : 
node : 
Returns : 


xmlXPathTrailingSorted ()

xmlNodeSetPtr xmlXPathTrailingSorted        (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set)

nodes1 : 
nodes2 : 
Returns : 


xmlXPathNodeTrailing ()

xmlNodeSetPtr xmlXPathNodeTrailing          (xmlNodeSetPtr nodes,
                                             xmlNodePtr node);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) nodes is sorted by document order, then xmlXPathNodeTrailingSorted is called.

nodes : 
node : 
Returns : 


xmlXPathTrailing ()

xmlNodeSetPtr xmlXPathTrailing              (xmlNodeSetPtr nodes1,
                                             xmlNodeSetPtr nodes2);

Implements the EXSLT - Sets trailing() function: node-set set:trailing (node-set, node-set) nodes1 and nodes2 are sorted by document order, then xmlXPathTrailingSorted is called.

nodes1 : 
nodes2 : 
Returns : 


xmlXPathRegisterNs ()

int         xmlXPathRegisterNs              (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix,
                                             const xmlChar *ns_uri);

Register a new namespace. If ns_uri is NULL it unregisters the namespace

ctxt : 
prefix : 
ns_uri : 
Returns : 


xmlXPathNsLookup ()

const xmlChar* xmlXPathNsLookup             (xmlXPathContextPtr ctxt,
                                             const xmlChar *prefix);

Search in the namespace declaration array of the context for the given namespace name associated to the given prefix

ctxt : 
prefix : 
Returns : 


xmlXPathRegisteredNsCleanup ()

void        xmlXPathRegisteredNsCleanup     (xmlXPathContextPtr ctxt);

Cleanup the XPath context data associated to registered variables

ctxt : 


xmlXPathRegisterFunc ()

int         xmlXPathRegisterFunc            (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathFunction f);

Register a new function. If f is NULL it unregisters the function

ctxt : 
name : 
f : 
Returns : 


xmlXPathRegisterFuncNS ()

int         xmlXPathRegisterFuncNS          (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathFunction f);

Register a new function. If f is NULL it unregisters the function

ctxt : 
name : 
ns_uri : 
f : 
Returns : 


xmlXPathRegisterVariable ()

int         xmlXPathRegisterVariable        (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             xmlXPathObjectPtr value);

Register a new variable value. If value is NULL it unregisters the variable

ctxt : 
name : 
value : 
Returns : 


xmlXPathRegisterVariableNS ()

int         xmlXPathRegisterVariableNS      (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri,
                                             xmlXPathObjectPtr value);

Register a new variable value. If value is NULL it unregisters the variable

ctxt : 
name : 
ns_uri : 
value : 
Returns : 


xmlXPathFunctionLookup ()

xmlXPathFunction xmlXPathFunctionLookup     (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);

Search in the Function array of the context for the given function.

ctxt : 
name : 
Returns : 


xmlXPathFunctionLookupNS ()

xmlXPathFunction xmlXPathFunctionLookupNS   (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Search in the Function array of the context for the given function.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisteredFuncsCleanup ()

void        xmlXPathRegisteredFuncsCleanup  (xmlXPathContextPtr ctxt);

Cleanup the XPath context data associated to registered functions

ctxt : 


xmlXPathVariableLookup ()

xmlXPathObjectPtr xmlXPathVariableLookup    (xmlXPathContextPtr ctxt,
                                             const xmlChar *name);

Search in the Variable array of the context for the given variable value.

ctxt : 
name : 
Returns : 


xmlXPathVariableLookupNS ()

xmlXPathObjectPtr xmlXPathVariableLookupNS  (xmlXPathContextPtr ctxt,
                                             const xmlChar *name,
                                             const xmlChar *ns_uri);

Search in the Variable array of the context for the given variable value.

ctxt : 
name : 
ns_uri : 
Returns : 


xmlXPathRegisteredVariablesCleanup ()

void        xmlXPathRegisteredVariablesCleanup
                                            (xmlXPathContextPtr ctxt);

Cleanup the XPath context data associated to registered variables

ctxt : 


xmlXPathNewParserContext ()

xmlXPathParserContextPtr xmlXPathNewParserContext
                                            (const xmlChar *str,
                                             xmlXPathContextPtr ctxt);

Create a new xmlXPathParserContext

P#YF'??>Gt2wMԍ^̲ɕN1`Fa٨jw8X[Qi_6Xk1˃6ݴ5+S- ~3 &|6L|&db,l%6nHHtTT߳ڎwȭR75Rzݠ&_ߊ2,E4PjT&jTJtD\YVo,Ԥ/+ gtU4Zqaun+^S՛td찓NMA3aƷ3-uy) \n^Dr~?4IDY\:hũp_2R ۴ŏlsZKcTI?jŢ&=l)/7L֊x }5k3<|՗a'sN.m=b2>ˡҚ Xw*¶UhSn'3"|r.N :ha2Tǘ$o9ri㞹Wmz$(n%"[Յ-ПJ9O+>M}Ro̾EOU\n뗅n$f'PR>I3P), `3ɣS_ш-mׂ1Gi>f2 PD({6dl>Ws{kb4 ;ʬ=9z}y) HyWލ عu3-ÆMh"\sasDxI}#JĈH1azj#OHhCܐ3Xe&, 3{Qt$sȠ=Ȑ\;8-B>$ӥ4D^Sc.drsTl4\[A.9h)1h3s7D>љn7wN4!ZԐOs2= v9RzW,] O8 6#0~'|b(vA͂AAzz@QG)^#fuS5V P4Mȳ}d1<D,nx&8.t; 8nwb"$$fp㔍D*m?E=xOivVOYj YJ|,~` ̥Hk( %Ch1U:I f:fC%bh\%6.ʉzSjAz cu@'k#4 |߼-BL 2!y~([4;(^!wW9Kٝi”lH<+"R^7 ٰgT([d GtTmv[V.8Axʉ2#Z'`8&Wڱ:B7O)q;NY3 vtbߓEcZ:VH0X\87r0c'~tr)3s^f8V]YKv4 Ͷ!@{:~4%b)S*c]N#_ri3mcℷSZRkPK)B,- 2gCY?bte!H̳uuE%٭.ZJI%SD~ʧHMayki"U0m$(yn5% c6+_Y3LF!s uxB҆[삆O%*>>nu 6B[7ra>s})aXo%*@Z*0xsP.b]V%Yq:וP! qtIFld[%@+YiURr9JȱRhМ1~ya0ͼ7'*gr)?n.ȁF&L.OUI.`^zAq 6pG嗬*`qW쎎Vni\bd#hj*u/:z*"V̳va;C1Y@mwLjEV]kС~ Xz]fzwPv$6.E}PmҎwyyhApyjr#@1BD<6dMH h&M/AĠ3oB!fB [OdwOtH?;ؕ]Z#;[(T?r9镎_Spz>-Z^ôjr{G͞Pn " n|i1?HLYFu>%m^A~w48;Fw o nT6"gWn!j_$ynXvL.! AzН[zKJS6wՒ[ •0d nXR @Jex*'أ #Ge+|^~t׊өY953/&2;cR6mQn$Gj]a\QY] a E7ح')Cj T<2(eJN0G.)td^%5u{;9i<^C=0·^L 1A`-<=>Qzy 0, j˾?FPE=%Ś"`E1EW$ 5YyRPjr?Ձlu!q֢MX[5!Fm~wGBB|6%iIycpwc-n$p.x*%|VR}Aa*yoCÂh՟  ֐Ρ4.=mϵZܣq㠒\9_^Dn 2#trz_wv$0ϸ#!!D[D ieaoD1fc(;Ԧ$jc,܆1%R=/"mYqu=yH6.{G+$UxO8Ԅ=%Б*k:%V\@K6gW-_-4^Ot}*/~2xh$D hFOՌY#ӛ)oV"1xf8߇گ9}q87'eaf[\ֲڰ4]1C9" *3k9&!J~r=@>lw|UJUlG~EO)[Z3Nl 4b-炱S#z!Ej[RdvޛC@8=e}qO% Z٬hO:%1fK5iNټ)>ґΎYAfV"Lk1d\*2rq3/7G}G p,`Us{,ljXcd-"2}7L2֥.KTޓb cf.-Z34akx6 qfAUZ &/ұsQ/O4ߤLIBh0gX3p%INBדVi}+:BIp\]2 &4 -PDE0x:opup`>k,kpK#+hv(PIp5(^I0ɶiܚw\-CrktɸHoثΨHս]q)2L%~e51>Kd 8L5ؔAD}Kk:)N^Mv%HVU&[ *ck_(3[)R>C*]k wT n/#I=խ, X-}eU(ʧ;_Ґj}; P{DXtAIg mvø30rj8"]|э4[:lM睒v~j[͍hT}’ \5ӻ_oD n+"6h\Ͷz]C&-T8<>уd\D;)@|BA'Ym֯FXPI CĒVIrg] m Zx.N8.ZL[9ܤV pxAܔErZDht>ܟ@xm:RvY$;k%3)40׋_adZDCҎE>dԣĚCQ ta:FtG y]=>vD&G TǬ{P t3N*axl 'Bk Sypt=^?Nh~ҵ7AE3Vx]c+ DI5GZ^MJ\=^ Sr@G0}Now*ȑ(=>ݭbW\vσPÕg ק%/^=2NAnm->u{L.g'T۔t(SjOiz6Ğ4U3cӇgjD?/{d/QfU+ϰW_4Gw888Vd U$ND5OT <58si $|[,[qބ4W_=(`ӆMu#5t_y~u.Jdv{e +fm)8^%7.xWʀ,.oģ;8F [DžG N ݸ}z/i<.%TP{fr%1re'dq)Tl-lJ`ޡ e|ϰ k=1 UE~uJk}lh}?N tpc˔iM}5/bd<65lePBڳm@*];&1D li7L%ǻK>] x;H4 ~og6.^JmHr,kKZ qO(I{5{(jsx8bUa]16U!u<_D~̓[~gGvd4HA&;G G2WVDe[T%|=̵/>*~|d3"81M!FݾL$jr.=HP}2r'7!ST8E[^r+w~iL1܉?\w3w}19M@`Af2O{HIcaz%sSz͉ƵU~thI/ۀu"PN&I&D(ψJ n,z1) WJq &HvO*]O Ƌ>pU1y(bѩߪ_ Qq&Jt>齈9yeAF8j~^F%cˉA``A(FZ_/vB6Xuol/+S[荐޹`?zw*XkR"#RjulLiC aG *L"4)9t }viK` n8Y`~r#7; y6 yע\LfÏ_v=o!xoOW`T)܊B/ H 9jΆ'g_CjI`!Ԗ.Di:r'1U?mk׵kw!-֊3AFaxed l,Df'2#bhwĸ&@?̇cHMB#Dn}sE< Tu?uIhi\o؃CcA&.,kgS@C.DC%WŜ#z :i>4[}$ j#A7.Mչ-=:9- ZU2G!x' xÏQ;eW mP.ۍ l@S#^״nS<)hq}vz &L3Te9>0 %} @h}lBu)-HOa©T8Fy`?ς<ֵ(Ή1܋5zη8 yeT(eaģf #)ef+I|@mF=AjNSD|1qU7pE VsM/?m!TBijgi,r@l8.%7sĥG){1 ,/JXp]t@_8hp CG JVY,;̧^ҹmMֶCRFD 2,'8^hϭ R7ԪC@;({M(4fB9hN#.)-a^ǐ\ 00@y3 )4o/);v02ٸ~>}*OvpeUPFݹ!Zol~ap6{|tD_wjUfƘD˘N<.l%8-eѨ"%4hU\~f3;*> :BNNAǺ֑=5m[A2 xUӭCTQ,HIg} u]2ER*ѶXx(% >O'|t |}ҙ+(J E,s.j( G"EtG7O&YI_Z"_t4wR^_ m2n@=QΤYp=IKkNNr;_݊x32И {=8,u9p4c 2 +dIp`-nˑGTJh)?@?Y6PWy-?)Q&_\k }~3 7?` pw6vP9ꁶ_swT)z[À{/!9ZWWոͼKje"vI\*`{z͑JЕjL~ >9NmQrQʭjTOK寘)_y*O ":6e-TEB@x\nu(%ʈy{KKRվ' ض% YM=Zf tK zl@δ[,.x\.AO2͆yRsBI-3=)%[77+w¢к$ލw]U\Y*jW2PUf.0i5`C%6dF]1TZ{4^n mkRVAVɬU ir|Bfb9ۉ=$"GQ4Y(( 0R>Ln_~l nif9n^/ >7eN(joVQ68!6ښkHOxf4]h̖׊ESG? ϱTp7civ5WȆ8SJ"?iPUB98<ٿ !_>v.01eKKt}~G߆k-8v`fr\TJniqth'e#޵(`Zoڿ\&ՍٱǰՉWl&IR)!~;uq;8k ׫'p0YL}L5ŃM)0<~A?;oh\*S:BlԆӃENun!ttnQC)S5i4sYUW046bKs:dgp1"kV$6HoH'ŷRVt'%;ӥkV?Ҋyh7k(r+eEzI6z_p4҂vJJkߦdg{ u;tUvJM #sS[~ZaLdf]j+2o4s_ykdn5LiSδjM&\IZzxjA`O yrZg!ɳy5$BL A.{uh ?֐L3d4#؄DZdzw]L f#)\F9L=Zӟ;!L_pEB;r_7 ?U~fYv2/*PL3Ի NHFׯjpf1!dG7q֣#= t3y@̷ۦ*~KK%:,kT5) S'?ao|CC12ͨZ,My&ciq(A"#nxY &d$ܡ{uP׎GӮAw=.Ey ( 4R*kfE ƇBU{ @:lUUddz55;Ps9 RR)H_a]n `LAύF2Vg;o1EH׊mZ/ͤnz1rD{ށ(,lIN+:aK|UB+'7'9KӕG,):!tygqVoѢ œ|P-~DʓD}'Lj fS~̓suȀS%iվŮRoL)aկ rU 5J-#kDŖ';he7:. *jxZ];/RR1g /F-=%Uo^tT7ۛ/UFAZC 726~:`"|#Y y"y-i6FEBʭVZ}C?I=E2Æzv(tOK*6jOռ a3j>5 Vdq @RcQRG$J8n̄av!e /,'F zA:љ*haLϷ z_&X{fkC~+r2_>Z]В\ 0bQ@Ph@r(;w\=7Jff_5O xNܾ|G([2貰xKrIZS\_nPݽ+}PWuZ耔h2DWk*Ҋ7/mMxkwpM& {̥{WަkY0mN !7\p.2`},ho׵<0@ŻnumG=PbH'nv;%a],m:K,C^܇ ソwG'ו3P)g#,Jd6Vvڧe TMcj# i)D FN}.Ø;%;w268E  |-m>E5K^FsCdjBusPKεbӫe[?P\u}Năh:c% Yxbꘚƽ 57}\Ce:7%ǤLxqџi: %B;xAI&vlUIH+xܣnu,,t*<䟆 |㥦\MNҭբNE%ܕ5O#r3JSNodݚx61oIV>aw`پ)\tvoDDGV( o(O|<,5PZZ(aa7(tL9vf< 98~Ueqϙ5.Is/Pno'9n)o$ᢠsv"E|ؐudvh=Q]]v\k =' 4=kbͅ&jjN[AdB:s1]iq6>I=tS,_Eo߄M>W{TѬPTmK M,!I:KAwh _prˍ/S%0kpk算g4o$!YT館y m rPz2ӛMsEJؘ2F0d꧕  B$4i܂Yrھ{4$h? Iiahȥfr(so5R֨8Ha|Y2Ĉp VC+d_5,J X0 sL3CPc HBGF %RV" 3m7-O6c|ogFkc Aʺ]˦ ӷwɣϯ+( 1١p]O*v hJ8ZQTx_U*x,Cp$J>ocʐJCM+T|ZFWREcN^%+p1kvۇ}jM"p e)6hJAO>I ~QRr,L(w;֎L# 0M⨇Jr&68pJ4SmQ1s_Au^.IL1ϳ'kΦFfqNGzw س`ZQ, mArCOma-,b ޏ+rŃ?"1.uDn?ea dT.ͯeKtӪ#HV.F3ޥ M&x'q% 'w1k[TUSX'U5OWwVo ~U%=r*U&7؉ۊ~a R_g?g?A*{"OW7Hw1лg$Q8X )ey8x3]]!I]=*q/.PvޏVۃ'=w{?= hNDڑ)n-}QḌX :>P yCLlDI kEV@.&v*6g.jm=JF{r?ɼBtay2nԚ0 Y]5|MEg vw|k½y ~,/$|qd>?~mf6U]FlL8aβ kJa7A,=/ns->t#[J#bZ} {34@%:vB>T1P+m}{2Fatsdē|rhRzA\V2]hR9qqbݼzRY×@?N%1 Ma.:1+^+g@Tga;φ@h 5Džt5n J BZE$Q WC[3WF{_2})Uile^A /ꁕ6ό8QRCJ6A9\ybAԤm+HW0]}k B^z[,Xd]w}WYH.0.#܂ S׿Hk)C{!XkH%5ߔ[nUл n5l$I&P rڮg\ NLUfPd֡j/b-jc5HZ}sȘRƟg.nA٢6^)NfEL1cf"ey@KH$nR_gR R*/,]@y@)C*W7)߸fA 4]3A,20tEA%f i*t[ JuB0omJ l#[̭3y{6#V _=6~ԏ\V]ln pཡ1?v$Š9r< MF1J`@ywyk]HٗA\/149ܬZ2b6,{9J o'=A1{FYyxB0c7'vYѢ*}T#`eߺCa!9yN|%k(kO>׼>lIr^IE#Y:F/HD5!k[yaVGfʂ$;||t86bĪh,7 S%QNk'3KL'EpDAf#S"!/kqYVJWGf[+ru .J+gT1圦VZ-@VªآڡQ4]j=DC!-P\Ѫ"GEY<k{M iS-ȹOUOH >2O&:^ J~@t“L}齒L|=Q !`v.iYbQf~ńfW'w00GJdN-ӫ޼^;LVl7S+K 7C4}70D0)!jS(7Zs\wk޹DJi/TǟZȎnI#,NCGM~+T#Vu6?,<@^Z=5y)xUeb3.>^&D{!b6K?DCgLuK-ndc0ءMKs܆ef];Pl;AŪp4jeY5EYǎ9 7Ko0$6|Y/wgyK+xqztC9":)n^NgVB̐,lΝӡ A=$iS+>ۥ,jŏdn`{HCCt,]q&ꐙj?SVLދҕ +(&L~mR({HAt~*k;A+އlmDl{,F %7<} ^T UȫK;S3}ܱu)u~ܮed\v; AZ GԤggkEd6LDlgo45 lQj6e+gKZ*KQ`›x?J^HhlB#a׍e$t*rX?֯!GtZf䘚U |{١߽m"_Z)o#rqvkԉ C^٤]Bp-I]hS1^TzTIZ԰eVЉ Aud^L3ƙ Qq{q!Wㅞ9GBQHEromS_.8KF!X ˾&=^iUM#g+ʛjK|5ByVYOYy+Y)qS/~<^ezW6L) ND;yY aO<8 5ֵ3K#nB30*ӭ&GVgHCnŶ;>cl;v-߯' RU*e22*UhpY98g=ܨ%6^0ܵ0{xlhW4m76WyPvw-?! J?R3]c_ yxAm4[tӸi]on^kWEiJryB #Q`7 y^+E x0nN@ ֮,B| {&4JjP`Dng&_-Kޒf ҙG`-x3x _t^ywCZZ4N9ybRY]"1YjTUqDkв4Wz7*&ct6@sk'/QCH1M}}l^8os(E񁩛(B6t7i؟m[*q=*"Qcy!Q= dSQ(/:%2sύmg\y|D^Su SidbbT5V]ΕNvVBIX:gw"5Qf"w_HYPIq.ws1VRG m`ALoɜJĩ˾1y6,6)F`QDhS1WrZ>ҭgӥ>|E]xj4#TLvN/Ջi<6*b\^/aJ4r(A 5PYF-/g֎}QVE¿嘑qyomZ$$O6mIE}¹s&) I8DV忘8IC\197C%0 ~&Kk˙PeyZk=97t2ރAiώΦn!m2 bj>B q=iѤdxRr &̥;$Pl T 5ύգltFu Qkn, 'th[( aڒA,$0.5KV?vyEWBR` S2Q+ѩ+,x(M&RZ#}lF9ĉ`^7]b-A VǙb!KJ2tJ=dCy[gx܏z?U6fJZV #N%SK-D-&ȡ?i]0X;T;t]77izc-F vv4AhpPx0:a'Sz*bjCRV!Műd:4`R;>geN:PYz^~9ևb6F_IC+ZzvM{~Pya? D+[UZ&r36,kSm!#DrQy퐇w n StO.|3cA궝}%ˏ|x~tOnNi5O%T0$ԑ7KvxgrcHA!=-cl+"qp1!Zf'z6ߓծF4&5pl!yL m7~[il]{  t""|-l crcXnxjD, ./dJ:߰P3{4|EHIda G|Y~U-o8/_kWP&q[_5)^gsv[gqAŪc-;f!V 8@V7rWlK,Mt`y*f3:b2{E -JZ]}^4j|CWB2| .Y?kK+DV1獹46B]S艡i  W㧑ư3w(DyxOlkXA (ψ ,+ʘe{2sw_vgM ?(]O'zGP(>7sVY)%l6N +]66?t"׋St+HD=6drci2JUSmFPFپt iBoD琪aY|~AK5vEp_#y]*p&cZ 4H3{aO>LO*R">D'`w@ 2krN=_Q\7YX[PSJ3m?F‰l!*Va7=Mˆ؂bCJYG}I|M39Ya{íw ps, dk/<͕)09:&*ĺ-P#[wOW%tP:,TF e2Mc[.:;e(]Yh e7OiyW?fyBὕlttpMrg0䐛vv5h$Ε0 2+jAV u~r}!/G2"9oωөI|s۔9&`rX{Z~z P(e0ǥQ " MdtYڻ9.nMd*;f/?,* Y:t3qEÒVƵP,ڬ fzO' #P!|31{_TJ{# 3_ߞAפZF̴D$h4۸yy֜bDC|n}> wujҩ6glf0:C*짌@AyڧH HHfemq{2*XBnLc={b{(UYc9HǣrqUvč"$4n L3-u=.vML7ijG%niM/_; A͈j.yJZ YT3k=H%W@,U=T}u)^μ}:Ufdtwܭ8@G-NKvUW*K0$\,l9 RvAFc$K it b5%߸IPԕx d8ܖ ~`MfdزW{K.*'xiQy3sN!~N%9ޭllyLw%G ThI!%QfCBD2uMKhPv(,p:x?\H床w[yPgOl@Iư{e5yDԴi9i5T/PvY f !Dt$ghn0^6'.ZcL 趘nS_=l*o3>B]GdsP0M fvy"> Gɐ]\@03u/S(BOe:Ѻ9H9VAu+oQ[@͕>\+ l /Nڏ7΁{a єd>nX]<\w ԙf.Kb~@~{ȩ9 e4ôr4lWLWCkX}WN+㷥 &wvYl}guJ`cp`@NJ;k=jiktttW0IvBWRniv$,<4{nmۦ#]8n>%PEpi4]rUOֹ 4V1^ aȐ(_ x`&vAg$e $vcw%zbGހ}H:Y,BtV=-Q8pJ_.;Vo|t~L}虖EUI7OSc9??e}8+ӄE$^3D6”od!iX d8 VxgڢCPUY*`āhj_ ]٠D+Ð{@ G!L&ex=_^W4]swV4*!ąd6 k=/Ӄ{ F2?~$tΟ9M؉v[n4uҒ8]#S1Zn*z<#\SoJO320֮$Ј\/ӇE/}я[fi?z,ۉ}J49Fn _ g%A4fw\v0u[JQÑRr,eFL"qP< >MsV0y >͘HK6X\C:0?}(ݳ D.t˓Kpkx715)h֑BN*}9j-AEQ v5C8gQrk: n$"4PAI,89'lNQh!?1+)e[W&5}pݢp}J/NIp5on)7aY-r8 O 5w=[>o#V`k~3pr3f2=Ҭ掵uNd[lV=W9"Hz^RWad9F'm^GiXɆ]hF .XmUٿ^ԶZ.G;#A+^ާBqd(FRc+]Y_0x"[`V"9  9f/ṝS6HʄBE=AvvjἺĨ=uO.Klm;qcXbVg#i1-A-Y*wT /'@SNHשXZ15j>eM7sұM2ose\UەI{g 39 so<Ӏ_I!B×5=̦%K:+Y+*>C%p:?d?`No PeWYFam'alEפ?i9_3X1GPqqK|2ȲΙ}-B1AxMcr#׍=1AuOx#'REՀW uvn{-J!}kn4H)ے CBnUfAhKM}oٞZZtR7 {;>& Z.ax&Bfa1A`(͗Nn l<ī\mMk͙IM#hqYYˬ(;pQV$dZB衁|KnOh͹~rHn fE%="7f[W[ mpZ,j&I F6YB9OM/Bu5"|H= dhEԋ3ե4 "؃ >tԌ;$!z&K#Xƍ|"f<>JQ;OO^&[ʩؾP_#SP'` \_af1ef.{PEvGZ< Tdv)r. 8lR o=<ǺU7Do e6i=^ҰW=gzCWavb*$Tq+FT\1ώpgcFK75^ja/?m+sc4<-O7QB5j`:qs8(0Kȃn6VnH8Kv?-AѸ6̢o+clazEy) GH:6[)ֻDry%tRX] y9Qz3JOX"3M!87BQo-u!4WN%hQzXE_qey 9:3h&y/dn9f<r3qZ L}{cۼ}AmMKVS?d2G,ny'VTZnG%4[0Lh /s9jWn_z,_S^Kbmc, 2hseotZh }(e_Bfpzk0kQӪei@F eYY+0sD}*%\.OH}ARld}t*pZ88PK׊  hz2/0u-pC|xw"-_MpZiUK7}y )IjLs|Q#B_My(^ttVvT{4RKZ'9qet' Jm@=EIILںΆֶ?dJx8؛;ɹ/v'M&!R9dPv_zn"Uj0`bH@R.gyN@ZF%M/4(^~;NLCϹnm.]cY?.;T=o8 #?Zݶj2w"ja?߈QI([k>hT_JU磊wn_AbeZ>0"=SEv>/hj;&ͅjm  ҙ&?upDUYLN?2_D] 4f7r2^t;yu1ȓ oQ9dQyiBb 8E:?3AAm .Ũ;?~շ,g:j7Œ*e7A w(@P : Cr˓hsSۆ^g9 (Eճ2!BkGtSJP0n[O0C֍M^K`Cerq| V:@wyLTMQKZ~Nom'0c _'ܹNeշcwsNbEUɸ\zZkKľok 3&-APKS7"u}qB=^4;AųwGnFN<;=v }͟Re/߳leʊ/8K ,kJFc%5r]q_^jӛ="dRɼXgO0aLly[K~~U$Lwxbۗ2ݯP^~ v ܸN?=:vTXn0FSϕsUR>qeġn螁5+no&b%Nh7RRJR`[0}}ygt. (!2:YxBr%m`~MZX G:s0+iՃAYf,q2WmLפ}>P@_ȟ Qb$)g.a/su#])!Zmg|tpEVՄ?KvM jv{p?P{qfZ>JSYHW6AMd!gtD@bogԡWe YhYLxriIcI# /Ag[w<;ԥ7`&p}٭\r Wr%[;s`H/i @q\m*vKʾTT/ C1o:="򿸟-T$k΄wNGzߎ).οUDg^I4 z8nN}+/'@RL},ek~0:JCKPZ_moGsXg7A2a'ݧD")jR̷`5ϥz`QQ@}lv6 _2r{q]Hb"xs|OBԼB!(óKwH&AX]/.;c^R;ruҥ-g31nmJJ;H⥜탨/lO蔲<*~JQϝá#좇Y$ W*;psT1:wXwHA\‚K z/ > V`ꮩF["Z$/2/3zMetĺ0 r]Æ<|PS' ZIʓM\rǸc_}xw c) v`ZXJ |},OƎ;ɶ:gۢᏹ7pE?,YepyUqsڏ"hό/;|T$)'Q؞]ڏDTrp'fhA?|/%mUohSFs ^-A;JbJQDOˮX~>~OW!8jF9UV Pr^qhJ, GɰzB(1<iz; fq8We!2 wSFdσy쾫]!;wNZ ?IASSro|zoOk:;ic[.(& >^u)<П^N+߸ fB>Fz3딄<&'d#)0UʃɃٯ(DrG܅j}'4<ћ ]7Ha368pǞ)1 Owat\ Gx<\ZM9qTώP Be$@eIFǁ?Wo=R} ֏2[D+CzYģ~3yfAn/i!F`oRZo82PMiuw: ƕ]iVYik%I*j{gQW¦^Ȭw֧9(οNJ{*5I6hW{0Ra.ȭ ; drqf%R]}ac4UBcaIXkȈAB& W+gN O#ۦn5}vZ9ziM~xKBkCVtFNB ]Uj2˲DD3B0Ȓ (ϒ@![-'\'s9]V\U.x£>^$CpC۔Fn dC,ZBj-"mÆXLfᖖkPW(r82*<?Ҷ![ۆ'zw2 6Ǐ="^U3GOv66F>g6" 3+XȈAı&1Cf :%9N4@YAG`Td:vʆSO'q[a%`;16t:!N'@(8y (L`yx{݊OqVdY <<=Ҿk{st#lHe%AB^PU4j{O%CUNRj5rhpUB Ǔ]xB(.fc/܃h7HVMՈ( %G>[U>LDHg=d.l(+qliȢe_JWK 3 _N~Z27Jߥת0A/L *Y>j:3;*<tg ]U,_2p6ۧ,>њHL/uw a]|RӿчA?VA.}.tj&/*ԓ?yc]lW>0 3@²s$ǻO3˺!j>c9*Pbs}kx]C9v8.Q!5Ofn/M2Ϭj3=8ͼ$o-YyeiftQ[6d⽠IHo;QN ] #{D%^mbrH]W՚p3~l7Rt]U'- _kJڊCВ{$\l7F6B!Ijl|:-(h͂|˟PWJ&SP3LSCL?dmɤ]Lƪyk.sDY kehi% 0b3SX:i׿FtJKj$+à̖|82:^xU?iIgQnnmݿ9{9V@gV!CE,TCHF.)ߎEq,f6ޅYWyN#4`+'Oz[znP/-1]!(ÀJL(kRr%Unܮu"> =ruKmR3F YSaBN5 ‘ G6- JdIGrD5/Y?QӞKN!9r!)U (] P]4iInlم}\$옍+-tl̈́QX8! Oj\z΄IjpMDqO$4K4\-@1}M*4MG$Ֆ\xswpWUA,[,->7GT7 H(_lC<=6abOrDk&d6P!}_ 4 nǺ6bF-؆^ԽRc/bk1vL5.~=;ִ6mkQ)S#)ƙ"~*`CeRbi@\^χK'e0.7t`rDpkCY4T9kv~,!z-v? ' CIDan7IB>@]OKKH"#3Z;r_#_ڴeU~YiEڎu-ԋo+zM&]F0^DmdMqv~Ywp7ZsJhflM0q ^ؑ"ⷩ{WurY =DFen84i.1\ %L(݈ rnMnT} 8Tw/c6E$O3c>aZQ|UW:ҍǻ[B;VE]@&HXKBVWY`}l ҮGf_1j9_ȼIhNw* _%Cc'7_WUY|Q;C}3<ڣPK+v 7d Z7V8ͧ}4I&񋯉0,#J9$^l9 0(N"bp.}Mlz-><e^;wIV!fR NPo&jim;_ ^%sSyʞ) @} Q\C_(hW|l9px)c}7i"-iguXte-o;;=!x͈ A/]8XH2&7Q5IXdB35 ɏa*^}қٍV4pӔ87pg5%;oIͪy_2[_cKP"1 I{B\^ 5WWH"_ .nȋK䰷'Z#iM#хC~2:_(*;(*yA *E^檔xK1Rܦ``ޡMo&U猪Rus+Ro62Q`3vETM ~t@$ZΚxzTSZʔBpecԠ9U&cӃEǯz^L̇$M%R7+Ñ>‡* Jb_Z 2;')[T7~O$C#,ʚNȀԬ~vpߺMr-ccz^H$;p&ƥ۪PHud&Ĭ1ȕ0 B[)/4ù9 _Rv֤S4]y /wS@m2/g&h0c_F:l%4=I{hu'q'pP'Y) pP\PhMAy^{y,aJN}[tv4I)b\@E!%n6 qO܂o@$GՇK]<96^\9(R20ޘ>m|Kv}?~8ϽiF)ÕA0.zoiXGQUh?G`ܱaq~0CM\|]30NFE *gv]9 D̼iE9OHk~Czyh~ORBSN*6cbe\O2IjCra€RJ7۹,i2Kβ^\YN_Վ5؊iלJ͵Ň/3ɸ$W$8Yάd p>H_IZF*fuN*S CC 'Bmh33PzWVM'LXLDʴrKBYЅ .8v鷦c4E|bbje1@[#Q&6a0xfHI#yҲo-(Q< B ^ŸjnQ.$xKmKRE6TCT eV] GxTP6r@fzl1oި] eOhy9.Jb w΄:EE)XC|¿S%|}Zо7e v4qʀASsٻNk :8Z:RSc%x- I,@хyL0ӭFʕPJ?eWǓ%ś [Pqb`̉Nj_MID#&xbR?*a\B%[3xC|C _f3 h%|p#'p8(k:zl?DBHuRxȢZU4S !rqTHQFza: AG5LuBv^ڭ뀤4Sa]ZѢO[6F-kVibNiN:QฏiRG#.]bvh,q5=!>f2|tW\jKWΕhB~+Ni;D+]6~0Y-C]ǐ+ͫD?v2:堋(gEBVɏ7ˁ~.p6HCǩ:ګZ$*JI #TOƻ2,cv2|,h~py̴CeeqzbK^=oW̵:UzroDQӳ"MWkĢZP oVMfN@ɇ)0 -Mq$6O(PV}lACVCl#7y5'״kOGp B^Qp#$u ^s+3 [ay_ٞM'$eR%z}j82L݂5W6iރ(_i;= C=PEz*tX`[ӪψY<*p2ͫVK\ ѣ5EOMaBsۆzJ}~Tv(BZ 뗗NQ hkTE-% Ϩ1*}\Ϭ4m>OQ1\@tF)>} %1(jx#*(*Ym״fiBpK$l1?8^-x,&cpGW 9ah j:_"4 2Iasa`fzQN*u@S8S\nj@k,fA ,@b& E4I I\iOQ XPvUg76ViwͥSUZRF$FⓢIdqTesH nDTs}OG^4 KߚfYe:!]h+%KIkʪ~ &J8hygK;Q_T›,>YVf:FDϠ3ɘ=-kNA yqg{%٠yyf@54ٍ|7H{G ߿ }0ESV[)~8K,FnSwu9 ;;ߥ?֌]֯@ zօ;.4"\ٯ0 Ě9KoU)~D&ؖFs\.Φv#If_ۮ5{lj*Nds$ hgތ"R{y<uŨ)K;y4"$=ъ)_jp0s zpj7{@ ر]"/s%^mevm{56_W\Q:eRk9Q Un!a7 25Tt ɋ4H-ӎn|A+ Lq7n~' ײ;.".l[XHCHDv.""$}?՘?5s7M8^eC@پ[ꭁŸʤŮV/W;OpCW.r2CD̋g6?>X[Et5 F/Ml)Ok4S43(xƑL5qyj&xq;MZ8BQ6^R^g~4WK *"49\g8F;NBi( 1=?+ј{GFo?X"t ^f*NKw bP kqKRߊ'M7`ΟM-tל'z2Ui0a*\YrQ_J'#*eR|Ϣ`\y!'fb*oVRBi "`xU>\W,l8:tCR@łĥ>68MVn+vos 4fȓ^`@u. &}DJE@ ڭV$lѕ 0H#g[9v2?nJWb&jE#dBDT|tTϣjjneM-, ,VC^`zoc۟}.;8*NUaMˑ_>&AYkXZ==0# @xybQ$4XXCQsg}j3o<0`-~ZMOk{4l9IO#g4GySRىu}ܝք56Ɣd-&cjuٖ=ݛHeXf{LV|Dh_armX Yh+$DImu^ކo*ah eϾAqc$짡yG7 'Fg,}lFD%~||2JGq忡+n?_=0U*KOZ)uˁq& T |0s?ٲXaXEq FUM( w/2uKtkG($9lĂqv.Ă+=Yd[yZre +*rHg͚gfnS S6̸2f 0q Ғ! ;_$}bDjKmMs ,BGxcSo,H ?KS@???wfpHAZ Ǥc.ox 3qAx0ʗ5vjX*|xa ((T5_zd-m]H5 h3UT%C 1Bf?=9CL)6Tj+,}X=33BzX7I'<=)/ޘ=xfp)t糊l,ojryR`ط5{ۭ{%0lnb7qA)W[QO~0 i';mţĄ$jʖ_w6ϹO79gJv5U+mEKcԥ.x8Aa%S("[!SxK9 NODGX=M;EJ.Z 1[ziN_@TN` ֛כU7CJ:Q(87^NbԵFGaU JǰqLPOCDj=3>T+74R~uK5Գ ^䘡Q["R%JWBV&mdwx=݈KWxA23xG̥{<(*H0/@T$Un4nl>CK))rts_YK̓uPzNU#xnn _,lT|%Asq _0$yӗu(DQۘĤOnt֞X8p/} 'Mn݄ f Р]3F})[D.ѥxDyDԻ0f@& "K5us~Cj;YCS$uW뽴㬠#Hi薲[~E'n( /S1pQsE+єv7ŁiMSXWs,:YR:ĘFj50EW-p+Xvv)ĈMrk'^Ӥ=\(5aW[=Y8s,uS{L#j4F"VM {0MB^^TQB +HVr soˆ 5#򨯾)p3f Hk dI$W8[(Ǽ ֭6d V͸gRLrGƒ4^Kƿ),%wt>nbChYfA=A0z|,&WfpQyH\&'ⵡIq6s,?{=4QL1;8Q$16cȱ+H]A'e8㤝 oD%l8q})d]3~ΚWo{(;.@kNzWVCvp9`3wG^@'7S#9_8డi\x'RVѼLp߀_9-$1y.#F ۞7zB&IgG,IKl.d(G0U02{O!C'qDPI 7? ΩLQ#r}yg.WF- Mo~au[F J^z, *:>.Mc }4irhHiOޏгbs}' kpCD.( bkCQ{=P %|j8bUeS~Km8+Ref{ ^..{f1:9o,?7:-VIWF E9_]HGpp?o]'vv:N/Q!. :Pl_ilz?D}Z#E4ʠj ,c]_Н_K7iTt9Qi+4ѳ"<]Ò1RJ !62uKΉ¿rY^U"ϪWu].๊WP_gr=x`jco^UЪ$Ge@bP[ph%)yLd -a *ZVh|i#?@fF!.`V{&#{kcm$ :3nöXT@i|0 x -u4ۏ&=Rg,0P2˲LCY!Y¯4ks];jX^$oh1oa ^t;n=kyGS9wף:SͲmE; >dpm4EOq0n[&? ANnq#XWt.-)ZNu@kj~Kg+Ii:K9!ZLg M"sB5V|whץ%:c^pK4+;qن?m %wW{~ƣl_dY^o8c&.}yl71 z& 1H}*:X:R 4EvYy"xgQKQlՈWσ 6h"k+t#cTD 5}"v,pjh1˲ZuuÞjWfz2X_X̚6`}x<2$s3r+EZ) w `:|fU,p"BB 7Uw# WJۦ)BMĬ_u,dubӆ"T -jȻ+9" O4$͘2R U'g.%bcJ$x&fZOnF.FJ؎-X`HIѪT0y8m(eZK1Bꨤ9FjS;kV&.C$R)j,MA [A8ri&NwXsL8Gs|Cت?5gO_بUKLTww@\-y^S3F=nYC'zژp-`\X?19o t$E֛s7CY.3aY)Ab+ݸC@s 1x);Ȯ,cu-!P$~y[vԓ@<hyhyZ5xَGcBbcv}R٧=|4hxϪZGGDbPh7e`_51U[[hEZGzV pZ&?緰6qcaDH<4@1]ЁC_wPc;\jPF_خK"*bP%N/е;.qGlh:w.u2[G7RUX=Y!!z`Vl8Ѯ#L樔{j3*:gB?A ؾ_$]Ow]IU,㕧PhD[[?5nS,Fp=`MAe:=P7 IJ48 -|dwM=߱;By'W+5)1՗0g$SBԜ,r`)inZ/m>$ZG,FIi&/hb2enRy#YO?hjxVu%Me,'0,v{qUh6?(¯ !=V{Ie'ڹ|ӷJtnej"7a 5IM/ nLa D7BRwDO/ +⧚B5)}>*׊4Қk2`?^^QF4[ɿXsH0"! :զcCp,KO:"u zΝC켃\ "5Ӣ*UXOVZI.,M$NdKPd\6! &Z(cD|ux_`G?ޥҭ?|m?x^W !GC@ 'Kzx#&=5os6wfGfTG&.hD*5\{Ovݴ!v_]jB9!O224{w>ZDtLDg1a Ӄhr[Dy> 5[ e<>᝹+O2`P]w.'ߴA5s,łx%n#Ql`73$%cX ’wsA3ek:2 s%ġ|z˕Jripy?7Iv7Xc!]BтPfbx8Ԛ^֦$ dא h9Jh'aUcHwq f$+ϙO7k޴zzƕwQU7 Cx'p6n<ÛCap2c3KSzͤ+bt$5)\MvM|!5PO7w6}zgWWߦj/F Ǎ*_ }9bM6*x|cs,d$N:|FX@ZoiߑO\y @*jG"$Q!=3x]oc޵vg؉bh3T Zw 4xަx~(=)eUDzrfiu4xz]blASX~yc-'G9j01'lV0/H/e-4*'9,LWeFD4zR-CM(& eO5Ja[LӀU> kŜ!.!x2 Ҳp*kK}j@ӊzW{lKG츽nbP_eXKcZŰ5@+߸ǽ8q۞A0b )*Q,GhGy(|0aWqVce|Z cދ;a1 M}?O(]6nc'ޤgKqq;Tb&5 >M@ Elm嶪L^-!ǁc,*gfP&jڒ{ O=!ʔ+2wXO>Pe4NT '+QxNf&aƟn\,7@tǰ`0Q$[D๓;٠*veT^?H_X͔=C-| ʆ, 8*.bFuw y,!UwN8k)T{lSIQ.$ 1>GTzQ'k^RpNSxҳ+-/'zA!֍rMo? ה٣[;P7_VW6g u!)sfm-(Sܷ]9r*>SP( D.!ɜ˙05g̫R-Wp=5;C 35&=@ P-]=y7c5jm( b{.V(db䩗`b|nE>fb::U]q=-ތNevdI 3 \e 29BLt}SUx.WMroЎ7K"Cb)#JASƞ6:K?NWYKJ&##m 4vl0kX#Kkcm1$0am0ETCg-%7_ a'3L\0UoSUǯ$ U\jdcMxQ8륳 vܾV  <º%ǎ/x Є 0iaM^ ֓=Gd.ŕ@lKgi&Y'^,~80ףgD:Ѯ1Uxl?]+s&Viy\OJnFS37P Sx<'H1hxT&i<$'*RQccb\8Ϭ^]o+DCiԋ8$ yV6³R1,%7Z!poi5VFn=`k/^%YxJ  ȋJd(>ro K|8~`|vzCeB/"lFAc3*Id7 9H}D>$Z-^~őv5.ØzZݑ( .<߮;*Bf^m;3D =i\%NA|5/qԮ x%'fƂ.i q ?$l n`zgO;E|߈S1497=-v(Q APRl$VIOrb$zL!Y] bg@sJTh 5}n^?j*n8D͹ 6JAw,<_( l ZO>!W6i}>ރ_VD)yh:flZOeKU CВ9ȭ&RXǗ섃0̥gVIPXXg %M$TqOy~cm6)_r|ñe2b~QXqB8t`m!? ;H_{Ӎu-!uQέϲ6<4;Ȑ$օe`37/]:G_RyKoA h:CDKq,#BVwW;>Q9tsRni:|u= u\ևި kKC[y[ KdC}EtQ˙b]/6's[ĔiWO)ATf}RE<;M;a{{pdxF3z*E(&+UrsT*~f#{gzw?ze@'x|AMj˚99NӊfE͂TAѾHI;Q LgP瓺G> m6g+`#LP5~ 1 72cVMmrE:;:#0 cܵ$<1/=ƪuhsEcV9n_G6]FWE:._O/O%wWZ 6‚z2C%%y8jA.c8\ i٧jdX؄ ogZFo2'Z&~X@UX`2,?QM'4XO郃lm999Bj:Kɟ`zRӦRRn`jabX nEkyUsG]Ys,+>;hO0wfvHGR5ix,OcNNIR60<>˙ p$saaAm,֬K:{_y0tQ gc^Q+oQOy9F=1T.A(ħ+,[KnV D!gr%w 8c7[˧QVDDiz^c@V{~0H?&:I˷ogA\E.k}XkL5/X@\N¯b/;"h@K_'qͲ$[+Lr7~J~^5I%r(+5<[4"ۛWAιl=< bO:;Ѥmsʗv x'QH6p b{ a3ŵ  a̵A~9J SP)3ugؑj9R`nJ2U@05{6MBڲHiss(>7I>1FJm!3)rxw@QV8Lj<8.~ah3V U[@A2|l~:L6 h$H+\\~e.`1lnRi[]Mh}qO;&=(1u%.%QL1~͒H*]#.8M&.#y4UW'i2'e'Ǚ ;P1+d ;iЪx 0fΙ#? _;h.Hz2kt f쓐 t#OvPI3)L:Z}ńDN7\+3?h*`P&Pz)"].K2sRx XV:;'G6c3 x39ْ"z?@lY_ VY )Ncߘ?kВRhsr8{>iL<:{5R=y%.P9~ R VrlUk>k*Į/P ΀XCS N߮=5f0!4r eΟoV mXr3MSU֬-WQ\ ,-uv p%o8MmPR)c]*`S|ҏy ӳ!LRE-^Տ96EP2=⺂AZ1\ DjTwh *Yy?A!MY+A ȸ & }F57eIqA]g;~<3)b=4ahfVIÑMTDؼ#_I"="G(MbHrPHI0uxo4Bid@mԠNl2 N FFY}$Ɨz^~$%ɭ3s*ps{L-87bg'Tm zf^)*R׭@\|:4OIGz{QŽn pjR_"?e3Оm9kJNxXrY[(hE{ Joa!OŚ_cN}W>*7mB$Ùl>/wQ3ZVLњaGU%~ZT/z9˕d925snkMM ' ;kUF"mMr21.dpPKͫkG,R 3<] )NZ}DiF(m+aiB+T#cv/Vb?G;0>F*ɵrЯ* m9X;9ch Xُkd,,M9ɘR*j4;4o.)&>CX`!2e!7vG&OqrC:xlJk>g9HՈ`IXo3R-(]t#QAUI!@7- ܑĢ% 4nޝ1!/q׊J {Q4*ėtֱȜBwS"uggb`)wR/\JYW0Q7ힳWdrԷ=4Nz/7)#̃v['tWwߒ/XҾk׮(AGJIKNtN/eaUb_w6 ո6vrAyC4Q* 3j6]Qo◜JzF+F""jB'qm2 \F̧=yqf2=]PWF<#]i X_qc/OxC+_@/PG7wp(I:#Nܻ tŮ(UV NhL9)3\ٛT,=g6mM3 oW OPU:;|+mrn9Z|rTH h\ӻBB;q-)OH[KWm].}3b# &;Dv@ғWLDsCϋo#wc,UIRDx{P>qZ`ya"7  3ţx%\G F>o )Sa?P,oMb( j/zҘ>9fb[HW}AZQ$ʢ}=fC\蘐! X٘ZG ͯJڪל9Ɏ/۔`p\EA@.lh `Fb _ؽQ:WkusVvU!!`C`_~s*L=L^ ZȤ),gRnڌ`œe$XWc-0;EC L,ޚ AV_$؈pl E6sOSXW ^ØP:F 62;0'00;Eց{2"_2<Uj!Exezt&q[yK娷\aqlա(r.HQŨ^@SΥR_FhC*LGqTpq{WoKxUq퉆}!& v#UX§pRg»IU8N,C~xQ'w8o,#eQ.k@u cn͡2"Y|wW6"[߼"߼Q2T!O=;y#'-a[&%QVo:Fkl?=),FXTϒ{r#o2)7&5Rkk+q P^p`CȊq.J >%ܷy,vTCwxlE 'o҂\ h[ܾQV KVA&LAYP98;:f\&MsX![lΡd? ZMvl;/Nܧ>|^1"5 :6:g7dF#.9D8aoþk2t.c,dNbD ;mѴ)IάkId\M<~6>`qyU _z4;l6M*=$&$%y׸X,dfHRyQuzRLo@i/$Sax,ZXP3DuBtb#k3d$sx H4r = ["kM#u4x駬yEt<~% 0(\r3 q |O qŀ6Xߜzi$&QSq9.O-\"x =]ߴ54O|=ve\Ϊ& Ո x&pO}Zfb3gs;8ہ9~chMExk_c(hF@mipڽ!e X_ ԗcXs *-PכMjFSV8 ̾N& -Τ8t)'>[h6mϾG -?$ҶU-m>scm˪/xvdϜ u L/Cu(WS5+JoS$|F6U4GL$3rS~ L&"x/M@D%5qkih(ﱏ!+E=Z) *z%K ThePiAu4ݜoJ97(QRRĜ{yj4TФ4tmVt4ЮpsHG[_-=i[e@ݵȱb3E+L"?%8!Dzz}R,4YX%+kF>ZzOUܒue+㷿6 *WW$: 2U-^ciT7WysxyRX lL)6D晫T\JhX!@=uGc hV-JsJB?DǔX:ͦs:ko>Z6Im )*;#.:HۉSYWwZ8~YGY;GcwXW;n]y+vOzHG,%sNR7BJ/3n1і͋PL0ŒrxK@E3|k SS: pM#v)4HDi\v@(`{ۨY?:/ɯ ]򇇊CGҚrVIYaJphsR$=l#&8s|}mu*> byCՒ}BD_$̴a|.5b1aOmMn x?N;Tk@^wJtj6.c_!OB',W_5k']b3!(r6)v縓_#5P{<.6'#gŵUq1ض6"CIbҠIװfcoxq3}"߈9$Kb0F2Ó*yZ$ 1{ ;=1֩nz L_}(p՚Ӕ}~n_5pncႱtUA5Ϗ|MU[Y]:poᗲ -׃ϯÎ YvcUEBUSq# m*"& 4͐"lʡ k8܊6jC99.nXB ~%"@눙D^h )dž_G.'#sПޑ>o=`VxONv*75 awѵvcpXkaنHC}%krbxJ1` ,PP39(aq/5#BWvPNZ@KvDUnBd6k1pj39t /0/_1BIC#i f4 վ2rt>fqTڹ^ X^bǔpeYgO.8.,=\ -St)nOl aGV3vvڏrPbO';/j{a+qJͅ\V|MǼ(w;{@uCS}=M%=6.ALA};aXב#%1˴,g^v׺!zH JWuEjiʓ Hm5TT! x2&3';׫YkR#GYƟvlJʅ!>ؤh&D=;g{W'8 Z ;+&D!_(?gn-,QPH^ra0bpkD&gpJٷ~zFsEWq]P_E\C J8Snr=^ ]}*VwDI; NȥG\|2{Iƕk"'(+2$½cW`zS:l |SeVmv?T_ϐ7m@ ;Jm:.V9o/ ̝мI ?]c~mD R"N=^,zc%q?*&h64.dNS]QpaWa,ARvJ/Sw\ ? qZ%Ւx\Hѣ ]E0~H+SJH2c9C79v798{XW|6S<=7,u+T9۹1xmNDId˳<7^0HN߉YOZ(U#(@ ɨ~l驾xbL؃# 7-bS v𱕩Q$xi1+~dz2Fcx~X^ "2CxHߌ˂e]>fLL]úS1e}εf]ɞ2VS+2+h"XREQ)U1U۰5}k>W~63yVhpV$OV_߉ʥ96 uScTF~v_M6L R`0Wx 8EoӨ(qQ:%`g93 I~_]Ts'x;Gӓ5t^=/90Bo::򂘩bb_3P}H><: jUzŽ>i3>z0$f%GMeH,S4YK2I/{a/cAXN#!Z~LcgT1oø_€f3s֗U{<7'ɅsE`"WesRΔ%Ipy>P#G{AlKWQ;bŁEdx m$s!'#^rTZT2iC|y=Љ9_|1CJS" ր[GQ#8ЗL0 ^;Uds>|yb#Q14{(޲p BH )B?Gk;-c Mgn'}Fv̗':d-ԝV>뽜8{D[@5Kz'p”Q=胃e$Ǻ~H=-NXP8:[2Nb-YqEC}SӇ2H~t[\bA0T+bJ[?ODdպ hrzdoCԔ`G*H-+br{l+M)X%qg*a2h|W>vcbDQf"cNFCAhZϛb#$"UӺW̄Sh?I7/e~%/ AYă? 0"imqYk[̹SEccBzYzC+혭ܓ*>{P60JZ^K˾uEmD}rSUЮ3 #d-" :]ۂxh~U.kL-N(4T_Wcu P3 E5 bw95۟(l90{na53wh8"mVsɱ3C||k7TG^Rv@ѬUukQ6G#bß渤A_Yb%Ow CLt`G{o g/K^$qwPo'wJ11>mAgy\< ᢥbM8z7{su_ {0._!LJ,I8Tl1.aHb:˯9WMLl&y)ofW)қoO$y8T1/Ƽ|=(k[=xnl'j(Fɰ#c#HV#Ena*pqz.R^@]d|c\;a%lAxZ1@t:ra4bQICA.3"6k ix[>׋'VzrfW{aerPoRQRUEd<[EZm {%j%&5'WztJY\|e  D)4:ڙ:F kOniX=f#[x4d?w%չaQJtP1֚OlgOYڥ! hxǀ-,yEgR?M&x2ZkAеوIydO}ښ2t4nkvl{Uq ).1bjY#R'3K6 v-p\.9 JBViFGf,EŝJqE`=f2T Sgn-DJS(ТQi{^rut0y==2'>Wϩ5#j::%5JgU9pkȄX)p,H"=a-zYH9u 8LofբcCxh~F<^#dWH0O6t9Áհ" 2Lq=TX}XfK:3I J2\[y5% >9Rzl/Vz||UdiÈA(3kncȽ XYYNXJnkz}Aq!BYZAf0<]6 H9ᘛNSXRODX~w4B#zb*p⣣y˺Y Y.S?)/x䓣'ʏUU`={H5I\ϱv$3,9:-r:Y7ӼUq? 8/,V=~J q!ʤ3*AXOÂ_/`g7ŽU3i83hh2wr]{1o |ylq2o v;c;UVT>EBw--pk'`KuJbNؙtfUa R YA 3]`qQ>ﺙJ($1i϶c{@]Y5򶼣k݅|ԱW0g#izcФ9/4CyqVLFl 2VkC@itd'T=uݧ6tMLX(\RZ(CC*K.D [Cq,㡻yZfHAJ jFDYwBi<2:ӟRy*0^%DU8aXsO-uE]هB@%ǧA@Ῑ|̌nLjes|\wul {dMo胏̎DӔ$i5MΕ_R %B9WrZ/2uA}f:L2BsԷ|^.|X,n7 #0Ff,^S=mRNhqN'𜆖: Y DN|WR7>#?8E NaoyAT:"_QN+!3(( EwGl$ͲlA嚱"be YtCo 8V~\־fwG-iOZnǯAw$r| %B툾Y^2]T4]DqFv+Zٮeuy* 7D3MovǷ=L6Dve-* ֖f ;aPKAm/Xk4\FtPZQ 'Q t޸P ֮yUut/V,JiNA/Uk o֘Oak睒э`EyJ޻;VRPs=$\xP~h/5TqL+ UPi}T9-i)H&5 D:ъ-!p_1k}Gai JU! 'Gs/sM@wpc{C4tVxnH 0e9 1$93n9ViŬ{ujgyiؗ%c}KAo1-"ִ<&}rAJ \V#5?8:TAP0SMt-HðS '\OF / Og~ 3wO= ({(7-,pNnrΛGL;RsdL Ժ_vHtf&psG!`6iTdmyBх2xME̠A5 *s=2dc8; QjYDf n޴wD"YR,9r9F$85}xƅ0@jBCtem}4KJ.Ő mܠV  PT `Vp~>

str : 
ctxt :
ctxt : 
nargs : 


xmlXPathIdFunction ()

void        xmlXPathIdFunction              (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the id() XPath function node-set id(object) The id function selects elements by their unique ID (see [5.2.1 Unique IDs]). When the argument to id is of type node-set, then the result is the union of the result of applying id to the string value of each of the nodes in the argument node-set. When the argument to id is of any other type, the argument is converted to a string as if by a call to the string function; the string is split into a whitespace-separated list of tokens (whitespace is any sequence of characters matching the production S); the result is a node-set containing the elements in the same document as the context node that have a unique ID equal to any of the tokens in the list.

ctxt : 
nargs : 


xmlXPathLocalNameFunction ()

void        xmlXPathLocalNameFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the local-name() XPath function string local-name(node-set?) The local-name function returns a string containing the local part of the name of the node in the argument node-set that is first in document order. If the node-set is empty or the first node has no name, an empty string is returned. If the argument is omitted it defaults to the context node.

ctxt : 
nargs : 


xmlXPathNamespaceURIFunction ()

void        xmlXPathNamespaceURIFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the namespace-uri() XPath function string namespace-uri(node-set?) The namespace-uri function returns a string containing the namespace URI of the expanded name of the node in the argument node-set that is first in document order. If the node-set is empty, the first node has no name, or the expanded name has no namespace URI, an empty string is returned. If the argument is omitted it defaults to the context node.

ctxt : 
nargs : 


xmlXPathStringFunction ()

void        xmlXPathStringFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the string() XPath function string string(object?) he string function converts an object to a string as follows: - A node-set is converted to a string by returning the value of the node in the node-set that is first in document order. If the node-set is empty, an empty string is returned. - A number is converted to a string as follows + NaN is converted to the string NaN + positive zero is converted to the string 0 + negative zero is converted to the string 0 + positive infinity is converted to the string Infinity + negative infinity is converted to the string -Infinity + if the number is an integer, the number is represented in decimal form as a Number with no decimal point and no leading zeros, preceded by a minus sign (-) if the number is negative + otherwise, the number is represented in decimal form as a Number including a decimal point with at least one digit before the decimal point and at least one digit after the decimal point, preceded by a minus sign (-) if the number is negative; there must be no leading zeros before the decimal point apart possibly from the one required digit immediately before the decimal point; beyond the one required digit after the decimal point there must be as many, but only as many, more digits as are needed to uniquely distinguish the number from all other IEEE 754 numeric values. - The boolean false value is converted to the string false. The boolean true value is converted to the string true.

If the argument is omitted, it defaults to a node-set with the context node as its only member.

ctxt : 
nargs : 


xmlXPathStringLengthFunction ()

void        xmlXPathStringLengthFunction    (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the string-length() XPath function number string-length(string?) The string-length returns the number of characters in the string (see [3.6 Strings]). If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.

ctxt : 
nargs : 


xmlXPathConcatFunction ()

void        xmlXPathConcatFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the concat() XPath function string concat(string, string, string*) The concat function returns the concatenation of its arguments.

ctxt : 
nargs : 


xmlXPathContainsFunction ()

void        xmlXPathContainsFunction        (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the contains() XPath function boolean contains(string, string) The contains function returns true if the first argument string contains the second argument string, and otherwise returns false.

ctxt : 
nargs : 


xmlXPathStartsWithFunction ()

void        xmlXPathStartsWithFunction      (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the starts-with() XPath function boolean starts-with(string, string) The starts-with function returns true if the first argument string starts with the second argument string, and otherwise returns false.

ctxt : 
nargs : 


xmlXPathSubstringFunction ()

void        xmlXPathSubstringFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the substring() XPath function string substring(string, number, number?) The substring function returns the substring of the first argument starting at the position specified in the second argument with length specified in the third argument. For example, substring("12345",2,3) returns "234". If the third argument is not specified, it returns the substring starting at the position specified in the second argument and continuing to the end of the string. For example, substring("12345",2) returns "2345". More precisely, each character in the string (see [3.6 Strings]) is considered to have a numeric position: the position of the first character is 1, the position of the second character is 2 and so on. The returned substring contains those characters for which the position of the character is greater than or equal to the second argument and, if the third argument is specified, less than the sum of the second and third arguments; the comparisons and addition used for the above follow the standard IEEE 754 rules. Thus: - substring("12345", 1.5, 2.6) returns "234" - substring("12345", 0, 3) returns "12" - substring("12345", 0 div 0, 3) returns "" - substring("12345", 1, 0 div 0) returns "" - substring("12345", -42, 1 div 0) returns "12345" - substring("12345", -1 div 0, 1 div 0) returns ""

ctxt : 
nargs : 


xmlXPathSubstringBeforeFunction ()

void        xmlXPathSubstringBeforeFunction (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the substring-before() XPath function string substring-before(string, string) The substring-before function returns the substring of the first argument string that precedes the first occurrence of the second argument string in the first argument string, or the empty string if the first argument string does not contain the second argument string. For example, substring-before("1999/04/01","/") returns 1999.

ctxt : 
nargs : 


xmlXPathSubstringAfterFunction ()

void        xmlXPathSubstringAfterFunction  (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the substring-after() XPath function string substring-after(string, string) The substring-after function returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string, or the empty stringi if the first argument string does not contain the second argument string. For example, substring-after("1999/04/01","/") returns 04/01, and substring-after("1999/04/01","19") returns 99/04/01.

ctxt : 
nargs : 


xmlXPathNormalizeFunction ()

void        xmlXPathNormalizeFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the normalize-space() XPath function string normalize-space(string?) The normalize-space function returns the argument string with white space normalized by stripping leading and trailing whitespace and replacing sequences of whitespace characters by a single space. Whitespace characters are the same allowed by the S production in XML. If the argument is omitted, it defaults to the context node converted to a string, in other words the value of the context node.

ctxt : 
nargs : 


xmlXPathTranslateFunction ()

void        xmlXPathTranslateFunction       (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the translate() XPath function string translate(string, string, string) The translate function returns the first argument string with occurrences of characters in the second argument string replaced by the character at the corresponding position in the third argument string. For example, translate("bar","abc","ABC") returns the string BAr. If there is a character in the second argument string with no character at a corresponding position in the third argument string (because the second argument string is longer than the third argument string), then occurrences of that character in the first argument string are removed. For example, translate("--aaa--","abc-","ABC")

ctxt : 
nargs : 


xmlXPathNotFunction ()

void        xmlXPathNotFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the not() XPath function boolean not(boolean) The not function returns true if its argument is false, and false otherwise.

ctxt : 
nargs : 


xmlXPathTrueFunction ()

void        xmlXPathTrueFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the true() XPath function boolean true()

ctxt : 
nargs : 


xmlXPathFalseFunction ()

void        xmlXPathFalseFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the false() XPath function boolean false()

ctxt : 
nargs : 


xmlXPathLangFunction ()

void        xmlXPathLangFunction            (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the lang() XPath function boolean lang(string) The lang function returns true or false depending on whether the language of the context node as specified by xml:lang attributes is the same as or is a sublanguage of the language specified by the argument string. The language of the context node is determined by the value of the xml:lang attribute on the context node, or, if the context node has no xml:lang attribute, by the value of the xml:lang attribute on the nearest ancestor of the context node that has an xml:lang attribute. If there is no such attribute, then lang

ctxt : 
nargs : 


xmlXPathNumberFunction ()

void        xmlXPathNumberFunction          (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the number() XPath function number number(object?)

ctxt : 
nargs : 


xmlXPathSumFunction ()

void        xmlXPathSumFunction             (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the sum() XPath function number sum(node-set) The sum function returns the sum of the values of the nodes in the argument node-set.

ctxt : 
nargs : 


xmlXPathFloorFunction ()

void        xmlXPathFloorFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the floor() XPath function number floor(number) The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer.

ctxt : 
nargs : 


xmlXPathCeilingFunction ()

void        xmlXPathCeilingFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the ceiling() XPath function number ceiling(number) The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer.

ctxt : 
nargs : 


xmlXPathRoundFunction ()

void        xmlXPathRoundFunction           (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the round() XPath function number round(number) The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is even is returned.

ctxt : 
nargs : 


xmlXPathBooleanFunction ()

void        xmlXPathBooleanFunction         (xmlXPathParserContextPtr ctxt,
                                             int nargs);

Implement the boolean() XPath function boolean boolean(object) he boolean function converts its argument to a boolean as follows: - a number is true if and only if it is neither positive or negative zero nor NaN - a node-set is true if and only if it is non-empty - a string is true if and only if its length is non-zero

ctxt : 
nargs : 


xmlXPathNodeSetFreeNs ()

void        xmlXPathNodeSetFreeNs           (xmlNsPtr ns);

Namespace node in libxml don't match the XPath semantic. In a node set the namespace nodes are duplicated and the next pointer is set to the parent node in the XPath semantic. Check if such a node need to be freed

ns :