ÿØÿà JFIF    ÿþ >CREATOR: gd-jpeg v1.0 (using IJG JPEG v62), default quality ÿÛ C     p!ranha?
Server IP : 172.67.171.101  /  Your IP : 216.73.216.123
Web Server : Apache
System : Linux server1.morocco-tours.com 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64
User : zagoradraa ( 1005)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/local/share/man/man3/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /usr/local/share/man/man3/JSON::PP.3pm
.\" Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings.  \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote.  \*(C+ will
.\" give a nicer C++.  Capital omega is used to do unbreakable dashes and
.\" therefore won't be available.  \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
.    ds -- \(*W-
.    ds PI pi
.    if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
.    if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\"  diablo 12 pitch
.    ds L" ""
.    ds R" ""
.    ds C` ""
.    ds C' ""
'br\}
.el\{\
.    ds -- \|\(em\|
.    ds PI \(*p
.    ds L" ``
.    ds R" ''
.    ds C`
.    ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\"
.\" If the F register is turned on, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD.  Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{
.    if \nF \{
.        de IX
.        tm Index:\\$1\t\\n%\t"\\$2"
..
.        if !\nF==2 \{
.            nr % 0
.            nr F 2
.        \}
.    \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "inc::JSON::PP 3"
.TH inc::JSON::PP 3 "2021-08-03" "perl v5.16.3" "User Contributed Perl Documentation"
.\" For nroff, turn off justification.  Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
JSON::PP \- JSON::XS compatible pure\-Perl module.
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 1
\& use JSON::PP;
\&
\& # exported functions, they croak on error
\& # and expect/generate UTF\-8
\&
\& $utf8_encoded_json_text = encode_json $perl_hash_or_arrayref;
\& $perl_hash_or_arrayref  = decode_json $utf8_encoded_json_text;
\&
\& # OO\-interface
\&
\& $coder = JSON::PP\->new\->ascii\->pretty\->allow_nonref;
\& 
\& $json_text   = $json\->encode( $perl_scalar );
\& $perl_scalar = $json\->decode( $json_text );
\& 
\& $pretty_printed = $json\->pretty\->encode( $perl_scalar ); # pretty\-printing
\& 
\& # Note that JSON version 2.0 and above will automatically use
\& # JSON::XS or JSON::PP, so you should be able to just:
\& 
\& use JSON;
.Ve
.SH "VERSION"
.IX Header "VERSION"
.Vb 1
\&    2.27202
.Ve
.PP
\&\s-1JSON::XS\s0 2.27 (~2.30) compatible.
.SH "NOTE"
.IX Header "NOTE"
\&\s-1JSON::PP\s0 had been inculded in \s-1JSON\s0 distribution (\s-1CPAN\s0 module).
It was a perl core module in Perl 5.14.
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
This module is \s-1JSON::XS\s0 compatible pure Perl module.
(Perl 5.8 or later is recommended)
.PP
\&\s-1JSON::XS\s0 is the fastest and most proper \s-1JSON\s0 module on \s-1CPAN.\s0
It is written by Marc Lehmann in C, so must be compiled and
installed in the used environment.
.PP
\&\s-1JSON::PP\s0 is a pure-Perl module and has compatibility to \s-1JSON::XS.\s0
.SS "\s-1FEATURES\s0"
.IX Subsection "FEATURES"
.IP "\(bu" 4
correct unicode handling
.Sp
This module knows how to handle Unicode (depending on Perl version).
.Sp
See to \*(L"A \s-1FEW NOTES ON UNICODE AND PERL\*(R"\s0 in \s-1JSON::XS\s0 and \*(L"\s-1UNICODE HANDLING ON PERLS\*(R"\s0.
.IP "\(bu" 4
round-trip integrity
.Sp
When you serialise a perl data structure using only data types supported
by \s-1JSON\s0 and Perl, the deserialised data structure is identical on the Perl
level. (e.g. the string \*(L"2.0\*(R" doesn't suddenly become \*(L"2\*(R" just because
it looks like a number). There \fIare\fR minor exceptions to this, read the
\&\s-1MAPPING\s0 section below to learn about those.
.IP "\(bu" 4
strict checking of \s-1JSON\s0 correctness
.Sp
There is no guessing, no generating of illegal \s-1JSON\s0 texts by default,
and only \s-1JSON\s0 is accepted as input by default (the latter is a security feature).
But when some options are set, loose chcking features are available.
.SH "FUNCTIONAL INTERFACE"
.IX Header "FUNCTIONAL INTERFACE"
Some documents are copied and modified from \*(L"\s-1FUNCTIONAL INTERFACE\*(R"\s0 in \s-1JSON::XS\s0.
.SS "encode_json"
.IX Subsection "encode_json"
.Vb 1
\&    $json_text = encode_json $perl_scalar
.Ve
.PP
Converts the given Perl data structure to a \s-1UTF\-8\s0 encoded, binary string.
.PP
This function call is functionally identical to:
.PP
.Vb 1
\&    $json_text = JSON::PP\->new\->utf8\->encode($perl_scalar)
.Ve
.SS "decode_json"
.IX Subsection "decode_json"
.Vb 1
\&    $perl_scalar = decode_json $json_text
.Ve
.PP
The opposite of \f(CW\*(C`encode_json\*(C'\fR: expects an \s-1UTF\-8 \s0(binary) string and tries
to parse that as an \s-1UTF\-8\s0 encoded \s-1JSON\s0 text, returning the resulting
reference.
.PP
This function call is functionally identical to:
.PP
.Vb 1
\&    $perl_scalar = JSON::PP\->new\->utf8\->decode($json_text)
.Ve
.SS "JSON::PP::is_bool"
.IX Subsection "JSON::PP::is_bool"
.Vb 1
\&    $is_boolean = JSON::PP::is_bool($scalar)
.Ve
.PP
Returns true if the passed scalar represents either JSON::PP::true or
JSON::PP::false, two constants that act like \f(CW1\fR and \f(CW0\fR respectively
and are also used to represent \s-1JSON \s0\f(CW\*(C`true\*(C'\fR and \f(CW\*(C`false\*(C'\fR in Perl strings.
.SS "JSON::PP::true"
.IX Subsection "JSON::PP::true"
Returns \s-1JSON\s0 true value which is blessed object.
It \f(CW\*(C`isa\*(C'\fR JSON::PP::Boolean object.
.SS "JSON::PP::false"
.IX Subsection "JSON::PP::false"
Returns \s-1JSON\s0 false value which is blessed object.
It \f(CW\*(C`isa\*(C'\fR JSON::PP::Boolean object.
.SS "JSON::PP::null"
.IX Subsection "JSON::PP::null"
Returns \f(CW\*(C`undef\*(C'\fR.
.PP
See \s-1MAPPING\s0, below, for more information on how \s-1JSON\s0 values are mapped to
Perl.
.SH "HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER"
.IX Header "HOW DO I DECODE A DATA FROM OUTER AND ENCODE TO OUTER"
This section supposes that your perl vresion is 5.8 or later.
.PP
If you know a \s-1JSON\s0 text from an outer world \- a network, a file content, and so on,
is encoded in \s-1UTF\-8,\s0 you should use \f(CW\*(C`decode_json\*(C'\fR or \f(CW\*(C`JSON\*(C'\fR module object
with \f(CW\*(C`utf8\*(C'\fR enable. And the decoded result will contain \s-1UNICODE\s0 characters.
.PP
.Vb 4
\&  # from network
\&  my $json        = JSON::PP\->new\->utf8;
\&  my $json_text   = CGI\->new\->param( \*(Aqjson_data\*(Aq );
\&  my $perl_scalar = $json\->decode( $json_text );
\&  
\&  # from file content
\&  local $/;
\&  open( my $fh, \*(Aq<\*(Aq, \*(Aqjson.data\*(Aq );
\&  $json_text   = <$fh>;
\&  $perl_scalar = decode_json( $json_text );
.Ve
.PP
If an outer data is not encoded in \s-1UTF\-8,\s0 firstly you should \f(CW\*(C`decode\*(C'\fR it.
.PP
.Vb 5
\&  use Encode;
\&  local $/;
\&  open( my $fh, \*(Aq<\*(Aq, \*(Aqjson.data\*(Aq );
\&  my $encoding = \*(Aqcp932\*(Aq;
\&  my $unicode_json_text = decode( $encoding, <$fh> ); # UNICODE
\&  
\&  # or you can write the below code.
\&  #
\&  # open( my $fh, "<:encoding($encoding)", \*(Aqjson.data\*(Aq );
\&  # $unicode_json_text = <$fh>;
.Ve
.PP
In this case, \f(CW$unicode_json_text\fR is of course \s-1UNICODE\s0 string.
So you \fBcannot\fR use \f(CW\*(C`decode_json\*(C'\fR nor \f(CW\*(C`JSON\*(C'\fR module object with \f(CW\*(C`utf8\*(C'\fR enable.
Instead of them, you use \f(CW\*(C`JSON\*(C'\fR module object with \f(CW\*(C`utf8\*(C'\fR disable.
.PP
.Vb 1
\&  $perl_scalar = $json\->utf8(0)\->decode( $unicode_json_text );
.Ve
.PP
Or \f(CW\*(C`encode \*(Aqutf8\*(Aq\*(C'\fR and \f(CW\*(C`decode_json\*(C'\fR:
.PP
.Vb 2
\&  $perl_scalar = decode_json( encode( \*(Aqutf8\*(Aq, $unicode_json_text ) );
\&  # this way is not efficient.
.Ve
.PP
And now, you want to convert your \f(CW$perl_scalar\fR into \s-1JSON\s0 data and
send it to an outer world \- a network or a file content, and so on.
.PP
Your data usually contains \s-1UNICODE\s0 strings and you want the converted data to be encoded
in \s-1UTF\-8,\s0 you should use \f(CW\*(C`encode_json\*(C'\fR or \f(CW\*(C`JSON\*(C'\fR module object with \f(CW\*(C`utf8\*(C'\fR enable.
.PP
.Vb 3
\&  print encode_json( $perl_scalar ); # to a network? file? or display?
\&  # or
\&  print $json\->utf8\->encode( $perl_scalar );
.Ve
.PP
If \f(CW$perl_scalar\fR does not contain \s-1UNICODE\s0 but \f(CW$encoding\fR\-encoded strings
for some reason, then its characters are regarded as \fBlatin1\fR for perl
(because it does not concern with your \f(CW$encoding\fR).
You \fBcannot\fR use \f(CW\*(C`encode_json\*(C'\fR nor \f(CW\*(C`JSON\*(C'\fR module object with \f(CW\*(C`utf8\*(C'\fR enable.
Instead of them, you use \f(CW\*(C`JSON\*(C'\fR module object with \f(CW\*(C`utf8\*(C'\fR disable.
Note that the resulted text is a \s-1UNICODE\s0 string but no problem to print it.
.PP
.Vb 4
\&  # $perl_scalar contains $encoding encoded string values
\&  $unicode_json_text = $json\->utf8(0)\->encode( $perl_scalar );
\&  # $unicode_json_text consists of characters less than 0x100
\&  print $unicode_json_text;
.Ve
.PP
Or \f(CW\*(C`decode $encoding\*(C'\fR all string values and \f(CW\*(C`encode_json\*(C'\fR:
.PP
.Vb 3
\&  $perl_scalar\->{ foo } = decode( $encoding, $perl_scalar\->{ foo } );
\&  # ... do it to each string values, then encode_json
\&  $json_text = encode_json( $perl_scalar );
.Ve
.PP
This method is a proper way but probably not efficient.
.PP
See to Encode, perluniintro.
.SH "METHODS"
.IX Header "METHODS"
Basically, check to \s-1JSON\s0 or \s-1JSON::XS\s0.
.SS "new"
.IX Subsection "new"
.Vb 1
\&    $json = JSON::PP\->new
.Ve
.PP
Rturns a new \s-1JSON::PP\s0 object that can be used to de/encode \s-1JSON\s0
strings.
.PP
All boolean flags described below are by default \fIdisabled\fR.
.PP
The mutators for flags all return the \s-1JSON\s0 object again and thus calls can
be chained:
.PP
.Vb 2
\&   my $json = JSON::PP\->new\->utf8\->space_after\->encode({a => [1,2]})
\&   => {"a": [1, 2]}
.Ve
.SS "ascii"
.IX Subsection "ascii"
.Vb 1
\&    $json = $json\->ascii([$enable])
\&    
\&    $enabled = $json\->get_ascii
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the encode method will not generate characters outside
the code range 0..127. Any Unicode characters outside that range will be escaped using either
a single \euXXXX or a double \euHHHH\euLLLLL escape sequence, as per \s-1RFC4627.
\&\s0(See to \*(L"OBJECT-ORIENTED \s-1INTERFACE\*(R"\s0 in \s-1JSON::XS\s0).
.PP
In Perl 5.005, there is no character having high value (more than 255).
See to \*(L"\s-1UNICODE HANDLING ON PERLS\*(R"\s0.
.PP
If \f(CW$enable\fR is false, then the encode method will not escape Unicode characters unless
required by the \s-1JSON\s0 syntax or other flags. This results in a faster and more compact format.
.PP
.Vb 2
\&  JSON::PP\->new\->ascii(1)\->encode([chr 0x10401])
\&  => ["\eud801\eudc01"]
.Ve
.SS "latin1"
.IX Subsection "latin1"
.Vb 1
\&    $json = $json\->latin1([$enable])
\&    
\&    $enabled = $json\->get_latin1
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the encode method will encode the resulting \s-1JSON\s0
text as latin1 (or iso\-8859\-1), escaping any characters outside the code range 0..255.
.PP
If \f(CW$enable\fR is false, then the encode method will not escape Unicode characters
unless required by the \s-1JSON\s0 syntax or other flags.
.PP
.Vb 2
\&  JSON::XS\->new\->latin1\->encode (["\ex{89}\ex{abc}"]
\&  => ["\ex{89}\e\eu0abc"]    # (perl syntax, U+abc escaped, U+89 not)
.Ve
.PP
See to \*(L"\s-1UNICODE HANDLING ON PERLS\*(R"\s0.
.SS "utf8"
.IX Subsection "utf8"
.Vb 1
\&    $json = $json\->utf8([$enable])
\&    
\&    $enabled = $json\->get_utf8
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the encode method will encode the \s-1JSON\s0 result
into \s-1UTF\-8,\s0 as required by many protocols, while the decode method expects to be handled
an UTF\-8\-encoded string. Please note that UTF\-8\-encoded strings do not contain any
characters outside the range 0..255, they are thus useful for bytewise/binary I/O.
.PP
(In Perl 5.005, any character outside the range 0..255 does not exist.
See to \*(L"\s-1UNICODE HANDLING ON PERLS\*(R"\s0.)
.PP
In future versions, enabling this option might enable autodetection of the \s-1UTF\-16\s0 and \s-1UTF\-32\s0
encoding families, as described in \s-1RFC4627.\s0
.PP
If \f(CW$enable\fR is false, then the encode method will return the \s-1JSON\s0 string as a (non-encoded)
Unicode string, while decode expects thus a Unicode string. Any decoding or encoding
(e.g. to \s-1UTF\-8\s0 or \s-1UTF\-16\s0) needs to be done yourself, e.g. using the Encode module.
.PP
Example, output UTF\-16BE\-encoded \s-1JSON:\s0
.PP
.Vb 2
\&  use Encode;
\&  $jsontext = encode "UTF\-16BE", JSON::PP\->new\->encode ($object);
.Ve
.PP
Example, decode UTF\-32LE\-encoded \s-1JSON:\s0
.PP
.Vb 2
\&  use Encode;
\&  $object = JSON::PP\->new\->decode (decode "UTF\-32LE", $jsontext);
.Ve
.SS "pretty"
.IX Subsection "pretty"
.Vb 1
\&    $json = $json\->pretty([$enable])
.Ve
.PP
This enables (or disables) all of the \f(CW\*(C`indent\*(C'\fR, \f(CW\*(C`space_before\*(C'\fR and
\&\f(CW\*(C`space_after\*(C'\fR flags in one call to generate the most readable
(or most compact) form possible.
.PP
Equivalent to:
.PP
.Vb 1
\&   $json\->indent\->space_before\->space_after
.Ve
.SS "indent"
.IX Subsection "indent"
.Vb 1
\&    $json = $json\->indent([$enable])
\&    
\&    $enabled = $json\->get_indent
.Ve
.PP
The default indent space length is three.
You can use \f(CW\*(C`indent_length\*(C'\fR to change the length.
.SS "space_before"
.IX Subsection "space_before"
.Vb 1
\&    $json = $json\->space_before([$enable])
\&    
\&    $enabled = $json\->get_space_before
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the \f(CW\*(C`encode\*(C'\fR method will add an extra
optional space before the \f(CW\*(C`:\*(C'\fR separating keys from values in \s-1JSON\s0 objects.
.PP
If \f(CW$enable\fR is false, then the \f(CW\*(C`encode\*(C'\fR method will not add any extra
space at those places.
.PP
This setting has no effect when decoding \s-1JSON\s0 texts.
.PP
Example, space_before enabled, space_after and indent disabled:
.PP
.Vb 1
\&   {"key" :"value"}
.Ve
.SS "space_after"
.IX Subsection "space_after"
.Vb 1
\&    $json = $json\->space_after([$enable])
\&    
\&    $enabled = $json\->get_space_after
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the \f(CW\*(C`encode\*(C'\fR method will add an extra
optional space after the \f(CW\*(C`:\*(C'\fR separating keys from values in \s-1JSON\s0 objects
and extra whitespace after the \f(CW\*(C`,\*(C'\fR separating key-value pairs and array
members.
.PP
If \f(CW$enable\fR is false, then the \f(CW\*(C`encode\*(C'\fR method will not add any extra
space at those places.
.PP
This setting has no effect when decoding \s-1JSON\s0 texts.
.PP
Example, space_before and indent disabled, space_after enabled:
.PP
.Vb 1
\&   {"key": "value"}
.Ve
.SS "relaxed"
.IX Subsection "relaxed"
.Vb 1
\&    $json = $json\->relaxed([$enable])
\&    
\&    $enabled = $json\->get_relaxed
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`decode\*(C'\fR will accept some
extensions to normal \s-1JSON\s0 syntax (see below). \f(CW\*(C`encode\*(C'\fR will not be
affected in anyway. \fIBe aware that this option makes you accept invalid
\&\s-1JSON\s0 texts as if they were valid!\fR. I suggest only to use this option to
parse application-specific files written by humans (configuration files,
resource files etc.)
.PP
If \f(CW$enable\fR is false (the default), then \f(CW\*(C`decode\*(C'\fR will only accept
valid \s-1JSON\s0 texts.
.PP
Currently accepted extensions are:
.IP "\(bu" 4
list items can have an end-comma
.Sp
\&\s-1JSON \s0\fIseparates\fR array elements and key-value pairs with commas. This
can be annoying if you write \s-1JSON\s0 texts manually and want to be able to
quickly append elements, so this extension accepts comma at the end of
such items not just between them:
.Sp
.Vb 8
\&   [
\&      1,
\&      2, <\- this comma not normally allowed
\&   ]
\&   {
\&      "k1": "v1",
\&      "k2": "v2", <\- this comma not normally allowed
\&   }
.Ve
.IP "\(bu" 4
shell-style '#'\-comments
.Sp
Whenever \s-1JSON\s0 allows whitespace, shell-style comments are additionally
allowed. They are terminated by the first carriage-return or line-feed
character, after which more white-space and comments are allowed.
.Sp
.Vb 4
\&  [
\&     1, # this comment not allowed in JSON
\&        # neither this one...
\&  ]
.Ve
.SS "canonical"
.IX Subsection "canonical"
.Vb 1
\&    $json = $json\->canonical([$enable])
\&    
\&    $enabled = $json\->get_canonical
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the \f(CW\*(C`encode\*(C'\fR method will output \s-1JSON\s0 objects
by sorting their keys. This is adding a comparatively high overhead.
.PP
If \f(CW$enable\fR is false, then the \f(CW\*(C`encode\*(C'\fR method will output key-value
pairs in the order Perl stores them (which will likely change between runs
of the same script).
.PP
This option is useful if you want the same data structure to be encoded as
the same \s-1JSON\s0 text (given the same overall settings). If it is disabled,
the same hash might be encoded differently even if contains the same data,
as key-value pairs have no inherent ordering in Perl.
.PP
This setting has no effect when decoding \s-1JSON\s0 texts.
.PP
If you want your own sorting routine, you can give a code referece
or a subroutine name to \f(CW\*(C`sort_by\*(C'\fR. See to \f(CW\*(C`JSON::PP OWN METHODS\*(C'\fR.
.SS "allow_nonref"
.IX Subsection "allow_nonref"
.Vb 1
\&    $json = $json\->allow_nonref([$enable])
\&    
\&    $enabled = $json\->get_allow_nonref
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the \f(CW\*(C`encode\*(C'\fR method can convert a
non-reference into its corresponding string, number or null \s-1JSON\s0 value,
which is an extension to \s-1RFC4627.\s0 Likewise, \f(CW\*(C`decode\*(C'\fR will accept those \s-1JSON\s0
values instead of croaking.
.PP
If \f(CW$enable\fR is false, then the \f(CW\*(C`encode\*(C'\fR method will croak if it isn't
passed an arrayref or hashref, as \s-1JSON\s0 texts must either be an object
or array. Likewise, \f(CW\*(C`decode\*(C'\fR will croak if given something that is not a
\&\s-1JSON\s0 object or array.
.PP
.Vb 2
\&   JSON::PP\->new\->allow_nonref\->encode ("Hello, World!")
\&   => "Hello, World!"
.Ve
.SS "allow_unknown"
.IX Subsection "allow_unknown"
.Vb 1
\&    $json = $json\->allow_unknown ([$enable])
\&    
\&    $enabled = $json\->get_allow_unknown
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then \*(L"encode\*(R" will *not* throw an
exception when it encounters values it cannot represent in \s-1JSON \s0(for
example, filehandles) but instead will encode a \s-1JSON \s0\*(L"null\*(R" value.
Note that blessed objects are not included here and are handled
separately by c<allow_nonref>.
.PP
If \f(CW$enable\fR is false (the default), then \*(L"encode\*(R" will throw an
exception when it encounters anything it cannot encode as \s-1JSON.\s0
.PP
This option does not affect \*(L"decode\*(R" in any way, and it is
recommended to leave it off unless you know your communications
partner.
.SS "allow_blessed"
.IX Subsection "allow_blessed"
.Vb 1
\&    $json = $json\->allow_blessed([$enable])
\&    
\&    $enabled = $json\->get_allow_blessed
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then the \f(CW\*(C`encode\*(C'\fR method will not
barf when it encounters a blessed reference. Instead, the value of the
\&\fBconvert_blessed\fR option will decide whether \f(CW\*(C`null\*(C'\fR (\f(CW\*(C`convert_blessed\*(C'\fR
disabled or no \f(CW\*(C`TO_JSON\*(C'\fR method found) or a representation of the
object (\f(CW\*(C`convert_blessed\*(C'\fR enabled and \f(CW\*(C`TO_JSON\*(C'\fR method found) is being
encoded. Has no effect on \f(CW\*(C`decode\*(C'\fR.
.PP
If \f(CW$enable\fR is false (the default), then \f(CW\*(C`encode\*(C'\fR will throw an
exception when it encounters a blessed object.
.SS "convert_blessed"
.IX Subsection "convert_blessed"
.Vb 1
\&    $json = $json\->convert_blessed([$enable])
\&    
\&    $enabled = $json\->get_convert_blessed
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`encode\*(C'\fR, upon encountering a
blessed object, will check for the availability of the \f(CW\*(C`TO_JSON\*(C'\fR method
on the object's class. If found, it will be called in scalar context
and the resulting scalar will be encoded instead of the object. If no
\&\f(CW\*(C`TO_JSON\*(C'\fR method is found, the value of \f(CW\*(C`allow_blessed\*(C'\fR will decide what
to do.
.PP
The \f(CW\*(C`TO_JSON\*(C'\fR method may safely call die if it wants. If \f(CW\*(C`TO_JSON\*(C'\fR
returns other blessed objects, those will be handled in the same
way. \f(CW\*(C`TO_JSON\*(C'\fR must take care of not causing an endless recursion cycle
(== crash) in this case. The name of \f(CW\*(C`TO_JSON\*(C'\fR was chosen because other
methods called by the Perl core (== not by the user of the object) are
usually in upper case letters and to avoid collisions with the \f(CW\*(C`to_json\*(C'\fR
function or method.
.PP
This setting does not yet influence \f(CW\*(C`decode\*(C'\fR in any way.
.PP
If \f(CW$enable\fR is false, then the \f(CW\*(C`allow_blessed\*(C'\fR setting will decide what
to do when a blessed object is found.
.SS "filter_json_object"
.IX Subsection "filter_json_object"
.Vb 1
\&    $json = $json\->filter_json_object([$coderef])
.Ve
.PP
When \f(CW$coderef\fR is specified, it will be called from \f(CW\*(C`decode\*(C'\fR each
time it decodes a \s-1JSON\s0 object. The only argument passed to the coderef
is a reference to the newly-created hash. If the code references returns
a single scalar (which need not be a reference), this value
(i.e. a copy of that scalar to avoid aliasing) is inserted into the
deserialised data structure. If it returns an empty list
(\s-1NOTE: \s0\fInot\fR \f(CW\*(C`undef\*(C'\fR, which is a valid scalar), the original deserialised
hash will be inserted. This setting can slow down decoding considerably.
.PP
When \f(CW$coderef\fR is omitted or undefined, any existing callback will
be removed and \f(CW\*(C`decode\*(C'\fR will not change the deserialised hash in any
way.
.PP
Example, convert all \s-1JSON\s0 objects into the integer 5:
.PP
.Vb 6
\&   my $js = JSON::PP\->new\->filter_json_object (sub { 5 });
\&   # returns [5]
\&   $js\->decode (\*(Aq[{}]\*(Aq); # the given subroutine takes a hash reference.
\&   # throw an exception because allow_nonref is not enabled
\&   # so a lone 5 is not allowed.
\&   $js\->decode (\*(Aq{"a":1, "b":2}\*(Aq);
.Ve
.SS "filter_json_single_key_object"
.IX Subsection "filter_json_single_key_object"
.Vb 1
\&    $json = $json\->filter_json_single_key_object($key [=> $coderef])
.Ve
.PP
Works remotely similar to \f(CW\*(C`filter_json_object\*(C'\fR, but is only called for
\&\s-1JSON\s0 objects having a single key named \f(CW$key\fR.
.PP
This \f(CW$coderef\fR is called before the one specified via
\&\f(CW\*(C`filter_json_object\*(C'\fR, if any. It gets passed the single value in the \s-1JSON\s0
object. If it returns a single value, it will be inserted into the data
structure. If it returns nothing (not even \f(CW\*(C`undef\*(C'\fR but the empty list),
the callback from \f(CW\*(C`filter_json_object\*(C'\fR will be called next, as if no
single-key callback were specified.
.PP
If \f(CW$coderef\fR is omitted or undefined, the corresponding callback will be
disabled. There can only ever be one callback for a given key.
.PP
As this callback gets called less often then the \f(CW\*(C`filter_json_object\*(C'\fR
one, decoding speed will not usually suffer as much. Therefore, single-key
objects make excellent targets to serialise Perl objects into, especially
as single-key \s-1JSON\s0 objects are as close to the type-tagged value concept
as \s-1JSON\s0 gets (it's basically an \s-1ID/VALUE\s0 tuple). Of course, \s-1JSON\s0 does not
support this in any way, so you need to make sure your data never looks
like a serialised Perl hash.
.PP
Typical names for the single object key are \f(CW\*(C`_\|_class_whatever_\|_\*(C'\fR, or
\&\f(CW\*(C`$_\|_dollars_are_rarely_used_\|_$\*(C'\fR or \f(CW\*(C`}ugly_brace_placement\*(C'\fR, or even
things like \f(CW\*(C`_\|_class_md5sum(classname)_\|_\*(C'\fR, to reduce the risk of clashing
with real hashes.
.PP
Example, decode \s-1JSON\s0 objects of the form \f(CW\*(C`{ "_\|_widget_\|_" => <id> }\*(C'\fR
into the corresponding \f(CW$WIDGET{<id>}\fR object:
.PP
.Vb 7
\&   # return whatever is in $WIDGET{5}:
\&   JSON::PP
\&      \->new
\&      \->filter_json_single_key_object (_\|_widget_\|_ => sub {
\&            $WIDGET{ $_[0] }
\&         })
\&      \->decode (\*(Aq{"_\|_widget_\|_": 5\*(Aq)
\&
\&   # this can be used with a TO_JSON method in some "widget" class
\&   # for serialisation to json:
\&   sub WidgetBase::TO_JSON {
\&      my ($self) = @_;
\&
\&      unless ($self\->{id}) {
\&         $self\->{id} = ..get..some..id..;
\&         $WIDGET{$self\->{id}} = $self;
\&      }
\&
\&      { _\|_widget_\|_ => $self\->{id} }
\&   }
.Ve
.SS "shrink"
.IX Subsection "shrink"
.Vb 1
\&    $json = $json\->shrink([$enable])
\&    
\&    $enabled = $json\->get_shrink
.Ve
.PP
In \s-1JSON::XS,\s0 this flag resizes strings generated by either
\&\f(CW\*(C`encode\*(C'\fR or \f(CW\*(C`decode\*(C'\fR to their minimum size possible.
It will also try to downgrade any strings to octet-form if possible.
.PP
In \s-1JSON::PP,\s0 it is noop about resizing strings but tries
\&\f(CW\*(C`utf8::downgrade\*(C'\fR to the returned string by \f(CW\*(C`encode\*(C'\fR.
See to utf8.
.PP
See to \*(L"OBJECT-ORIENTED \s-1INTERFACE\*(R"\s0 in \s-1JSON::XS\s0
.SS "max_depth"
.IX Subsection "max_depth"
.Vb 1
\&    $json = $json\->max_depth([$maximum_nesting_depth])
\&    
\&    $max_depth = $json\->get_max_depth
.Ve
.PP
Sets the maximum nesting level (default \f(CW512\fR) accepted while encoding
or decoding. If a higher nesting level is detected in \s-1JSON\s0 text or a Perl
data structure, then the encoder and decoder will stop and croak at that
point.
.PP
Nesting level is defined by number of hash\- or arrayrefs that the encoder
needs to traverse to reach a given point or the number of \f(CW\*(C`{\*(C'\fR or \f(CW\*(C`[\*(C'\fR
characters without their matching closing parenthesis crossed to reach a
given character in a string.
.PP
If no argument is given, the highest possible setting will be used, which
is rarely useful.
.PP
See \*(L"\s-1SSECURITY CONSIDERATIONS\*(R"\s0 in \s-1JSON::XS\s0 for more info on why this is useful.
.PP
When a large value (100 or more) was set and it de/encodes a deep nested object/text,
it may raise a warning 'Deep recursion on subroutin' at the perl runtime phase.
.SS "max_size"
.IX Subsection "max_size"
.Vb 1
\&    $json = $json\->max_size([$maximum_string_size])
\&    
\&    $max_size = $json\->get_max_size
.Ve
.PP
Set the maximum length a \s-1JSON\s0 text may have (in bytes) where decoding is
being attempted. The default is \f(CW0\fR, meaning no limit. When \f(CW\*(C`decode\*(C'\fR
is called on a string that is longer then this many bytes, it will not
attempt to decode the string but throw an exception. This setting has no
effect on \f(CW\*(C`encode\*(C'\fR (yet).
.PP
If no argument is given, the limit check will be deactivated (same as when
\&\f(CW0\fR is specified).
.PP
See \*(L"\s-1SSECURITY CONSIDERATIONS\*(R"\s0 in \s-1JSON::XS\s0 for more info on why this is useful.
.SS "encode"
.IX Subsection "encode"
.Vb 1
\&    $json_text = $json\->encode($perl_scalar)
.Ve
.PP
Converts the given Perl data structure (a simple scalar or a reference
to a hash or array) to its \s-1JSON\s0 representation. Simple scalars will be
converted into \s-1JSON\s0 string or number sequences, while references to arrays
become \s-1JSON\s0 arrays and references to hashes become \s-1JSON\s0 objects. Undefined
Perl values (e.g. \f(CW\*(C`undef\*(C'\fR) become \s-1JSON \s0\f(CW\*(C`null\*(C'\fR values.
References to the integers \f(CW0\fR and \f(CW1\fR are converted into \f(CW\*(C`true\*(C'\fR and \f(CW\*(C`false\*(C'\fR.
.SS "decode"
.IX Subsection "decode"
.Vb 1
\&    $perl_scalar = $json\->decode($json_text)
.Ve
.PP
The opposite of \f(CW\*(C`encode\*(C'\fR: expects a \s-1JSON\s0 text and tries to parse it,
returning the resulting simple scalar or reference. Croaks on error.
.PP
\&\s-1JSON\s0 numbers and strings become simple Perl scalars. \s-1JSON\s0 arrays become
Perl arrayrefs and \s-1JSON\s0 objects become Perl hashrefs. \f(CW\*(C`true\*(C'\fR becomes
\&\f(CW1\fR (\f(CW\*(C`JSON::true\*(C'\fR), \f(CW\*(C`false\*(C'\fR becomes \f(CW0\fR (\f(CW\*(C`JSON::false\*(C'\fR) and
\&\f(CW\*(C`null\*(C'\fR becomes \f(CW\*(C`undef\*(C'\fR.
.SS "decode_prefix"
.IX Subsection "decode_prefix"
.Vb 1
\&    ($perl_scalar, $characters) = $json\->decode_prefix($json_text)
.Ve
.PP
This works like the \f(CW\*(C`decode\*(C'\fR method, but instead of raising an exception
when there is trailing garbage after the first \s-1JSON\s0 object, it will
silently stop parsing there and return the number of characters consumed
so far.
.PP
.Vb 2
\&   JSON\->new\->decode_prefix ("[1] the tail")
\&   => ([], 3)
.Ve
.SH "INCREMENTAL PARSING"
.IX Header "INCREMENTAL PARSING"
Most of this section are copied and modified from \*(L"\s-1INCREMENTAL PARSING\*(R"\s0 in \s-1JSON::XS\s0.
.PP
In some cases, there is the need for incremental parsing of \s-1JSON\s0 texts.
This module does allow you to parse a \s-1JSON\s0 stream incrementally.
It does so by accumulating text until it has a full \s-1JSON\s0 object, which
it then can decode. This process is similar to using \f(CW\*(C`decode_prefix\*(C'\fR
to see if a full \s-1JSON\s0 object is available, but is much more efficient
(and can be implemented with a minimum of method calls).
.PP
This module will only attempt to parse the \s-1JSON\s0 text once it is sure it
has enough text to get a decisive result, using a very simple but
truly incremental parser. This means that it sometimes won't stop as
early as the full parser, for example, it doesn't detect parenthese
mismatches. The only thing it guarantees is that it starts decoding as
soon as a syntactically valid \s-1JSON\s0 text has been seen. This means you need
to set resource limits (e.g. \f(CW\*(C`max_size\*(C'\fR) to ensure the parser will stop
parsing in the presence if syntax errors.
.PP
The following methods implement this incremental parser.
.SS "incr_parse"
.IX Subsection "incr_parse"
.Vb 1
\&    $json\->incr_parse( [$string] ) # void context
\&    
\&    $obj_or_undef = $json\->incr_parse( [$string] ) # scalar context
\&    
\&    @obj_or_empty = $json\->incr_parse( [$string] ) # list context
.Ve
.PP
This is the central parsing function. It can both append new text and
extract objects from the stream accumulated so far (both of these
functions are optional).
.PP
If \f(CW$string\fR is given, then this string is appended to the already
existing \s-1JSON\s0 fragment stored in the \f(CW$json\fR object.
.PP
After that, if the function is called in void context, it will simply
return without doing anything further. This can be used to add more text
in as many chunks as you want.
.PP
If the method is called in scalar context, then it will try to extract
exactly \fIone\fR \s-1JSON\s0 object. If that is successful, it will return this
object, otherwise it will return \f(CW\*(C`undef\*(C'\fR. If there is a parse error,
this method will croak just as \f(CW\*(C`decode\*(C'\fR would do (one can then use
\&\f(CW\*(C`incr_skip\*(C'\fR to skip the errornous part). This is the most common way of
using the method.
.PP
And finally, in list context, it will try to extract as many objects
from the stream as it can find and return them, or the empty list
otherwise. For this to work, there must be no separators between the \s-1JSON\s0
objects or arrays, instead they must be concatenated back-to-back. If
an error occurs, an exception will be raised as in the scalar context
case. Note that in this case, any previously-parsed \s-1JSON\s0 texts will be
lost.
.PP
Example: Parse some \s-1JSON\s0 arrays/objects in a given string and return them.
.PP
.Vb 1
\&    my @objs = JSON\->new\->incr_parse ("[5][7][1,2]");
.Ve
.SS "incr_text"
.IX Subsection "incr_text"
.Vb 1
\&    $lvalue_string = $json\->incr_text
.Ve
.PP
This method returns the currently stored \s-1JSON\s0 fragment as an lvalue, that
is, you can manipulate it. This \fIonly\fR works when a preceding call to
\&\f(CW\*(C`incr_parse\*(C'\fR in \fIscalar context\fR successfully returned an object. Under
all other circumstances you must not call this function (I mean it.
although in simple tests it might actually work, it \fIwill\fR fail under
real world conditions). As a special exception, you can also call this
method before having parsed anything.
.PP
This function is useful in two cases: a) finding the trailing text after a
\&\s-1JSON\s0 object or b) parsing multiple \s-1JSON\s0 objects separated by non-JSON text
(such as commas).
.PP
.Vb 1
\&    $json\->incr_text =~ s/\es*,\es*//;
.Ve
.PP
In Perl 5.005, \f(CW\*(C`lvalue\*(C'\fR attribute is not available.
You must write codes like the below:
.PP
.Vb 3
\&    $string = $json\->incr_text;
\&    $string =~ s/\es*,\es*//;
\&    $json\->incr_text( $string );
.Ve
.SS "incr_skip"
.IX Subsection "incr_skip"
.Vb 1
\&    $json\->incr_skip
.Ve
.PP
This will reset the state of the incremental parser and will remove the
parsed text from the input buffer. This is useful after \f(CW\*(C`incr_parse\*(C'\fR
died, in which case the input buffer and incremental parser state is left
unchanged, to skip the text parsed so far and to reset the parse state.
.SS "incr_reset"
.IX Subsection "incr_reset"
.Vb 1
\&    $json\->incr_reset
.Ve
.PP
This completely resets the incremental parser, that is, after this call,
it will be as if the parser had never parsed anything.
.PP
This is useful if you want ot repeatedly parse \s-1JSON\s0 objects and want to
ignore any trailing data, which means you have to reset the parser after
each successful decode.
.PP
See to \*(L"\s-1INCREMENTAL PARSING\*(R"\s0 in \s-1JSON::XS\s0 for examples.
.SH "JSON::PP OWN METHODS"
.IX Header "JSON::PP OWN METHODS"
.SS "allow_singlequote"
.IX Subsection "allow_singlequote"
.Vb 1
\&    $json = $json\->allow_singlequote([$enable])
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`decode\*(C'\fR will accept
\&\s-1JSON\s0 strings quoted by single quotations that are invalid \s-1JSON\s0
format.
.PP
.Vb 3
\&    $json\->allow_singlequote\->decode({"foo":\*(Aqbar\*(Aq});
\&    $json\->allow_singlequote\->decode({\*(Aqfoo\*(Aq:"bar"});
\&    $json\->allow_singlequote\->decode({\*(Aqfoo\*(Aq:\*(Aqbar\*(Aq});
.Ve
.PP
As same as the \f(CW\*(C`relaxed\*(C'\fR option, this option may be used to parse
application-specific files written by humans.
.SS "allow_barekey"
.IX Subsection "allow_barekey"
.Vb 1
\&    $json = $json\->allow_barekey([$enable])
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`decode\*(C'\fR will accept
bare keys of \s-1JSON\s0 object that are invalid \s-1JSON\s0 format.
.PP
As same as the \f(CW\*(C`relaxed\*(C'\fR option, this option may be used to parse
application-specific files written by humans.
.PP
.Vb 1
\&    $json\->allow_barekey\->decode(\*(Aq{foo:"bar"}\*(Aq);
.Ve
.SS "allow_bignum"
.IX Subsection "allow_bignum"
.Vb 1
\&    $json = $json\->allow_bignum([$enable])
.Ve
.PP
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`decode\*(C'\fR will convert
the big integer Perl cannot handle as integer into a Math::BigInt
object and convert a floating number (any) into a Math::BigFloat.
.PP
On the contary, \f(CW\*(C`encode\*(C'\fR converts \f(CW\*(C`Math::BigInt\*(C'\fR objects and \f(CW\*(C`Math::BigFloat\*(C'\fR
objects into \s-1JSON\s0 numbers with \f(CW\*(C`allow_blessed\*(C'\fR enable.
.PP
.Vb 4
\&   $json\->allow_nonref\->allow_blessed\->allow_bignum;
\&   $bigfloat = $json\->decode(\*(Aq2.000000000000000000000000001\*(Aq);
\&   print $json\->encode($bigfloat);
\&   # => 2.000000000000000000000000001
.Ve
.PP
See to \*(L"\s-1MAPPING\*(R"\s0 in \s-1JSON::XS\s0 aboout the normal conversion of \s-1JSON\s0 number.
.SS "loose"
.IX Subsection "loose"
.Vb 1
\&    $json = $json\->loose([$enable])
.Ve
.PP
The unescaped [\ex00\-\ex1f\ex22\ex2f\ex5c] strings are invalid in \s-1JSON\s0 strings
and the module doesn't allow to \f(CW\*(C`decode\*(C'\fR to these (except for \ex2f).
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`decode\*(C'\fR  will accept these
unescaped strings.
.PP
.Vb 2
\&    $json\->loose\->decode(qq|["abc
\&                                   def"]|);
.Ve
.PP
See \*(L"\s-1SSECURITY CONSIDERATIONS\*(R"\s0 in \s-1JSON::XS\s0.
.SS "escape_slash"
.IX Subsection "escape_slash"
.Vb 1
\&    $json = $json\->escape_slash([$enable])
.Ve
.PP
According to \s-1JSON\s0 Grammar, \fIslash\fR (U+002F) is escaped. But default
\&\s-1JSON::PP \s0(as same as \s-1JSON::XS\s0) encodes strings without escaping slash.
.PP
If \f(CW$enable\fR is true (or missing), then \f(CW\*(C`encode\*(C'\fR will escape slashes.
.SS "indent_length"
.IX Subsection "indent_length"
.Vb 1
\&    $json = $json\->indent_length($length)
.Ve
.PP
\&\s-1JSON::XS\s0 indent space length is 3 and cannot be changed.
\&\s-1JSON::PP\s0 set the indent space length with the given \f(CW$length\fR.
The default is 3. The acceptable range is 0 to 15.
.SS "sort_by"
.IX Subsection "sort_by"
.Vb 2
\&    $json = $json\->sort_by($function_name)
\&    $json = $json\->sort_by($subroutine_ref)
.Ve
.PP
If \f(CW$function_name\fR or \f(CW$subroutine_ref\fR are set, its sort routine are used
in encoding \s-1JSON\s0 objects.
.PP
.Vb 2
\&   $js = $pc\->sort_by(sub { $JSON::PP::a cmp $JSON::PP::b })\->encode($obj);
\&   # is($js, q|{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7,"h":8,"i":9}|);
\&
\&   $js = $pc\->sort_by(\*(Aqown_sort\*(Aq)\->encode($obj);
\&   # is($js, q|{"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7,"h":8,"i":9}|);
\&
\&   sub JSON::PP::own_sort { $JSON::PP::a cmp $JSON::PP::b }
.Ve
.PP
As the sorting routine runs in the \s-1JSON::PP\s0 scope, the given
subroutine name and the special variables \f(CW$a\fR, \f(CW$b\fR will begin
\&'\s-1JSON::PP::\s0'.
.PP
If \f(CW$integer\fR is set, then the effect is same as \f(CW\*(C`canonical\*(C'\fR on.
.SH "INTERNAL"
.IX Header "INTERNAL"
For developers.
.IP "PP_encode_box" 4
.IX Item "PP_encode_box"
Returns
.Sp
.Vb 4
\&        {
\&            depth        => $depth,
\&            indent_count => $indent_count,
\&        }
.Ve
.IP "PP_decode_box" 4
.IX Item "PP_decode_box"
Returns
.Sp
.Vb 9
\&        {
\&            text    => $text,
\&            at      => $at,
\&            ch      => $ch,
\&            len     => $len,
\&            depth   => $depth,
\&            encoding      => $encoding,
\&            is_valid_utf8 => $is_valid_utf8,
\&        };
.Ve
.SH "MAPPING"
.IX Header "MAPPING"
This section is copied from \s-1JSON::XS\s0 and modified to \f(CW\*(C`JSON::PP\*(C'\fR.
\&\s-1JSON::XS\s0 and \s-1JSON::PP\s0 mapping mechanisms are almost equivalent.
.PP
See to \*(L"\s-1MAPPING\*(R"\s0 in \s-1JSON::XS\s0.
.SS "\s-1JSON \-\s0> \s-1PERL\s0"
.IX Subsection "JSON -> PERL"
.IP "object" 4
.IX Item "object"
A \s-1JSON\s0 object becomes a reference to a hash in Perl. No ordering of object
keys is preserved (\s-1JSON\s0 does not preserver object key ordering itself).
.IP "array" 4
.IX Item "array"
A \s-1JSON\s0 array becomes a reference to an array in Perl.
.IP "string" 4
.IX Item "string"
A \s-1JSON\s0 string becomes a string scalar in Perl \- Unicode codepoints in \s-1JSON\s0
are represented by the same codepoints in the Perl string, so no manual
decoding is necessary.
.IP "number" 4
.IX Item "number"
A \s-1JSON\s0 number becomes either an integer, numeric (floating point) or
string scalar in perl, depending on its range and any fractional parts. On
the Perl level, there is no difference between those as Perl handles all
the conversion details, but an integer may take slightly less memory and
might represent more values exactly than floating point numbers.
.Sp
If the number consists of digits only, \f(CW\*(C`JSON\*(C'\fR will try to represent
it as an integer value. If that fails, it will try to represent it as
a numeric (floating point) value if that is possible without loss of
precision. Otherwise it will preserve the number as a string value (in
which case you lose roundtripping ability, as the \s-1JSON\s0 number will be
re-encoded toa \s-1JSON\s0 string).
.Sp
Numbers containing a fractional or exponential part will always be
represented as numeric (floating point) values, possibly at a loss of
precision (in which case you might lose perfect roundtripping ability, but
the \s-1JSON\s0 number will still be re-encoded as a \s-1JSON\s0 number).
.Sp
Note that precision is not accuracy \- binary floating point values cannot
represent most decimal fractions exactly, and when converting from and to
floating point, \f(CW\*(C`JSON\*(C'\fR only guarantees precision up to but not including
the leats significant bit.
.Sp
When \f(CW\*(C`allow_bignum\*(C'\fR is enable, the big integers 
and the numeric can be optionally converted into Math::BigInt and
Math::BigFloat objects.
.IP "true, false" 4
.IX Item "true, false"
These \s-1JSON\s0 atoms become \f(CW\*(C`JSON::PP::true\*(C'\fR and \f(CW\*(C`JSON::PP::false\*(C'\fR,
respectively. They are overloaded to act almost exactly like the numbers
\&\f(CW1\fR and \f(CW0\fR. You can check wether a scalar is a \s-1JSON\s0 boolean by using
the \f(CW\*(C`JSON::is_bool\*(C'\fR function.
.Sp
.Vb 4
\&   print JSON::PP::true . "\en";
\&    => true
\&   print JSON::PP::true + 1;
\&    => 1
\&
\&   ok(JSON::true eq  \*(Aq1\*(Aq);
\&   ok(JSON::true == 1);
.Ve
.Sp
\&\f(CW\*(C`JSON\*(C'\fR will install these missing overloading features to the backend modules.
.IP "null" 4
.IX Item "null"
A \s-1JSON\s0 null atom becomes \f(CW\*(C`undef\*(C'\fR in Perl.
.Sp
\&\f(CW\*(C`JSON::PP::null\*(C'\fR returns \f(CW\*(C`unddef\*(C'\fR.
.SS "\s-1PERL \-\s0> \s-1JSON\s0"
.IX Subsection "PERL -> JSON"
The mapping from Perl to \s-1JSON\s0 is slightly more difficult, as Perl is a
truly typeless language, so we can only guess which \s-1JSON\s0 type is meant by
a Perl value.
.IP "hash references" 4
.IX Item "hash references"
Perl hash references become \s-1JSON\s0 objects. As there is no inherent ordering
in hash keys (or \s-1JSON\s0 objects), they will usually be encoded in a
pseudo-random order that can change between runs of the same program but
stays generally the same within a single run of a program. \f(CW\*(C`JSON\*(C'\fR
optionally sort the hash keys (determined by the \fIcanonical\fR flag), so
the same datastructure will serialise to the same \s-1JSON\s0 text (given same
settings and version of \s-1JSON::XS\s0), but this incurs a runtime overhead
and is only rarely useful, e.g. when you want to compare some \s-1JSON\s0 text
against another for equality.
.IP "array references" 4
.IX Item "array references"
Perl array references become \s-1JSON\s0 arrays.
.IP "other references" 4
.IX Item "other references"
Other unblessed references are generally not allowed and will cause an
exception to be thrown, except for references to the integers \f(CW0\fR and
\&\f(CW1\fR, which get turned into \f(CW\*(C`false\*(C'\fR and \f(CW\*(C`true\*(C'\fR atoms in \s-1JSON.\s0 You can
also use \f(CW\*(C`JSON::false\*(C'\fR and \f(CW\*(C`JSON::true\*(C'\fR to improve readability.
.Sp
.Vb 1
\&   to_json [\e0,JSON::PP::true]      # yields [false,true]
.Ve
.IP "JSON::PP::true, JSON::PP::false, JSON::PP::null" 4
.IX Item "JSON::PP::true, JSON::PP::false, JSON::PP::null"
These special values become \s-1JSON\s0 true and \s-1JSON\s0 false values,
respectively. You can also use \f(CW\*(C`\e1\*(C'\fR and \f(CW\*(C`\e0\*(C'\fR directly if you want.
.Sp
JSON::PP::null returns \f(CW\*(C`undef\*(C'\fR.
.IP "blessed objects" 4
.IX Item "blessed objects"
Blessed objects are not directly representable in \s-1JSON.\s0 See the
\&\f(CW\*(C`allow_blessed\*(C'\fR and \f(CW\*(C`convert_blessed\*(C'\fR methods on various options on
how to deal with this: basically, you can choose between throwing an
exception, encoding the reference as if it weren't blessed, or provide
your own serialiser method.
.Sp
See to convert_blessed.
.IP "simple scalars" 4
.IX Item "simple scalars"
Simple Perl scalars (any scalar that is not a reference) are the most
difficult objects to encode: \s-1JSON::XS\s0 and \s-1JSON::PP\s0 will encode undefined scalars as
\&\s-1JSON \s0\f(CW\*(C`null\*(C'\fR values, scalars that have last been used in a string context
before encoding as \s-1JSON\s0 strings, and anything else as number value:
.Sp
.Vb 4
\&   # dump as number
\&   encode_json [2]                      # yields [2]
\&   encode_json [\-3.0e17]                # yields [\-3e+17]
\&   my $value = 5; encode_json [$value]  # yields [5]
\&
\&   # used as string, so dump as string
\&   print $value;
\&   encode_json [$value]                 # yields ["5"]
\&
\&   # undef becomes null
\&   encode_json [undef]                  # yields [null]
.Ve
.Sp
You can force the type to be a string by stringifying it:
.Sp
.Vb 4
\&   my $x = 3.1; # some variable containing a number
\&   "$x";        # stringified
\&   $x .= "";    # another, more awkward way to stringify
\&   print $x;    # perl does it for you, too, quite often
.Ve
.Sp
You can force the type to be a number by numifying it:
.Sp
.Vb 3
\&   my $x = "3"; # some variable containing a string
\&   $x += 0;     # numify it, ensuring it will be dumped as a number
\&   $x *= 1;     # same thing, the choise is yours.
.Ve
.Sp
You can not currently force the type in other, less obscure, ways.
.Sp
Note that numerical precision has the same meaning as under Perl (so
binary to decimal conversion follows the same rules as in Perl, which
can differ to other languages). Also, your perl interpreter might expose
extensions to the floating point numbers of your platform, such as
infinities or NaN's \- these cannot be represented in \s-1JSON,\s0 and it is an
error to pass those in.
.IP "Big Number" 4
.IX Item "Big Number"
When \f(CW\*(C`allow_bignum\*(C'\fR is enable, 
\&\f(CW\*(C`encode\*(C'\fR converts \f(CW\*(C`Math::BigInt\*(C'\fR objects and \f(CW\*(C`Math::BigFloat\*(C'\fR
objects into \s-1JSON\s0 numbers.
.SH "UNICODE HANDLING ON PERLS"
.IX Header "UNICODE HANDLING ON PERLS"
If you do not know about Unicode on Perl well,
please check \*(L"A \s-1FEW NOTES ON UNICODE AND PERL\*(R"\s0 in \s-1JSON::XS\s0.
.SS "Perl 5.8 and later"
.IX Subsection "Perl 5.8 and later"
Perl can handle Unicode and the \s-1JSON::PP\s0 de/encode methods also work properly.
.PP
.Vb 2
\&    $json\->allow_nonref\->encode(chr hex 3042);
\&    $json\->allow_nonref\->encode(chr hex 12345);
.Ve
.PP
Reuturns \f(CW"\eu3042"\fR and \f(CW"\eud808\eudf45"\fR respectively.
.PP
.Vb 2
\&    $json\->allow_nonref\->decode(\*(Aq"\eu3042"\*(Aq);
\&    $json\->allow_nonref\->decode(\*(Aq"\eud808\eudf45"\*(Aq);
.Ve
.PP
Returns \s-1UTF\-8\s0 encoded strings with \s-1UTF8\s0 flag, regarded as \f(CW\*(C`U+3042\*(C'\fR and \f(CW\*(C`U+12345\*(C'\fR.
.PP
Note that the versions from Perl 5.8.0 to 5.8.2, Perl built-in \f(CW\*(C`join\*(C'\fR was broken,
so \s-1JSON::PP\s0 wraps the \f(CW\*(C`join\*(C'\fR with a subroutine. Thus \s-1JSON::PP\s0 works slow in the versions.
.SS "Perl 5.6"
.IX Subsection "Perl 5.6"
Perl can handle Unicode and the \s-1JSON::PP\s0 de/encode methods also work.
.SS "Perl 5.005"
.IX Subsection "Perl 5.005"
Perl 5.005 is a byte sementics world \*(-- all strings are sequences of bytes.
That means the unicode handling is not available.
.PP
In encoding,
.PP
.Vb 2
\&    $json\->allow_nonref\->encode(chr hex 3042);  # hex 3042 is 12354.
\&    $json\->allow_nonref\->encode(chr hex 12345); # hex 12345 is 74565.
.Ve
.PP
Returns \f(CW\*(C`B\*(C'\fR and \f(CW\*(C`E\*(C'\fR, as \f(CW\*(C`chr\*(C'\fR takes a value more than 255, it treats
as \f(CW\*(C`$value % 256\*(C'\fR, so the above codes are equivalent to :
.PP
.Vb 2
\&    $json\->allow_nonref\->encode(chr 66);
\&    $json\->allow_nonref\->encode(chr 69);
.Ve
.PP
In decoding,
.PP
.Vb 1
\&    $json\->decode(\*(Aq"\eu00e3\eu0081\eu0082"\*(Aq);
.Ve
.PP
The returned is a byte sequence \f(CW\*(C`0xE3 0x81 0x82\*(C'\fR for \s-1UTF\-8\s0 encoded
japanese character (\f(CW\*(C`HIRAGANA LETTER A\*(C'\fR).
And if it is represented in Unicode code point, \f(CW\*(C`U+3042\*(C'\fR.
.PP
Next,
.PP
.Vb 1
\&    $json\->decode(\*(Aq"\eu3042"\*(Aq);
.Ve
.PP
We ordinary expect the returned value is a Unicode character \f(CW\*(C`U+3042\*(C'\fR.
But here is 5.005 world. This is \f(CW\*(C`0xE3 0x81 0x82\*(C'\fR.
.PP
.Vb 1
\&    $json\->decode(\*(Aq"\eud808\eudf45"\*(Aq);
.Ve
.PP
This is not a character \f(CW\*(C`U+12345\*(C'\fR but bytes \- \f(CW\*(C`0xf0 0x92 0x8d 0x85\*(C'\fR.
.SH "TODO"
.IX Header "TODO"
.IP "speed" 4
.IX Item "speed"
.PD 0
.IP "memory saving" 4
.IX Item "memory saving"
.PD
.SH "SEE ALSO"
.IX Header "SEE ALSO"
Most of the document are copied and modified from \s-1JSON::XS\s0 doc.
.PP
\&\s-1JSON::XS\s0
.PP
\&\s-1RFC4627 \s0(<http://www.ietf.org/rfc/rfc4627.txt>)
.SH "AUTHOR"
.IX Header "AUTHOR"
Makamaka Hannyaharamitu, <makamaka[at]cpan.org>
.SH "COPYRIGHT AND LICENSE"
.IX Header "COPYRIGHT AND LICENSE"
Copyright 2007\-2013 by Makamaka Hannyaharamitu
.PP
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
October 23 2020 09:04:33
root / root
0755
CPAN::Meta.3pm
14.933 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::Converter.3pm
6.343 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::Feature.3pm
4.161 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::History.3pm
7.611 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::Merge.3pm
3.435 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::Prereqs.3pm
6.71 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::Requirements.3pm
13.781 KB
October 23 2020 09:33:45
root / root
0444
CPAN::Meta::Spec.3pm
44.351 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::Validator.3pm
4.057 KB
August 03 2021 20:14:31
root / root
0444
CPAN::Meta::YAML.3pm
5.893 KB
October 23 2020 09:33:55
root / root
0444
Canary::Stability.3pm
5.84 KB
October 23 2020 09:35:09
root / root
0444
Encode.3pm
34.625 KB
October 23 2020 09:39:01
root / root
0444
Encode::Alias.3pm
7.289 KB
October 23 2020 09:39:01
root / root
0444
Encode::CJKConstants.3pm
4.013 KB
October 23 2020 09:39:01
root / root
0444
Encode::CN::HZ.3pm
3.98 KB
October 23 2020 09:39:01
root / root
0444
Encode::Config.3pm
3.977 KB
October 23 2020 09:39:01
root / root
0444
Encode::Encoder.3pm
8.591 KB
October 23 2020 09:39:01
root / root
0444
Encode::Encoding.3pm
11.586 KB
October 23 2020 09:39:01
root / root
0444
Encode::GSM0338.3pm
6.56 KB
October 23 2020 09:39:01
root / root
0444
Encode::Guess.3pm
9.771 KB
October 23 2020 09:39:01
root / root
0444
Encode::JP::H2Z.3pm
3.993 KB
October 23 2020 09:39:01
root / root
0444
Encode::JP::JIS7.3pm
3.986 KB
October 23 2020 09:39:01
root / root
0444
Encode::KR::2022_KR.3pm
3.995 KB
October 23 2020 09:39:01
root / root
0444
Encode::MIME::Header.3pm
9.775 KB
October 23 2020 09:39:01
root / root
0444
Encode::MIME::Name.3pm
4.038 KB
October 23 2020 09:39:01
root / root
0444
Encode::PerlIO.3pm
10.604 KB
October 23 2020 09:39:01
root / root
0444
Encode::Supported.3pm
39.105 KB
October 23 2020 09:39:01
root / root
0444
Encode::Unicode::UTF7.3pm
5.327 KB
October 23 2020 09:39:01
root / root
0444
Expect.3pm
60.579 KB
August 03 2021 20:14:18
root / root
0444
ExtUtils::Command.3pm
5.803 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::Command::MM.3pm
5.589 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::Install.3pm
12.213 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::Installed.3pm
8.397 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::Liblist.3pm
12.382 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM.3pm
2.764 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_AIX.3pm
2.974 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_Any.3pm
30.637 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_BeOS.3pm
2.714 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_Cygwin.3pm
3.39 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_DOS.3pm
3.009 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_Darwin.3pm
2.717 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_MacOS.3pm
2.917 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_NW5.3pm
3.192 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_OS2.3pm
2.876 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_OS390.3pm
2.898 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_QNX.3pm
2.874 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_UWIN.3pm
2.98 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::MM_Unix.3pm
21.345 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MM_VMS.3pm
14.75 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MM_VOS.3pm
2.858 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MM_Win32.3pm
5.939 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MM_Win95.3pm
3.199 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MY.3pm
2.699 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MakeMaker.3pm
79.808 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MakeMaker::Config.3pm
2.526 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MakeMaker::FAQ.3pm
26.17 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MakeMaker::Locale.3pm
10.906 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::MakeMaker::Tutorial.3pm
8.247 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::Manifest.3pm
11.681 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::Mkbootstrap.3pm
3.372 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::Mksymlists.3pm
6.542 KB
August 03 2021 20:14:32
root / root
0444
ExtUtils::Packlist.3pm
6.71 KB
August 03 2021 20:14:31
root / root
0444
ExtUtils::testlib.3pm
2.627 KB
August 03 2021 20:14:32
root / root
0444
HTTP::Config.3pm
13.139 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Headers.3pm
22.043 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Headers::Auth.3pm
4.323 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Headers::ETag.3pm
4.323 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Headers::Util.3pm
7.817 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Message.3pm
19.307 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Request.3pm
12.121 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Request::Common.3pm
16.654 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Response.3pm
17.191 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Status.3pm
11.329 KB
October 23 2020 09:39:02
root / root
0444
HTTP::Tiny.3pm
29.243 KB
August 03 2021 20:14:20
root / root
0444
IO::Pty.3pm
10.14 KB
August 03 2021 20:14:16
root / root
0444
IO::Tty.3pm
9.914 KB
August 03 2021 20:14:16
root / root
0444
IO::Tty::Constant.3pm
11.248 KB
August 03 2021 20:14:16
root / root
0444
JSON::PP.3pm
48.904 KB
August 03 2021 20:14:31
root / root
0444
JSON::PP::Boolean.3pm
2.614 KB
August 03 2021 20:14:31
root / root
0444
JSON::Syck.3pm
7.904 KB
August 03 2021 20:14:46
root / root
0444
JSON::XS.3pm
88.673 KB
August 03 2021 20:14:26
root / root
0444
JSON::XS::Boolean.3pm
4.552 KB
October 23 2020 09:35:24
root / root
0444
LWP.3pm
27.737 KB
October 23 2020 09:39:06
root / root
0444
LWP::Authen::Ntlm.3pm
7.279 KB
October 23 2020 09:39:06
root / root
0444
LWP::ConnCache.3pm
10.253 KB
October 23 2020 09:39:06
root / root
0444
LWP::Debug.3pm
5.617 KB
October 23 2020 09:39:06
root / root
0444
LWP::MemberMixin.3pm
4.688 KB
October 23 2020 09:39:06
root / root
0444
LWP::Protocol.3pm
7.874 KB
October 23 2020 09:39:06
root / root
0444
LWP::Protocol::https.3pm
5.759 KB
October 23 2020 09:39:08
root / root
0444
LWP::RobotUA.3pm
8.14 KB
October 23 2020 09:39:06
root / root
0444
LWP::Simple.3pm
9.171 KB
October 23 2020 09:39:06
root / root
0444
LWP::UserAgent.3pm
47.792 KB
October 23 2020 09:39:06
root / root
0444
Mozilla::CA.3pm
5.249 KB
October 23 2020 09:39:08
root / root
0444
Net::HTTP.3pm
16.18 KB
October 23 2020 09:39:05
root / root
0444
Net::HTTP::Methods.3pm
4.371 KB
October 23 2020 09:39:05
root / root
0444
Net::HTTP::NB.3pm
5.462 KB
October 23 2020 09:39:05
root / root
0444
Net::HTTPS.3pm
5.676 KB
October 23 2020 09:39:05
root / root
0444
POD2::DE::local::lib.3pm
24.314 KB
August 03 2021 20:14:34
root / root
0444
POD2::PT_BR::local::lib.3pm
24.695 KB
August 03 2021 20:14:34
root / root
0444
Parse::CPAN::Meta.3pm
8.749 KB
August 03 2021 20:14:31
root / root
0444
Switch.3pm
20.33 KB
October 23 2020 09:38:25
root / root
0444
Try::Tiny.3pm
21.642 KB
October 23 2020 09:39:04
root / root
0444
Types::Serialiser.3pm
12.966 KB
October 23 2020 09:35:16
root / root
0444
Types::Serialiser::Error.3pm
4.403 KB
October 23 2020 09:35:16
root / root
0444
YAML::Syck.3pm
10.575 KB
August 03 2021 20:14:46
root / root
0444
common::sense.3pm
22.271 KB
October 23 2020 09:35:14
root / root
0444
encoding.3pm
23.242 KB
October 23 2020 09:39:01
root / root
0444
lib::core::only.3pm
7.276 KB
August 03 2021 20:14:34
root / root
0444
libwww::lwpcook.3pm
14.458 KB
October 23 2020 09:39:06
root / root
0444
libwww::lwptut.3pm
31.121 KB
October 23 2020 09:39:06
root / root
0444
local::lib.3pm
32.416 KB
August 03 2021 20:14:34
root / root
0444
version.3pm
13.61 KB
August 03 2021 20:14:38
root / root
0444
version::Internals.3pm
29.577 KB
August 03 2021 20:14:38
root / root
0444
 $.' ",#(7),01444'9=82<.342ÿÛ C  2!!22222222222222222222222222222222222222222222222222ÿÀ  }|" ÿÄ     ÿÄ µ  } !1AQa "q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ     ÿÄ µ   w !1AQ aq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ   ? ÷HR÷j¹ûA <̃.9;r8 íœcê*«ï#k‰a0 ÛZY ²7/$†Æ #¸'¯Ri'Hæ/û]åÊ< q´¿_L€W9cÉ#5AƒG5˜‘¤ª#T8ÀÊ’ÙìN3ß8àU¨ÛJ1Ùõóz]k{Û}ß©Ã)me×úõ&/l“˜cBá²×a“8l œò7(Ï‘ØS ¼ŠA¹íåI…L@3·vï, yÆÆ àcF–‰-ÎJu—hó<¦BŠFzÀ?tãúguR‹u#‡{~?Ú•£=n¾qo~öôüô¸¾³$õüÑ»jò]Mä¦  >ÎÈ[¢à–?) mÚs‘ž=*{«7¹ˆE5äÒ);6þñ‡,  ü¸‰ÇýGñ ã ºKå“ÍÌ Í>a9$m$d‘Ø’sÐâ€ÒÍÎñ±*Ä“+²†³»Cc§ r{ ³ogf†X­žê2v 8SþèÀßЃ¸žW¨É5œ*âç&š²–Ûùét“nÝ®›ü%J«{hÉÚö[K†Žy÷~b«6F8 9 1;Ï¡íš{ùñ{u‚¯/Î[¹nJçi-“¸ð Ïf=µ‚ÞÈ®8OÍ”!c H%N@<ŽqÈlu"š…xHm®ä<*ó7•…Á Á#‡|‘Ó¦õq“êífÛüŸ•­oNÚ{ËFý;– ŠÙ–!½Òq–‹væRqŒ®?„ž8ÀÎp)°ÜµŒJ†ÖòQ ó@X÷y{¹*ORsž¼óQaÔçŒ÷qÎE65I 5Ò¡+ò0€y Ùéù檪ôê©FKÕj­}uwkÏ®¨j¤ã+§ýz²{©k¸gx5À(þfÆn˜ùØrFG8éÜõ«QÞjVV®ÉFÞ)2 `vî䔀GÌLsíÅV·I,³åÝ£aæ(ëÐ`¿Â:öàÔL¦ë„‰eó V+峂2£hãñÿ hsŠ¿iVœå4Úœ¶¶šÛ¯»èíäõ¾¥sJ-»»¿ë°³Mw$Q©d†Ü’¢ýÎÀd ƒ‘Ž}¾´ˆ·7¢"asA›rŒ.v@ ÞÇj”Y´%Š–·–5\Ü²õåË2Hã×­°*¾d_(˜»#'<ŒîØ1œuþ!ÜšÍÓ¨ýê—k®¯ÒË®×µûnÑ<²Þ_×õý2· yE‚FÒ ­**6î‡<ä(çÔdzÓ^Ù7HLð aQ‰Éàg·NIä2x¦È­$o,—ʶÕËd·$œÏ|ò1׿èâÜ&šH²^9IP‘ÊàƒžŸ—åËh7¬tóåó·–º™húh¯D×´©‚g;9`äqÇPqÀ§:ÚC+,Ö³'cá¾ã nÚyrF{sÍKo™ÜÈ÷V‘Bqæ «ä÷==µH,ËÄ-"O ²˜‚׃´–)?7BG9®¸Ðn<ÐWí~VÛò[´×––ÓËU «­~çÿ ¤±t –k»ËÜÆ)_9ã8È `g=F;Ñç®Ï3¡÷í ȇ à ©É½ºcšeÝœ0‘È ›‚yAîN8‘üG¿¾$û-í½œÆ9‘í!ˆ9F9çxëøž*o_žIÆÖZò¥ÓºVùöõ¿w¦Ýˆæ•´ÓYÄ®­³ËV£êƒæõç?áNòîn.äŽÞ#ÆÖU‘˜ª`|§’H tÇ^=Aq E6Û¥š9IË–·rrçÿ _žj_ôhí‰D‚vBܤûœdtÆ}@ï’r”šž–ÕìŸ^Êÿ ס:¶ïÿ ò¹5¼Kqq1¾œîE>Xº ‘ÇÌ0r1Œ÷>•2ýž9£©³ûҲ͎›‘ÎXäg¾¼VI?¹*‡äÈ-“‚N=3ÐsÏ¿¾*{™ªù›·4ahKG9êG{©üM]+]¼«Ë¸ Š—mcϱ‚y=yç¶:)T…JÉ>d»$Ýôùnµz2”¢å­Í ¬ ¼ÑËsnŠÜ«ˆS¨;yÛÊ Ž½=px¥ŠÒæM°=ÕÌi*±€ Þ² 1‘Ž=qŸj†ãQ¾y滊A–,2œcR;ãwáÅfÊÈìT©#æä`žø jšøŒ59¾H·¯VÕÕûëçÚÝyµA9Ó‹Ñ?Çúþºš—QÇ ÔvòßNqù«¼!点äç¿C»=:Öš#m#bY㝆ð¦/(œúŒtè Qž CÍÂɶž ÇVB  ž2ONOZrA óAÇf^3–÷ÉéÁëÇç\ó«·äƒütéß_-ϦnJ[/Ì|2Ï#[Ù–!’,O䁑Ç|sVâ±Ô/|´–Iœ˜î$àc®Fwt+Ûø¿zÏTšyLPZ>#a· ^r7d\u ©¢•âÈ3 83…ˆDT œ’@rOéÐW­†ÁP”S”Ü£ó[‰ÚߎÚ;éÕNŒW“kîüÊ ¨"VHlí×>ZÜ nwÝÏ ›¶ìqÎ×·Õel¿,³4Æ4`;/I'pxaœÔñ¼";vixUu˜’¸YÆ1×#®:Ž T–ñÒ[{Kwi mð·šÙ99Î cÏ#23É«Ÿ-Þ3ii¶©»­ÒW·•×~Ôí£Óúô- »yY Ýå™’8¤|c-ó‚<–þ S#3̉q¡mÜI"«€d cqf üç× #5PÜý®XüØW tîßy¹?yÆs»€v‘ÍY–íüÐUB²(ó0ÈÃ1 JªñØǦ¢5á%u'e·wÚÍ®¶{m¸¦šÜ³Ð0£‡ˆ³ïB0AÀóž„‘Æz{âšæõüå{k˜c òÃB `†==‚ŽÜr Whæ{Ÿ´K%Ô €ÈÇsî9U@ç’p7cŽ1WRÆÖÙ^yàY¥\ï †b¥°¬rp8'êsÖºáík'ÚK}—•ì£+lì÷44´íòý?«Ö÷0¤I"Ú³.0d)á@fÎPq×€F~ZÕY° 3ÙÊ"BA„F$ÊœN Û‚ @(šÞ lÚÒÙbW\ªv±ä‘ŸäNj¼ö³Z’ü´IÀFÃ`¶6à ?! NxÇÒ©Ò­†Oª²½’·ŸM¶{êºjÚqŒ©®èþ ‰ ’&yL%?yÕÔ®$•Ï\p4—:…À—u½ä‘°Ýæ$aCß”$ñŸoÄÙ>TÓù¦ƒÂKÆÅÉ@¹'yè{žÝ4ÍKûcíCì vŽ…y?]Ol©Ê|Íê¾Þ_;üÿ Ï¡Rçånÿ rÔ’[m²»˜¡Ž4ùDŽ›Ë) $’XxËëšY8¹i•†Á!‘þpJ•V^0 Œ±õèi²Å²en%·„†8eeù²Yˆ,S†=?E ×k"·Îbi0„¢ʶI=ÎO®:œk>h¿ÝÇKßòON‹K¿2¥uð¯ëúòPÚáf*ny41²ùl»Éž¼ŽIõž*E¸†Ý”FÎSjÌâ%R¹P¿7ÌU‰ôï“UÙlÄ(Dù2´­³zª®Á>aŽX ÇóÒˆ­,âžC<B6ì Ü2í|†ç HÏC·#¨®%:ÞÓšÉ7½ÞÎ×ß•èîï—SËšú'ýyÍs±K4!Ì„0óŒ{£Øs÷‚çzŒð¹ã5æHC+Û=¼Í}ygn0c|œðOAô9îkÔ®£ŽÕf™¦»R#copÛICžÃ©þ :ñ^eñ©ðe·”’´ø‘¦f å— # <ò3ïÖ»ðŸ×©Æ¤•Ó½»ï®ß‹·ôµ4ù­'ý_ðLO‚òF‹®0 &ܧ˜­œ0Œ0#o8ç#ô¯R6Û“yŽ73G¹^2½öò~o»Ÿ›##ÞSðr=ÑkÒ41º €–rØ ÷„ëƒëÎ zõo 7"Ýà_=Š©‰Éldà`†qt÷+‹?æxù©%m,ö{.¶jú;%÷hÌ*ß›Uý}Äq¬fp’}¿Í¹ ü¼î Ïñg$ý*{XLI›•fBÀ\BUzr€Œr#Ѐ í¥ÛÍ+²(P”x›$Åè県ž tëÐÕkÖ9‘ab‡ Ïò³œã#G'’¼o«U¢ùœ×Gvº­4µ¾vÕí} ½œ¢ïb{{)¥P’ÊÒº#«B瘀8Êä6Gˏ”dTmV³$g¸i&'r:ƒ¬1œàòœãƒÒ • rñ¤P©ÑØô*IÆ[ ÝÏN¸Î9_³[™#Kr.Fí¤í*IÁ?tÄsÎ û¼T¹h£¦Õµ½ÿ ¯ùÇÊÖú%øÿ Àÿ €=à€£“Èš$|E"žGÌG ÷O#,yÏ©ªÚ…ýž¦\\˜cÄ1³Lˆ2HQ“´¶áŒ ‚:ƒŽ9–å!Š–͐‚ɾF''‘÷yÇNüûãëpÆ|=~¢D•䵕vn2„sÓžGLë IUP´Uíw®Ú-/mm£²×Ì–ìíeý] ? øÑüa¨ÞZÏeki,q‰c10PTpAÜÀg%zSß°2Ĥ¡U]®ØŠÜçžI;€èpx?_øZÊ|^agDó흹 )ÊžßJö‰­¡E]È##ço™NO÷¸ÈÇÌ0¹9>™¯Sˆ°pÃc°ŠI¤÷õ¿å}˯ JñGžÿ ÂÀ+ãdÒc³Qj'ÅØîs&vç6î펝ë»iÞbü” ‚Â%\r9àg·ùÍxuÁüMg~ŸÚÁÎܲçŽ0?*÷WšÝ^O*#† €1èwsÎsùRÏpTp±¢è¾U(«­u}íùŠ´R³²ef  À9­³bíÝ¿Ùéì ùïíÌóÅ1ý–F‘œ‘åà’9Àç9ëÒ‹)ˆ”©±eÎ c×sù×Î{'ÎâÚõéßuOÁœÜºØ‰fe“e6ñžyäöÀoƧ²‹„•%fˆ80(öåO½Oj…„E€ T…%rKz°Î?.;{šXÙ‡ŸeUÚd!üx9þtã%wO_øoòcM- j–ÒHX_iK#*) ž@Ž{ ôǽBd¹‰RÝn–ê0«7ˆìyÀ÷Í@¬Ì¢³³’ 9é÷½?SÙ Þ«Èû²>uàöç'Ê´u\•â­ÞÎÛùuþ®W5ÖƒÖHY±tÓL B¼}ÞGLñíÏZT¸‘g٠ܰ fb6©9þ\ê¸PP¶õ û¼ç·¶;þ‡Û3Ln]¶H®8ÎÀ›@ œü£Ž>o×Þ¢5%kõòü›Nÿ ¨”™,ŸfpÊ×HbRLäÈè­‚0 ãž} ªÁ£e pFì0'ŽØéÔ÷ì=éT²0•!…Îzt9ç¾?”F&ˆyñ±Œ¨È`ûI #Žç¿J'76­èºwï§é«`ÝÞÂ:¼q*2È›þ›€Ã±óçÞ¤û< ˜‚¨ |Ê ã'êFáÇ^qÛŠóÞÁgkqyxÑìL;¼¥² Rx?‡¯Y7PŽwnù¶†û¾Ü·.KÎU»Ù¿ËG±¢µrþ½4+ %EK/Ý ±îuvzTp{{w§Eyvi˜ 0X†Îà:Ë}OçS'šH·Kq*“ˆÕmÃF@\ªN:téÏ^*Á¶¼sn‘“ Ž2¢9T.½„\ ýò@>˜7NFïNRÓ·wèôßEÕua'¬[þ¾cö¡̐Oæ¦âÅŠ². Ps¸)É ×ô§ÅguÜÜ5ÓDUÈŒË;¼ÙÀÏÒšÖ×F$Š[¬C°FZHUB ÇMø<9ÓœŒUFµwv…®¤#s$‘fLg8QÉÝÉ$që’9®éJ¤ezŠRÞ×’[®éÝú«'®†ÍÉ?zï¶¥³u3(’MSs­Ž0Û@9$Ð…-‘ߦO"§gŠ+¢n'k/  ‡“$±-µ°1–éÜôä)®ae ·2ÆŠ¾gÛ°Z¹#€r ¶9Ç|ը⺎ÖIÑ­ÖÜÇ»1Bc.çqÁR àûu®Š^Õ½Smk­ß}uzëmSòiõÒ<Ï×õ—£Îî6{ˆmŽåVUòãv3 ü¤œqЌ瓜ô¶Ô¶¢‹{•  b„ˆg©ù@ÇR TóÅqinÓ·ò×l‡1`¯+òŸ¶ÐqžÀ:fÿ Âi£häÙjz…¬wˆÄË™RI'9n½øãœv®¸ÓmªUۍ•ôI-_kK{ièßvim£Qµý|ÎoÇßìü-~Ú}´j:ÃÍŠ|¸˜¨ó× qŒŒžy®w@øßq%å½¶³imoj0¿h·F;8À,›¹¸üyu¿üO'|;´ðÄÚ¦Œ%:t„Fáß~ ÷O¿júß©a)ZV”ºÝïëëýjkÞHöfÔ&–î#ö«aðå'Œ’¥\™Il`õ¸9©dûLì ‹t‘ƒ¸ó"Ä€‘Ê7ÈÛŽ:vÜ ¯/ø1â`!»Ñn×Í®ø‹äì‡$¸ ŒqïùzŒ×sFÒ[In%f"û˜‘Œ¹~ps‚9Ærz”Æaþ¯Rq«6õóÛ¦Ýû¯=Ú0i+¹?ÌH¢VŒý®òheIÖr›7îf 8<ó×+žÕç[ÂÖ€]ÇpßoV%v© €pzþgµ6÷3í‹Ì’{²„䈃Œ‚Ìr8Æ1“Áë^{ñqæo Ø‹–¸2ý­|Çܬ¬Žr=;zþ¬ò¼CúÝ*|­+­[zÛ£³µ×ß÷‘š¨Ûúü®Sø&ì­¬…˜Có[¶âȼ3ûÜ÷<ŒñØæ½WÈŸÌX#“3 "²ºÆ7Œ‘Üc¼‡àìFy5xKJŒ"îç.r@ï×Þ½Ä-ÿ þ“}ª}’*Þ!,Fm¸Î@†9b?1W{Yæ3„`Ú¼VõŠÚÛ_kùöG.mhÎñ ôíhí§Ô$.ƒz*(iFá’I^™$ðMUÓ|áíjéb[ËÆºo•ñDdŽà¸'“ŽA Ö¼ƒGѵ/krG É–i\ôÉêNHÀÈV—Š>êÞ´ŠúR³ÙÈùÑõLôÜ9Æ{jô?°°Kýš¥WíZ¿V—m6·E}{X~Æ? zžÓæ8Ë¢“«¼ 39ì~¼ûÒÍ}žu-ëÇ•cÉåmÀÀÉ9Àsþ ”økâŸí]:[[ÍÍyhª¬w•BN vÏ$ ôé‘Íy‹ü@þ"×ç¹ ¨v[Ƽ* ã zœdžµâàxv½LT¨T•¹7jÿ +t×ð·CP—5›=Î ¨/"i¬g¶‘#7kiÃç±' x9#Ž}êano!òKD‘ílï”('¿SÔð?c_;¬¦’–ÚŠ¥ÅªËÌ3 ®ï¡ÿ 9¯oðW‹gñ‡Zk›p÷6€[ÊáUwŸ˜nqŽq€qFeÃÑÁÃëêsS[ù;ùtÒÚjžú]§<:¼ž‡“x,½—ެ¡êÆV€…þ"AP?ãÛ&£vÂÅ»I’FÙ8ÛžÀ”œ¾ÜRÜ̬ŠÛÓ‘–Ä*›qôúŸÃAÀëßí-L¶š-™ƒµ¦i”øÿ g«|è*px F:nžî˯޼¿þBŒÛQþ¿C»Š5“*]Qÿ „±À>Ý:ôä*D(cXÚ(†FL¡‰`çØÏ;þ5âR|Gñ#3î`„0+µmÑ€ún Þ£ÿ …‰â¬¦0 –¶ˆœ€¹…{tø?ʯ(_çþ_Š5XY[¡Ù|Q¿ú µŠ2︛sO* Бÿ ×â°<+à›MkÂ÷š…ij ·Ü–ˆ«ò‚?ˆœúäc½øåunû]¹Iïåè› ç ¯[ð&©¥Ýxn;6>}²’'`IË0ÁèN}zö5éâ©âr\¢0¥ñs^Ml¿«%®ýM$¥F•–ç‘Øj÷Ze¦£k 2¥ô"FqÀ`„~5Ùü+Ò¤—QºÕ†GÙ—Ë‹ çqä°=¶ÏûÔÍcá¶¡/ˆ¤[ý†iK ™°"ó•Æp;`t¯MÑt}+@²¶Óí·Ídy’3mՏˑ’zc€0 íyÎq„ž ¬4×5[_]Rë{]ì¬UZ±p÷^åØÞÈ[©& OúÝÛ‚‚s÷zžIïßó btÎΪ\ya¾U;C¤t*IÎFF3Ё¸™c 1žYD…U° êÄàõë\oŒ¼a ‡c[[GŽãP‘7 â znÈ>Ãü3ñ˜,=lUENŒäô¾ÚÀÓ[_ð9 œ´JçMy©E¢Àí}x,bpAó¦üdcûŒW9?Å[Há$¿¹pÄ™#^9O88©zO=«Ë!µÖüY¨³ªÍy9ûÒ1 úôÚ»M?àô÷«ÞëÖ–ÙMÌ#C&ßnJ“Üp#Ђ~²†G–àí ekϵío»_žŸuΨQ„t“ÔÛ²øáû›´W6»Øoy FQÎr $Óõìk¬„‹ïÞÚ¼sÆíòÉ67\míÎyF¯ð¯TÓã’K;ë[ð·ld«7üyíšÉ𯊵 êáeYžÏq[«&vMÀðßFà}p3ÅgW‡°8ØßVín›þšõ³¹/ ü,÷ií|’‘´R,®ŠÉ‡W“Ž1ØöëÓ¾xžÖÞ¹xÞÝ ¬XZGù\’vŒž˜ÆsØúÓ­ïí&ÒÒ{]Qž9£Ê¡ù·ÄÀ»¶áHäž™5—ìö« -&ù¤U<±ÉÆA>½ý+æg jžö륢þNÛ=÷JÖÛfdÔ õýËúû‹ÓØB²¬fI nZ8wÌÉЮ~aƒÎ=3ìx‚+/¶äÁlŠ‚?™Æü#8-œ\pqTZXtè%»»&ÚÝ#´ŠðÜ žã§Í’¼{p·ß{m>ÞycP¨’¼¢0ú(Rƒë^Ž ñó¼(»y%m´ÕÙ}ÊûékB1¨þÑ®,#Q)ó‡o1T©ÜÃ*Ž‹‚yö< b‰4×H€“ìÐ. ¤²9ÌŠ>„Žãøgšñ ¯Š~)¸ßå\ÛÛoBŒa·L²œg$‚Iã¯ZÈ—Æ~%”äë—È8â)Œcƒ‘Âàu9¯b%)ÞS²¿Ïïÿ 4Öºù}Z/[H%¤vÉ#Ì’x§†b © ³´tÜ{gn=iï%õªÇç]ܧ—! åw„SÓp ·VÈÏ¡?5Âcâb¥_ĤŠz¬—nàþÖΟñKÄöJé=ÌWèêT‹¸÷qÎჟ•q’zWUN«N/ØO^Ÿe|í¾©k{üõ4öV^ïù~G¹êzÂèº|·÷×[’Þ31†rpjg·n Æ0Ý}kåË‹‰nîe¹ËÍ+™ÏVbrOç]'‰¼o®xÎh`¹Ç*±ÙÚ!T$d/$žN>¼WqᯅZ9ÑÒO\ÜÛê1o&,-z ~^NCgNÕéá)ÒÊ©7‰¨¯'Õþ¯þ_¿Ehîþóâ €ï¬uÛûý*ÎK9ä.â-öv<²‘×h$àãúW%ö¯~«g-ÕõÀàG~>Zú¾Iš+(šM³ Û#9äl%ðc¬ ûÝ xÖKG´x®|¸¤Ï™O:Ê8Ã’qÉcÔä‚yÇNJyËŒTj¥&µOmztjÿ ?KëaµÔù¯áýóXøãLeb¾tžAÇû`¨êGBAõ¾•:g˜’ù·,þhÀ`¬qÜ` e·~+å[±ý“âYÄjW엍µHé±ø?Nõô>½âX<5 Ç©ÏѼM¶8cܪXŽÉ^r?¼IróÈS•ZmÇ›™5»òÚÚ7ïu«&|·÷•Ά >[©ÞXHeS$Œyà€ ÷ù²:ò2|óãDf? Z¼PD¶ÓßC(xÆ0|©ßR;ôMsÿ µ´ÔVi¬,͹›Ìxâi˜`¹,GAéÇlV§ÄýF×Yø§ê–‘:Ã=ò2³9n±ÉžØÏ@yÎWžæ±Ãàe„ÄÒN ]ïòêìú_Go'¦ŽÑ’_×õЯðR66þ!›ÑÄ gFMÙ— äžäqôÈ;ÿ eX<#%»Aö‰ãR¤ Í”Ž¹È G&¹Ÿƒ&á?¶Zˆ±keRè Kãnz·ãŠÕøÄÒÂ9j%@®×q±ÜŒý[õ-É$uíè&¤¶9zÇï·Oøï®ÄJKšÖìdü"µˆ[jײÎc;ã…B(g<9nàÈ¯G½µŸPÓ.´Éfâ¼FŽP 31 ‘ÏR}<3šä~ Ã2xVöî Dr Ç\›}Ý#S÷ÈÀëŽHÆI®à\OçKuäI¹†ó(”—GWî ñ³¹¸æ2¨›‹ºÚû%¾ýÖ_3ºNú¯ëúì|ÕÅÖ‰}y lM’ZËîTÿ á[ðÐñ/ˆ9Àû ¸ón3 Mòd‘÷ döª^.Êñް›BâîNp>cëÏçÍzïíôÏ YÍ%ª¬·ãÏ-*9Ü­ÂãhéŒc¾dÈêú¼Ë,. VŠ÷çeÿ n/¡¼äãõâ=‹xGQKx”|¹bÌŠD@2Œ 8'Ž àúƒŽ+áDÒ&¡¨"Œ§–Žr22 Ç·s]ŸÄ‹«ð%ÚÄ<¹ä’(×{e›HÀqÁç©Ç½`üŽÚõK饚9ƒÄ±€< –úƒú~ çðñO#­Í%iKKlµ¦¾F)'Iê¬Î+Ç(`ñ¾£œdÈ’` ™ºcßéé^ÿ i¸”Û\ý¡æhÔB«aq¸}ãÀÆ:ÜWƒ|FÛÿ BŒÇÀeaŸ-sÊ€:úW½ÜÝÜ<%$µ†%CóDªÀí%IÈÏʤ…ôäñÞŒ÷‘a0“ôŽÚë¤nŸoW÷0«e¶y'Å»aΗ2r’# Û°A^ý9ÉQÔõ=ù5¬£Öü.(Þ’M$~V«=éSÄFN½®©ÔWô»ÿ þHžkR‹ìÏ+µµžöê;khÚI¤m¨‹Ôš–âÖçJ¾_Z•’6 a”Èô> ÕÉaÕ<%®£2n bQŠå\tÈõUÿ ø»þ‹k15‚ÃuCL$ݹp P1=Oøýs¯^u éEJ”–éêŸê½5ýzy›jÛ³á›Ûkÿ ÚOcn±ÛÏîW;boºz{ãžüVÆ¡a£a5½äÎÂks¸J@?1è¿{$䑐=k”øsÖ^nŒ¦)ÝåXÃíùN1ØõÚOJë–xF÷h¸ Œ"Ž?x䜚ü³ì¨c*Fœ¯i;7~ñí׫Ðó¥Ë»3Ãü púw ‰°<Á%»ñž ÿ P+Û^ ¾Ye£ŽCÄŒ„/>˜>•á¶Ìm~&&À>M[hÈÈÿ [Ž•íd…RO@3^Ç(ʽ*¶ÖQZyßþ 1Vº}Ñç?¼O4Rh6R€ª£í¡ûÙ a‚3ß·Õ ü=mRÍ/µ9¤‚0ÑC¼Iè:cŽsÛ¾™x£ÆÐ¬ªÍöˢ샒W$•€Å{¨ÀPG ÀÀàŸZìÍ1RÉ0´ðxEË9+Éÿ ^rEÕ—±Š„70l¼áË@û.' ¼¹Žz€N3úUÉ<3á×*?²¬‚ä†"Ùc=p íÛ'¡ª1ñ"økJ†HÒ'»Ÿ+ oÏN¬Ã9 dÙãÜדÏâÍ~æc+j·Jzâ7(£ðW]•晍?nê´º6åwéåç÷N•ZŠíž›¬|?Ðõ?Ñ-E…®³ÇV$~X¯/…õ x‘LˆÑÜÚÈ7¦pzãÜüë½ðÄ^õtÝYËÍ7ÉÖÕ8ÏUe# #€r=sU¾/é’E§jRC4mxNÝ´9†íuá»›V‘ ZI€­×cr1Ÿpzsøf»¨åV‹ìû`qËLÊIã?\~¼³áËC©êhªOîO»‘ÃmçÛçút×¢x“Z}?Üê#b-¤X7õ Äò gž zzbº3œm*qvs·M=íúéw}¿&Úª°^Ö×µÏ(ø‡â†Öµƒenñý†×åQáYûœ÷ÇLœôÎNk¡ð‡¼/µ¸n0æÉ0¬ƒ‚üîÉÆvŒw®Sáö”š¯‹-üÕVŠØÙ[$`(9cqƒÔ_@BëqûÙ`Ýæ­0;79È?w<ó |ÙÜkßÌ1±Ëã ¿ìÒ»ðlìï«ÓnªèèrP´NÏš&Žéö Ù¸÷æ°~-_O'‰`°!RÚÚÝ%]Ø%þbß1'¿ÿ X՝áOöÎŒ·‹¬+Åæ*ÛÛ™0¤ƒOÍÔ `u¯¦ÂaèÐÃÓ«‹¨Ô¥µœ¿¯ÉyÅÙ.oÔôŸ Úx&(STðݽ¦õ] ’ÒNóÁäÈùr3í·žÚ[™ƒ¼veÈ÷ÞIõÎGlqÎ=M|«gsªxÅI6 ]Z·Îªä,¨zŒŽÄ~#ØŠúFñiÉqc©éÐD>S딑 GñŽ1éÐ^+ Ëi;Ô„µVÕú»i¯ÈÒ-ZÍ]òܘ®ì` bÛÙ¥_/y(@÷qÐúg Ô÷W0.Ø› 6Ò© r>QƒŒ0+Èîzb¨É+I0TbNñ"$~)ÕÒ6Þ‹{0VÆ27œWWñcÄcX×íôûyKZéðªc'iQ¿¯LaWŠŸS\·Š“źʸ…ôÙÂí|öÀÇåV|!¤ÂGâÛ[[’ï 3OrÙËPY¹=Î1õ5öåTžÑè Ú64/üö?Zëžk}¬¶éào፾á}3“ü]8Éæ¿´n²Žš_6¾pœ)2?úWÓÚ¥¾¨iWúdŽq{*ª1rXŒd…m»‰äcô¯–dâ•ã‘Jº¬§¨#¨® §,df«8ÉÅßN¾hˆ;îÓ=7áùpën®É 6ûJžO2^œÐò JÖø¥²ã›Ò6Ü·‰!wbÍ‚¬O©»õ¬ÿ ƒP=Ä:â¤-&ÙŽ ` È9 r9íϧzë> XÅ7ƒ5X–krÑ¢L 7€ìw}ÑŸNHëŒüþ:2†á¼+u·á÷N/Û'Ðç~ߘô«ëh!ónRéeQ´6QÛÿ èEwëÅÒ|¸Yqó1uêyùzð8 ƒŠù¦Ò;¹ä6öi<'ü³„[íZhu½ ùÍ¡g‚>r¯׊îÌx}bñ2“­k꣧oø~›hTèóËWò4|ki"xßQ˜Ï6øÀLnß‚0 ¹Æ{±–¶Öe#¨27È@^Ìß.1N¾œyç€õ†ñeé·Õã†çQ°€=­Ì©ºB€Ø8<‚ÃSõ®ùcc>×Ú .Fr:žÝGæ=kÁâ,^!Fž ¬,àµ}%¶«îõ¹†"r²ƒGœüYÕd?aÑÍY®49PyU ÷þ!žxÅm|/‚ãNð˜¼PcûTÒ,¹/Ý=FkÏ|u¨¶«â녏{¤m¢]Û¾ïP>®XãÞ½iÓÁ¾ ‰'¬–6ß¼(„ï— í!úÙäzôë^–:œ¨å|,_¿&š×]uÓѵÛô4’j”bž§x‘Æ©ã›á,‚[Ô ÎÞ= ŒËæ ÀùYÁ?ŽïÚ¼?ÁªxºÕÛ,°1¸‘¿ÝäãØ¯v…@¤åq½ºã œàûââ·z8Xýˆþz~—û»™âµj=Ž â~ãáh@'h¼F#·Üp?ŸëQü-løvépx»cŸø…lxâÃûG·‰¶ø”L£©%y?¦úõÆü-Õ¶¥y`Òl7>q’2üA?•F}c‡jB:¸Jÿ +§¹¿¸Q÷°ív=VÑìu[Qml%R7a×IèTõéŽx¬ ?†š7 1†îã-ˆã’L¡lŽ0OÓ=ÅuˆpÇ•¼3ÛùÒ¶W/!|’wŽw^qÔ×Ïaó M8Q¨ãÑ?ëï0IEhÄa¸X•`a ?!ÐñùQ!Rä ÂžqŽžÝO`I0ÿ J“y|ñ!Îã@99>þ8–+éáu…!ù—ä ʰ<÷6’I®z ÅS„¾)Zþ_Öýµ×ËPåOwø÷þ*üïænÖùmØÝûþ¹=>¦½öî×Jh]¼ç&@§nTŒ6IT Àõ^Fxð7Å3!Ö·aÛ$þÿ ¹ã5îIo:ȪmËY[’8ÇӾlj*òû¢¥xõ¾¼ú•åk+\ð¯ HÚoŽl•Ûk,¯ ç²²cõÅ{²Z\ ´ìQ åpzŽ3Ôð}ÿ Jð¯XO¡øÎé€hÙ¥ûLdŒ`““ù6Gá^ÃáÝ^Ë[Ñb¾YåŒÊ»dŽ4 †2§,;ÿ CQÄ´¾°¨c–±”mºV{«ßÕýÄW\ÖŸ‘çŸ,çMRÆí“l-ƒn~ë©ÉÈê Ü?#Ž•¹ðãSÒ¥ÐWNíà½;ãž)™ÎSÈ9cóLj뵿Å«iÍk¨ió­¶X‚7÷ƒ€yãnyÏŽëÞ Öt`×À×V's$È9Ú:ä{wÆEk€«†Çàc—â$éÎ.éí~Ýëk}ÅAÆpörÑ¢‡Šl¡ÑüSs‹¨‰IÝ„óÀ×wñ&eºðf™pŒÆ9gŽTø£lñëÀçŽ NkÊUK0U’p ï^¡ãÈ¥´ø{£ÙHp`’ØåbqÏ©äó^Æ: Ž' ÊóM«õz+ß×ó5Ÿ»('¹­ð¦C„$˜Å¢_ºÈI?»^äã'ñêzž+ë€ñ-½»´}¡Ë*õ?.xÇ^1ŽMyǸ&“—L–îëöâ7…' bqéÎGé]˪â1$o²¸R8Ã`.q€}sÖ¾C9­8cêÆÞíïóòvÓòùœÕfÔÚéýu­èÖ·Ú Å‚_¤³ÜۺƑߝ”àרý:׃xPþÅÕî-/üØmnQìïGΊÙRqê=>¢½õnæ·r!—h`+’;ò3È<“Û©éšóŸx*÷V¹¸×tÈiˆßwiÔÿ |cŒñÏ®3Ö½̰‰Ë Qr©ö½®¼ÛoÑÙZÅÑ«O൯ýw8;k›ÿ x†;ˆJa;‘º9÷÷R+¡ñgŽí|Iáë{ôáo2ʲ9 029ÉÏLí\‰¿¸Ÿb˜ "Bv$£&#ßiê>=ªª©f  ’N ëí>¡N­XW­~5×úíø\‰»½Ï^ø(—wÖú¥¤2íŽÞXæÁ$ °eÈ888^nÝë²ñÝÔ^ ÖÚ9Q~Ëå7ï DC¶ÑµƒsËÇè9®Wáþƒ6‡£´·°2\Ý:ÈÑ?(#¨'$õèGJ¥ñW\ÿ ‰E¶—¸™g˜ÌÀ¹;Pv ú±ÎNs·ëŸ’–"Ž/:té+ûË]öJöÓM»ëø˜*‘•^Uý—êd|‰åñMæÔÝ‹23å™6æHùÛ‚ëüñ^…ñ1¢oêûÑEØ.õ7*ÅHtÎp{g<·Á«+¸c¿¿pÓ¾Æby=8É_ÄsÆk¬ñB\jÞÔì••Ë[9Píb‹Bヅ =9­3§ð§LšÛáÖšÆæXÌÞdÛP.0\ãïÛ0?™úJ¸™Ë ”•œº+=<µI£¦í¯õêt¬d‹T¬P=ËFêT>ÍØØ@Ï9<÷AQÌ×»Õ¡xùk",JÎæù±Éç$œŽŸZWH®¯"·UÌQ ’ÙÈ]ÅXg<ã ߨg3-Üqe€0¢¨*Œ$܃ ’Sû 8㎼_/e'+Ï–-èÓ¶¶Õíß[·ÙÙ½î쏗¼sk%§µxä‰â-pÒeÆCrú ôσžû=”šÅô(QW‚Õd\ƒæ. \àö¹¯F½°³½0M>‘gr÷q+œ¶NïºHO— ¤ ܥݭ”n·J|ÆP6Kµc=Isó}Ò çGš)a=—#vK›åoK§ßóٍ¤¶¿õú…ÄRÚ[Ësöټˏ•Ë ópw®qœŒ·Ø ùÇâ‹ý‡ãKèS&ÞvûD Aù‘É9 ŒîqÅ} $SnIV[]ѐ´Ó}ØÜ¾A Ü|½kÅþÓ|E Mu R¼.I¼¶däò‚ÃkÆ}ðy¹vc iUœZ…­Õõ»z¾÷¿n¦*j-É­/àœHã\y5 Û ß™ó0— äŸnzôã#Ô¯,†¥ÚeÔ÷ÜÅ´„“'c…<íÝ€<·SŠ¥k§Ã¢éÆÆÙna‚8–=«ʪ[Ÿ™°pNî02z“ÔÙ–K8.È’Þî(vƒ2®@ äÈûãçžxäÇf¯ˆu¹yUÕîýWšÙ|›ëÒ%Q^í[æ|éo5ZY•^{96ˆY‚§v*x>âº_|U¹Ö´©tûMÒÂ9PÇ#«£#€ éÉñ‘ƒÍz/‰´-į¹°dd,Б›p03ƒœ{ç9=+ Ûᧇ¬¦[‡‚ê婺¸#±ß=³ý¿•Õµjñ½HÙh›Û[§ÚýÊöô÷{˜?ô÷·Ô.u©–_%còcAÀ˜’ }0x9Î>žñÇáÍ9,ahï¦Ì2òÓ ñÛAäry$V²Nð ]=$Ž ‚#Ù‚1ƒƒødõMax‡ÂÖ^!±KkÛ‘ «“Çó²FN8+ëÎ{Ò¼oí§[«ÕMRoËeç×[_m/¦¦k.kôgŽxsSÓ´ý`êzªÜÜKo‰cPC9ÎY‰#§^üý9¹âïÞx£Ë·Ú`±‰‹¤;³–=ÏaôÕAð‚÷kêÁNBéÎælcõö®£Fð†ô2Ò¬]ßÂK$ÓÜ®•”/ÊHàã$ä ¸÷ëf¹Oµúâ“”’²ø­è´µþöjçNü÷üÌ¿ xNïFÒd»¼·h®îT9ŽAµÖ>qÁçÔœtïÒ»\ȶÎîcÞäîó3¶@#ÉIÎ ÔñW.<´’¥–ÑÑ€ÕšA‚ ;†qÓë‚2q ÒÂó$# Çí‡ !Ë}Õ9ÈÎÑÉã=;ŒÇÎuñ+ÉûÏ¥öíeÙ+$úíÜ娯'+êZH4ƒq¶FV‹gïŒ208ÆÌ)íб>M|÷âÍã¾"iì‹¥£Jd´™OÝç;sÈúr+ÜäˆË)DŒ¥šF°*3Õ”d {zÔwºQ¿·UžÉf†~>I+ŒqÔ`ð3œ“Ü×f]œTÁÔn4“ƒø’Ýßõ_«*5šzGCÊ,þ+ê1ò÷O¶¸cœºb2yÇ;cùÕ£ñh¬›áÑŠr¤ÝäNBk¥—á—†gxšX/쑘hŸ*Tçn =û㦠2|(ð¿e·ºÖ$ ýìŸ!'åΰyîî+×öœ=Y:²¦ÓÞ×iü’—ü -BK™£˜›âÆ¡&véðõ-ûÉY¹=Onj¹ø¯¯yf4·±T Pó`çœ7={×mÃ/ ¢˜ZÚòK…G½¥b„’G AãÜœ*í¯Ã¿ IoæI¦NU8‘RwÈã;·€ Û×ëÒ”1Y •£E»ÿ Oyto¢<£Áö·šï,䉧ûA¼sû»Nò}¹üE{ÜÖªò1’õÞr0â}ÎØ#>à/8ïéÎ~—áÍ#ñÎlí§³2f'h”?C÷YËdð:qëõÓ·‚ïeÄ© ÔÈØÜRL+žAÎ3¼g=åšó³Œt3 ÑQ¦ùRÙßE®¼±w_;þhš’Sirÿ ^ˆã¼iੇ|RòO„m°J/“$·l“ ÇÓ¿ÿ [ÑŠÆ“„†Õø>cFÆ6Ø1ƒ– àz7Ldòxäüwá‹ÝAXùO•Úý’é®ähm­ •NÀ±ÌTÈç ƒ‘I$pGž:‚ÄbêW¢®œ´|­¦­nÍ>¶ÖÏ¢§ÎÜ¢ºö¹•%ÄqL^öÛ KpNA<ã¡ …î==ª¸óffËF‡yÌcÉ ©ç$ð=ñÏ­YþÊ’Ú]—¥‚¬‚eDïÎH>Ÿ_ÌTP™a‰ch['çÆÜò7a‡?w°Ïn§âÎ5”’¨¹uÚÛ|´ÓÓc§{O—ü1•ªxsÃZ…ÊÏy¡Ã3¸Ë2Èé» ‘ƒÎ äžÜðA§cáOéúÛ4ý5-fŒï„ù¬ûô.Ç Üsž•Ò¾•wo<¶Ÿ"¬¡º|£ î2sÇ¡éE²ÉFѱrU°dÜ6œ¨ mc†Îxë׺Þ'0²¡Rr„{j¾í·è›µ÷)º·å–‹î2|I®Y¼ºÍË·–ÃÆà㍣'óÆxƒOÆÞ&>\lóÌxP Xc¸ì Sþ5§qà/ê>#žÞW¸if$\3 ® ûÄ“ùŽÕê¾ð<Ó‹H¶óÏ" å·( á‘€:ã†8Ï=+ꨬUA×ÃËÚT’ÑÞöù¥¢]{»ms¥F0\ÑÕ—ô}&ÛB´ƒOŽÚ+›xíÄÀ1 ,v± žIëíZ0ǧ™3 í2®0ทp9öÝÔž)ÓZËoq/Ú“‘L ²ŒmùŽÓ9§[Û#Ä‘\ÞB¬Çs [;à à«g‚2ôòªœÝV§»·¯/[uó½õÛï¾ /šÍ}öüÿ «=x»HŸÂÞ.™ ÌQùŸh´‘#a$‚'¡u<Š›Æ>2>+ƒLSiöwµFó1!eg`£åœ ÷ëÛö}Á¿ÛVÙêv $¬ƒ|,s÷z€ð΃¨x÷ÅD\ÜŒÞmåÔ„ ˆ o| :{ÇÓ¶–òÁn!´0Ål€, ƒ ( ÛŒŒ c¶rsšæ,4‹MÛOH!@¢ ÇŽ„`å²9ÝÃw;AÍt0®¤¡…¯ØÄ.Àì클ƒ‘ßñ5Í,Óëu-ÈÔc¢KÃÓ£òÖ̺U.õL¯0…%2È—"~x ‚[`có±nHàŽyàö™¥keˆìŒÛFç{(Ø©†`Jã#Žwg<“:ÚÉ;M ^\yhûX‡vB·÷zrF?§BÊÔ/s<ÐÈB)Û± ·ÍÔwç5Âã:så§e{mѤï«Òíh—]Wm4âí¿ùþW4bC3¶ª¾Ùr$ pw`àädzt!yŠI„hÂîàM)!edŒm'æ>Ç?wzºK­ìcŒ´¯Ìq6fp$)ãw¡éUl`µ»ARAˆÝÕgr:äŒgƒéé[Ôö±”iYs5Ýï«ÙG—K=þF’æMG«óÿ `ŠKɦuOQ!ÕåŒ/ÎGÞ`@ËqÕzdõâ«Ê/Ö(ƒK´%ŽbMü åÜŸö—>¤óŒŒV‘°„I¢Yž#™¥ùÏÊ@8 œgqöö5ª4vד[¬(q cò¨À!FGaÁõõ¯?§†¥ÏU½í¿WªZ$úyú½Žz×§Éþ?>Ã×È•6°{™™ŽÙ.$`­ÎUœ…çè ' ¤r$1Ø(y7 ðV<ž:È  ÁÎMw¾Â'Øb§øxb7gãО½óÉÊë²,i„Fȹ£§8ãä½k¹¥¦ê/ç{ïê驪2œ/«ü?¯Ô›ìñÜ$þeýœRIåŒg9Ác’zrrNO bÚi¢ ѺË/$,“ª¯Ýä;Œ× ´<ÛÑn³IvŸb™¥ nm–ÄŸ—nÝÀãŽ3ëÍG,.öó³˜Ù£¹u ÊÌrŠ[<±!@Æ:c9ÅZh ì’M5ÄìÌ-‚¼ëÉùqŽGì9¬á ;¨A-ž—évþÖ–^ON·Ô”ŸEý}ú×PO&e[]ÒG¸˜Ûp ƒÃà/Ë·8ûÀ€1ž@¿ÚB*²­¼ñì8@p™8Q“žÆH'8«I-%¸‚ F»“åó6°Uù|¶Ú¸ã ò^Äw¥ŠÖK–1ÜÝK,Žddlí²0PÀü“×ükG…¯U«·¶–´w¶ŽÍ¾©yÞú[Zös•¯Á[™6° ¨¼ÉVæq·,# ìãï‘×8îry®A››¨,ãc66»Ë´ã'æÉù?t}¢æH--Òá"›|ˆ¬[í  7¶ö#¸9«––‹$,+Ëqœ\Êø c€yê^ݸÄa°«™B-9%«×®‹V´w~vÜTéꢷþ¼ˆ%·¹• ’[xç•÷2gØS?6åÀÚ õ9É#š@÷bT¸º²C*3Bá¤òÎA9 =úU§Ó"2Ãlá0iÝIc‚2Î@%öç94ùô»'»HÄ¥Ô¾@à Tp£šíx:úÊ:5eºßMý×wµ›Ó_+šº3Ýyvÿ "ºÇ<ÂI>Õ 1G·Ë«È«É# àÈÇ øp Jv·šæDûE¿›†Ë’NFr2qŸ½ÇAÜšu•´éí#Ħ8£2”Ú2Ã/€[ÎTr;qŠz*ý’Îþ(≠;¡TÆâ›;ºÿ àçœk‘Þ­8¾Uª¾íé{^×IZéwÓkXÉûÑZo¯_øo×È¡¬ â–ÞR§2„‚Àœü½ùç® SVa†Âüª¼±D‘ŒísŸàä|ä2 æ[‹z”¯s{wn„ÆmáóCO+†GO8Ïeçåº`¯^¼ðG5f{Xžä,k‰<á y™¥voÆ éÛõëI=œ1‹éíÔÀÑ)R#;AÂncäŽ:tÏ#¶TkB.0Œ-ÖÞZÛgumß}fÎJÉ+#2êÔP£žùÈÅi¢%œ3P*Yƒò‚Aì“Ž2r:ƒÐúñi­RUQq‰H9!”={~¼ “JŽV¥»×²m.ÛߺiYl¾òk˜gL³·rT• ’…wHÁ6ä`–Î3ùÌ4Øe³†&òL‘•%clyîAÂäà0 žüç$[3uŘpNOÀÉ=† cï{rYK ååä~FÁ •a»"Lär1Ó¯2Äõæ<™C•.fÕ»è¥~½-¿g½Â4¡{[ør¨¶·Žõäx¥’l®qpwÇ»8ärF \cޏܯÓ-g‚yciÏÀ¾rÎwèØÈ#o°Á9ã5¢šfÔxÞæfGusÏÌJÿ µ×œ/LtãÅT7²¶w,l ɳ;”eúà·¨çîŒsÜgTÃS¦­^ '~‹®›¯+k÷ZÖd©Æ*Ó[Ü«%Œk0ŽXƒ”$k#Ȩ P2bv‘ƒŸáÇ™ÆÕb)m$É*8óLE‘8'–ÜN Úyàúô­+{uº±I'wvš4fÜr íì½=úuú sFlìV$‘ö†Hсù€$§ õ=½¸«Ž] :Ž+•¦ïmRþ½l´îÊT#nkiøÿ _ðÆT¶7Ò½ºÒ£Î¸d\ã8=yãŽÜäR{x]ZâÚé#¸r²#»ÎHÆ6õ ç® ÎFkr;sºÄ.&;só± Ç9êH÷ýSšÕ­tÐU¢-n­ Ì| vqœ„{gŒt§S.P‹’މ_[;m¥Þ­ZýRûÂX{+¥úü¼ú•-àÓ7!„G"“´‹žƒnrYXã¸îp éœ!Ó­oP̏tÑ (‰Þ¹é€sÓ#GLçÕšÑnJý¡!‘Tä#“ß?îýp}xÇ‚I¥Õn#·¸–y'qó@r[ Êô÷<ÔWÃÓ¢áN¥4ԝ’I&ݼ¬¬¼ÞºvéÆ FQV~_ÒüJÖÚt¥¦Xá3BÄP^%ÈÎW-×c¡ú©¤·Iþèk¥š?–UQåIR[’O 5x\ÉhÆI¶K4«2ùªŠŒ<¼óœçØ`u«‚Í.VHä € Ëgfx''9ÆI#±®Z8 sISºku¢ßÞ]úk»Jößl¡B.Ü»ÿ MWe °·Ž%šêɆ¼»Âù³´œ O¿cÐÓÄh©"ÛÜÏ.ÖV ’3nüÄmnq[ŒòznšÖ>J¬òˆæ…qýØP Ž:ä7^0yëWšÍ_79äoaÈ °#q0{ää×mœy”R{vÒÞ¶ÚÏe¥“ÚÆÐ¥Ì®—õýjR •íç›Ìb„+J yÜØÙ•Ç]¿Ôd þËOL²”9-Œ—õÃc'æÝלçÚ²ìejP“½ âù°¨†ðqòädЃÉäÖÜj÷PÇp“ÍšŠå«‘î <iWN­smª»¶vÓz5»ûì:Rs\Ðßôû×uÔÿÙ