Topic: enum_cast


Author: jonringle@gmail.com
Date: Wed, 28 Feb 2018 17:14:30 -0800 (PST)
Raw View
------=_Part_138_113747185.1519866870269
Content-Type: multipart/alternative;
 boundary="----=_Part_139_36664146.1519866870416"

------=_Part_139_36664146.1519866870416
Content-Type: text/plain; charset="UTF-8"

The usecase is to validate the deserialization of an input stream, where
the input contains a value that needs to be converted to an enum.
To this end, I use an implementation of `enum_cast<>` as follows below.
However, some of this employs what I think are "hackish tricks" because of
the inability to get relevant type info on enums at compile time:

1) Can't determine the number of valid enum values automatically
2) It would be nice if there was compiler support to automatically maintain
an internal sorted order of all valid enum values on which a
binary_search() could be done in order to determine if a value is valid for
an enum.


If the compiler helped out with these two items above, it would remove the
need of the following in my implementation:

1) No need for any of the enum_traits<>
2) No need to manually maintain a separate array of valid enum values in a
sorted order in enum_traits<>::enumerators[]

3) No need to use preprocessor tricks using __LINE__ to count the number of
values in an enum

4) No need for a static_assert to try to help keep validate the count of
valid values in the enum against the size of enum_trains<>::enumerators


enum_cast.h:

#ifndef ENUM_CAST_H

#define ENUM_CAST_H


#include <algorithm>

#include <stdexcept>

#include <string>

#include <typeinfo>


template <typename T>

struct enum_traits {

};


template <typename T, size_t N>

constexpr const T* endof(const T ra[N])

{

    return ra + N;

}


template <typename T, typename V>

T enum_cast(V v)

{

    using traits = enum_traits<T>;

    constexpr const T* first = traits::enumerators;

    constexpr const T* last = endof<T, traits::count>(traits::enumerators);

    if (traits::sorted) {

        if (std::binary_search(first, last, static_cast<T>(v)))

            return T(v);

    } else if (std::find(first, last, static_cast<T>(v)) != last) {

        return T(v);

    }

    using namespace std::literals;
    throw std::range_error("invalid enum value "s

                           + std::to_string(static_cast<int>(v))

                           + " for type "

                           + typeid(T).name());

}


#endif // ENUM_CAST_H



Example usage:
enumtest.h
#include <enum_cast.h>

enum class FrameType : uint8_t {

    // Must be kept sorted.

    // Only one enum value definition per line

    // No empty lines between BEGIN_COUNT_ and ENUM_COUNT_

    // No commented out enums values between BEGIN_COUNT_ and ENUM_COUNT_

    BEGIN_COUNT_ = __LINE__,

    Token = 0,

    PFM = 1,

    ReplyToPFM = 2,

    Test_Request = 3,

    Test_Response = 4,

    BACnetExpectingReply = 5,

    BACnetNotExpectingReply = 6,

    RepyPostponed = 7,

    Nmin_COBS_type = 32,

    BACnetExtendedExpectingReply = 32,

    BACnetExtendedNotExpectingReply = 33,

    Nmax_COBS_type = 127,

    ENUM_COUNT_ = __LINE__ - BEGIN_COUNT_ - 1,

};


template <>

struct enum_traits<FrameType> {

    static constexpr const bool sorted = true;

    static constexpr const size_t count = static_cast<size_t>(FrameType::ENUM_COUNT_);

    static const FrameType enumerators[];

};



enumtest.cc
#include "enumtest.h"

const FrameType enum_traits<FrameType>::enumerators[] = {

    // This must be in sorted order

    FrameType::Token,

    FrameType::PFM,

    FrameType::ReplyToPFM,

    FrameType::Test_Request,

    FrameType::Test_Response,

    FrameType::BACnetExpectingReply,

    FrameType::BACnetNotExpectingReply,

    FrameType::RepyPostponed,

    FrameType::Nmin_COBS_type,

    FrameType::BACnetExtendedExpectingReply,

    FrameType::BACnetExtendedNotExpectingReply,

    FrameType::Nmax_COBS_type,

};


static_assert(sizeof(enum_traits<FrameType>::enumerators) == enum_traits<FrameType>::count,

              "FrameType enum mismatch");


using event = int;
const event BadFrameType = 1; // Just for illustrative example

struct state_machine
{
    void process_frametype(uint8_t d)
    {
        try {
            frame_type_ = enum_cast<FrameType>(d);
        } catch (std::range_error& e) {
            std::clog << e.what() << std::endl;
            event_queue_.push(BadFrameType); // To be handled elsewhere...
        }
    }
    FrameType frame_type_;
    std::vector<uint8_t> buffer_;
    std::queue<event> event_queue_;
};



--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/5cec2f4a-747a-41d8-b65e-8c3da77bf1d4%40isocpp.org.

------=_Part_139_36664146.1519866870416
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div>The usecase is to validate the deserialization of an =
input stream, where the input contains a value that needs to be converted t=
o an enum.<br></div>To this end, I use an implementation of `enum_cast&lt;&=
gt;` as follows below.<div>However, some of this employs what I think are &=
quot;hackish tricks&quot; because of the inability to get relevant type inf=
o on enums at compile time:</div><blockquote style=3D"margin: 0 0 0 40px; b=
order: none; padding: 0px;"><div>1) Can&#39;t determine the number of valid=
 enum values automatically</div><div>2) It would be nice if there was compi=
ler support to automatically maintain an internal sorted order of all valid=
 enum values on which a binary_search() could be done in order to determine=
 if a value is valid for an enum.</div></blockquote><div>=C2=A0</div><div>I=
f the compiler helped out with these two items above, it would remove the n=
eed of the following in my implementation:</div><blockquote style=3D"margin=
: 0 0 0 40px; border: none; padding: 0px;"><div>1) No need for any of the e=
num_traits&lt;&gt;</div><div>2) No need to manually maintain a separate arr=
ay of valid enum values in a sorted order in enum_traits&lt;&gt;::enumerato=
rs[]</div></blockquote><blockquote style=3D"margin: 0 0 0 40px; border: non=
e; padding: 0px;"><div>3) No need to use preprocessor tricks using __LINE__=
 to count the number of values in an enum</div></blockquote><blockquote sty=
le=3D"margin: 0 0 0 40px; border: none; padding: 0px;"><div>4) No need for =
a static_assert to try to help keep validate the count of valid values in t=
he enum against the size of enum_trains&lt;&gt;::enumerators</div></blockqu=
ote><div><div><div><br></div><div>enum_cast.h:<br></div><div><div class=3D"=
prettyprint" style=3D"background-color: rgb(250, 250, 250); border-color: r=
gb(187, 187, 187); border-style: solid; border-width: 1px; word-wrap: break=
-word;"><code class=3D"prettyprint"><div class=3D"subprettyprint"><pre><spa=
n style=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by=
-prettify">#</span></span><span style=3D" color:#5555ff;"><span style=3D"co=
lor: #800;" class=3D"styled-by-prettify">ifndef</span></span><span style=3D=
" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"=
> </span></span><span style=3D" color:#5555ff;"><span style=3D"color: #000;=
" class=3D"styled-by-prettify">ENUM_CAST_H</span></span></pre><pre><span st=
yle=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify">#</span></span><span style=3D" color:#5555ff;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">define</span></span><span style=3D" co=
lor:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </=
span></span><span style=3D" color:#5555ff;"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify">ENUM_CAST_H</span></span></pre><pre><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><br></span></pre><pre><span =
style=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by-p=
rettify">#include</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-pretti=
fy">&lt;algorithm&gt;</span></span></pre><pre><span style=3D" color:#5555ff=
;"><span style=3D"color: #800;" class=3D"styled-by-prettify">#include</span=
></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#ff55ff;"><spa=
n style=3D"color: #080;" class=3D"styled-by-prettify">&lt;stdexcept&gt;</sp=
an></span></pre><pre><span style=3D" color:#5555ff;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify">#include</span></span><span style=3D" c=
olor:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> <=
/span></span><span style=3D" color:#ff55ff;"><span style=3D"color: #080;" c=
lass=3D"styled-by-prettify">&lt;string&gt;</span></span></pre><pre><span st=
yle=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify">#include</span></span><span style=3D" color:#c0c0c0;"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" =
color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-prettify">&=
lt;typeinfo&gt;</span></span></pre><pre><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><br></span></pre><pre><span style=3D" color:#ffff55=
;"><span style=3D"color: #008;" class=3D"styled-by-prettify">template</span=
></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</span></span><sp=
an style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-b=
y-prettify">typename</span></span><span style=3D" color:#c0c0c0;"><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy">T</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">&gt;</span></span></pre><pre><span style=
=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-pretti=
fy">struct</span></span><span style=3D" color:#c0c0c0;"><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color=
:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">enum_t=
raits</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaa=
aaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">{</span></s=
pan></pre><pre><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify">};</span></span></pre><pre><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"><br></span></pre><pre><span style=
=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-pretti=
fy">template</span></span><span style=3D" color:#c0c0c0;"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" col=
or:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;=
</span></span><span style=3D" color:#ffff55;"><span style=3D"color: #008;" =
class=3D"styled-by-prettify">typename</span></span><span style=3D" color:#c=
0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span><=
/span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D=
"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">,</span></span><span sty=
le=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pret=
tify"> </span></span><span style=3D" color:#55ff55;"><span style=3D"color: =
#000;" class=3D"styled-by-prettify">size_t</span></span><span style=3D" col=
or:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </s=
pan></span><span style=3D"color: #000;" class=3D"styled-by-prettify">N</spa=
n><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify">&gt;</span></span></pre><pre><span style=3D" color:#ffff55=
;"><span style=3D"color: #008;" class=3D"styled-by-prettify">constexpr</spa=
n></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#ffff55;"><spa=
n style=3D"color: #008;" class=3D"styled-by-prettify">const</span></span><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"> </span></span><span style=3D" color:#55ff55;"><span style=3D"=
color: #000;" class=3D"styled-by-prettify">T</span></span><span style=3D" c=
olor:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">*<=
/span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" c=
lass=3D"styled-by-prettify"> </span></span><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify">endof</span><span style=3D" color:#aaaaaa;"><span=
 style=3D"color: #660;" class=3D"styled-by-prettify">(</span></span><span s=
tyle=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-pr=
ettify">const</span></span><span style=3D" color:#c0c0c0;"><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" co=
lor:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">T</=
span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"> </span></span><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify">ra</span><span style=3D" color:#aaaaaa;"><span sty=
le=3D"color: #660;" class=3D"styled-by-prettify">[</span></span><span style=
=3D"color: #000;" class=3D"styled-by-prettify">N</span><span style=3D" colo=
r:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">])</s=
pan></span></pre><pre><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">{</span></span></pre><pre><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=
=3D"color: #008;" class=3D"styled-by-prettify">return</span></span><span st=
yle=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"> </span></span><span style=3D"color: #000;" class=3D"styled-by-prett=
ify">ra</span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" =
class=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"=
><span style=3D"color: #660;" class=3D"styled-by-prettify">+</span></span><=
span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"> </span></span><span style=3D"color: #000;" class=3D"styled-b=
y-prettify">N</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #=
660;" class=3D"styled-by-prettify">;</span></span></pre><pre><span style=3D=
" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify"=
>}</span></span></pre><pre><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><br></span></pre><pre><span style=3D" color:#ffff55;"><span style=
=3D"color: #008;" class=3D"styled-by-prettify">template</span></span><span =
style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"colo=
r: #660;" class=3D"styled-by-prettify">&lt;</span></span><span style=3D" co=
lor:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">typ=
ename</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#55f=
f55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">T</span></s=
pan><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"s=
tyled-by-prettify">,</span></span><span style=3D" color:#c0c0c0;"><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-pretti=
fy">typename</span></span><span style=3D" color:#c0c0c0;"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" col=
or:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">V</s=
pan></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify">&gt;</span></span></pre><pre><span style=3D" colo=
r:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">T</sp=
an></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify"> </span></span><span style=3D"color: #000;" class=
=3D"styled-by-prettify">enum_cast</span><span style=3D" color:#aaaaaa;"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify">(</span></span><span=
 style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-=
prettify">V</span></span><span style=3D" color:#c0c0c0;"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D"color=
: #000;" class=3D"styled-by-prettify">v</span><span style=3D" color:#aaaaaa=
;"><span style=3D"color: #660;" class=3D"styled-by-prettify">)</span></span=
></pre><pre><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify">{</span></span></pre><pre><span style=3D" color:=
#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0=
 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=3D"color: =
#008;" class=3D"styled-by-prettify">using</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify">traits</span></span><span style=3D" color:#c0c0c0;=
"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span>=
<span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"style=
d-by-prettify">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy">enum_traits</span></span><span style=3D" color:#aaaaaa;"><span style=3D=
"color: #660;" class=3D"styled-by-prettify">&lt;</span></span><span style=
=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy">T</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">&gt;;</span></span></pre><pre><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=
=3D"color: #008;" class=3D"styled-by-prettify">constexpr</span></span><span=
 style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"> </span></span><span style=3D" color:#ffff55;"><span style=3D"col=
or: #008;" class=3D"styled-by-prettify">const</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =
</span></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" =
class=3D"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"=
><span style=3D"color: #660;" class=3D"styled-by-prettify">*</span></span><=
span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"> </span></span><span style=3D"color: #000;" class=3D"styled-b=
y-prettify">first</span><span style=3D" color:#c0c0c0;"><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color=
:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">=3D</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ff55;"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify">traits</span></span=
><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styl=
ed-by-prettify">::</span></span><span style=3D"color: #000;" class=3D"style=
d-by-prettify">enumerators</span><span style=3D" color:#aaaaaa;"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify">;</span></span></pre><pre><=
span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><=
span style=3D"color: #008;" class=3D"styled-by-prettify">constexpr</span></=
span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"> </span></span><span style=3D" color:#ffff55;"><span st=
yle=3D"color: #008;" class=3D"styled-by-prettify">const</span></span><span =
style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"> </span></span><span style=3D" color:#55ff55;"><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify">T</span></span><span style=3D" color=
:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">*</spa=
n></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span></span><span style=3D"color: #008;" class=
=3D"styled-by-prettify">last</span><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prett=
ify">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"> </span></span><span style=3D"color: #=
000;" class=3D"styled-by-prettify">endof</span><span style=3D" color:#aaaaa=
a;"><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</span></=
span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"=
styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify">,</span></span><span styl=
e=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prett=
ify"> </span></span><span style=3D" color:#55ff55;"><span style=3D"color: #=
000;" class=3D"styled-by-prettify">traits</span></span><span style=3D" colo=
r:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">::</s=
pan></span><span style=3D"color: #000;" class=3D"styled-by-prettify">count<=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">&gt;(</span></span><span style=3D" color:#55ff55;"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify">traits</span></span>=
<span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"style=
d-by-prettify">::</span></span><span style=3D"color: #000;" class=3D"styled=
-by-prettify">enumerators</span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">);</span></span></pre><pre><=
span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><=
span style=3D"color: #008;" class=3D"styled-by-prettify">if</span></span><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"=
color: #660;" class=3D"styled-by-prettify">(</span></span><span style=3D" c=
olor:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">tr=
aits</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #66=
0;" class=3D"styled-by-prettify">::</span></span><span style=3D"color: #000=
;" class=3D"styled-by-prettify">sorted</span><span style=3D" color:#aaaaaa;=
"><span style=3D"color: #660;" class=3D"styled-by-prettify">)</span></span>=
<span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"style=
d-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">{</span></span></pre><pre><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0</span></span><span style=3D" colo=
r:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">if</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><s=
pan style=3D"color: #660;" class=3D"styled-by-prettify">(</span></span><spa=
n style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by=
-prettify">std</span></span><span style=3D" color:#aaaaaa;"><span style=3D"=
color: #660;" class=3D"styled-by-prettify">::</span></span><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify">binary_search</span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">(</span></span><span style=3D"color: #000;" class=3D"styled-by-prettify=
">first</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" =
class=3D"styled-by-prettify">,</span></span><span style=3D" color:#c0c0c0;"=
><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><=
span style=3D"color: #008;" class=3D"styled-by-prettify">last</span><span s=
tyle=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pr=
ettify">,</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:=
#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">static_=
cast</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #66=
0;" class=3D"styled-by-prettify">&lt;</span></span><span style=3D" color:#5=
5ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">T</span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">&gt;(</span></span><span style=3D"color: #000;" class=
=3D"styled-by-prettify">v</span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">)))</span></span></pre><pre>=
<span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"style=
d-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0</span></span><spa=
n style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by=
-prettify">return</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy">T</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">(</span></span><span style=3D"color: #000=
;" class=3D"styled-by-prettify">v</span><span style=3D" color:#aaaaaa;"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify">);</span></span></pr=
e><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#=
aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">}</span>=
</span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#ffff55;"><spa=
n style=3D"color: #008;" class=3D"styled-by-prettify">else</span></span><sp=
an style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-b=
y-prettify"> </span></span><span style=3D" color:#ffff55;"><span style=3D"c=
olor: #008;" class=3D"styled-by-prettify">if</span></span><span style=3D" c=
olor:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> <=
/span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" c=
lass=3D"styled-by-prettify">(</span></span><span style=3D" color:#55ff55;">=
<span style=3D"color: #000;" class=3D"styled-by-prettify">std</span></span>=
<span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"style=
d-by-prettify">::</span></span><span style=3D"color: #000;" class=3D"styled=
-by-prettify">find</span><span style=3D" color:#aaaaaa;"><span style=3D"col=
or: #660;" class=3D"styled-by-prettify">(</span></span><span style=3D"color=
: #000;" class=3D"styled-by-prettify">first</span><span style=3D" color:#aa=
aaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">,</span></=
span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"> </span></span><span style=3D"color: #008;" class=3D"st=
yled-by-prettify">last</span><span style=3D" color:#aaaaaa;"><span style=3D=
"color: #660;" class=3D"styled-by-prettify">,</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =
</span></span><span style=3D" color:#ffff55;"><span style=3D"color: #008;" =
class=3D"styled-by-prettify">static_cast</span></span><span style=3D" color=
:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</=
span></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><=
span style=3D"color: #660;" class=3D"styled-by-prettify">&gt;(</span></span=
><span style=3D"color: #000;" class=3D"styled-by-prettify">v</span><span st=
yle=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify">))</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:=
#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">!=3D</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D"color: #008;" class=
=3D"styled-by-prettify">last</span><span style=3D" color:#aaaaaa;"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify">)</span></span><span styl=
e=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prett=
ify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #=
660;" class=3D"styled-by-prettify">{</span></span></pre><pre><span style=3D=
" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"=
> =C2=A0 =C2=A0 =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;">=
<span style=3D"color: #008;" class=3D"styled-by-prettify">return</span></sp=
an><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"> </span></span><span style=3D" color:#55ff55;"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify">T</span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">(</span></span><span style=3D"color: #000;" class=3D"styled-by-prettify=
">v</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" clas=
s=3D"styled-by-prettify">);</span></span></pre><pre><span style=3D" color:#=
c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =
=C2=A0</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #=
660;" class=3D"styled-by-prettify">}</span></span></pre><pre><span style=3D=
" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"=
> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=3D=
"color: #008;" class=3D"styled-by-prettify">using</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D" color:#ffff55;"><span style=3D"color: #0=
08;" class=3D"styled-by-prettify">namespace</span></span><span style=3D" co=
lor:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </=
span></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify">std</span></span><span style=3D" color:#aaaaaa;"=
><span style=3D"color: #660;" class=3D"styled-by-prettify">::</span></span>=
<span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"style=
d-by-prettify">literals</span></span><span style=3D" color:#aaaaaa;"><span =
style=3D"color: #660;" class=3D"styled-by-prettify">;</span><span style=3D"=
color: #000;" class=3D"styled-by-prettify"><br></span></span><span style=3D=
"color: #000;" class=3D"styled-by-prettify">=C2=A0 =C2=A0 </span><span styl=
e=3D"color: #008;" class=3D"styled-by-prettify">throw</span><span style=3D"=
color: #000;" class=3D"styled-by-prettify"> std</span><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">::</span><span style=3D"color: #000;" =
class=3D"styled-by-prettify">range_error</span><span style=3D"color: #660;"=
 class=3D"styled-by-prettify">(</span><span style=3D"color: #080;" class=3D=
"styled-by-prettify">&quot;invalid enum value &quot;</span><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify">s</span></pre><pre><span style=3D=
" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"=
> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 </span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">+</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D" color:#55ff55;"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify">std</span></span><span style=3D" color:#a=
aaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">::</span>=
</span><span style=3D"color: #000;" class=3D"styled-by-prettify">to_string<=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">(</span></span><span style=3D" color:#ffff55;"><span s=
tyle=3D"color: #008;" class=3D"styled-by-prettify">static_cast</span></span=
><span style=3D" color:#aaaaaa;"><span style=3D"color: #080;" class=3D"styl=
ed-by-prettify">&lt;</span></span><span style=3D" color:#ffff55;"><span sty=
le=3D"color: #080;" class=3D"styled-by-prettify">int</span></span><span sty=
le=3D" color:#aaaaaa;"><span style=3D"color: #080;" class=3D"styled-by-pret=
tify">&gt;</span><span style=3D"color: #660;" class=3D"styled-by-prettify">=
(</span></span><span style=3D"color: #000;" class=3D"styled-by-prettify">v<=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">))</span></span></pre><pre><span style=3D" color:#c0c0=
c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: =
#660;" class=3D"styled-by-prettify">+</span></span><span style=3D" color:#c=
0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span><=
/span><span style=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D=
"styled-by-prettify">&quot;</span></span><span style=3D" color:#c0c0c0;"><s=
pan style=3D"color: #080;" class=3D"styled-by-prettify"> </span></span><spa=
n style=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by=
-prettify">for</span></span><span style=3D" color:#c0c0c0;"><span style=3D"=
color: #080;" class=3D"styled-by-prettify"> </span></span><span style=3D" c=
olor:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-prettify">ty=
pe</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #080;=
" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#ff55ff=
;"><span style=3D"color: #080;" class=3D"styled-by-prettify">&quot;</span><=
/span></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #000=
;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 </span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">+</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#fff=
f55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">typeid</spa=
n></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">(</span></span><span style=3D" color:#55ff55;"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify">T</span></span><span =
style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-p=
rettify">).</span></span><span style=3D"color: #000;" class=3D"styled-by-pr=
ettify">name</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">());</span></span></pre><pre><span style=
=3D"color: #660;" class=3D"styled-by-prettify">}</span><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><br></span></pre><pre><span style=3D"=
color: #000;" class=3D"styled-by-prettify"><br></span></pre><pre><span styl=
e=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by-prett=
ify">#endif</span></span><span style=3D" color:#c0c0c0;"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" colo=
r:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">//</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><s=
pan style=3D"color: #800;" class=3D"styled-by-prettify">ENUM_CAST_H</span><=
/span></pre><pre><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<br></span></pre></div></code></div><br></div><div>Example usage:</div><div=
>enumtest.h</div><div><div class=3D"prettyprint" style=3D"background-color:=
 rgb(250, 250, 250); border-color: rgb(187, 187, 187); border-style: solid;=
 border-width: 1px; word-wrap: break-word;"><code class=3D"prettyprint"><di=
v class=3D"subprettyprint"><style type=3D"text/css"><span style=3D"color: #=
000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"=
><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pr=
ettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000=
;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"style=
d-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><br />p</span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify">,</span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> li </span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify">{</span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"> white</span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span><span style=3D"color: #660;" =
class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-b=
y-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span=
 style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: =
#660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"s=
tyled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify=
"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"=
color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-p=
rettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #66=
0;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><=
span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"col=
or: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">-</s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify">space</span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span><span style=3D"color: #660;" class=3D"styled-by-prettify"><span =
style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #=
660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"st=
yled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"=
><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"c=
olor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" clas=
s=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pr=
ettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span sty=
le=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660=
;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"style=
d-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><s=
pan style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"colo=
r: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">:</span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"> pre</span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
-</span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify">wrap</span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify">;</span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span><span =
style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #=
000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"=
><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pr=
ettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000=
;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"style=
d-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"> </span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
}</span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><br /></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></style><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify">#include</span><span style=3D"color: #000;" class=3D"styled-by-prett=
ify"> </span><span style=3D"color: #080;" class=3D"styled-by-prettify">&lt;=
enum_cast.h&gt;</span><span style=3D"color: #000;" class=3D"styled-by-prett=
ify"><br><br></span><pre><span style=3D" color:#ffff55;"><span style=3D"col=
or: #008;" class=3D"styled-by-prettify">enum</span></span><span style=3D" c=
olor:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> <=
/span></span><span style=3D" color:#ffff55;"><span style=3D"color: #008;" c=
lass=3D"styled-by-prettify">class</span></span><span style=3D" color:#c0c0c=
0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></spa=
n><span style=3D" color:#55ff55;"><span style=3D"color: #606;" class=3D"sty=
led-by-prettify">FrameType</span></span><span style=3D" color:#c0c0c0;"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span=
 style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-=
prettify">:</span></span><span style=3D" color:#c0c0c0;"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" colo=
r:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">uint8=
_t</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa=
;"><span style=3D"color: #660;" class=3D"styled-by-prettify">{</span></span=
></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" colo=
r:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">//</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify"> Must be k</span></span><span style=3D" color:#55=
ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">ept</span>=
</span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify">sorted.</span></span>=
</pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color=
:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">//</sp=
an></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" clas=
s=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify">Only</span></span><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify"> </span></span><span style=3D" color:#55ffff;"><span style=3D"=
color: #800;" class=3D"styled-by-prettify">one</span></span><span style=3D"=
 color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
 </span></span><span style=3D" color:#55ffff;"><span style=3D"color: #800;"=
 class=3D"styled-by-prettify">enum</span></span><span style=3D" color:#c0c0=
c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></sp=
an><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"st=
yled-by-prettify">value</span></span><span style=3D" color:#c0c0c0;"><span =
style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span st=
yle=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify">definition</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">per</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#5=
5ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">line</spa=
n></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #=
800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=
=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">//</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #=
800;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#55=
ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">No</span><=
/span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">empty</span></span><span=
 style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify"> </span></span><span style=3D" color:#55ffff;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify">lines</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =
</span></span><span style=3D" color:#55ffff;"><span style=3D"color: #800;" =
class=3D"styled-by-prettify">between</span></span><span style=3D" color:#c0=
c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></=
span><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"=
styled-by-prettify">BEGIN_COUNT_</span></span><span style=3D" color:#c0c0c0=
;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span=
><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styl=
ed-by-prettify">and</span></span><span style=3D" color:#c0c0c0;"><span styl=
e=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">ENUM_COUNT_</span></span></pre><pre><span style=3D" color:#c0c0c0;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span=
></span><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">//</span></span><span style=3D" color:#c0c0c0;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span=
 style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify">No</span></span><span style=3D" color:#c0c0c0;"><span style=3D"co=
lor: #800;" class=3D"styled-by-prettify"> </span></span><span style=3D" col=
or:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">comm=
ented</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#55f=
fff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">out</span><=
/span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">enums</span></span><span=
 style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify"> </span></span><span style=3D" color:#55ffff;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify">values</span></span><span style=3D"=
 color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
 </span></span><span style=3D" color:#55ffff;"><span style=3D"color: #800;"=
 class=3D"styled-by-prettify">between</span></span><span style=3D" color:#c=
0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span><=
/span><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify">BEGIN_COUNT_</span></span><span style=3D" color:#c0c0c=
0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></spa=
n><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"sty=
led-by-prettify">and</span></span><span style=3D" color:#c0c0c0;"><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">ENUM_COUNT_</span></span></pre><pre><span style=3D" color:#c0c0c0;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span=
></span><span style=3D" font-style:italic; color:#55ff55;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">BEGIN_COUNT_</span></span><span s=
tyle=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pr=
ettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color=
: #800;" class=3D"styled-by-prettify">=3D</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#5555ff;"><span style=3D"color: #800;" clas=
s=3D"styled-by-prettify">__LINE__</span></span><span style=3D" color:#aaaaa=
a;"><span style=3D"color: #800;" class=3D"styled-by-prettify">,</span></spa=
n></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" c=
lass=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" fon=
t-style:italic; color:#55ff55;"><span style=3D"color: #800;" class=3D"style=
d-by-prettify">Token</span></span><span style=3D" color:#c0c0c0;"><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#f=
f55ff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">0</span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify">,</span></span></pre><pre><span style=3D" color:#c0c0c=
0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=
=A0</span></span><span style=3D" font-style:italic; color:#55ff55;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">PFM</span></span><span s=
tyle=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pr=
ettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color=
: #800;" class=3D"styled-by-prettify">=3D</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#ff55ff;"><span style=3D"color: #800;" clas=
s=3D"styled-by-prettify">1</span></span><span style=3D" color:#aaaaaa;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify">,</span></span></pre=
><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" font-style=
:italic; color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-pr=
ettify">ReplyToPFM</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#f=
f55ff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">2</span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify">,</span></span></pre><pre><span style=3D" color:#c0c0c=
0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=
=A0</span></span><span style=3D" font-style:italic; color:#55ff55;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">Test_Request</span></spa=
n><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"sty=
led-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify">=3D</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D" color:#ff55ff;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify">3</span></span><span style=3D" color:#aaa=
aaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">,</span></s=
pan></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;"=
 class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" f=
ont-style:italic; color:#55ff55;"><span style=3D"color: #800;" class=3D"sty=
led-by-prettify">Test_Response</span></span><span style=3D" color:#c0c0c0;"=
><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><=
span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled=
-by-prettify">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ff55ff;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">4</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify">,</span></span></pre><pre><span style=3D"=
 color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
 =C2=A0 =C2=A0</span></span><span style=3D" font-style:italic; color:#55ff5=
5;"><span style=3D"color: #800;" class=3D"styled-by-prettify">BACnetExpecti=
ngReply</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#a=
aaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=3D</span=
></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#ff55ff;"><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify">5</span></span><span =
style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-p=
rettify">,</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></sp=
an><span style=3D" font-style:italic; color:#55ff55;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">BACnetNotExpectingReply</span></span><=
span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled=
-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D=
"color: #800;" class=3D"styled-by-prettify">=3D</span></span><span style=3D=
" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"=
> </span></span><span style=3D" color:#ff55ff;"><span style=3D"color: #800;=
" class=3D"styled-by-prettify">6</span></span><span style=3D" color:#aaaaaa=
;"><span style=3D"color: #800;" class=3D"styled-by-prettify">,</span></span=
></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" cl=
ass=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" font=
-style:italic; color:#55ff55;"><span style=3D"color: #800;" class=3D"styled=
-by-prettify">RepyPostponed</span></span><span style=3D" color:#c0c0c0;"><s=
pan style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><spa=
n style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by=
-prettify">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=3D"=
color: #800;" class=3D"styled-by-prettify"> </span></span><span style=3D" c=
olor:#ff55ff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">7<=
/span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" c=
lass=3D"styled-by-prettify">,</span></span></pre><pre><span style=3D" color=
:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=
=A0 =C2=A0</span></span><span style=3D" font-style:italic; color:#55ff55;">=
<span style=3D"color: #800;" class=3D"styled-by-prettify">Nmin_COBS_type</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><s=
pan style=3D"color: #800;" class=3D"styled-by-prettify">=3D</span></span><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify"> </span></span><span style=3D" color:#ff55ff;"><span style=3D"=
color: #800;" class=3D"styled-by-prettify">32</span></span><span style=3D" =
color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">,=
</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span s=
tyle=3D" font-style:italic; color:#55ff55;"><span style=3D"color: #800;" cl=
ass=3D"styled-by-prettify">BACnetExtendedExpectingReply</span></span><span =
style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-p=
rettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"colo=
r: #800;" class=3D"styled-by-prettify">=3D</span></span><span style=3D" col=
or:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </s=
pan></span><span style=3D" color:#ff55ff;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify">32</span></span><span style=3D" color:#aaaaaa;"><=
span style=3D"color: #800;" class=3D"styled-by-prettify">,</span></span></p=
re><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" font-st=
yle:italic; color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by=
-prettify">BACnetExtendedNotExpectingReply</span></span><span style=3D" col=
or:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </s=
pan></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify">=3D</span></span><span style=3D" color:#c0c0c0;">=
<span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><s=
pan style=3D" color:#ff55ff;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify">33</span></span><span style=3D" color:#aaaaaa;"><span style=3D=
"color: #800;" class=3D"styled-by-prettify">,</span></span></pre><pre><span=
 style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify"> =C2=A0 =C2=A0</span></span><span style=3D" font-style:italic; co=
lor:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">Nma=
x_COBS_type</span></span><span style=3D" color:#c0c0c0;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify"> </span></span><span style=3D" colo=
r:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=3D</=
span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" cl=
ass=3D"styled-by-prettify"> </span></span><span style=3D" color:#ff55ff;"><=
span style=3D"color: #800;" class=3D"styled-by-prettify">127</span></span><=
span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled=
-by-prettify">,</span></span></pre><pre><span style=3D" color:#c0c0c0;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span=
></span><span style=3D" font-style:italic; color:#55ff55;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">ENUM_COUNT_</span></span><span st=
yle=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">=3D</span></span><span style=3D" color=
:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </spa=
n></span><span style=3D" color:#5555ff;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">__LINE__</span></span><span style=3D" color:#c0c0c0=
;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span=
><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styl=
ed-by-prettify">-</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" font-style:italic; color:#55ff55;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">BEGIN_COUNT_</span></span><span style=3D" color:#c0=
c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></=
span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"=
styled-by-prettify">-</span></span><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span styl=
e=3D" color:#ff55ff;"><span style=3D"color: #800;" class=3D"styled-by-prett=
ify">1</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #=
800;" class=3D"styled-by-prettify">,</span></span></pre><pre><span style=3D=
" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify"=
>};</span></span></pre><span style=3D"color: #000;" class=3D"styled-by-pret=
tify"><br></span><pre><span style=3D"color: #008;" class=3D"styled-by-prett=
ify">template</span><span style=3D"font-family: Arial, Helvetica, sans-seri=
f; color: rgb(192, 192, 192);"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"> </span></span><span style=3D"font-family: Arial, Helvetica, =
sans-serif; color: rgb(170, 170, 170);"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">&lt;&gt;</span></span><span style=3D"color: #000;" =
class=3D"styled-by-prettify"><br></span></pre><pre><span style=3D" color:#f=
fff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">struct</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ff55;"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify">enum_traits</span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">&lt;</span></span><span style=3D" color:#55ff55;"><spa=
n style=3D"color: #606;" class=3D"styled-by-prettify">FrameType</span></spa=
n><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify">&gt;</span></span><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prett=
ify">{</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span>=
<span style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"style=
d-by-prettify">static</span></span><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span styl=
e=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-prett=
ify">constexpr</span></span><span style=3D" color:#c0c0c0;"><span style=3D"=
color: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" c=
olor:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">co=
nst</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000=
;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#ffff5=
5;"><span style=3D"color: #008;" class=3D"styled-by-prettify">bool</span></=
span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"> </span></span><span style=3D"color: #000;" class=3D"st=
yled-by-prettify">sorted</span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: =
#000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#f=
fff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">true</spa=
n></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">;</span></span></pre><pre><span style=3D" color:#c0=
c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =
=C2=A0</span></span><span style=3D" color:#ffff55;"><span style=3D"color: #=
008;" class=3D"styled-by-prettify">static</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#ffff55;"><span style=3D"color: #008;" clas=
s=3D"styled-by-prettify">constexpr</span></span><span style=3D" color:#c0c0=
c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></sp=
an><span style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"st=
yled-by-prettify">const</span></span><span style=3D" color:#c0c0c0;"><span =
style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span st=
yle=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify">size_t</span></span><span style=3D" color:#c0c0c0;"><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D"col=
or: #000;" class=3D"styled-by-prettify">count</span><span style=3D" color:#=
c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span>=
</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">=3D</span></span><span style=3D" color:#c0c0c0;"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><spa=
n style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by=
-prettify">static_cast</span></span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #080;" class=3D"styled-by-prettify">&lt;</span></span><span =
style=3D" color:#55ff55;"><span style=3D"color: #080;" class=3D"styled-by-p=
rettify">size_t</span></span><span style=3D" color:#aaaaaa;"><span style=3D=
"color: #080;" class=3D"styled-by-prettify">&gt;</span><span style=3D"color=
: #660;" class=3D"styled-by-prettify">(</span></span><span style=3D" color:=
#55ff55;"><span style=3D"color: #606;" class=3D"styled-by-prettify">FrameTy=
pe</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;=
" class=3D"styled-by-prettify">::</span></span><span style=3D" font-style:i=
talic; color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-pret=
tify">ENUM_COUNT_</span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">);</span></span></pre><pre><=
span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><=
span style=3D"color: #008;" class=3D"styled-by-prettify">static</span></spa=
n><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"> </span></span><span style=3D" color:#ffff55;"><span style=
=3D"color: #008;" class=3D"styled-by-prettify">const</span></span><span sty=
le=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pret=
tify"> </span></span><span style=3D" color:#55ff55;"><span style=3D"color: =
#606;" class=3D"styled-by-prettify">FrameType</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =
</span></span><span style=3D"color: #000;" class=3D"styled-by-prettify">enu=
merators</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify">[];</span></span></pre><pre><span style=3D" c=
olor:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">};=
</span></span></pre><pre><span style=3D"color: #000;" class=3D"styled-by-pr=
ettify"><br></span></pre></div></code></div><br></div><div>enumtest.cc</div=
></div></div><div><div class=3D"prettyprint" style=3D"background-color: rgb=
(250, 250, 250); border-color: rgb(187, 187, 187); border-style: solid; bor=
der-width: 1px; word-wrap: break-word;"><code class=3D"prettyprint"><div cl=
ass=3D"subprettyprint"><style type=3D"text/css"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><br />p</span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"=
color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-p=
rettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #66=
0;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><=
span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"col=
or: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify">,</span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #00=
0;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><=
span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"> li </span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span><span style=3D"color: =
#660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"s=
tyled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify=
"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"=
color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-p=
rettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #66=
0;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><=
span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"col=
or: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify">{</span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"=
color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #00=
0;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><=
span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"> white</span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify">-</span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify">space</span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify">:</span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span><span style=3D"color: #000;" class=3D"styled-b=
y-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span=
 style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: =
#000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"s=
tyled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify=
"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"=
color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #00=
0;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><=
span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"> pre</span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span><span style=3D"colo=
r: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify">-</span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify">wrap</span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span><span style=3D"color: #660;" class=3D"style=
d-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><s=
pan style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"colo=
r: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify">;</span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"=
styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettif=
y"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D=
"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-=
prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"sty=
led-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
<span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=
=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;=
" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled=
-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color=
: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D=
"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #660;" class=3D"styled-by-prettify"><span style=
=3D"color: #660;" class=3D"styled-by-prettify"><span style=3D"color: #660;"=
 class=3D"styled-by-prettify"><span style=3D"color: #660;" class=3D"styled-=
by-prettify">}</span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span><span style=3D"color: #000;" class=3D"styled-b=
y-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span=
 style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: =
#000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"s=
tyled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify=
"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"=
color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #00=
0;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styl=
ed-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><=
span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"col=
or: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-=
prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #0=
00;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;=
" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><span style=3D"color: #000;" class=3D"styled-by-prettify"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><span style=3D"color: #000;" class=3D"styled-by-prettify"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><br /></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></span></span></s=
pan></span></span></span></span></span></span></span></span></span></span><=
/span></span></span></span></span></span></span></span></span></span></span=
></span></span></span></span></span></span></span></span></span></span></sp=
an></span></span></span></span></span></span></span></span></span></span></=
span></span></span></span></span></span></span></span></span></span></span>=
</span></span></span></span></span></span></span></span></span></span></spa=
n></span></span></span></span></span></span></span></span></style><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify">#include</span><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"color=
: #080;" class=3D"styled-by-prettify">&quot;enumtest.h&quot;</span><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"><br><br></span><pre><span=
 style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-=
prettify">const</span></span><span style=3D" color:#c0c0c0;"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" =
color:#55ff55;"><span style=3D"color: #606;" class=3D"styled-by-prettify">F=
rameType</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#=
55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">enum_tra=
its</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660=
;" class=3D"styled-by-prettify">&lt;</span></span><span style=3D" color:#55=
ff55;"><span style=3D"color: #606;" class=3D"styled-by-prettify">FrameType<=
/span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" c=
lass=3D"styled-by-prettify">&gt;::</span></span><span style=3D"color: #000;=
" class=3D"styled-by-prettify">enumerators</span><span style=3D" color:#aaa=
aaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">[]</span></=
span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"=
styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify">=3D</span></span><span st=
yle=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">{</span></span></pre><pre><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ffff;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify">//</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D" color:#55ffff;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify">This</span></span><span style=3D" color:#=
c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span>=
</span><span style=3D" color:#55ffff;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">must</span></span><span style=3D" color:#c0c0c0;"><=
span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><sp=
an style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-b=
y-prettify">be</span></span><span style=3D" color:#c0c0c0;"><span style=3D"=
color: #800;" class=3D"styled-by-prettify"> </span></span><span style=3D" c=
olor:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">in=
</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" =
class=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ffff;"=
><span style=3D"color: #800;" class=3D"styled-by-prettify">sorted</span></s=
pan><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"s=
tyled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify">order</span></span></pre><=
pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"s=
tyled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff5=
5;"><span style=3D"color: #800;" class=3D"styled-by-prettify">FrameType</sp=
an></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" clas=
s=3D"styled-by-prettify">::</span></span><span style=3D" font-style:italic;=
 color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
Token</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify">,</span></span></pre><pre><span style=3D"=
 color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
 =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;"><span style=3D"=
color: #800;" class=3D"styled-by-prettify">FrameType</span></span><span sty=
le=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pret=
tify">::</span></span><span style=3D" font-style:italic; color:#55ff55;"><s=
pan style=3D"color: #800;" class=3D"styled-by-prettify">PFM</span></span><s=
pan style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify">,</span></span></pre><pre><span style=3D" color:#c0c0c0;"><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span>=
</span><span style=3D" color:#55ff55;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">FrameType</span></span><span style=3D" color:#aaaaa=
a;"><span style=3D"color: #800;" class=3D"styled-by-prettify">::</span></sp=
an><span style=3D" font-style:italic; color:#55ff55;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">ReplyToPFM</span></span><span style=3D=
" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify"=
>,</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span=
 style=3D" color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify">FrameType</span></span><span style=3D" color:#aaaaaa;"><span styl=
e=3D"color: #800;" class=3D"styled-by-prettify">::</span></span><span style=
=3D" font-style:italic; color:#55ff55;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">Test_Request</span></span><span style=3D" color:#aa=
aaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">,</span></=
span></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;=
" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" =
color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">F=
rameType</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">::</span></span><span style=3D" font-s=
tyle:italic; color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-b=
y-prettify">Test_Response</span></span><span style=3D" color:#aaaaaa;"><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify">,</span></span></pre>=
<pre><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"=
styled-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff=
55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">FrameType</s=
pan></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify">::</span></span><span style=3D" font-style:italic=
; color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify"=
>BACnetExpectingReply</span></span><span style=3D" color:#aaaaaa;"><span st=
yle=3D"color: #800;" class=3D"styled-by-prettify">,</span></span></pre><pre=
><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styl=
ed-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;"=
><span style=3D"color: #800;" class=3D"styled-by-prettify">FrameType</span>=
</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">::</span></span><span style=3D" font-style:italic; =
color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">B=
ACnetNotExpectingReply</span></span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">,</span></span></pre><pr=
e><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"sty=
led-by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;=
"><span style=3D"color: #800;" class=3D"styled-by-prettify">FrameType</span=
></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">::</span></span><span style=3D" font-style:italic; =
color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">R=
epyPostponed</span></span><span style=3D" color:#aaaaaa;"><span style=3D"co=
lor: #800;" class=3D"styled-by-prettify">,</span></span></pre><pre><span st=
yle=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;"><span st=
yle=3D"color: #800;" class=3D"styled-by-prettify">FrameType</span></span><s=
pan style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify">::</span></span><span style=3D" font-style:italic; color:#55ff=
55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">Nmin_COBS_ty=
pe</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;=
" class=3D"styled-by-prettify">,</span></span></pre><pre><span style=3D" co=
lor:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =
=C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">FrameType</span></span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prett=
ify">::</span></span><span style=3D" font-style:italic; color:#55ff55;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify">BACnetExtendedExpect=
ingReply</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">,</span></span></pre><pre><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify">FrameType</span></span><span=
 style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify">::</span></span><span style=3D" font-style:italic; color:#55ff55;=
"><span style=3D"color: #800;" class=3D"styled-by-prettify">BACnetExtendedN=
otExpectingReply</span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify">,</span></span></pre><pre><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify"> =C2=A0 =C2=A0</span></span><span style=3D" color:#55ff55;"><s=
pan style=3D"color: #800;" class=3D"styled-by-prettify">FrameType</span></s=
pan><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"s=
tyled-by-prettify">::</span></span><span style=3D" font-style:italic; color=
:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">Nmax_C=
OBS_type</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">,</span></span></pre><pre><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">};</span></span></pre><pre><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><br></span></pre><pre><span style=3D" color:#ffff55;"><span s=
tyle=3D"color: #008;" class=3D"styled-by-prettify">static_assert</span></sp=
an><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"st=
yled-by-prettify">(</span></span><span style=3D" color:#ffff55;"><span styl=
e=3D"color: #008;" class=3D"styled-by-prettify">sizeof</span></span><span s=
tyle=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pr=
ettify">(</span></span><span style=3D" color:#55ff55;"><span style=3D"color=
: #000;" class=3D"styled-by-prettify">enum_traits</span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">&lt;</span></span><span style=3D" color:#55ff55;"><span style=3D"color:=
 #606;" class=3D"styled-by-prettify">FrameType</span></span><span style=3D"=
 color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">=
&gt;::</span></span><span style=3D"color: #000;" class=3D"styled-by-prettif=
y">enumerators</span><span style=3D" color:#aaaaaa;"><span style=3D"color: =
#660;" class=3D"styled-by-prettify">)</span></span><span style=3D" color:#c=
0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">=3D=3D</span></span><span style=3D" color:#c0c0c0;"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><spa=
n style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by=
-prettify">enum_traits</span></span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">&lt;</span></span><span =
style=3D" color:#55ff55;"><span style=3D"color: #606;" class=3D"styled-by-p=
rettify">FrameType</span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">&gt;::</span></span><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify">count</span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">,</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0=
 =C2=A0 =C2=A0 =C2=A0</span></span><span style=3D" color:#ff55ff;"><span st=
yle=3D"color: #080;" class=3D"styled-by-prettify">&quot;FrameType</span></s=
pan><span style=3D" color:#c0c0c0;"><span style=3D"color: #080;" class=3D"s=
tyled-by-prettify"> </span></span><span style=3D" color:#ff55ff;"><span sty=
le=3D"color: #080;" class=3D"styled-by-prettify">enum</span></span><span st=
yle=3D" color:#c0c0c0;"><span style=3D"color: #080;" class=3D"styled-by-pre=
ttify"> </span></span><span style=3D" color:#ff55ff;"><span style=3D"color:=
 #080;" class=3D"styled-by-prettify">mismatch&quot;</span></span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prett=
ify">);</span></span></pre><pre><span style=3D"color: #000;" class=3D"style=
d-by-prettify"><br></span><span style=3D"color: #008;" class=3D"styled-by-p=
rettify">using</span><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span><span style=3D"color: #008;" class=3D"styled-by-prettify">event=
</span><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span><s=
pan style=3D"color: #660;" class=3D"styled-by-prettify">=3D</span><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"col=
or: #008;" class=3D"styled-by-prettify">int</span><span style=3D"color: #66=
0;" class=3D"styled-by-prettify">;</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify"><br></span><span style=3D"color: #008;" class=3D"st=
yled-by-prettify">const</span><span style=3D"color: #000;" class=3D"styled-=
by-prettify"> </span><span style=3D"color: #008;" class=3D"styled-by-pretti=
fy">event</span><span style=3D"color: #000;" class=3D"styled-by-prettify"> =
</span><span style=3D"color: #606;" class=3D"styled-by-prettify">BadFrameTy=
pe</span><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span>=
<span style=3D"color: #660;" class=3D"styled-by-prettify">=3D</span><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"c=
olor: #066;" class=3D"styled-by-prettify">1</span><span style=3D"color: #66=
0;" class=3D"styled-by-prettify">;</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span><span style=3D"color: #800;" class=3D"style=
d-by-prettify">// Just for illustrative example</span><span style=3D"color:=
 #000;" class=3D"styled-by-prettify"><br><br></span><span style=3D"color: #=
008;" class=3D"styled-by-prettify">struct</span><span style=3D"color: #000;=
" class=3D"styled-by-prettify"> state_machine<br></span><span style=3D"colo=
r: #660;" class=3D"styled-by-prettify">{</span><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span style=3D"color=
: #008;" class=3D"styled-by-prettify">void</span><span style=3D"color: #000=
;" class=3D"styled-by-prettify"> process_frametype</span><span style=3D"col=
or: #660;" class=3D"styled-by-prettify">(</span><span style=3D"color: #000;=
" class=3D"styled-by-prettify">uint8_t d</span><span style=3D"color: #660;"=
 class=3D"styled-by-prettify">)</span><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span style=3D"color: #660;" =
class=3D"styled-by-prettify">{</span><span style=3D"color: #000;" class=3D"=
styled-by-prettify"><br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 </span><span style=3D"c=
olor: #008;" class=3D"styled-by-prettify">try</span><span style=3D"color: #=
000;" class=3D"styled-by-prettify"> </span><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify">{</span><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"><br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 frame_type_ =
</span><span style=3D"color: #660;" class=3D"styled-by-prettify">=3D</span>=
<span style=3D"color: #000;" class=3D"styled-by-prettify"> enum_cast</span>=
<span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</span><span =
style=3D"color: #606;" class=3D"styled-by-prettify">FrameType</span><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">&gt;(</span><span style=
=3D"color: #000;" class=3D"styled-by-prettify">d</span><span style=3D"color=
: #660;" class=3D"styled-by-prettify">);</span><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 </span><span =
style=3D"color: #660;" class=3D"styled-by-prettify">}</span><span style=3D"=
color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"color: #0=
08;" class=3D"styled-by-prettify">catch</span><span style=3D"color: #000;" =
class=3D"styled-by-prettify"> </span><span style=3D"color: #660;" class=3D"=
styled-by-prettify">(</span><span style=3D"color: #000;" class=3D"styled-by=
-prettify">std</span><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">::</span><span style=3D"color: #000;" class=3D"styled-by-prettify">rang=
e_error</span><span style=3D"color: #660;" class=3D"styled-by-prettify">&am=
p;</span><span style=3D"color: #000;" class=3D"styled-by-prettify"> e</span=
><span style=3D"color: #660;" class=3D"styled-by-prettify">)</span><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify">{</span><span style=3D"color: #000=
;" class=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 std</span><span style=3D"color: #660;" class=3D"styled-by-prettify">::<=
/span><span style=3D"color: #000;" class=3D"styled-by-prettify">clog </span=
><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;&lt;</span><=
span style=3D"color: #000;" class=3D"styled-by-prettify"> e</span><span sty=
le=3D"color: #660;" class=3D"styled-by-prettify">.</span><span style=3D"col=
or: #000;" class=3D"styled-by-prettify">what</span><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">()</span><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"> </span><span style=3D"color: #660;" class=3D"sty=
led-by-prettify">&lt;&lt;</span><span style=3D"color: #000;" class=3D"style=
d-by-prettify"> std</span><span style=3D"color: #660;" class=3D"styled-by-p=
rettify">::</span><span style=3D"color: #000;" class=3D"styled-by-prettify"=
>endl</span><span style=3D"color: #660;" class=3D"styled-by-prettify">;</sp=
an><span style=3D"color: #000;" class=3D"styled-by-prettify"><br>=C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 event_queue_</span><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">.</span><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify">push</span><span style=3D"color: #660;" class=3D"s=
tyled-by-prettify">(</span><span style=3D"color: #606;" class=3D"styled-by-=
prettify">BadFrameType</span><span style=3D"color: #660;" class=3D"styled-b=
y-prettify">);</span><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span><span style=3D"color: #800;" class=3D"styled-by-prettify">// To=
 be handled elsewhere...</span><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><br>=C2=A0 =C2=A0 =C2=A0 =C2=A0 </span><span style=3D"color: =
#660;" class=3D"styled-by-prettify">}</span><span style=3D"color: #000;" cl=
ass=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span style=3D"color: #=
660;" class=3D"styled-by-prettify">}</span><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span style=3D"color: #6=
06;" class=3D"styled-by-prettify">FrameType</span><span style=3D"color: #00=
0;" class=3D"styled-by-prettify"> frame_type_</span><span style=3D"color: #=
660;" class=3D"styled-by-prettify">;</span><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 std</span><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">::</span><span style=3D"color: #000;" =
class=3D"styled-by-prettify">vector</span><span style=3D"color: #080;" clas=
s=3D"styled-by-prettify">&lt;uint8_t&gt;</span><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"> buffer_</span><span style=3D"color: #660;" c=
lass=3D"styled-by-prettify">;</span><span style=3D"color: #000;" class=3D"s=
tyled-by-prettify"><br>=C2=A0 =C2=A0 std</span><span style=3D"color: #660;"=
 class=3D"styled-by-prettify">::</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify">queue</span><span style=3D"color: #080;" class=3D"s=
tyled-by-prettify">&lt;event&gt;</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> event_queue_</span><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify">;</span><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"><br></span><span style=3D"color: #660;" class=3D"styled-b=
y-prettify">};</span><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"><br><br><br></span></pre></div></code></div></div><div><br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/5cec2f4a-747a-41d8-b65e-8c3da77bf1d4%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/5cec2f4a-747a-41d8-b65e-8c3da77bf1d4=
%40isocpp.org</a>.<br />

------=_Part_139_36664146.1519866870416--

------=_Part_138_113747185.1519866870269--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Wed, 28 Feb 2018 17:22:28 -0800 (PST)
Raw View
------=_Part_137_598231717.1519867348235
Content-Type: multipart/alternative;
 boundary="----=_Part_138_1164788082.1519867348235"

------=_Part_138_1164788082.1519867348235
Content-Type: text/plain; charset="UTF-8"

Yes, we've talked about ideas like this before. The general ideas that
resulted from that were that you should have a function that tests whether
a value is specified in an enumeration. That's the minimum viable feature;
your `enum_cast` could easily be built on top of it:

template<typename T> requires IsEnum<T>
T enum_cast(underlying_type_t<T> val)
{
  if(is_enum_value<T>(val)) then
    return static_cast<T>(val);
  throw std::range_error(...);
}

What we don't want is for the minimum viable feature to be burdened with
exceptions.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/856d933a-9ecd-42bd-823a-8602601c45df%40isocpp.org.

------=_Part_138_1164788082.1519867348235
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Yes, we&#39;ve talked about ideas like this before. The ge=
neral ideas that resulted from that were that you should have a function th=
at tests whether a value is specified in an enumeration. That&#39;s the min=
imum viable feature; your `enum_cast` could easily be built on top of it:<b=
r><br><div style=3D"background-color: rgb(250, 250, 250); border-color: rgb=
(187, 187, 187); border-style: solid; border-width: 1px; overflow-wrap: bre=
ak-word;" class=3D"prettyprint"><code class=3D"prettyprint"><div class=3D"s=
ubprettyprint"><span style=3D"color: #008;" class=3D"styled-by-prettify">te=
mplate</span><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;=
</span><span style=3D"color: #008;" class=3D"styled-by-prettify">typename</=
span><span style=3D"color: #000;" class=3D"styled-by-prettify"> T</span><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify">&gt;</span><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"> requires </span><span sty=
le=3D"color: #606;" class=3D"styled-by-prettify">IsEnum</span><span style=
=3D"color: #660;" class=3D"styled-by-prettify">&lt;</span><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify">T</span><span style=3D"color: #660=
;" class=3D"styled-by-prettify">&gt;</span><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"><br>T enum_cast</span><span style=3D"color: #660;=
" class=3D"styled-by-prettify">(</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify">underlying_type_t</span><span style=3D"color: #660;=
" class=3D"styled-by-prettify">&lt;</span><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify">T</span><span style=3D"color: #660;" class=3D"styl=
ed-by-prettify">&gt;</span><span style=3D"color: #000;" class=3D"styled-by-=
prettify"> val</span><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">)</span><span style=3D"color: #000;" class=3D"styled-by-prettify"><br><=
/span><span style=3D"color: #660;" class=3D"styled-by-prettify">{</span><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><br>=C2=A0 </span><s=
pan style=3D"color: #008;" class=3D"styled-by-prettify">if</span><span styl=
e=3D"color: #660;" class=3D"styled-by-prettify">(</span><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify">is_enum_value</span><span style=3D"c=
olor: #660;" class=3D"styled-by-prettify">&lt;</span><span style=3D"color: =
#000;" class=3D"styled-by-prettify">T</span><span style=3D"color: #660;" cl=
ass=3D"styled-by-prettify">&gt;(</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify">val</span><span style=3D"color: #660;" class=3D"sty=
led-by-prettify">))</span><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"> </span><span style=3D"color: #008;" class=3D"styled-by-prettify">=
then</span><span style=3D"color: #000;" class=3D"styled-by-prettify"><br>=
=C2=A0 =C2=A0 </span><span style=3D"color: #008;" class=3D"styled-by-pretti=
fy">return</span><span style=3D"color: #000;" class=3D"styled-by-prettify">=
 </span><span style=3D"color: #008;" class=3D"styled-by-prettify">static_ca=
st</span><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</sp=
an><span style=3D"color: #000;" class=3D"styled-by-prettify">T</span><span =
style=3D"color: #660;" class=3D"styled-by-prettify">&gt;(</span><span style=
=3D"color: #000;" class=3D"styled-by-prettify">val</span><span style=3D"col=
or: #660;" class=3D"styled-by-prettify">);</span><span style=3D"color: #000=
;" class=3D"styled-by-prettify"><br>=C2=A0 </span><span style=3D"color: #00=
8;" class=3D"styled-by-prettify">throw</span><span style=3D"color: #000;" c=
lass=3D"styled-by-prettify"> std</span><span style=3D"color: #660;" class=
=3D"styled-by-prettify">::</span><span style=3D"color: #000;" class=3D"styl=
ed-by-prettify">range_error</span><span style=3D"color: #660;" class=3D"sty=
led-by-prettify">(...);</span><span style=3D"color: #000;" class=3D"styled-=
by-prettify"><br></span><span style=3D"color: #660;" class=3D"styled-by-pre=
ttify">}</span></div></code></div><br>What we don&#39;t want is for the min=
imum viable feature to be burdened with exceptions.<br></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/856d933a-9ecd-42bd-823a-8602601c45df%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/856d933a-9ecd-42bd-823a-8602601c45df=
%40isocpp.org</a>.<br />

------=_Part_138_1164788082.1519867348235--

------=_Part_137_598231717.1519867348235--

.


Author: jonringle@gmail.com
Date: Wed, 28 Feb 2018 17:36:23 -0800 (PST)
Raw View
------=_Part_198_11970414.1519868183861
Content-Type: multipart/alternative;
 boundary="----=_Part_199_1715102783.1519868183861"

------=_Part_199_1715102783.1519868183861
Content-Type: text/plain; charset="UTF-8"

On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:
>
> Yes, we've talked about ideas like this before. The general ideas that
> resulted from that were that you should have a function that tests whether
> a value is specified in an enumeration. That's the minimum viable feature;
> your `enum_cast` could easily be built on top of it:
>
> template<typename T> requires IsEnum<T>
> T enum_cast(underlying_type_t<T> val)
> {
>   if(is_enum_value<T>(val)) then
>     return static_cast<T>(val);
>   throw std::range_error(...);
> }
>
> What we don't want is for the minimum viable feature to be burdened with
> exceptions.
>

I like this approach too. Is there a proposal to have
`is_enum_value<T>(val)` part of std so that this can be used for any enum
type T without the end user having to implement a template specialization
for each enum type?

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/6f056d11-ec50-405d-b2a0-ea4b77959207%40isocpp.org.

------=_Part_199_1715102783.1519868183861
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol=
 Bolas wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-le=
ft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr">=
Yes, we&#39;ve talked about ideas like this before. The general ideas that =
resulted from that were that you should have a function that tests whether =
a value is specified in an enumeration. That&#39;s the minimum viable featu=
re; your `enum_cast` could easily be built on top of it:<br><br><div style=
=3D"background-color:rgb(250,250,250);border-color:rgb(187,187,187);border-=
style:solid;border-width:1px"><code><div><span style=3D"color:#008">templat=
e</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#008">ty=
pename</span><span style=3D"color:#000"> T</span><span style=3D"color:#660"=
>&gt;</span><span style=3D"color:#000"> requires </span><span style=3D"colo=
r:#606">IsEnum</span><span style=3D"color:#660">&lt;</span><span style=3D"c=
olor:#000">T</span><span style=3D"color:#660">&gt;</span><span style=3D"col=
or:#000"><br>T enum_cast</span><span style=3D"color:#660">(</span><span sty=
le=3D"color:#000">underlying_type_t</span><span style=3D"color:#660">&lt;</=
span><span style=3D"color:#000">T</span><span style=3D"color:#660">&gt;</sp=
an><span style=3D"color:#000"> val</span><span style=3D"color:#660">)</span=
><span style=3D"color:#000"><br></span><span style=3D"color:#660">{</span><=
span style=3D"color:#000"><br>=C2=A0 </span><span style=3D"color:#008">if</=
span><span style=3D"color:#660">(</span><span style=3D"color:#000">is_enum_=
value</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#000=
">T</span><span style=3D"color:#660">&gt;(</span><span style=3D"color:#000"=
>val</span><span style=3D"color:#660">))</span><span style=3D"color:#000"> =
</span><span style=3D"color:#008">then</span><span style=3D"color:#000"><br=
>=C2=A0 =C2=A0 </span><span style=3D"color:#008">return</span><span style=
=3D"color:#000"> </span><span style=3D"color:#008">static_cast</span><span =
style=3D"color:#660">&lt;</span><span style=3D"color:#000">T</span><span st=
yle=3D"color:#660">&gt;(</span><span style=3D"color:#000">val</span><span s=
tyle=3D"color:#660">);</span><span style=3D"color:#000"><br>=C2=A0 </span><=
span style=3D"color:#008">throw</span><span style=3D"color:#000"> std</span=
><span style=3D"color:#660">::</span><span style=3D"color:#000">range_error=
</span><span style=3D"color:#660">(...);</span><span style=3D"color:#000"><=
br></span><span style=3D"color:#660">}</span></div></code></div><br>What we=
 don&#39;t want is for the minimum viable feature to be burdened with excep=
tions.<br></div></blockquote><div>=C2=A0</div><div>I like this approach too=
.. Is there a proposal to have `is_enum_value&lt;T&gt;(val)` part of std so =
that this can be used for any enum type T without the end user having to im=
plement a template specialization for each enum type?</div><div><br></div><=
/div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/6f056d11-ec50-405d-b2a0-ea4b77959207%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/6f056d11-ec50-405d-b2a0-ea4b77959207=
%40isocpp.org</a>.<br />

------=_Part_199_1715102783.1519868183861--

------=_Part_198_11970414.1519868183861--

.


Author: jonringle@gmail.com
Date: Wed, 28 Feb 2018 21:26:38 -0800 (PST)
Raw View
------=_Part_679_470248618.1519881999077
Content-Type: multipart/alternative;
 boundary="----=_Part_680_1857753218.1519881999078"

------=_Part_680_1857753218.1519881999078
Content-Type: text/plain; charset="UTF-8"

On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:
>
> Yes, we've talked about ideas like this before. The general ideas that
> resulted from that were that you should have a function that tests whether
> a value is specified in an enumeration. That's the minimum viable feature;
> your `enum_cast` could easily be built on top of it:
>
> template<typename T> requires IsEnum<T>
> T enum_cast(underlying_type_t<T> val)
> {
>   if(is_enum_value<T>(val)) then
>     return static_cast<T>(val);
>   throw std::range_error(...);
> }
>
> What we don't want is for the minimum viable feature to be burdened with
> exceptions.
>

I rewrote it in terms of an is_enum_value<T> implementation, however, this
generalized implementation suffers from the same maintenance problems
mentioned in my initial posting in this thread:

> 1) Can't determine the number of valid enum values automatically
> 2) It would be nice if there was compiler support to automatically
> maintain
> an internal sorted order of all valid enum values on which a
> binary_search() could be done in order to determine if a value is valid
> for
> an enum.
>
>
> If the compiler helped out with these two items above, it would remove the
> need of the following in my implementation:
>
> 1) No need for any of the enum_traits<>
> 2) No need to manually maintain a separate array of valid enum values in a
> sorted order in enum_traits<>::enumerators[]
>
> 3) No need to use preprocessor tricks using __LINE__ to count the number
> of
> values in an enum
>
> 4) No need for a static_assert to try to help keep validate the count of
> valid values in the enum against the size of enum_trains<>::enumerators
>

#ifndef ENUM_CAST_H

#define ENUM_CAST_H


#include <algorithm>

#include <stdexcept>

#include <string>

#include <typeinfo>


template <typename T>

struct enum_traits {};


template <typename T, size_t N>

constexpr const T* endof(const T ra[N]) { return ra + N; }


template <typename T> //requires std::is_enum<T>

bool is_enum_value(std::underlying_type_t<T> v)

{

    using traits = enum_traits<T>;

    constexpr const T* first = traits::enumerators;

    constexpr const T* last = endof<T, traits::count>(traits::enumerators);

    return (traits::sorted)

        ? std::binary_search(first, last, static_cast<T>(v))

        : std::find(first, last, static_cast<T>(v)) != last;

}


template <typename T>

T enum_cast(std::underlying_type_t<T> v)

{

    if (is_enum_value<T>(v))

        return static_cast<T>(v);


    using namespace std::literals;

    throw std::range_error("invalid enum value "s

                           + std::to_string(static_cast<int>(v))

                           + " for type "

                           + typeid(T).name());

}


#endif // ENUM_CAST_H



--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/dc0a5eab-e6a5-49aa-89e4-f9732530f7d6%40isocpp.org.

------=_Part_680_1857753218.1519881999078
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol=
 Bolas wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-le=
ft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr">=
Yes, we&#39;ve talked about ideas like this before. The general ideas that =
resulted from that were that you should have a function that tests whether =
a value is specified in an enumeration. That&#39;s the minimum viable featu=
re; your `enum_cast` could easily be built on top of it:<br><br><div style=
=3D"background-color:rgb(250,250,250);border-color:rgb(187,187,187);border-=
style:solid;border-width:1px"><code><div><span style=3D"color:#008">templat=
e</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#008">ty=
pename</span><span style=3D"color:#000"> T</span><span style=3D"color:#660"=
>&gt;</span><span style=3D"color:#000"> requires </span><span style=3D"colo=
r:#606">IsEnum</span><span style=3D"color:#660">&lt;</span><span style=3D"c=
olor:#000">T</span><span style=3D"color:#660">&gt;</span><span style=3D"col=
or:#000"><br>T enum_cast</span><span style=3D"color:#660">(</span><span sty=
le=3D"color:#000">underlying_type_t</span><span style=3D"color:#660">&lt;</=
span><span style=3D"color:#000">T</span><span style=3D"color:#660">&gt;</sp=
an><span style=3D"color:#000"> val</span><span style=3D"color:#660">)</span=
><span style=3D"color:#000"><br></span><span style=3D"color:#660">{</span><=
span style=3D"color:#000"><br>=C2=A0 </span><span style=3D"color:#008">if</=
span><span style=3D"color:#660">(</span><span style=3D"color:#000">is_enum_=
value</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#000=
">T</span><span style=3D"color:#660">&gt;(</span><span style=3D"color:#000"=
>val</span><span style=3D"color:#660">))</span><span style=3D"color:#000"> =
</span><span style=3D"color:#008">then</span><span style=3D"color:#000"><br=
>=C2=A0 =C2=A0 </span><span style=3D"color:#008">return</span><span style=
=3D"color:#000"> </span><span style=3D"color:#008">static_cast</span><span =
style=3D"color:#660">&lt;</span><span style=3D"color:#000">T</span><span st=
yle=3D"color:#660">&gt;(</span><span style=3D"color:#000">val</span><span s=
tyle=3D"color:#660">);</span><span style=3D"color:#000"><br>=C2=A0 </span><=
span style=3D"color:#008">throw</span><span style=3D"color:#000"> std</span=
><span style=3D"color:#660">::</span><span style=3D"color:#000">range_error=
</span><span style=3D"color:#660">(...);</span><span style=3D"color:#000"><=
br></span><span style=3D"color:#660">}</span></div></code></div><br>What we=
 don&#39;t want is for the minimum viable feature to be burdened with excep=
tions.<br></div></blockquote><div><br></div><div>I rewrote it in terms of a=
n is_enum_value&lt;T&gt; implementation, however, this generalized implemen=
tation suffers from the same maintenance problems mentioned in my initial p=
osting in this thread:</div><blockquote class=3D"gmail_quote" style=3D"marg=
in: 0px 0px 0px 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-l=
eft: 1ex;"><p style=3D"line-height: normal;">1) Can&#39;t determine the num=
ber of valid enum values automatically<br>2) It would be nice if there was =
compiler support to automatically maintain=C2=A0<br>an internal sorted orde=
r of all valid enum values on which a=C2=A0<br>binary_search() could be don=
e in order to determine if a value is valid for=C2=A0<br>an enum.</p><p sty=
le=3D"line-height: normal;">=C2=A0<br>If the compiler helped out with these=
 two items above, it would remove the=C2=A0<br>need of the following in my =
implementation:</p><p style=3D"line-height: normal;">1) No need for any of =
the enum_traits&lt;&gt;<br>2) No need to manually maintain a separate array=
 of valid enum values in a=C2=A0<br>sorted order in enum_traits&lt;&gt;::en=
umerators[]</p><p style=3D"line-height: normal;">3) No need to use preproce=
ssor tricks using __LINE__ to count the number of=C2=A0<br>values in an enu=
m</p><p style=3D"line-height: normal;">4) No need for a static_assert to tr=
y to help keep validate the count of=C2=A0<br>valid values in the enum agai=
nst the size of enum_trains&lt;&gt;::enumerators</p></blockquote><div><br><=
/div><div><div class=3D"prettyprint" style=3D"background-color: rgb(250, 25=
0, 250); border-color: rgb(187, 187, 187); border-style: solid; border-widt=
h: 1px; word-wrap: break-word;"><code class=3D"prettyprint"><div class=3D"s=
ubprettyprint"><pre><pre><span style=3D" color:#5555ff;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify">#</span></span><span style=3D" colo=
r:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">ifnde=
f</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify"> </span></span><span style=3D" color:#5555ff;=
"><span style=3D"color: #000;" class=3D"styled-by-prettify">ENUM_CAST_H</sp=
an></span></pre><pre><span style=3D" color:#5555ff;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify">#</span></span><span style=3D" color:#5=
555ff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">define</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#5555ff;"><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify">ENUM_CAST_H</span><=
/span></pre><pre><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<br></span></pre><pre><span style=3D" color:#5555ff;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">#include</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =
</span></span><span style=3D" color:#ff55ff;"><span style=3D"color: #080;" =
class=3D"styled-by-prettify">&lt;algorithm&gt;</span></span></pre><pre><spa=
n style=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D"styled-by=
-prettify">#include</span></span><span style=3D" color:#c0c0c0;"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-pretti=
fy">&lt;stdexcept&gt;</span></span></pre><pre><span style=3D" color:#5555ff=
;"><span style=3D"color: #800;" class=3D"styled-by-prettify">#include</span=
></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#ff55ff;"><spa=
n style=3D"color: #080;" class=3D"styled-by-prettify">&lt;string&gt;</span>=
</span></pre><pre><span style=3D" color:#5555ff;"><span style=3D"color: #80=
0;" class=3D"styled-by-prettify">#include</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#ff55ff;"><span style=3D"color: #080;" clas=
s=3D"styled-by-prettify">&lt;typeinfo&gt;</span></span></pre><pre><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify"><br></span></pre><pre><spa=
n style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by=
-prettify">template</span></span><span style=3D" color:#c0c0c0;"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">&lt;</span></span><span style=3D" color:#ffff55;"><span style=3D"color:=
 #008;" class=3D"styled-by-prettify">typename</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =
</span></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" =
class=3D"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"=
><span style=3D"color: #660;" class=3D"styled-by-prettify">&gt;</span></spa=
n></pre><pre><span style=3D" color:#ffff55;"><span style=3D"color: #008;" c=
lass=3D"styled-by-prettify">struct</span></span><span style=3D" color:#c0c0=
c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></sp=
an><span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify">enum_traits</span></span><span style=3D" color:#c0c0c0;">=
<span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><s=
pan style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-=
by-prettify">{</span></span><span style=3D"color: #660;" class=3D"styled-by=
-prettify">};</span></pre><pre><span style=3D"color: #000;" class=3D"styled=
-by-prettify"><br></span></pre><pre><span style=3D" color:#ffff55;"><span s=
tyle=3D"color: #008;" class=3D"styled-by-prettify">template</span></span><s=
pan style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-=
by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"=
color: #660;" class=3D"styled-by-prettify">&lt;</span></span><span style=3D=
" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify"=
>typename</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color=
: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:=
#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">T</span=
></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">,</span></span><span style=3D" color:#c0c0c0;"><spa=
n style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span =
style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-p=
rettify">size_t</span></span><span style=3D" color:#c0c0c0;"><span style=3D=
"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify">N</span><span style=3D" color:#aa=
aaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">&gt;</span=
></span></pre><pre><span style=3D" color:#ffff55;"><span style=3D"color: #0=
08;" class=3D"styled-by-prettify">constexpr</span></span><span style=3D" co=
lor:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </=
span></span><span style=3D" color:#ffff55;"><span style=3D"color: #008;" cl=
ass=3D"styled-by-prettify">const</span></span><span style=3D" color:#c0c0c0=
;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span=
><span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styl=
ed-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">*</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D"color: #000;" class=3D"styled-by-prettify=
">endof</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" =
class=3D"styled-by-prettify">(</span></span><span style=3D" color:#ffff55;"=
><span style=3D"color: #008;" class=3D"styled-by-prettify">const</span></sp=
an><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"> </span></span><span style=3D" color:#55ff55;"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify">T</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D"color: #000;" class=3D"styled-by-prettify=
">ra</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify">[</span></span><span style=3D"color: #000;" class=
=3D"styled-by-prettify">N</span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">])</span><span style=3D"colo=
r: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">{</span><span style=3D"color: #000;" c=
lass=3D"styled-by-prettify"> </span><span style=3D"color: #008;" class=3D"s=
tyled-by-prettify">return</span><span style=3D"color: #000;" class=3D"style=
d-by-prettify"> ra </span><span style=3D"color: #660;" class=3D"styled-by-p=
rettify">+</span><span style=3D"color: #000;" class=3D"styled-by-prettify">=
 N</span><span style=3D"color: #660;" class=3D"styled-by-prettify">;</span>=
<span style=3D"color: #000;" class=3D"styled-by-prettify"> </span><span sty=
le=3D"color: #660;" class=3D"styled-by-prettify">}</span></pre><pre><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"><br></span></pre><pre><s=
pan style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-=
by-prettify">template</span></span><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prett=
ify">&lt;</span></span><span style=3D" color:#ffff55;"><span style=3D"color=
: #008;" class=3D"styled-by-prettify">typename</span></span><span style=3D"=
 color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify">=
 </span></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;"=
 class=3D"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;=
"><span style=3D"color: #660;" class=3D"styled-by-prettify">&gt;</span></sp=
an><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"> </span></span><span style=3D" color:#55ffff;"><span styl=
e=3D"color: #800;" class=3D"styled-by-prettify">//requires</span></span><sp=
an style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-b=
y-prettify"> </span></span><span style=3D" color:#55ffff;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">std::is_enum&lt;T&gt;</span></spa=
n></pre><pre><span style=3D" color:#ffff55;"><span style=3D"color: #800;" c=
lass=3D"styled-by-prettify">bool</span></span><span style=3D" color:#c0c0c0=
;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span=
><span style=3D"color: #800;" class=3D"styled-by-prettify">is_enum_value</s=
pan><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"s=
tyled-by-prettify">(</span></span><span style=3D" color:#55ff55;"><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify">std</span></span><span sty=
le=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pret=
tify">::</span></span><span style=3D" color:#55ff55;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">underlying_type_t</span></span><span s=
tyle=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pr=
ettify">&lt;</span></span><span style=3D" color:#55ff55;"><span style=3D"co=
lor: #800;" class=3D"styled-by-prettify">T</span></span><span style=3D" col=
or:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">&gt;=
</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" =
class=3D"styled-by-prettify"> </span></span><span style=3D"color: #800;" cl=
ass=3D"styled-by-prettify">v</span><span style=3D" color:#aaaaaa;"><span st=
yle=3D"color: #800;" class=3D"styled-by-prettify">)</span></span></pre><pre=
><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styl=
ed-by-prettify">{</span></span></pre><pre><span style=3D" color:#c0c0c0;"><=
span style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0</sp=
an></span><span style=3D" color:#ffff55;"><span style=3D"color: #800;" clas=
s=3D"styled-by-prettify">using</span></span><span style=3D" color:#c0c0c0;"=
><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><=
span style=3D" color:#55ff55;"><span style=3D"color: #800;" class=3D"styled=
-by-prettify">traits</span></span><span style=3D" color:#c0c0c0;"><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy">=3D</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: =
#800;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#5=
5ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">enum_trai=
ts</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;=
" class=3D"styled-by-prettify">&lt;</span></span><span style=3D" color:#55f=
f55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">T</span></s=
pan><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"s=
tyled-by-prettify">&gt;;</span></span></pre><pre><span style=3D" color:#c0c=
0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=
=A0</span></span><span style=3D" color:#ffff55;"><span style=3D"color: #800=
;" class=3D"styled-by-prettify">constexpr</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#ffff55;"><span style=3D"color: #800;" clas=
s=3D"styled-by-prettify">const</span></span><span style=3D" color:#c0c0c0;"=
><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></span><=
span style=3D" color:#55ff55;"><span style=3D"color: #800;" class=3D"styled=
-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><span style=3D=
"color: #800;" class=3D"styled-by-prettify">*</span></span><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =
</span></span><span style=3D"color: #800;" class=3D"styled-by-prettify">fir=
st</span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaaaa;"><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify">=3D</span></span><spa=
n style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by=
-prettify"> </span></span><span style=3D" color:#55ff55;"><span style=3D"co=
lor: #800;" class=3D"styled-by-prettify">traits</span></span><span style=3D=
" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify"=
>::</span></span><span style=3D"color: #800;" class=3D"styled-by-prettify">=
enumerators</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #80=
0;" class=3D"styled-by-prettify">;</span></span></pre><pre><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =
=C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">constexpr</span></span><span styl=
e=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prett=
ify"> </span></span><span style=3D" color:#ffff55;"><span style=3D"color: #=
800;" class=3D"styled-by-prettify">const</span></span><span style=3D" color=
:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </spa=
n></span><span style=3D" color:#55ff55;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify">*</span></span><span =
style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-p=
rettify"> </span></span><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify">last</span><span style=3D" color:#c0c0c0;"><span style=3D"color: #80=
0;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#aaaa=
aa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=3D</span></=
span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"=
styled-by-prettify"> </span></span><span style=3D"color: #800;" class=3D"st=
yled-by-prettify">endof</span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #800;" class=3D"styled-by-prettify">&lt;</span></span><span styl=
e=3D" color:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prett=
ify">T</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #=
800;" class=3D"styled-by-prettify">,</span></span><span style=3D" color:#c0=
c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></=
span><span style=3D" color:#55ff55;"><span style=3D"color: #800;" class=3D"=
styled-by-prettify">traits</span></span><span style=3D" color:#aaaaaa;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify">::</span></span><spa=
n style=3D"color: #800;" class=3D"styled-by-prettify">count</span><span sty=
le=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-pret=
tify">&gt;(</span></span><span style=3D" color:#55ff55;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify">traits</span></span><span style=3D"=
 color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
::</span></span><span style=3D"color: #800;" class=3D"styled-by-prettify">e=
numerators</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800=
;" class=3D"styled-by-prettify">);</span></span></pre><pre><span style=3D" =
color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =
=C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">return</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify">(</span></span><span style=3D" color:#55f=
f55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">traits</spa=
n></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=
=3D"styled-by-prettify">::</span></span><span style=3D"color: #800;" class=
=3D"styled-by-prettify">sorted</span><span style=3D" color:#aaaaaa;"><span =
style=3D"color: #800;" class=3D"styled-by-prettify">)</span></span></pre><p=
re><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"st=
yled-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0</span></span><span style=3D"=
 color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">=
?</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;"=
 class=3D"styled-by-prettify"> </span></span><span style=3D" color:#55ff55;=
"><span style=3D"color: #800;" class=3D"styled-by-prettify">std</span></spa=
n><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"sty=
led-by-prettify">::</span></span><span style=3D"color: #800;" class=3D"styl=
ed-by-prettify">binary_search</span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">(</span></span><span sty=
le=3D"color: #800;" class=3D"styled-by-prettify">first</span><span style=3D=
" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify"=
>,</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #800;=
" class=3D"styled-by-prettify"> </span></span><span style=3D"color: #800;" =
class=3D"styled-by-prettify">last</span><span style=3D" color:#aaaaaa;"><sp=
an style=3D"color: #800;" class=3D"styled-by-prettify">,</span></span><span=
 style=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify"> </span></span><span style=3D" color:#ffff55;"><span style=3D"col=
or: #800;" class=3D"styled-by-prettify">static_cast</span></span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prett=
ify">&lt;</span></span><span style=3D" color:#55ff55;"><span style=3D"color=
: #800;" class=3D"styled-by-prettify">T</span></span><span style=3D" color:=
#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-prettify">&gt;(</=
span></span><span style=3D"color: #800;" class=3D"styled-by-prettify">v</sp=
an><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"st=
yled-by-prettify">))</span></span></pre><pre><span style=3D" color:#c0c0c0;=
"><span style=3D"color: #800;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0 =
=C2=A0 =C2=A0</span></span><span style=3D" color:#aaaaaa;"><span style=3D"c=
olor: #800;" class=3D"styled-by-prettify">:</span></span><span style=3D" co=
lor:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </=
span></span><span style=3D" color:#55ff55;"><span style=3D"color: #800;" cl=
ass=3D"styled-by-prettify">std</span></span><span style=3D" color:#aaaaaa;"=
><span style=3D"color: #800;" class=3D"styled-by-prettify">::</span></span>=
<span style=3D"color: #800;" class=3D"styled-by-prettify">find</span><span =
style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-by-p=
rettify">(</span></span><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify">first</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #8=
00;" class=3D"styled-by-prettify">,</span></span><span style=3D" color:#c0c=
0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </span></s=
pan><span style=3D"color: #800;" class=3D"styled-by-prettify">last</span><s=
pan style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"styled-=
by-prettify">,</span></span><span style=3D" color:#c0c0c0;"><span style=3D"=
color: #800;" class=3D"styled-by-prettify"> </span></span><span style=3D" c=
olor:#ffff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">st=
atic_cast</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color=
: #800;" class=3D"styled-by-prettify">&lt;</span></span><span style=3D" col=
or:#55ff55;"><span style=3D"color: #800;" class=3D"styled-by-prettify">T</s=
pan></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" cla=
ss=3D"styled-by-prettify">&gt;(</span></span><span style=3D"color: #800;" c=
lass=3D"styled-by-prettify">v</span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #800;" class=3D"styled-by-prettify">))</span></span><span st=
yle=3D" color:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-pre=
ttify"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color:=
 #800;" class=3D"styled-by-prettify">!=3D</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #800;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D"color: #800;" class=3D"styled-by-prettify">last</s=
pan><span style=3D" color:#aaaaaa;"><span style=3D"color: #800;" class=3D"s=
tyled-by-prettify">;</span></span></pre><pre><span style=3D" color:#aaaaaa;=
"><span style=3D"color: #800;" class=3D"styled-by-prettify">}</span></span>=
</pre><pre><span style=3D"color: #000;" class=3D"styled-by-prettify"><br></=
span></pre><pre><span style=3D" color:#ffff55;"><span style=3D"color: #008;=
" class=3D"styled-by-prettify">template</span></span><span style=3D" color:=
#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span=
></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">&lt;</span></span><span style=3D" color:#ffff55;"><=
span style=3D"color: #008;" class=3D"styled-by-prettify">typename</span></s=
pan><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"s=
tyled-by-prettify"> </span></span><span style=3D" color:#55ff55;"><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify">T</span></span><span style=
=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">&gt;</span></span></pre><pre><span style=3D" color:#55ff55;"><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify">T</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D"color: #000;" class=3D"styled-by-prettify=
">enum_cast</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #66=
0;" class=3D"styled-by-prettify">(</span></span><span style=3D" color:#55ff=
55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">std</span></=
span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"=
styled-by-prettify">::</span></span><span style=3D" color:#55ff55;"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify">underlying_type_t</span>=
</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">&lt;</span></span><span style=3D" color:#55ff55;"><=
span style=3D"color: #000;" class=3D"styled-by-prettify">T</span></span><sp=
an style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-b=
y-prettify">&gt;</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D"color: #000;" class=3D"styled-by-prettify">v</span><span style=3D" colo=
r:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">)</sp=
an></span></pre><pre><span style=3D" color:#aaaaaa;"><span style=3D"color: =
#660;" class=3D"styled-by-prettify">{</span></span></pre><pre><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> =C2=A0 =C2=A0</span></span><span style=3D" color:#ffff55;"><span style=
=3D"color: #008;" class=3D"styled-by-prettify">if</span></span><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> </span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">(</span></span><span style=3D"color: #000=
;" class=3D"styled-by-prettify">is_enum_value</span><span style=3D" color:#=
aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</sp=
an></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><sp=
an style=3D"color: #660;" class=3D"styled-by-prettify">&gt;(</span></span><=
span style=3D"color: #000;" class=3D"styled-by-prettify">v</span><span styl=
e=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prett=
ify">))</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0=
</span></span><span style=3D" color:#ffff55;"><span style=3D"color: #008;" =
class=3D"styled-by-prettify">return</span></span><span style=3D" color:#c0c=
0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span></s=
pan><span style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"s=
tyled-by-prettify">static_cast</span></span><span style=3D" color:#aaaaaa;"=
><span style=3D"color: #660;" class=3D"styled-by-prettify">&lt;</span></spa=
n><span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"sty=
led-by-prettify">T</span></span><span style=3D" color:#aaaaaa;"><span style=
=3D"color: #660;" class=3D"styled-by-prettify">&gt;(</span></span><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify">v</span><span style=3D" co=
lor:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">);<=
/span></span></pre><pre><span style=3D"color: #000;" class=3D"styled-by-pre=
ttify"><br></span></pre><pre><span style=3D" color:#c0c0c0;"><span style=3D=
"color: #000;" class=3D"styled-by-prettify">=C2=A0 =C2=A0 </span></span><sp=
an style=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-b=
y-prettify">using</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-pretti=
fy">namespace</span></span><span style=3D" color:#c0c0c0;"><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify"> </span></span><span style=3D" co=
lor:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">std=
</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" =
class=3D"styled-by-prettify">::</span></span><span style=3D" color:#55ff55;=
"><span style=3D"color: #000;" class=3D"styled-by-prettify">literals</span>=
</span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=
=3D"styled-by-prettify">;</span></span></pre><pre><span style=3D" color:#c0=
c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =
=C2=A0</span></span><span style=3D" color:#ffff55;"><span style=3D"color: #=
008;" class=3D"styled-by-prettify">throw</span></span><span style=3D" color=
:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prettify"> </spa=
n></span><span style=3D" color:#55ff55;"><span style=3D"color: #000;" class=
=3D"styled-by-prettify">std</span></span><span style=3D" color:#aaaaaa;"><s=
pan style=3D"color: #660;" class=3D"styled-by-prettify">::</span></span><sp=
an style=3D" color:#55ff55;"><span style=3D"color: #000;" class=3D"styled-b=
y-prettify">range_error</span></span><span style=3D" color:#aaaaaa;"><span =
style=3D"color: #660;" class=3D"styled-by-prettify">(</span></span><span st=
yle=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-pre=
ttify">&quot;invalid</span></span><span style=3D" color:#c0c0c0;"><span sty=
le=3D"color: #080;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-pretti=
fy">enum</span></span><span style=3D" color:#c0c0c0;"><span style=3D"color:=
 #080;" class=3D"styled-by-prettify"> </span></span><span style=3D" color:#=
ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-prettify">value</s=
pan></span><span style=3D" color:#c0c0c0;"><span style=3D"color: #080;" cla=
ss=3D"styled-by-prettify"> </span></span><span style=3D" color:#ff55ff;"><s=
pan style=3D"color: #080;" class=3D"styled-by-prettify">&quot;</span></span=
><span style=3D"color: #000;" class=3D"styled-by-prettify">s</span></pre><p=
re><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"st=
yled-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 </span></span><span style=3D" color:#aaa=
aaa;"><span style=3D"color: #660;" class=3D"styled-by-prettify">+</span></s=
pan><span style=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"s=
tyled-by-prettify"> </span></span><span style=3D" color:#55ff55;"><span sty=
le=3D"color: #000;" class=3D"styled-by-prettify">std</span></span><span sty=
le=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"styled-by-pret=
tify">::</span></span><span style=3D"color: #000;" class=3D"styled-by-prett=
ify">to_string</span><span style=3D" color:#aaaaaa;"><span style=3D"color: =
#660;" class=3D"styled-by-prettify">(</span></span><span style=3D" color:#f=
fff55;"><span style=3D"color: #008;" class=3D"styled-by-prettify">static_ca=
st</span></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #080;=
" class=3D"styled-by-prettify">&lt;</span></span><span style=3D" color:#fff=
f55;"><span style=3D"color: #080;" class=3D"styled-by-prettify">int</span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #080;" class=3D=
"styled-by-prettify">&gt;</span><span style=3D"color: #660;" class=3D"style=
d-by-prettify">(</span></span><span style=3D"color: #000;" class=3D"styled-=
by-prettify">v</span><span style=3D" color:#aaaaaa;"><span style=3D"color: =
#660;" class=3D"styled-by-prettify">))</span></span></pre><pre><span style=
=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-pretti=
fy"> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 </span></span><span style=3D" color:#aaaaaa;"><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify">+</span></span><span styl=
e=3D" color:#c0c0c0;"><span style=3D"color: #000;" class=3D"styled-by-prett=
ify"> </span></span><span style=3D" color:#ff55ff;"><span style=3D"color: #=
080;" class=3D"styled-by-prettify">&quot;</span></span><span style=3D" colo=
r:#c0c0c0;"><span style=3D"color: #080;" class=3D"styled-by-prettify"> </sp=
an></span><span style=3D" color:#ff55ff;"><span style=3D"color: #080;" clas=
s=3D"styled-by-prettify">for</span></span><span style=3D" color:#c0c0c0;"><=
span style=3D"color: #080;" class=3D"styled-by-prettify"> </span></span><sp=
an style=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-b=
y-prettify">type</span></span><span style=3D" color:#c0c0c0;"><span style=
=3D"color: #080;" class=3D"styled-by-prettify"> </span></span><span style=
=3D" color:#ff55ff;"><span style=3D"color: #080;" class=3D"styled-by-pretti=
fy">&quot;</span></span></pre><pre><span style=3D" color:#c0c0c0;"><span st=
yle=3D"color: #000;" class=3D"styled-by-prettify"> =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 </span><=
/span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D=
"styled-by-prettify">+</span></span><span style=3D" color:#c0c0c0;"><span s=
tyle=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span sty=
le=3D" color:#ffff55;"><span style=3D"color: #008;" class=3D"styled-by-pret=
tify">typeid</span></span><span style=3D" color:#aaaaaa;"><span style=3D"co=
lor: #660;" class=3D"styled-by-prettify">(</span></span><span style=3D" col=
or:#55ff55;"><span style=3D"color: #000;" class=3D"styled-by-prettify">T</s=
pan></span><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify">).</span></span><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify">name</span><span style=3D" color:#aaaaaa;"><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">());</span></span></pre>=
<pre><span style=3D" color:#aaaaaa;"><span style=3D"color: #660;" class=3D"=
styled-by-prettify">}</span></span></pre><pre><span style=3D"color: #000;" =
class=3D"styled-by-prettify"><br></span></pre><pre><span style=3D" color:#5=
555ff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">#</span><=
/span><span style=3D" color:#5555ff;"><span style=3D"color: #800;" class=3D=
"styled-by-prettify">endif</span></span><span style=3D" color:#c0c0c0;"><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"> </span></span><span=
 style=3D" color:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-=
prettify">//</span></span><span style=3D" color:#c0c0c0;"><span style=3D"co=
lor: #800;" class=3D"styled-by-prettify"> </span></span><span style=3D" col=
or:#55ffff;"><span style=3D"color: #800;" class=3D"styled-by-prettify">ENUM=
_CAST_H</span></span></pre></pre></div></code></div></div><div><pre><pre><b=
r></pre><pre><br></pre></pre></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/dc0a5eab-e6a5-49aa-89e4-f9732530f7d6%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/dc0a5eab-e6a5-49aa-89e4-f9732530f7d6=
%40isocpp.org</a>.<br />

------=_Part_680_1857753218.1519881999078--

------=_Part_679_470248618.1519881999077--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Wed, 28 Feb 2018 22:30:45 -0800 (PST)
Raw View
------=_Part_755_1324021083.1519885845697
Content-Type: multipart/alternative;
 boundary="----=_Part_756_1482914086.1519885845697"

------=_Part_756_1482914086.1519885845697
Content-Type: text/plain; charset="UTF-8"



On Thursday, March 1, 2018 at 12:26:39 AM UTC-5, jonr...@gmail.com wrote:
>
> On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:
>>
>> Yes, we've talked about ideas like this before. The general ideas that
>> resulted from that were that you should have a function that tests whether
>> a value is specified in an enumeration. That's the minimum viable feature;
>> your `enum_cast` could easily be built on top of it:
>>
>> template<typename T> requires IsEnum<T>
>> T enum_cast(underlying_type_t<T> val)
>> {
>>   if(is_enum_value<T>(val)) then
>>     return static_cast<T>(val);
>>   throw std::range_error(...);
>> }
>>
>> What we don't want is for the minimum viable feature to be burdened with
>> exceptions.
>>
>
> I rewrote it in terms of an is_enum_value<T> implementation, however, this
> generalized implementation suffers from the same maintenance problems
> mentioned in my initial posting in this thread:
>

Um, what? The proposal is that the standard library provide
`is_enum_value<T>` as a function that you can call. Users *don't implement
it*. It would likely be implemented as some compiler intrinsic.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/27176bc3-3558-4d43-99b6-9633e0f4c89b%40isocpp.org.

------=_Part_756_1482914086.1519885845697
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Thursday, March 1, 2018 at 12:26:39 AM UTC-5, j=
onr...@gmail.com wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0=
;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div di=
r=3D"ltr">On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas =
wrote:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex=
;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">Yes, we&#39;=
ve talked about ideas like this before. The general ideas that resulted fro=
m that were that you should have a function that tests whether a value is s=
pecified in an enumeration. That&#39;s the minimum viable feature; your `en=
um_cast` could easily be built on top of it:<br><br><div style=3D"backgroun=
d-color:rgb(250,250,250);border-color:rgb(187,187,187);border-style:solid;b=
order-width:1px"><code><div><span style=3D"color:#008">template</span><span=
 style=3D"color:#660">&lt;</span><span style=3D"color:#008">typename</span>=
<span style=3D"color:#000"> T</span><span style=3D"color:#660">&gt;</span><=
span style=3D"color:#000"> requires </span><span style=3D"color:#606">IsEnu=
m</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#000">T<=
/span><span style=3D"color:#660">&gt;</span><span style=3D"color:#000"><br>=
T enum_cast</span><span style=3D"color:#660">(</span><span style=3D"color:#=
000">underlying_type_t</span><span style=3D"color:#660">&lt;</span><span st=
yle=3D"color:#000">T</span><span style=3D"color:#660">&gt;</span><span styl=
e=3D"color:#000"> val</span><span style=3D"color:#660">)</span><span style=
=3D"color:#000"><br></span><span style=3D"color:#660">{</span><span style=
=3D"color:#000"><br>=C2=A0 </span><span style=3D"color:#008">if</span><span=
 style=3D"color:#660">(</span><span style=3D"color:#000">is_enum_value</spa=
n><span style=3D"color:#660">&lt;</span><span style=3D"color:#000">T</span>=
<span style=3D"color:#660">&gt;(</span><span style=3D"color:#000">val</span=
><span style=3D"color:#660">))</span><span style=3D"color:#000"> </span><sp=
an style=3D"color:#008">then</span><span style=3D"color:#000"><br>=C2=A0 =
=C2=A0 </span><span style=3D"color:#008">return</span><span style=3D"color:=
#000"> </span><span style=3D"color:#008">static_cast</span><span style=3D"c=
olor:#660">&lt;</span><span style=3D"color:#000">T</span><span style=3D"col=
or:#660">&gt;(</span><span style=3D"color:#000">val</span><span style=3D"co=
lor:#660">);</span><span style=3D"color:#000"><br>=C2=A0 </span><span style=
=3D"color:#008">throw</span><span style=3D"color:#000"> std</span><span sty=
le=3D"color:#660">::</span><span style=3D"color:#000">range_error</span><sp=
an style=3D"color:#660">(...);</span><span style=3D"color:#000"><br></span>=
<span style=3D"color:#660">}</span></div></code></div><br>What we don&#39;t=
 want is for the minimum viable feature to be burdened with exceptions.<br>=
</div></blockquote><div><br></div><div>I rewrote it in terms of an is_enum_=
value&lt;T&gt; implementation, however, this generalized implementation suf=
fers from the same maintenance problems mentioned in my initial posting in =
this thread:</div></div></blockquote><div><br>Um, what? The proposal is tha=
t the standard library provide `is_enum_value&lt;T&gt;` as a function that =
you can call. Users <i>don&#39;t implement it</i>. It would likely be imple=
mented as some compiler intrinsic.</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/27176bc3-3558-4d43-99b6-9633e0f4c89b%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/27176bc3-3558-4d43-99b6-9633e0f4c89b=
%40isocpp.org</a>.<br />

------=_Part_756_1482914086.1519885845697--

------=_Part_755_1324021083.1519885845697--

.


Author: jonringle@gmail.com
Date: Wed, 28 Feb 2018 22:33:55 -0800 (PST)
Raw View
------=_Part_791_656417199.1519886035058
Content-Type: multipart/alternative;
 boundary="----=_Part_792_777806533.1519886035058"

------=_Part_792_777806533.1519886035058
Content-Type: text/plain; charset="UTF-8"


On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrote:
>
>
>
> On Thursday, March 1, 2018 at 12:26:39 AM UTC-5, jonr...@gmail.com wrote:
>>
>> On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:
>>>
>>> Yes, we've talked about ideas like this before. The general ideas that
>>> resulted from that were that you should have a function that tests whether
>>> a value is specified in an enumeration. That's the minimum viable feature;
>>> your `enum_cast` could easily be built on top of it:
>>>
>>> template<typename T> requires IsEnum<T>
>>> T enum_cast(underlying_type_t<T> val)
>>> {
>>>   if(is_enum_value<T>(val)) then
>>>     return static_cast<T>(val);
>>>   throw std::range_error(...);
>>> }
>>>
>>> What we don't want is for the minimum viable feature to be burdened with
>>> exceptions.
>>>
>>
>> I rewrote it in terms of an is_enum_value<T> implementation, however,
>> this generalized implementation suffers from the same maintenance problems
>> mentioned in my initial posting in this thread:
>>
>
> Um, what? The proposal is that the standard library provide
> `is_enum_value<T>` as a function that you can call. Users *don't
> implement it*. It would likely be implemented as some compiler intrinsic.
>

Great. That is exactly what I am hoping for :)
Is there a c++20 proposal for this now?

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/5d8b0ec4-a7cb-4e66-92e9-0a932bd8fe85%40isocpp.org.

------=_Part_792_777806533.1519886035058
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br>On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol =
Bolas wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-lef=
t: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr"><=
br><br>On Thursday, March 1, 2018 at 12:26:39 AM UTC-5, <a>jonr...@gmail.co=
m</a> wrote:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left=
:0.8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">On Wed=
nesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:<blockquot=
e class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px=
 #ccc solid;padding-left:1ex"><div dir=3D"ltr">Yes, we&#39;ve talked about =
ideas like this before. The general ideas that resulted from that were that=
 you should have a function that tests whether a value is specified in an e=
numeration. That&#39;s the minimum viable feature; your `enum_cast` could e=
asily be built on top of it:<br><br><div style=3D"background-color:rgb(250,=
250,250);border-color:rgb(187,187,187);border-style:solid;border-width:1px"=
><code><div><span style=3D"color:#008">template</span><span style=3D"color:=
#660">&lt;</span><span style=3D"color:#008">typename</span><span style=3D"c=
olor:#000"> T</span><span style=3D"color:#660">&gt;</span><span style=3D"co=
lor:#000"> requires </span><span style=3D"color:#606">IsEnum</span><span st=
yle=3D"color:#660">&lt;</span><span style=3D"color:#000">T</span><span styl=
e=3D"color:#660">&gt;</span><span style=3D"color:#000"><br>T enum_cast</spa=
n><span style=3D"color:#660">(</span><span style=3D"color:#000">underlying_=
type_t</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#00=
0">T</span><span style=3D"color:#660">&gt;</span><span style=3D"color:#000"=
> val</span><span style=3D"color:#660">)</span><span style=3D"color:#000"><=
br></span><span style=3D"color:#660">{</span><span style=3D"color:#000"><br=
>=C2=A0 </span><span style=3D"color:#008">if</span><span style=3D"color:#66=
0">(</span><span style=3D"color:#000">is_enum_value</span><span style=3D"co=
lor:#660">&lt;</span><span style=3D"color:#000">T</span><span style=3D"colo=
r:#660">&gt;(</span><span style=3D"color:#000">val</span><span style=3D"col=
or:#660">))</span><span style=3D"color:#000"> </span><span style=3D"color:#=
008">then</span><span style=3D"color:#000"><br>=C2=A0 =C2=A0 </span><span s=
tyle=3D"color:#008">return</span><span style=3D"color:#000"> </span><span s=
tyle=3D"color:#008">static_cast</span><span style=3D"color:#660">&lt;</span=
><span style=3D"color:#000">T</span><span style=3D"color:#660">&gt;(</span>=
<span style=3D"color:#000">val</span><span style=3D"color:#660">);</span><s=
pan style=3D"color:#000"><br>=C2=A0 </span><span style=3D"color:#008">throw=
</span><span style=3D"color:#000"> std</span><span style=3D"color:#660">::<=
/span><span style=3D"color:#000">range_error</span><span style=3D"color:#66=
0">(...);</span><span style=3D"color:#000"><br></span><span style=3D"color:=
#660">}</span></div></code></div><br>What we don&#39;t want is for the mini=
mum viable feature to be burdened with exceptions.<br></div></blockquote><d=
iv><br></div><div>I rewrote it in terms of an is_enum_value&lt;T&gt; implem=
entation, however, this generalized implementation suffers from the same ma=
intenance problems mentioned in my initial posting in this thread:</div></d=
iv></blockquote><div><br>Um, what? The proposal is that the standard librar=
y provide `is_enum_value&lt;T&gt;` as a function that you can call. Users <=
i>don&#39;t implement it</i>. It would likely be implemented as some compil=
er intrinsic.</div></div></blockquote><div><br></div><div>Great. That is ex=
actly what I am hoping for :)</div><div>Is there a c++20 proposal for this =
now?=C2=A0</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/5d8b0ec4-a7cb-4e66-92e9-0a932bd8fe85%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/5d8b0ec4-a7cb-4e66-92e9-0a932bd8fe85=
%40isocpp.org</a>.<br />

------=_Part_792_777806533.1519886035058--

------=_Part_791_656417199.1519886035058--

.


Author: j c <james.a.cooper@gmail.com>
Date: Thu, 1 Mar 2018 08:08:28 +0000
Raw View
--94eb2c035cec6d14380566555df9
Content-Type: text/plain; charset="UTF-8"

On Thursday, March 1, 2018, <jonringle@gmail.com> wrote:

>
> On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrote:
>>
>>
>>
>> On Thursday, March 1, 2018 at 12:26:39 AM UTC-5, jonr...@gmail.com wrote:
>>>
>>> On Wednesday, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:
>>>>
>>>> Yes, we've talked about ideas like this before. The general ideas that
>>>> resulted from that were that you should have a function that tests whether
>>>> a value is specified in an enumeration. That's the minimum viable feature;
>>>> your `enum_cast` could easily be built on top of it:
>>>>
>>>> template<typename T> requires IsEnum<T>
>>>> T enum_cast(underlying_type_t<T> val)
>>>> {
>>>>   if(is_enum_value<T>(val)) then
>>>>     return static_cast<T>(val);
>>>>   throw std::range_error(...);
>>>> }
>>>>
>>>> What we don't want is for the minimum viable feature to be burdened
>>>> with exceptions.
>>>>
>>>
>>> I rewrote it in terms of an is_enum_value<T> implementation, however,
>>> this generalized implementation suffers from the same maintenance problems
>>> mentioned in my initial posting in this thread:
>>>
>>
>> Um, what? The proposal is that the standard library provide
>> `is_enum_value<T>` as a function that you can call. Users *don't
>> implement it*. It would likely be implemented as some compiler intrinsic.
>>
>
> Great. That is exactly what I am hoping for :)
> Is there a c++20 proposal for this now?
>
>
>

Search here for a thread with 'underlying_cast' in the name

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAFQaeCBuGj07RSL2Tv5%2Bpixw25tMMOogBvwSM-2UTXwqm55kMA%40mail.gmail.com.

--94eb2c035cec6d14380566555df9
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<br><br>On Thursday, March 1, 2018,  &lt;<a href=3D"mailto:jonringle@gmail.=
com">jonringle@gmail.com</a>&gt; wrote:<br><blockquote class=3D"gmail_quote=
" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><=
div dir=3D"ltr"><br>On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol B=
olas wrote:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:=
0.8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><br><br=
>On Thursday, March 1, 2018 at 12:26:39 AM UTC-5, <a>jonr...@gmail.com</a> =
wrote:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex=
;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">On Wednesday=
, February 28, 2018 at 8:22:28 PM UTC-5, Nicol Bolas wrote:<blockquote clas=
s=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc =
solid;padding-left:1ex"><div dir=3D"ltr">Yes, we&#39;ve talked about ideas =
like this before. The general ideas that resulted from that were that you s=
hould have a function that tests whether a value is specified in an enumera=
tion. That&#39;s the minimum viable feature; your `enum_cast` could easily =
be built on top of it:<br><br><div style=3D"background-color:rgb(250,250,25=
0);border-color:rgb(187,187,187);border-style:solid;border-width:1px"><code=
><div><span style=3D"color:#008">template</span><span style=3D"color:#660">=
&lt;</span><span style=3D"color:#008">typename</span><span style=3D"color:#=
000"> T</span><span style=3D"color:#660">&gt;</span><span style=3D"color:#0=
00"> requires </span><span style=3D"color:#606">IsEnum</span><span style=3D=
"color:#660">&lt;</span><span style=3D"color:#000">T</span><span style=3D"c=
olor:#660">&gt;</span><span style=3D"color:#000"><br>T enum_cast</span><spa=
n style=3D"color:#660">(</span><span style=3D"color:#000">underlying_type_t=
</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#000">T</=
span><span style=3D"color:#660">&gt;</span><span style=3D"color:#000"> val<=
/span><span style=3D"color:#660">)</span><span style=3D"color:#000"><br></s=
pan><span style=3D"color:#660">{</span><span style=3D"color:#000"><br>=C2=
=A0 </span><span style=3D"color:#008">if</span><span style=3D"color:#660">(=
</span><span style=3D"color:#000">is_enum_value</span><span style=3D"color:=
#660">&lt;</span><span style=3D"color:#000">T</span><span style=3D"color:#6=
60">&gt;(</span><span style=3D"color:#000">val</span><span style=3D"color:#=
660">))</span><span style=3D"color:#000"> </span><span style=3D"color:#008"=
>then</span><span style=3D"color:#000"><br>=C2=A0 =C2=A0 </span><span style=
=3D"color:#008">return</span><span style=3D"color:#000"> </span><span style=
=3D"color:#008">static_cast</span><span style=3D"color:#660">&lt;</span><sp=
an style=3D"color:#000">T</span><span style=3D"color:#660">&gt;(</span><spa=
n style=3D"color:#000">val</span><span style=3D"color:#660">);</span><span =
style=3D"color:#000"><br>=C2=A0 </span><span style=3D"color:#008">throw</sp=
an><span style=3D"color:#000"> std</span><span style=3D"color:#660">::</spa=
n><span style=3D"color:#000">range_error</span><span style=3D"color:#660">(=
....);</span><span style=3D"color:#000"><br></span><span style=3D"color:#660=
">}</span></div></code></div><br>What we don&#39;t want is for the minimum =
viable feature to be burdened with exceptions.<br></div></blockquote><div><=
br></div><div>I rewrote it in terms of an is_enum_value&lt;T&gt; implementa=
tion, however, this generalized implementation suffers from the same mainte=
nance problems mentioned in my initial posting in this thread:</div></div><=
/blockquote><div><br>Um, what? The proposal is that the standard library pr=
ovide `is_enum_value&lt;T&gt;` as a function that you can call. Users <i>do=
n&#39;t implement it</i>. It would likely be implemented as some compiler i=
ntrinsic.</div></div></blockquote><div><br></div><div>Great. That is exactl=
y what I am hoping for :)</div><div>Is there a c++20 proposal for this now?=
=C2=A0</div></div>

<p></p><br>
</blockquote><div><br></div><div><br></div><div>Search here for a thread wi=
th &#39;underlying_cast&#39; in the name</div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAFQaeCBuGj07RSL2Tv5%2Bpixw25tMMOogBv=
wSM-2UTXwqm55kMA%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">h=
ttps://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAFQaeCBuGj07RS=
L2Tv5%2Bpixw25tMMOogBvwSM-2UTXwqm55kMA%40mail.gmail.com</a>.<br />

--94eb2c035cec6d14380566555df9--

.


Author: jonringle@gmail.com
Date: Thu, 1 Mar 2018 06:42:02 -0800 (PST)
Raw View
------=_Part_1778_824900569.1519915322390
Content-Type: multipart/alternative;
 boundary="----=_Part_1779_828856171.1519915322390"

------=_Part_1779_828856171.1519915322390
Content-Type: text/plain; charset="UTF-8"



On Thursday, March 1, 2018 at 3:08:32 AM UTC-5, j c wrote:
>
> On Thursday, March 1, 2018, <jonr...@gmail.com <javascript:>> wrote:
>
>> On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrote:
>>>
>>> Um, what? The proposal is that the standard library provide
>>> `is_enum_value<T>` as a function that you can call. Users *don't
>>> implement it*. It would likely be implemented as some compiler
>>> intrinsic.
>>>
>>
>> Great. That is exactly what I am hoping for :)
>> Is there a c++20 proposal for this now?
>>
>>
>>
> Search here for a thread with 'underlying_cast' in the name
>

I ready through the 'underlying_cast' thread, but I fail to see how this is
part of a proposal for a compiler intrinsic for a `template <typename E>
bool is_enum_value<E>(underlying_type_t<E> v)` function that returns
whether or not the passed in `v` resolves to a valid value of enum type.

I'm unfamiliar with how the proposal process works. I took @Nicol statement
to mean that there was already a formal proposal on the table to add this
template function to the standard library, and I was asking where I could
read about it

-Jon

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/c615a908-6da2-42e5-9e69-8762463004f3%40isocpp.org.

------=_Part_1779_828856171.1519915322390
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Thursday, March 1, 2018 at 3:08:32 AM UTC-5, j =
c wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-left: 0=
..8ex;border-left: 1px #ccc solid;padding-left: 1ex;">On Thursday, March 1, =
2018,  &lt;<a href=3D"javascript:" target=3D"_blank" gdf-obfuscated-mailto=
=3D"HvpdJBLSCgAJ" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;javascri=
pt:&#39;;return true;" onclick=3D"this.href=3D&#39;javascript:&#39;;return =
true;">jonr...@gmail.com</a>&gt; wrote:<br><blockquote class=3D"gmail_quote=
" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><=
div dir=3D"ltr">On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas=
 wrote:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8e=
x;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div>Um, wh=
at? The proposal is that the standard library provide `is_enum_value&lt;T&g=
t;` as a function that you can call. Users <i>don&#39;t implement it</i>. I=
t would likely be implemented as some compiler intrinsic.</div></div></bloc=
kquote><div><br></div><div>Great. That is exactly what I am hoping for :)</=
div><div>Is there a c++20 proposal for this now?=C2=A0</div></div>

<p></p><br>
</blockquote><div><br></div><div>Search here for a thread with &#39;underly=
ing_cast&#39; in the name</div></blockquote><div><br></div><div>I ready thr=
ough the &#39;underlying_cast&#39; thread, but I fail to see how this is pa=
rt of a proposal for a compiler intrinsic for a `template &lt;typename E&gt=
; bool is_enum_value&lt;E&gt;(underlying_type_t&lt;E&gt; v)` function that =
returns whether or not the passed in `v` resolves to a valid value of enum =
type.</div><div><br></div><div>I&#39;m unfamiliar with how the proposal pro=
cess works. I took @Nicol statement to mean that there was already a formal=
 proposal on the table to add this template function to the standard librar=
y, and I was asking where I could read about it</div><div><br></div><div>-J=
on</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/c615a908-6da2-42e5-9e69-8762463004f3%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/c615a908-6da2-42e5-9e69-8762463004f3=
%40isocpp.org</a>.<br />

------=_Part_1779_828856171.1519915322390--

------=_Part_1778_824900569.1519915322390--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Thu, 1 Mar 2018 07:05:07 -0800 (PST)
Raw View
------=_Part_2004_2041063821.1519916707799
Content-Type: multipart/alternative;
 boundary="----=_Part_2005_1718676328.1519916707799"

------=_Part_2005_1718676328.1519916707799
Content-Type: text/plain; charset="UTF-8"

On Thursday, March 1, 2018 at 9:42:02 AM UTC-5, jonr...@gmail.com wrote:
>
> On Thursday, March 1, 2018 at 3:08:32 AM UTC-5, j c wrote:
>>
>> On Thursday, March 1, 2018, <jonr...@gmail.com> wrote:
>>
>>> On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrote:
>>>>
>>>> Um, what? The proposal is that the standard library provide
>>>> `is_enum_value<T>` as a function that you can call. Users *don't
>>>> implement it*. It would likely be implemented as some compiler
>>>> intrinsic.
>>>>
>>>
>>> Great. That is exactly what I am hoping for :)
>>> Is there a c++20 proposal for this now?
>>>
>>>
>>>
>> Search here for a thread with 'underlying_cast' in the name
>>
>
> I ready through the 'underlying_cast' thread, but I fail to see how this
> is part of a proposal for a compiler intrinsic for a `template <typename E>
> bool is_enum_value<E>(underlying_type_t<E> v)` function that returns
> whether or not the passed in `v` resolves to a valid value of enum type.
>
> I'm unfamiliar with how the proposal process works. I took @Nicol
> statement to mean that there was already a formal proposal on the table to
> add this template function to the standard library, and I was asking where
> I could read about it
>

When I said "the proposal", I was talking about *yours*. That is, what
we're discussing in this thread. I was saying that what you ought to be
asking for is not some hook that users can use to write implementations of
how enumerators can be queried, but for a standard library function that
actually does the work.

To my knowledge, there is no *formal* proposal for enumeration conversion
in any way. There's been discussions on this forum, but I don't recall
anything being presented to the committee for examination.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/6d1c76f6-1d05-4a44-8944-0b3776354167%40isocpp.org.

------=_Part_2005_1718676328.1519916707799
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Thursday, March 1, 2018 at 9:42:02 AM UTC-5, jonr...@gm=
ail.com wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-l=
eft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr"=
>On Thursday, March 1, 2018 at 3:08:32 AM UTC-5, j c wrote:<blockquote clas=
s=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc =
solid;padding-left:1ex">On Thursday, March 1, 2018,  &lt;<a rel=3D"nofollow=
">jonr...@gmail.com</a>&gt; wrote:<br><blockquote class=3D"gmail_quote" sty=
le=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div d=
ir=3D"ltr">On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrot=
e:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;bor=
der-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div>Um, what? T=
he proposal is that the standard library provide `is_enum_value&lt;T&gt;` a=
s a function that you can call. Users <i>don&#39;t implement it</i>. It wou=
ld likely be implemented as some compiler intrinsic.</div></div></blockquot=
e><div><br></div><div>Great. That is exactly what I am hoping for :)</div><=
div>Is there a c++20 proposal for this now?=C2=A0</div></div>

<p></p><br>
</blockquote><div><br></div><div>Search here for a thread with &#39;underly=
ing_cast&#39; in the name</div></blockquote><div><br></div><div>I ready thr=
ough the &#39;underlying_cast&#39; thread, but I fail to see how this is pa=
rt of a proposal for a compiler intrinsic for a `template &lt;typename E&gt=
; bool is_enum_value&lt;E&gt;(underlying_<wbr>type_t&lt;E&gt; v)` function =
that returns whether or not the passed in `v` resolves to a valid value of =
enum type.</div><div><br></div><div>I&#39;m unfamiliar with how the proposa=
l process works. I took @Nicol statement to mean that there was already a f=
ormal proposal on the table to add this template function to the standard l=
ibrary, and I was asking where I could read about it</div></div></blockquot=
e><div><br>When I said &quot;the proposal&quot;, I was talking about <i>you=
rs</i>. That is, what we&#39;re discussing in this thread. I was saying tha=
t what you ought to be asking for is not some hook that users can use to wr=
ite implementations of how enumerators can be queried, but for a standard l=
ibrary function that actually does the work.<br><br>To my knowledge, there =
is no <i>formal</i> proposal for enumeration conversion in any way. There&#=
39;s been discussions on this forum, but I don&#39;t recall anything being =
presented to the committee for examination.<br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/6d1c76f6-1d05-4a44-8944-0b3776354167%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/6d1c76f6-1d05-4a44-8944-0b3776354167=
%40isocpp.org</a>.<br />

------=_Part_2005_1718676328.1519916707799--

------=_Part_2004_2041063821.1519916707799--

.


Author: jonringle@gmail.com
Date: Thu, 1 Mar 2018 09:47:10 -0800 (PST)
Raw View
------=_Part_2347_2000691483.1519926430365
Content-Type: multipart/alternative;
 boundary="----=_Part_2348_1454595159.1519926430365"

------=_Part_2348_1454595159.1519926430365
Content-Type: text/plain; charset="UTF-8"

On Thursday, March 1, 2018 at 10:05:07 AM UTC-5, Nicol Bolas wrote:
>
> On Thursday, March 1, 2018 at 9:42:02 AM UTC-5, jonr...@gmail.com wrote:
>>
>> On Thursday, March 1, 2018 at 3:08:32 AM UTC-5, j c wrote:
>>>
>>> On Thursday, March 1, 2018, <jonr...@gmail.com> wrote:
>>>
>>>> On Thursday, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrote:
>>>>>
>>>>> Um, what? The proposal is that the standard library provide
>>>>> `is_enum_value<T>` as a function that you can call. Users *don't
>>>>> implement it*. It would likely be implemented as some compiler
>>>>> intrinsic.
>>>>>
>>>>
>>>> Great. That is exactly what I am hoping for :)
>>>> Is there a c++20 proposal for this now?
>>>>
>>>>
>>>>
>>> Search here for a thread with 'underlying_cast' in the name
>>>
>>
>> I ready through the 'underlying_cast' thread, but I fail to see how this
>> is part of a proposal for a compiler intrinsic for a `template <typename E>
>> bool is_enum_value<E>(underlying_type_t<E> v)` function that returns
>> whether or not the passed in `v` resolves to a valid value of enum type.
>>
>> I'm unfamiliar with how the proposal process works. I took @Nicol
>> statement to mean that there was already a formal proposal on the table to
>> add this template function to the standard library, and I was asking where
>> I could read about it
>>
>
> When I said "the proposal", I was talking about *yours*. That is, what
> we're discussing in this thread. I was saying that what you ought to be
> asking for is not some hook that users can use to write implementations of
> how enumerators can be queried, but for a standard library function that
> actually does the work.
>
> To my knowledge, there is no *formal* proposal for enumeration conversion
> in any way. There's been discussions on this forum, but I don't recall
> anything being presented to the committee for examination.
>

Got it :)
Is the next step then for me to create a formal proposal
(following http://open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html)?
I'm thinking to title it something like:
A Proposal to Add a Compiler Intrinsic Function to Query if a Value is
Valid For a Given enum type

At the core of the proposal, it would ask for a compiler implemented
template function with the following signature:

namespace std {

template <typename E> requires is_enum<E>
constexpr bool is_enum_value(underlying_type_t<E> v);

}



--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/7301be5e-6719-499d-ac8b-74e3b41f2854%40isocpp.org.

------=_Part_2348_1454595159.1519926430365
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Thursday, March 1, 2018 at 10:05:07 AM UTC-5, Nicol Bol=
as wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-left: =
0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr">On T=
hursday, March 1, 2018 at 9:42:02 AM UTC-5, <a>jonr...@gmail.com</a> wrote:=
<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;borde=
r-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">On Thursday, March=
 1, 2018 at 3:08:32 AM UTC-5, j c wrote:<blockquote class=3D"gmail_quote" s=
tyle=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc solid;padding-left:=
1ex">On Thursday, March 1, 2018,  &lt;<a rel=3D"nofollow">jonr...@gmail.com=
</a>&gt; wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 =
..8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">On Thurs=
day, March 1, 2018 at 1:30:45 AM UTC-5, Nicol Bolas wrote:<blockquote class=
=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc s=
olid;padding-left:1ex"><div dir=3D"ltr"><div>Um, what? The proposal is that=
 the standard library provide `is_enum_value&lt;T&gt;` as a function that y=
ou can call. Users <i>don&#39;t implement it</i>. It would likely be implem=
ented as some compiler intrinsic.</div></div></blockquote><div><br></div><d=
iv>Great. That is exactly what I am hoping for :)</div><div>Is there a c++2=
0 proposal for this now?=C2=A0</div></div>

<p></p><br>
</blockquote><div><br></div><div>Search here for a thread with &#39;underly=
ing_cast&#39; in the name</div></blockquote><div><br></div><div>I ready thr=
ough the &#39;underlying_cast&#39; thread, but I fail to see how this is pa=
rt of a proposal for a compiler intrinsic for a `template &lt;typename E&gt=
; bool is_enum_value&lt;E&gt;(underlying_<wbr>type_t&lt;E&gt; v)` function =
that returns whether or not the passed in `v` resolves to a valid value of =
enum type.</div><div><br></div><div>I&#39;m unfamiliar with how the proposa=
l process works. I took @Nicol statement to mean that there was already a f=
ormal proposal on the table to add this template function to the standard l=
ibrary, and I was asking where I could read about it</div></div></blockquot=
e><div><br>When I said &quot;the proposal&quot;, I was talking about <i>you=
rs</i>. That is, what we&#39;re discussing in this thread. I was saying tha=
t what you ought to be asking for is not some hook that users can use to wr=
ite implementations of how enumerators can be queried, but for a standard l=
ibrary function that actually does the work.<br><br>To my knowledge, there =
is no <i>formal</i> proposal for enumeration conversion in any way. There&#=
39;s been discussions on this forum, but I don&#39;t recall anything being =
presented to the committee for examination.<br></div></div></blockquote><di=
v><br></div><div>Got it :)</div><div>Is the next step then for me to create=
 a formal proposal (following=C2=A0http://open-std.org/jtc1/sc22/wg21/docs/=
papers/2012/n3370.html)?</div><div>I&#39;m thinking to title it something l=
ike:</div><div>A Proposal to Add a Compiler Intrinsic Function to Query if =
a Value is Valid For a Given enum type</div><div><br></div><div>At the core=
 of the proposal, it would ask for a compiler implemented template function=
 with the following signature:</div><div><br></div><div><div class=3D"prett=
yprint" style=3D"background-color: rgb(250, 250, 250); border-color: rgb(18=
7, 187, 187); border-style: solid; border-width: 1px; word-wrap: break-word=
;"><code class=3D"prettyprint"><div class=3D"subprettyprint"><span style=3D=
"color: #008;" class=3D"styled-by-prettify">namespace</span><span style=3D"=
color: #000;" class=3D"styled-by-prettify"> std </span><span style=3D"color=
: #660;" class=3D"styled-by-prettify">{</span><span style=3D"color: #000;" =
class=3D"styled-by-prettify"><br><br></span><span style=3D"color: #008;" cl=
ass=3D"styled-by-prettify">template</span><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify"> </span><span style=3D"color: #660;" class=3D"styl=
ed-by-prettify">&lt;</span><span style=3D"color: #008;" class=3D"styled-by-=
prettify">typename</span><span style=3D"color: #000;" class=3D"styled-by-pr=
ettify"> E</span><span style=3D"color: #660;" class=3D"styled-by-prettify">=
&gt;</span><span style=3D"color: #000;" class=3D"styled-by-prettify"> requi=
res is_enum</span><span style=3D"color: #660;" class=3D"styled-by-prettify"=
>&lt;</span><span style=3D"color: #000;" class=3D"styled-by-prettify">E</sp=
an><span style=3D"color: #660;" class=3D"styled-by-prettify">&gt;</span><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><br></span><span sty=
le=3D"color: #008;" class=3D"styled-by-prettify">constexpr</span><span styl=
e=3D"color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"colo=
r: #008;" class=3D"styled-by-prettify">bool</span><span style=3D"color: #00=
0;" class=3D"styled-by-prettify"> is_enum_value</span><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">(</span><span style=3D"color: #000;" c=
lass=3D"styled-by-prettify">underlying_type_t</span><span style=3D"color: #=
660;" class=3D"styled-by-prettify">&lt;</span><font color=3D"#000000"><span=
 style=3D"color: #000;" class=3D"styled-by-prettify">E</span></font><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">&gt;</span><font color=
=3D"#000000"><span style=3D"color: #000;" class=3D"styled-by-prettify"> v</=
span><span style=3D"color: #660;" class=3D"styled-by-prettify">);</span><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify"><br><br></span><span=
 style=3D"color: #660;" class=3D"styled-by-prettify">}</span></font></div><=
/code></div><br><br></div><div><br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/7301be5e-6719-499d-ac8b-74e3b41f2854%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/7301be5e-6719-499d-ac8b-74e3b41f2854=
%40isocpp.org</a>.<br />

------=_Part_2348_1454595159.1519926430365--

------=_Part_2347_2000691483.1519926430365--

.


Author: Myriachan <myriachan@gmail.com>
Date: Thu, 1 Mar 2018 11:10:13 -0800 (PST)
Raw View
------=_Part_2500_1062152438.1519931413688
Content-Type: multipart/alternative;
 boundary="----=_Part_2501_1978869218.1519931413688"

------=_Part_2501_1978869218.1519931413688
Content-Type: text/plain; charset="UTF-8"

On Thursday, March 1, 2018 at 9:47:10 AM UTC-8, jonr...@gmail.com wrote:
>
> Got it :)
> Is the next step then for me to create a formal proposal (following
> http://open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html)?
> I'm thinking to title it something like:
> A Proposal to Add a Compiler Intrinsic Function to Query if a Value is
> Valid For a Given enum type
>
> At the core of the proposal, it would ask for a compiler implemented
> template function with the following signature:
>
> namespace std {
>
> template <typename E> requires is_enum<E>
> constexpr bool is_enum_value(underlying_type_t<E> v);
>
> }
>
>
The Standard doesn't need to state that a given type trait is a "compiler
intrinsic", even though this particular one could only be implemented with
compiler magic.

Your title could be "Type trait returning whether integer is an enumerator
of a given enumeration".

Melissa

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/a6fff72e-15f4-4b41-b7ab-23c79274f285%40isocpp.org.

------=_Part_2501_1978869218.1519931413688
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Thursday, March 1, 2018 at 9:47:10 AM UTC-8, jonr...@gm=
ail.com wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-l=
eft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr"=
>Got it :)<div>Is the next step then for me to create a formal proposal (fo=
llowing=C2=A0<a href=3D"http://open-std.org/jtc1/sc22/wg21/docs/papers/2012=
/n3370.html" target=3D"_blank" rel=3D"nofollow" onmousedown=3D"this.href=3D=
&#39;http://www.google.com/url?q\x3dhttp%3A%2F%2Fopen-std.org%2Fjtc1%2Fsc22=
%2Fwg21%2Fdocs%2Fpapers%2F2012%2Fn3370.html\x26sa\x3dD\x26sntz\x3d1\x26usg\=
x3dAFQjCNFvm0wsk_paFZ3QmmJf84dC0znHcg&#39;;return true;" onclick=3D"this.hr=
ef=3D&#39;http://www.google.com/url?q\x3dhttp%3A%2F%2Fopen-std.org%2Fjtc1%2=
Fsc22%2Fwg21%2Fdocs%2Fpapers%2F2012%2Fn3370.html\x26sa\x3dD\x26sntz\x3d1\x2=
6usg\x3dAFQjCNFvm0wsk_paFZ3QmmJf84dC0znHcg&#39;;return true;">http://open-s=
td.<wbr>org/jtc1/sc22/wg21/docs/<wbr>papers/2012/n3370.html</a>)?</div><div=
>I&#39;m thinking to title it something like:</div><div>A Proposal to Add a=
 Compiler Intrinsic Function to Query if a Value is Valid For a Given enum =
type</div><div><br></div><div>At the core of the proposal, it would ask for=
 a compiler implemented template function with the following signature:</di=
v><div><br></div><div><div style=3D"background-color:rgb(250,250,250);borde=
r-color:rgb(187,187,187);border-style:solid;border-width:1px;word-wrap:brea=
k-word"><code><div><span style=3D"color:#008">namespace</span><span style=
=3D"color:#000"> std </span><span style=3D"color:#660">{</span><span style=
=3D"color:#000"><br><br></span><span style=3D"color:#008">template</span><s=
pan style=3D"color:#000"> </span><span style=3D"color:#660">&lt;</span><spa=
n style=3D"color:#008">typename</span><span style=3D"color:#000"> E</span><=
span style=3D"color:#660">&gt;</span><span style=3D"color:#000"> requires i=
s_enum</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#00=
0">E</span><span style=3D"color:#660">&gt;</span><span style=3D"color:#000"=
><br></span><span style=3D"color:#008">constexpr</span><span style=3D"color=
:#000"> </span><span style=3D"color:#008">bool</span><span style=3D"color:#=
000"> is_enum_value</span><span style=3D"color:#660">(</span><span style=3D=
"color:#000">underlying_type_<wbr>t</span><span style=3D"color:#660">&lt;</=
span><font color=3D"#000000"><span style=3D"color:#000">E</span></font><spa=
n style=3D"color:#660">&gt;</span><font color=3D"#000000"><span style=3D"co=
lor:#000"> v</span><span style=3D"color:#660">);</span><span style=3D"color=
:#000"><br><br></span><span style=3D"color:#660">}</span></font></div></cod=
e></div><br></div></div></blockquote><div><br>The Standard doesn&#39;t need=
 to state that a given type trait is a &quot;compiler intrinsic&quot;, even=
 though this particular one could only be implemented with compiler magic.<=
br><br>Your title could be &quot;Type trait returning whether integer is an=
 enumerator of a given enumeration&quot;.<br><br>Melissa<br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/a6fff72e-15f4-4b41-b7ab-23c79274f285%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/a6fff72e-15f4-4b41-b7ab-23c79274f285=
%40isocpp.org</a>.<br />

------=_Part_2501_1978869218.1519931413688--

------=_Part_2500_1062152438.1519931413688--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Thu, 1 Mar 2018 11:44:40 -0800 (PST)
Raw View
------=_Part_2694_1543941717.1519933480999
Content-Type: multipart/alternative;
 boundary="----=_Part_2695_1766221078.1519933480999"

------=_Part_2695_1766221078.1519933480999
Content-Type: text/plain; charset="UTF-8"



On Thursday, March 1, 2018 at 2:10:13 PM UTC-5, Myriachan wrote:
>
> On Thursday, March 1, 2018 at 9:47:10 AM UTC-8, jonr...@gmail.com wrote:
>>
>> Got it :)
>> Is the next step then for me to create a formal proposal (following
>> http://open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html)?
>> I'm thinking to title it something like:
>> A Proposal to Add a Compiler Intrinsic Function to Query if a Value is
>> Valid For a Given enum type
>>
>> At the core of the proposal, it would ask for a compiler implemented
>> template function with the following signature:
>>
>> namespace std {
>>
>> template <typename E> requires is_enum<E>
>> constexpr bool is_enum_value(underlying_type_t<E> v);
>>
>> }
>>
>>
> The Standard doesn't need to state that a given type trait is a "compiler
> intrinsic", even though this particular one could only be implemented with
> compiler magic.
>
> Your title could be "Type trait returning whether integer is an enumerator
> of a given enumeration".
>

It wouldn't even be a "type trait". It's just a function.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/598f63da-bf09-4257-8553-bceb9102bce9%40isocpp.org.

------=_Part_2695_1766221078.1519933480999
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Thursday, March 1, 2018 at 2:10:13 PM UTC-5, My=
riachan wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-l=
eft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr"=
>On Thursday, March 1, 2018 at 9:47:10 AM UTC-8, <a>jonr...@gmail.com</a> w=
rote:<blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;=
border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">Got it :)<div=
>Is the next step then for me to create a formal proposal (following=C2=A0<=
a href=3D"http://open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html" r=
el=3D"nofollow" target=3D"_blank" onmousedown=3D"this.href=3D&#39;http://ww=
w.google.com/url?q\x3dhttp%3A%2F%2Fopen-std.org%2Fjtc1%2Fsc22%2Fwg21%2Fdocs=
%2Fpapers%2F2012%2Fn3370.html\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNFvm0w=
sk_paFZ3QmmJf84dC0znHcg&#39;;return true;" onclick=3D"this.href=3D&#39;http=
://www.google.com/url?q\x3dhttp%3A%2F%2Fopen-std.org%2Fjtc1%2Fsc22%2Fwg21%2=
Fdocs%2Fpapers%2F2012%2Fn3370.html\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCN=
Fvm0wsk_paFZ3QmmJf84dC0znHcg&#39;;return true;">http://open-std.<wbr>org/jt=
c1/sc22/wg21/docs/<wbr>papers/2012/n3370.html</a>)?</div><div>I&#39;m think=
ing to title it something like:</div><div>A Proposal to Add a Compiler Intr=
insic Function to Query if a Value is Valid For a Given enum type</div><div=
><br></div><div>At the core of the proposal, it would ask for a compiler im=
plemented template function with the following signature:</div><div><br></d=
iv><div><div style=3D"background-color:rgb(250,250,250);border-color:rgb(18=
7,187,187);border-style:solid;border-width:1px;word-wrap:break-word"><code>=
<div><span style=3D"color:#008">namespace</span><span style=3D"color:#000">=
 std </span><span style=3D"color:#660">{</span><span style=3D"color:#000"><=
br><br></span><span style=3D"color:#008">template</span><span style=3D"colo=
r:#000"> </span><span style=3D"color:#660">&lt;</span><span style=3D"color:=
#008">typename</span><span style=3D"color:#000"> E</span><span style=3D"col=
or:#660">&gt;</span><span style=3D"color:#000"> requires is_enum</span><spa=
n style=3D"color:#660">&lt;</span><span style=3D"color:#000">E</span><span =
style=3D"color:#660">&gt;</span><span style=3D"color:#000"><br></span><span=
 style=3D"color:#008">constexpr</span><span style=3D"color:#000"> </span><s=
pan style=3D"color:#008">bool</span><span style=3D"color:#000"> is_enum_val=
ue</span><span style=3D"color:#660">(</span><span style=3D"color:#000">unde=
rlying_type_<wbr>t</span><span style=3D"color:#660">&lt;</span><font color=
=3D"#000000"><span style=3D"color:#000">E</span></font><span style=3D"color=
:#660">&gt;</span><font color=3D"#000000"><span style=3D"color:#000"> v</sp=
an><span style=3D"color:#660">);</span><span style=3D"color:#000"><br><br><=
/span><span style=3D"color:#660">}</span></font></div></code></div><br></di=
v></div></blockquote><div><br>The Standard doesn&#39;t need to state that a=
 given type trait is a &quot;compiler intrinsic&quot;, even though this par=
ticular one could only be implemented with compiler magic.<br><br>Your titl=
e could be &quot;Type trait returning whether integer is an enumerator of a=
 given enumeration&quot;.<br></div></div></blockquote><div><br>It wouldn&#3=
9;t even be a &quot;type trait&quot;. It&#39;s just a function.</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/598f63da-bf09-4257-8553-bceb9102bce9%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/598f63da-bf09-4257-8553-bceb9102bce9=
%40isocpp.org</a>.<br />

------=_Part_2695_1766221078.1519933480999--

------=_Part_2694_1543941717.1519933480999--

.


Author: jonringle@gmail.com
Date: Thu, 1 Mar 2018 11:47:01 -0800 (PST)
Raw View
------=_Part_2718_1022413723.1519933621844
Content-Type: multipart/alternative;
 boundary="----=_Part_2719_1884876640.1519933621844"

------=_Part_2719_1884876640.1519933621844
Content-Type: text/plain; charset="UTF-8"


On Thursday, March 1, 2018 at 2:44:41 PM UTC-5, Nicol Bolas wrote:
>
>
>
> On Thursday, March 1, 2018 at 2:10:13 PM UTC-5, Myriachan wrote:
>>
>> On Thursday, March 1, 2018 at 9:47:10 AM UTC-8, jonr...@gmail.com wrote:
>>>
>>> Got it :)
>>> Is the next step then for me to create a formal proposal (following
>>> http://open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html)?
>>> I'm thinking to title it something like:
>>> A Proposal to Add a Compiler Intrinsic Function to Query if a Value is
>>> Valid For a Given enum type
>>>
>>> At the core of the proposal, it would ask for a compiler implemented
>>> template function with the following signature:
>>>
>>> namespace std {
>>>
>>> template <typename E> requires is_enum<E>
>>> constexpr bool is_enum_value(underlying_type_t<E> v);
>>>
>>> }
>>>
>>>
>> The Standard doesn't need to state that a given type trait is a "compiler
>> intrinsic", even though this particular one could only be implemented with
>> compiler magic.
>>
>> Your title could be "Type trait returning whether integer is an
>> enumerator of a given enumeration".
>>
>
> It wouldn't even be a "type trait". It's just a function.
>

How about title: "A Proposal for a function returning whether an underlying
type value is an enumerator of a given enumeration"?

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/87766f67-a1b0-4003-8cb4-912464a6137c%40isocpp.org.

------=_Part_2719_1884876640.1519933621844
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br>On Thursday, March 1, 2018 at 2:44:41 PM UTC-5, Nicol =
Bolas wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-lef=
t: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr"><=
br><br>On Thursday, March 1, 2018 at 2:10:13 PM UTC-5, Myriachan wrote:<blo=
ckquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-le=
ft:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">On Thursday, March 1, =
2018 at 9:47:10 AM UTC-8, <a>jonr...@gmail.com</a> wrote:<blockquote class=
=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc s=
olid;padding-left:1ex"><div dir=3D"ltr">Got it :)<div>Is the next step then=
 for me to create a formal proposal (following=C2=A0<a href=3D"http://open-=
std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html" rel=3D"nofollow" target=
=3D"_blank" onmousedown=3D"this.href=3D&#39;http://www.google.com/url?q\x3d=
http%3A%2F%2Fopen-std.org%2Fjtc1%2Fsc22%2Fwg21%2Fdocs%2Fpapers%2F2012%2Fn33=
70.html\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNFvm0wsk_paFZ3QmmJf84dC0znHc=
g&#39;;return true;" onclick=3D"this.href=3D&#39;http://www.google.com/url?=
q\x3dhttp%3A%2F%2Fopen-std.org%2Fjtc1%2Fsc22%2Fwg21%2Fdocs%2Fpapers%2F2012%=
2Fn3370.html\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNFvm0wsk_paFZ3QmmJf84dC=
0znHcg&#39;;return true;">http://open-std.<wbr>org/jtc1/sc22/wg21/docs/<wbr=
>papers/2012/n3370.html</a>)?</div><div>I&#39;m thinking to title it someth=
ing like:</div><div>A Proposal to Add a Compiler Intrinsic Function to Quer=
y if a Value is Valid For a Given enum type</div><div><br></div><div>At the=
 core of the proposal, it would ask for a compiler implemented template fun=
ction with the following signature:</div><div><br></div><div><div style=3D"=
background-color:rgb(250,250,250);border-color:rgb(187,187,187);border-styl=
e:solid;border-width:1px;word-wrap:break-word"><code><div><span style=3D"co=
lor:#008">namespace</span><span style=3D"color:#000"> std </span><span styl=
e=3D"color:#660">{</span><span style=3D"color:#000"><br><br></span><span st=
yle=3D"color:#008">template</span><span style=3D"color:#000"> </span><span =
style=3D"color:#660">&lt;</span><span style=3D"color:#008">typename</span><=
span style=3D"color:#000"> E</span><span style=3D"color:#660">&gt;</span><s=
pan style=3D"color:#000"> requires is_enum</span><span style=3D"color:#660"=
>&lt;</span><span style=3D"color:#000">E</span><span style=3D"color:#660">&=
gt;</span><span style=3D"color:#000"><br></span><span style=3D"color:#008">=
constexpr</span><span style=3D"color:#000"> </span><span style=3D"color:#00=
8">bool</span><span style=3D"color:#000"> is_enum_value</span><span style=
=3D"color:#660">(</span><span style=3D"color:#000">underlying_type_<wbr>t</=
span><span style=3D"color:#660">&lt;</span><font color=3D"#000000"><span st=
yle=3D"color:#000">E</span></font><span style=3D"color:#660">&gt;</span><fo=
nt color=3D"#000000"><span style=3D"color:#000"> v</span><span style=3D"col=
or:#660">);</span><span style=3D"color:#000"><br><br></span><span style=3D"=
color:#660">}</span></font></div></code></div><br></div></div></blockquote>=
<div><br>The Standard doesn&#39;t need to state that a given type trait is =
a &quot;compiler intrinsic&quot;, even though this particular one could onl=
y be implemented with compiler magic.<br><br>Your title could be &quot;Type=
 trait returning whether integer is an enumerator of a given enumeration&qu=
ot;.<br></div></div></blockquote><div><br>It wouldn&#39;t even be a &quot;t=
ype trait&quot;. It&#39;s just a function.</div></div></blockquote><div><br=
></div><div>How about title: &quot;A Proposal for a function returning whet=
her an underlying type value is an enumerator of a given enumeration&quot;?=
=C2=A0</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/87766f67-a1b0-4003-8cb4-912464a6137c%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/87766f67-a1b0-4003-8cb4-912464a6137c=
%40isocpp.org</a>.<br />

------=_Part_2719_1884876640.1519933621844--

------=_Part_2718_1022413723.1519933621844--

.


Author: Tony V E <tvaneerd@gmail.com>
Date: Thu, 1 Mar 2018 15:23:42 -0500
Raw View
--94eb2c1c0e84cfb75205665fa2a2
Content-Type: text/plain; charset="UTF-8"

On Thu, Mar 1, 2018 at 2:47 PM, <jonringle@gmail.com> wrote:

>
> On Thursday, March 1, 2018 at 2:44:41 PM UTC-5, Nicol Bolas wrote:
>>
>>
>>
>> On Thursday, March 1, 2018 at 2:10:13 PM UTC-5, Myriachan wrote:
>>>
>>> On Thursday, March 1, 2018 at 9:47:10 AM UTC-8, jonr...@gmail.com wrote:
>>>>
>>>> Got it :)
>>>> Is the next step then for me to create a formal proposal (following
>>>> http://open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3370.html)?
>>>> I'm thinking to title it something like:
>>>> A Proposal to Add a Compiler Intrinsic Function to Query if a Value is
>>>> Valid For a Given enum type
>>>>
>>>> At the core of the proposal, it would ask for a compiler implemented
>>>> template function with the following signature:
>>>>
>>>> namespace std {
>>>>
>>>> template <typename E> requires is_enum<E>
>>>> constexpr bool is_enum_value(underlying_type_t<E> v);
>>>>
>>>> }
>>>>
>>>>
>>> The Standard doesn't need to state that a given type trait is a
>>> "compiler intrinsic", even though this particular one could only be
>>> implemented with compiler magic.
>>>
>>> Your title could be "Type trait returning whether integer is an
>>> enumerator of a given enumeration".
>>>
>>
>> It wouldn't even be a "type trait". It's just a function.
>>
>
> How about title: "A Proposal for a function returning whether an
> underlying type value is an enumerator of a given enumeration"?
>

You don't really need the "A Proposal for" part.

I'd title it "Is It Me You're Looking For?"

But maybe not for your first proposal.  It could at least be its subtitle.

--
Be seeing you,
Tony

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAOHCbitYXEcWHbYg122SSV%3DKc6EWK0oyy%2BTt4Jn3Fj2vSpbDxQ%40mail.gmail.com.

--94eb2c1c0e84cfb75205665fa2a2
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><div class=3D"gmail_extra"><br><div class=3D"gmail_quo=
te">On Thu, Mar 1, 2018 at 2:47 PM,  <span dir=3D"ltr">&lt;<a href=3D"mailt=
o:jonringle@gmail.com" target=3D"_blank">jonringle@gmail.com</a>&gt;</span>=
 wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;bor=
der-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><span class=3D""=
><br>On Thursday, March 1, 2018 at 2:44:41 PM UTC-5, Nicol Bolas wrote:<blo=
ckquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-le=
ft:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><br><br>On Thursday, M=
arch 1, 2018 at 2:10:13 PM UTC-5, Myriachan wrote:<blockquote class=3D"gmai=
l_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc solid;pad=
ding-left:1ex"><div dir=3D"ltr">On Thursday, March 1, 2018 at 9:47:10 AM UT=
C-8, <a>jonr...@gmail.com</a> wrote:<blockquote class=3D"gmail_quote" style=
=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc solid;padding-left:1ex"=
><div dir=3D"ltr">Got it :)<div>Is the next step then for me to create a fo=
rmal proposal (following=C2=A0<a href=3D"http://open-std.org/jtc1/sc22/wg21=
/docs/papers/2012/n3370.html" rel=3D"nofollow" target=3D"_blank">http://ope=
n-std.org<wbr>/jtc1/sc22/wg21/docs/papers/<wbr>2012/n3370.html</a>)?</div><=
div>I&#39;m thinking to title it something like:</div><div>A Proposal to Ad=
d a Compiler Intrinsic Function to Query if a Value is Valid For a Given en=
um type</div><div><br></div><div>At the core of the proposal, it would ask =
for a compiler implemented template function with the following signature:<=
/div><div><br></div><div><div style=3D"background-color:rgb(250,250,250);bo=
rder-color:rgb(187,187,187);border-style:solid;border-width:1px;word-wrap:b=
reak-word"><code><div><span style=3D"color:#008">namespace</span><span styl=
e=3D"color:#000"> std </span><span style=3D"color:#660">{</span><span style=
=3D"color:#000"><br><br></span><span style=3D"color:#008">template</span><s=
pan style=3D"color:#000"> </span><span style=3D"color:#660">&lt;</span><spa=
n style=3D"color:#008">typename</span><span style=3D"color:#000"> E</span><=
span style=3D"color:#660">&gt;</span><span style=3D"color:#000"> requires i=
s_enum</span><span style=3D"color:#660">&lt;</span><span style=3D"color:#00=
0">E</span><span style=3D"color:#660">&gt;</span><span style=3D"color:#000"=
><br></span><span style=3D"color:#008">constexpr</span><span style=3D"color=
:#000"> </span><span style=3D"color:#008">bool</span><span style=3D"color:#=
000"> is_enum_value</span><span style=3D"color:#660">(</span><span style=3D=
"color:#000">underlying_type_<wbr>t</span><span style=3D"color:#660">&lt;</=
span><font color=3D"#000000"><span style=3D"color:#000">E</span></font><spa=
n style=3D"color:#660">&gt;</span><font color=3D"#000000"><span style=3D"co=
lor:#000"> v</span><span style=3D"color:#660">);</span><span style=3D"color=
:#000"><br><br></span><span style=3D"color:#660">}</span></font></div></cod=
e></div><br></div></div></blockquote><div><br>The Standard doesn&#39;t need=
 to state that a given type trait is a &quot;compiler intrinsic&quot;, even=
 though this particular one could only be implemented with compiler magic.<=
br><br>Your title could be &quot;Type trait returning whether integer is an=
 enumerator of a given enumeration&quot;.<br></div></div></blockquote><div>=
<br>It wouldn&#39;t even be a &quot;type trait&quot;. It&#39;s just a funct=
ion.</div></div></blockquote><div><br></div></span><div>How about title: &q=
uot;A Proposal for a function returning whether an underlying type value is=
 an enumerator of a given enumeration&quot;?=C2=A0</div></div></blockquote>=
<div><br></div><div>You don&#39;t really need the &quot;A Proposal for&quot=
; part.<br><br></div><div>I&#39;d title it &quot;Is It Me You&#39;re Lookin=
g For?&quot;<br><br></div><div>But maybe not for your first proposal.=C2=A0=
 It could at least be its subtitle.<br clear=3D"all"></div></div><br>-- <br=
><div class=3D"gmail_signature" data-smartmail=3D"gmail_signature"><div dir=
=3D"ltr"><div>Be seeing you,<br></div>Tony<br></div></div>
</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAOHCbitYXEcWHbYg122SSV%3DKc6EWK0oyy%=
2BTt4Jn3Fj2vSpbDxQ%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter"=
>https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAOHCbitYXEcW=
HbYg122SSV%3DKc6EWK0oyy%2BTt4Jn3Fj2vSpbDxQ%40mail.gmail.com</a>.<br />

--94eb2c1c0e84cfb75205665fa2a2--

.


Author: "'Matt Calabrese' via ISO C++ Standard - Future Proposals" <std-proposals@isocpp.org>
Date: Thu, 01 Mar 2018 20:28:34 +0000
Raw View
--001a11439844d5942405665fb4fe
Content-Type: text/plain; charset="UTF-8"

On Thu, Mar 1, 2018 at 3:23 PM Tony V E <tvaneerd@gmail.com> wrote:

> I'd title it "Is It Me You're Looking For?"
>
> But maybe not for your first proposal.  It could at least be its subtitle.
>
> --
> Be seeing you,
> Tony
>

Expert advice, here.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CANh8DEnbfFGMYV9WQLyLHTLL0HwsGe0HcOjbG0BEpVved5pcqg%40mail.gmail.com.

--001a11439844d5942405665fb4fe
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div class=3D"gmail_quote"><div dir=3D"ltr">On Thu, Mar 1,=
 2018 at 3:23 PM Tony V E &lt;<a href=3D"mailto:tvaneerd@gmail.com">tvaneer=
d@gmail.com</a>&gt; wrote:<br></div><blockquote class=3D"gmail_quote" style=
=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=
=3D"ltr"><div class=3D"gmail_extra"><div class=3D"gmail_quote"><div>I&#39;d=
 title it &quot;Is It Me You&#39;re Looking For?&quot;<br></div><div><br></=
div><div>But maybe not for your first proposal.=C2=A0 It could at least be =
its subtitle.<br clear=3D"all"></div></div><br>-- <br><div class=3D"m_-7391=
690653444529048gmail_signature" data-smartmail=3D"gmail_signature"><div dir=
=3D"ltr"><div>Be seeing you,<br></div>Tony</div></div></div></div></blockqu=
ote><div><br></div><div>Expert advice, here.=C2=A0</div></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CANh8DEnbfFGMYV9WQLyLHTLL0HwsGe0HcOjb=
G0BEpVved5pcqg%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">htt=
ps://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CANh8DEnbfFGMYV9W=
QLyLHTLL0HwsGe0HcOjbG0BEpVved5pcqg%40mail.gmail.com</a>.<br />

--001a11439844d5942405665fb4fe--

.


Author: jonringle@gmail.com
Date: Thu, 1 Mar 2018 13:32:43 -0800 (PST)
Raw View
------=_Part_2991_1988930800.1519939963444
Content-Type: multipart/alternative;
 boundary="----=_Part_2992_679913329.1519939963444"

------=_Part_2992_679913329.1519939963444
Content-Type: text/plain; charset="UTF-8"



On Thursday, March 1, 2018 at 3:28:48 PM UTC-5, Matt Calabrese wrote:
>
> On Thu, Mar 1, 2018 at 3:23 PM Tony V E <tvan...@gmail.com <javascript:>>
> wrote:
>
>> I'd title it "Is It Me You're Looking For?"
>>
>> But maybe not for your first proposal.  It could at least be its subtitle.
>>
>> --
>> Be seeing you,
>> Tony
>>
>
> Expert advice, here.
>

Love it. Perhaps I will title it as you suggest and make the subtitle "A
function returning whether an underlying type value is an enumerator of a
given enumeration" :)

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/fad444b6-8bf2-4b41-a196-54a7b6d34d15%40isocpp.org.

------=_Part_2992_679913329.1519939963444
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Thursday, March 1, 2018 at 3:28:48 PM UTC-5, Ma=
tt Calabrese wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;mar=
gin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D=
"ltr"><div class=3D"gmail_quote"><div dir=3D"ltr">On Thu, Mar 1, 2018 at 3:=
23 PM Tony V E &lt;<a href=3D"javascript:" target=3D"_blank" gdf-obfuscated=
-mailto=3D"8jlnbnf6CgAJ" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;j=
avascript:&#39;;return true;" onclick=3D"this.href=3D&#39;javascript:&#39;;=
return true;">tvan...@gmail.com</a>&gt; wrote:<br></div><blockquote class=
=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padd=
ing-left:1ex"><div dir=3D"ltr"><div><div class=3D"gmail_quote"><div>I&#39;d=
 title it &quot;Is It Me You&#39;re Looking For?&quot;<br></div><div><br></=
div><div>But maybe not for your first proposal.=C2=A0 It could at least be =
its subtitle.<br clear=3D"all"></div></div><br>-- <br><div><div dir=3D"ltr"=
><div>Be seeing you,<br></div>Tony</div></div></div></div></blockquote><div=
><br></div><div>Expert advice, here.=C2=A0</div></div></div></blockquote><d=
iv><br></div><div>Love it. Perhaps I will title it as you suggest and make =
the subtitle &quot;A function returning whether an underlying type value is=
 an enumerator of a given enumeration&quot; :)</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/fad444b6-8bf2-4b41-a196-54a7b6d34d15%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/fad444b6-8bf2-4b41-a196-54a7b6d34d15=
%40isocpp.org</a>.<br />

------=_Part_2992_679913329.1519939963444--

------=_Part_2991_1988930800.1519939963444--

.


Author: jonringle@gmail.com
Date: Fri, 2 Mar 2018 10:59:02 -0800 (PST)
Raw View
------=_Part_5655_1967866894.1520017142673
Content-Type: multipart/alternative;
 boundary="----=_Part_5656_1550427034.1520017142673"

------=_Part_5656_1550427034.1520017142673
Content-Type: text/plain; charset="UTF-8"

I have a formal proposal is_enum_value-d0974r0.pdf
<https://drive.google.com/file/d/18iR88B2myWEwQhB51DAyxrLlvPn-awXu/view?usp=sharing>
I welcome any comments on it

Thanks!
-Jon

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/3d8fa493-8d99-4444-84c1-f530a4129a97%40isocpp.org.

------=_Part_5656_1550427034.1520017142673
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">I have a formal proposal=C2=A0<a href=3D"https://drive.goo=
gle.com/file/d/18iR88B2myWEwQhB51DAyxrLlvPn-awXu/view?usp=3Dsharing">is_enu=
m_value-d0974r0.pdf</a><div>I welcome any comments on it</div><div><br></di=
v><div>Thanks!</div><div>-Jon</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/3d8fa493-8d99-4444-84c1-f530a4129a97%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/3d8fa493-8d99-4444-84c1-f530a4129a97=
%40isocpp.org</a>.<br />

------=_Part_5656_1550427034.1520017142673--

------=_Part_5655_1967866894.1520017142673--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Fri, 2 Mar 2018 12:02:02 -0800 (PST)
Raw View
------=_Part_5779_1809595716.1520020922911
Content-Type: multipart/alternative;
 boundary="----=_Part_5780_670775877.1520020922912"

------=_Part_5780_670775877.1520020922912
Content-Type: text/plain; charset="UTF-8"

On Friday, March 2, 2018 at 1:59:02 PM UTC-5, jonr...@gmail.com wrote:
>
> I have a formal proposal is_enum_value-d0974r0.pdf
> <https://drive.google.com/file/d/18iR88B2myWEwQhB51DAyxrLlvPn-awXu/view?usp=sharing>
> I welcome any comments on it
>

First, your Design Decisions section does not talk about the actual design
of the feature. Rather, it talks about how a user would have to implement
it. But since users are not being asked to implement it, it's irrelevant
with regard to "design decisions".

That information ought to be in the Motivation section, since it explains
what you would have to do *instead of* having this feature.

Second, there needs to be a discussion of the inevitable "Reflection"
counter-argument to this standard library function. Namely, that static
reflection gives you the ability to implement `is_enum_value` *yourself*.
You should investigate some of the static reflection proposals and
explain/show how difficult it is to implement this function adequately on
your own. Having to create a sorted compile-time table and so forth, let
alone the optimization of being able to detect if an enumeration is just an
unbroken sequence of values that can reduce `is_enum_value` to (A <= val <=
B).

Also, you should point out that, even though static reflection would allow
you to implement it yourself, it's still worthwhile to have a standard
library function to do it. Whether the standard library uses a compiler
intrinsic or static reflection is an implementation detail.

Third, there needs to be a discussion about the static storage
ramifications of the runtime version of this function. By calling
`is_enum_value<E>` at runtime, the compiler must generate that function.
And that function will need something behind it to make this work.

Normally, enumerations are free; they don't cost anything, since they're
not variables that are stored somewhere. By doing `is_enum_value`, you're
making them cost something. If `E` is a linear list of values, then the
compiler-generated function might be as simple as just (A <= val <= B). But
if it has holes in it, then the compiler may need to generate static data,
thus making the executable bigger.

That's not to say that the proposal is wrong or something. But it's
important to recognize that `is_enum_value<E>` isn't *free*. Anyone who
uses this feature, or functions derived from it, needs to know that there
is the possibility of bloating their executable.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/1ea7c967-2801-4fac-88f7-d254b9993a4d%40isocpp.org.

------=_Part_5780_670775877.1520020922912
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Friday, March 2, 2018 at 1:59:02 PM UTC-5, jonr...@gmai=
l.com wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-lef=
t: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr">I=
 have a formal proposal=C2=A0<a href=3D"https://drive.google.com/file/d/18i=
R88B2myWEwQhB51DAyxrLlvPn-awXu/view?usp=3Dsharing" target=3D"_blank" rel=3D=
"nofollow" onmousedown=3D"this.href=3D&#39;https://drive.google.com/file/d/=
18iR88B2myWEwQhB51DAyxrLlvPn-awXu/view?usp\x3dsharing&#39;;return true;" on=
click=3D"this.href=3D&#39;https://drive.google.com/file/d/18iR88B2myWEwQhB5=
1DAyxrLlvPn-awXu/view?usp\x3dsharing&#39;;return true;">is_enum_value-<wbr>=
d0974r0.pdf</a><div>I welcome any comments on it</div></div></blockquote><d=
iv><br>First, your Design Decisions section does not talk about the actual =
design of the feature. Rather, it talks about how a user would have to impl=
ement it. But since users are not being asked to implement it, it&#39;s irr=
elevant with regard to &quot;design decisions&quot;.<br><br>That informatio=
n ought to be in the Motivation section, since it explains what you would h=
ave to do <i>instead of</i> having this feature.<br><br>Second, there needs=
 to be a discussion of the inevitable &quot;Reflection&quot; counter-argume=
nt to this standard library function. Namely, that static reflection gives =
you the ability to implement `is_enum_value` <i>yourself</i>. You should in=
vestigate some of the static reflection proposals and explain/show how diff=
icult it is to implement this function adequately on your own. Having to cr=
eate a sorted compile-time table and so forth, let alone the optimization o=
f being able to detect if an enumeration is just an unbroken sequence of va=
lues that can reduce `is_enum_value` to (A &lt;=3D val &lt;=3D B).<br><br>A=
lso, you should point out that, even though static reflection would allow y=
ou to implement it yourself, it&#39;s still worthwhile to have a standard l=
ibrary function to do it. Whether the standard library uses a compiler intr=
insic or static reflection is an implementation detail.<br><br>Third, there=
 needs to be a discussion about the static storage ramifications of the run=
time version of this function. By calling `is_enum_value&lt;E&gt;` at runti=
me, the compiler must generate that function. And that function will need s=
omething behind it to make this work.<br><br>Normally, enumerations are fre=
e; they don&#39;t cost anything, since they&#39;re not variables that are s=
tored somewhere. By doing `is_enum_value`, you&#39;re making them cost some=
thing. If `E` is a linear list of values, then the compiler-generated funct=
ion might be as simple as just (A &lt;=3D val &lt;=3D B). But if it has hol=
es in it, then the compiler may need to generate static data, thus making t=
he executable bigger.<br><br>That&#39;s not to say that the proposal is wro=
ng or something. But it&#39;s important to recognize that `is_enum_value&lt=
;E&gt;` isn&#39;t <i>free</i>. Anyone who uses this feature, or functions d=
erived from it, needs to know that there is the possibility of bloating the=
ir executable.</div><br></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/1ea7c967-2801-4fac-88f7-d254b9993a4d%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/1ea7c967-2801-4fac-88f7-d254b9993a4d=
%40isocpp.org</a>.<br />

------=_Part_5780_670775877.1520020922912--

------=_Part_5779_1809595716.1520020922911--

.


Author: Tony V E <tvaneerd@gmail.com>
Date: Fri, 2 Mar 2018 15:33:22 -0500
Raw View
--001a113cca123e28ae056673e3ac
Content-Type: text/plain; charset="UTF-8"

On Fri, Mar 2, 2018 at 1:59 PM, <jonringle@gmail.com> wrote:

> I have a formal proposal is_enum_value-d0974r0.pdf
> <https://drive.google.com/file/d/18iR88B2myWEwQhB51DAyxrLlvPn-awXu/view?usp=sharing>
> I welcome any comments on it
>
> Thanks!
> -Jon
>
>
>

I would add some code to your motivation section.

ie the enum_cast code that is at the end of the paper, and a snippet of
serialization that calls enum_cast.

And/or use Before/After tables (also known as, ahem, "Tony Tables").  Using
these tables in the motivation section is greatly appreciated by the
committee (particularly LEWG).  ie showing what you would need to write for
enum_cast before this proposal, and what you would write after.  Of course
in this case the "before" code is too big for a table - but this drives
home the importance of the feature.  You could either have the left side in
a tiny tiny font (being able to read it isn't as important as the quantity
of code), or have it scroll for pages, or just show a bunch of question
marks and "see appendix for C++17 implementation".

I think you also need to say something about reflection.  There is a large
reflection proposal (or plural) being worked on by the committee.  If we
had reflection, could is_enum_value be written using that?  Basically, why
shouldn't we just wait for reflection to solve this?  One answer can be:
is_enum_value() is useful _now_ and also _compatible_ with reflection. Once
reflection arrives, it can become a library function instead of an
intrinsic.

So the questions for the committee are:
- would we want this function in the standard if/once we had reflection?
- do we want it so much that we don't want to wait, and we want compilers
to implement it for us now.

If possible, you should also consider implementing this in one of your
friendly neighbourhood compilers, to give an idea of whether it really is
easy to make an intrinsic or not.



P.S. there is a strange issue with 0 with enums.  Consider:

enum Colour { Red = 1, Green, Blue, Etc };

Colour col = Colour{};  // col == 0 now.(IIUC), not Red

0 is in some sense (ie in the language) a valid Colour enum value.  But I
assume you don't want it to be considered valid.

Actually, I think you could probably ignore this issue, or just mention it
in passing (ie it might end up being a Note in the standard) that
is_enum_value() will consider 0 invalid if it is not one of the enumerators.
Or, leave this level of detail to the LWG guys.  It's what they live for :-)

--
Be seeing you,
Tony

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAOHCbisFQPPk5VDMJL3LfBnuJ%3DiJ4PdwdOX01xVXgQ-abX8Tkg%40mail.gmail.com.

--001a113cca123e28ae056673e3ac
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><div class=3D"gmail_extra"><br><div class=3D"gmail_quo=
te">On Fri, Mar 2, 2018 at 1:59 PM,  <span dir=3D"ltr">&lt;<a href=3D"mailt=
o:jonringle@gmail.com" target=3D"_blank">jonringle@gmail.com</a>&gt;</span>=
 wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;bor=
der-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr">I have a formal =
proposal=C2=A0<a href=3D"https://drive.google.com/file/d/18iR88B2myWEwQhB51=
DAyxrLlvPn-awXu/view?usp=3Dsharing" target=3D"_blank">is_enum_value-<wbr>d0=
974r0.pdf</a><div>I welcome any comments on it</div><div><br></div><div>Tha=
nks!</div><div>-Jon</div></div><span class=3D"">

<p></p></span><br clear=3D"all"></blockquote></div><br><br></div><div class=
=3D"gmail_extra">I would add some code to your motivation section.<br><br><=
/div><div class=3D"gmail_extra">ie the enum_cast code that is at the end of=
 the paper, and a snippet of serialization that calls enum_cast.<br><br></d=
iv><div class=3D"gmail_extra">And/or use Before/After tables (also known as=
, ahem, &quot;Tony Tables&quot;).=C2=A0 Using these tables in the motivatio=
n section is greatly appreciated by the committee (particularly LEWG).=C2=
=A0 ie showing what you would need to write for enum_cast before this propo=
sal, and what you would write after.=C2=A0 Of course in this case the &quot=
;before&quot; code is too big for a table - but this drives home the import=
ance of the feature.=C2=A0 You could either have the left side in a tiny ti=
ny font (being able to read it isn&#39;t as important as the quantity of co=
de), or have it scroll for pages, or just show a bunch of question marks an=
d &quot;see appendix for C++17 implementation&quot;.<br></div><div class=3D=
"gmail_extra"><br></div><div class=3D"gmail_extra">I think you also need to=
 say something about reflection.=C2=A0 There is a large reflection proposal=
 (or plural) being worked on by the committee.=C2=A0 If we had reflection, =
could is_enum_value be written using that?=C2=A0 Basically, why shouldn&#39=
;t we just wait for reflection to solve this?=C2=A0 One answer can be: is_e=
num_value() is useful _now_ and also _compatible_ with reflection. Once ref=
lection arrives, it can become a library function instead of an intrinsic.<=
br><br></div><div class=3D"gmail_extra">So the questions for the committee =
are:<br></div><div class=3D"gmail_extra">- would we want this function in t=
he standard if/once we had reflection?<br></div><div class=3D"gmail_extra">=
- do we want it so much that we don&#39;t want to wait, and we want compile=
rs to implement it for us now.<br><br></div><div class=3D"gmail_extra">If p=
ossible, you should also consider implementing this in one of your friendly=
 neighbourhood compilers, to give an idea of whether it really is easy to m=
ake an intrinsic or not.<br><br><br><br></div><div class=3D"gmail_extra">P.=
S. there is a strange issue with 0 with enums.=C2=A0 Consider:<br><br></div=
><div class=3D"gmail_extra">enum Colour { Red =3D 1, Green, Blue, Etc };<br=
><br></div><div class=3D"gmail_extra">Colour col =3D Colour{};=C2=A0 // col=
 =3D=3D 0 now.(IIUC), not Red<br></div><div class=3D"gmail_extra"><br></div=
><div class=3D"gmail_extra">0 is in some sense (ie in the language) a valid=
 Colour enum value.=C2=A0 But I assume you don&#39;t want it to be consider=
ed valid.<br><br></div><div class=3D"gmail_extra">Actually, I think you cou=
ld probably ignore this issue, or just mention it in passing (ie it might e=
nd up being a Note in the standard) that is_enum_value() will consider 0 in=
valid if it is not one of the enumerators.<br></div><div class=3D"gmail_ext=
ra">Or, leave this level of detail to the LWG guys.=C2=A0 It&#39;s what the=
y live for :-)<br></div><div class=3D"gmail_extra"><br></div><div class=3D"=
gmail_extra">-- <br><div class=3D"gmail_signature" data-smartmail=3D"gmail_=
signature"><div dir=3D"ltr"><div>Be seeing you,<br></div>Tony<br></div></di=
v>
</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAOHCbisFQPPk5VDMJL3LfBnuJ%3DiJ4PdwdO=
X01xVXgQ-abX8Tkg%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">h=
ttps://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAOHCbisFQPPk5V=
DMJL3LfBnuJ%3DiJ4PdwdOX01xVXgQ-abX8Tkg%40mail.gmail.com</a>.<br />

--001a113cca123e28ae056673e3ac--

.


Author: Nevin Liber <nevin@eviloverlord.com>
Date: Fri, 2 Mar 2018 15:01:50 -0600
Raw View
--f403045dd47267d66a0566744b2a
Content-Type: text/plain; charset="UTF-8"

On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <tvaneerd@gmail.com> wrote:

> enum Colour { Red = 1, Green, Blue, Etc };
>
> Colour col = Colour{};  // col == 0 now.(IIUC), not Red
>
> 0 is in some sense (ie in the language) a valid Colour enum value.  But I
> assume you don't want it to be considered valid.
>

Why is that any different than

Colour col = Colour{5};
--
 Nevin ":-)" Liber  <mailto:nevin@eviloverlord.com>  +1-847-691-1404

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAGg_6%2BOr5U2TanyYV2NEUbcMTx_q5CaDafRjogtkqSpQGjJxQg%40mail.gmail.com.

--f403045dd47267d66a0566744b2a
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <span dir=3D"ltr"=
>&lt;<a href=3D"mailto:tvaneerd@gmail.com" target=3D"_blank">tvaneerd@gmail=
..com</a>&gt;</span> wrote:<br><div class=3D"gmail_extra"><div class=3D"gmai=
l_quote"><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;borde=
r-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div class=3D"gmai=
l_extra">enum Colour { Red =3D 1, Green, Blue, Etc };<br><br></div><div cla=
ss=3D"gmail_extra">Colour col =3D Colour{};=C2=A0 // col =3D=3D 0 now.(IIUC=
), not Red<br></div><div class=3D"gmail_extra"><br></div><div class=3D"gmai=
l_extra">0 is in some sense (ie in the language) a valid Colour enum value.=
=C2=A0 But I assume you don&#39;t want it to be considered valid.<br></div>=
</div></blockquote><div><br></div><div>Why is that any different than</div>=
<div><br></div><div>Colour col =3D Colour{5};</div><div>--=C2=A0<br></div><=
/div><div class=3D"gmail_signature" data-smartmail=3D"gmail_signature"><div=
 dir=3D"ltr"><div><div dir=3D"ltr"><div>=C2=A0Nevin &quot;:-)&quot; Liber=
=C2=A0 &lt;mailto:<a href=3D"mailto:nevin@eviloverlord.com" target=3D"_blan=
k">nevin@eviloverlord.com</a>&gt; =C2=A0+1-847-691-1404</div></div></div></=
div></div>
</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAGg_6%2BOr5U2TanyYV2NEUbcMTx_q5CaDaf=
RjogtkqSpQGjJxQg%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">h=
ttps://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAGg_6%2BOr5U2T=
anyYV2NEUbcMTx_q5CaDafRjogtkqSpQGjJxQg%40mail.gmail.com</a>.<br />

--f403045dd47267d66a0566744b2a--

.


Author: Nevin Liber <nevin@eviloverlord.com>
Date: Fri, 2 Mar 2018 15:15:44 -0600
Raw View
--94eb2c1e9f341a00bc0566747d4d
Content-Type: text/plain; charset="UTF-8"

On Fri, Mar 2, 2018 at 2:02 PM, Nicol Bolas <jmckesson@gmail.com> wrote:

>
> Normally, enumerations are free; they don't cost anything, since they're
> not variables that are stored somewhere. By doing `is_enum_value`, you're
> making them cost something.
>

Why?  Presumably these functions only get linked in when they are used.

Now, they may have to always be generated (I'm not sure how one would deal
with forward declarations of scoped enums otherwise), but they certainly
don't have to be linked into the final executable if they aren't used.


> If `E` is a linear list of values, then the compiler-generated function
> might be as simple as just (A <= val <= B). But if it has holes in it, then
> the compiler may need to generate static data, thus making the executable
> bigger.
>

I don't see why this problem is any different than optimizing a switch
statement.  And you'd have to compare executable sizes against hand-rolled
functionality.


> That's not to say that the proposal is wrong or something. But it's
> important to recognize that `is_enum_value<E>` isn't *free*.
>

No function in the standard is free (well, other than free(void*) :-)).


> Anyone who uses this feature, or functions derived from it, needs to know
> that there is the possibility of bloating their executable.
>

If they need this functionality, how do they avoid that?  And if they
don't, why is this adding anything to the size of the executable?  I'm not
seeing why this isn't a case of only paying for it if you use it.
--
 Nevin ":-)" Liber  <mailto:nevin@eviloverlord.com>  +1-847-691-1404

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAGg_6%2BOPVW%3DbWXLdtvo%2Bgn9jRseKVh8CMye-rXBbJbVDhFvEFQ%40mail.gmail.com.

--94eb2c1e9f341a00bc0566747d4d
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Fri, Mar 2, 2018 at 2:02 PM, Nicol Bolas <span dir=3D"l=
tr">&lt;<a href=3D"mailto:jmckesson@gmail.com" target=3D"_blank">jmckesson@=
gmail.com</a>&gt;</span> wrote:<br><div class=3D"gmail_extra"><div class=3D=
"gmail_quote"><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;=
border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div><br>Norm=
ally, enumerations are free; they don&#39;t cost anything, since they&#39;r=
e not variables that are stored somewhere. By doing `is_enum_value`, you&#3=
9;re making them cost something. </div></div></blockquote><div><br></div><d=
iv>Why?=C2=A0 Presumably these functions only get linked in when they are u=
sed.</div><div><br></div><div>Now, they may have to always be generated (I&=
#39;m not sure how one would deal with forward declarations of scoped enums=
 otherwise), but they certainly don&#39;t have to be linked into the final =
executable if they aren&#39;t used.</div><div>=C2=A0</div><blockquote class=
=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padd=
ing-left:1ex"><div dir=3D"ltr"><div>If `E` is a linear list of values, then=
 the compiler-generated function might be as simple as just (A &lt;=3D val =
&lt;=3D B). But if it has holes in it, then the compiler may need to genera=
te static data, thus making the executable bigger.<br></div></div></blockqu=
ote><div><br></div><div>I don&#39;t see why this problem is any different t=
han optimizing a switch statement.=C2=A0 And you&#39;d have to compare exec=
utable sizes against hand-rolled functionality.</div><div>=C2=A0</div><bloc=
kquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #cc=
c solid;padding-left:1ex"><div dir=3D"ltr"><div>That&#39;s not to say that =
the proposal is wrong or something. But it&#39;s important to recognize tha=
t `is_enum_value&lt;E&gt;` isn&#39;t <i>free</i>.</div></div></blockquote><=
div><br></div><div>No function in the standard is free (well, other than fr=
ee(void*) :-)).</div><div>=C2=A0</div><blockquote class=3D"gmail_quote" sty=
le=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div d=
ir=3D"ltr"><div> Anyone who uses this feature, or functions derived from it=
, needs to know that there is the possibility of bloating their executable.=
</div></div></blockquote><div><br></div><div>If they need this functionalit=
y, how do they avoid that?=C2=A0 And if they don&#39;t, why is this adding =
anything to the size of the executable?=C2=A0 I&#39;m not seeing why this i=
sn&#39;t a case of only paying for it if you use it.=C2=A0</div></div>-- <b=
r><div class=3D"gmail_signature" data-smartmail=3D"gmail_signature"><div di=
r=3D"ltr"><div><div dir=3D"ltr"><div>=C2=A0Nevin &quot;:-)&quot; Liber=C2=
=A0 &lt;mailto:<a href=3D"mailto:nevin@eviloverlord.com" target=3D"_blank">=
nevin@eviloverlord.com</a>&gt; =C2=A0+1-847-691-1404</div></div></div></div=
></div>
</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAGg_6%2BOPVW%3DbWXLdtvo%2Bgn9jRseKVh=
8CMye-rXBbJbVDhFvEFQ%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfoote=
r">https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAGg_6%2BOP=
VW%3DbWXLdtvo%2Bgn9jRseKVh8CMye-rXBbJbVDhFvEFQ%40mail.gmail.com</a>.<br />

--94eb2c1e9f341a00bc0566747d4d--

.


Author: Tony V E <tvaneerd@gmail.com>
Date: Fri, 2 Mar 2018 16:44:07 -0500
Raw View
--001a113cd05a38c41a056674e04d
Content-Type: text/plain; charset="UTF-8"

On Fri, Mar 2, 2018 at 4:01 PM, Nevin Liber <nevin@eviloverlord.com> wrote:

> On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <tvaneerd@gmail.com> wrote:
>
>> enum Colour { Red = 1, Green, Blue, Etc };
>>
>> Colour col = Colour{};  // col == 0 now.(IIUC), not Red
>>
>> 0 is in some sense (ie in the language) a valid Colour enum value.  But I
>> assume you don't want it to be considered valid.
>>
>
> Why is that any different than
>
> Colour col = Colour{5};
>


Not much I guess, other than one seems more intentional than the other.
The 0 seems to crop up in "normal" code.  5 only crops up in
deserialization, which enum_cast would catch (or throw, actually :-).


--
Be seeing you,
Tony

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAOHCbisfrhW3Vu4Ji3RC7k8XCX6OatPeZdZjnp7Z-HC8heTYig%40mail.gmail.com.

--001a113cd05a38c41a056674e04d
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><div class=3D"gmail_extra"><br><div class=3D"gmail_quo=
te">On Fri, Mar 2, 2018 at 4:01 PM, Nevin Liber <span dir=3D"ltr">&lt;<a hr=
ef=3D"mailto:nevin@eviloverlord.com" target=3D"_blank">nevin@eviloverlord.c=
om</a>&gt;</span> wrote:<br><blockquote class=3D"gmail_quote" style=3D"marg=
in:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"=
><span class=3D"">On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <span dir=3D"ltr=
">&lt;<a href=3D"mailto:tvaneerd@gmail.com" target=3D"_blank">tvaneerd@gmai=
l.com</a>&gt;</span> wrote:<br></span><div class=3D"gmail_extra"><div class=
=3D"gmail_quote"><span class=3D""><blockquote class=3D"gmail_quote" style=
=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=
=3D"ltr"><div class=3D"gmail_extra">enum Colour { Red =3D 1, Green, Blue, E=
tc };<br><br></div><div class=3D"gmail_extra">Colour col =3D Colour{};=C2=
=A0 // col =3D=3D 0 now.(IIUC), not Red<br></div><div class=3D"gmail_extra"=
><br></div><div class=3D"gmail_extra">0 is in some sense (ie in the languag=
e) a valid Colour enum value.=C2=A0 But I assume you don&#39;t want it to b=
e considered valid.<br></div></div></blockquote><div><br></div></span><div>=
Why is that any different than</div><div><br></div><div>Colour col =3D Colo=
ur{5};</div></div></div></div></blockquote><div><br><br></div><div>Not much=
 I guess, other than one seems more intentional than the other.=C2=A0 The 0=
 seems to crop up in &quot;normal&quot; code.=C2=A0 5 only crops up in dese=
rialization, which enum_cast would catch (or throw, actually :-).<br clear=
=3D"all"></div></div><br><br>-- <br><div class=3D"gmail_signature" data-sma=
rtmail=3D"gmail_signature"><div dir=3D"ltr"><div>Be seeing you,<br></div>To=
ny<br></div></div>
</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAOHCbisfrhW3Vu4Ji3RC7k8XCX6OatPeZdZj=
np7Z-HC8heTYig%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">htt=
ps://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAOHCbisfrhW3Vu4J=
i3RC7k8XCX6OatPeZdZjnp7Z-HC8heTYig%40mail.gmail.com</a>.<br />

--001a113cd05a38c41a056674e04d--

.


Author: Jon Ringle <jon@ringle.org>
Date: Fri, 2 Mar 2018 17:53:29 -0500
Raw View
--001a1148b2045a76ad056675d863
Content-Type: text/plain; charset="UTF-8"

On Fri, Mar 2, 2018 at 4:44 PM, Tony V E <tvaneerd@gmail.com> wrote:

>
>
> On Fri, Mar 2, 2018 at 4:01 PM, Nevin Liber <nevin@eviloverlord.com>
> wrote:
>
>> On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <tvaneerd@gmail.com> wrote:
>>
>>> enum Colour { Red = 1, Green, Blue, Etc };
>>>
>>> Colour col = Colour{};  // col == 0 now.(IIUC), not Red
>>>
>>> 0 is in some sense (ie in the language) a valid Colour enum value.  But
>>> I assume you don't want it to be considered valid.
>>>
>>
>> Why is that any different than
>>
>> Colour col = Colour{5};
>>
>
>
> Not much I guess, other than one seems more intentional than the other.
> The 0 seems to crop up in "normal" code.  5 only crops up in
> deserialization, which enum_cast would catch (or throw, actually :-).
>
>
>
Not being a language lawyer, to me this seems like the language allows the
initialization of an enum instance with an invalid value. I don't see this
as being in-scope of the is_enum_value<E> proposal, but rather perhaps just
a side note that it is possible to do. But that seems like a case that is
already known. The is_enum_value<E> function is concerned with validating
that the passed in underlying type value is indeed a value that is present
in the list of enumerator values. It does not do any assignment to an enum
type. It only indicates whether or not it is safe to do so.

-Jon

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAMwGMjwgKtYMB3RhXHs-gCDncywyJ0BD%2BS8%3DVXLzv%3DR62eJmGQ%40mail.gmail.com.

--001a1148b2045a76ad056675d863
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><div class=3D"gmail_extra"><br><div class=3D"gmail_quo=
te">On Fri, Mar 2, 2018 at 4:44 PM, Tony V E <span dir=3D"ltr">&lt;<a href=
=3D"mailto:tvaneerd@gmail.com" target=3D"_blank">tvaneerd@gmail.com</a>&gt;=
</span> wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .=
8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><br><div =
class=3D"gmail_extra"><br><div class=3D"gmail_quote"><span class=3D"">On Fr=
i, Mar 2, 2018 at 4:01 PM, Nevin Liber <span dir=3D"ltr">&lt;<a href=3D"mai=
lto:nevin@eviloverlord.com" target=3D"_blank">nevin@eviloverlord.com</a>&gt=
;</span> wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 =
..8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><span>On=
 Fri, Mar 2, 2018 at 2:33 PM, Tony V E <span dir=3D"ltr">&lt;<a href=3D"mai=
lto:tvaneerd@gmail.com" target=3D"_blank">tvaneerd@gmail.com</a>&gt;</span>=
 wrote:<br></span><div class=3D"gmail_extra"><div class=3D"gmail_quote"><sp=
an><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left=
:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div class=3D"gmail_extr=
a">enum Colour { Red =3D 1, Green, Blue, Etc };<br><br></div><div class=3D"=
gmail_extra">Colour col =3D Colour{};=C2=A0 // col =3D=3D 0 now.(IIUC), not=
 Red<br></div><div class=3D"gmail_extra"><br></div><div class=3D"gmail_extr=
a">0 is in some sense (ie in the language) a valid Colour enum value.=C2=A0=
 But I assume you don&#39;t want it to be considered valid.<br></div></div>=
</blockquote><div><br></div></span><div>Why is that any different than</div=
><div><br></div><div>Colour col =3D Colour{5};</div></div></div></div></blo=
ckquote><div><br><br></div></span><div>Not much I guess, other than one see=
ms more intentional than the other.=C2=A0 The 0 seems to crop up in &quot;n=
ormal&quot; code.=C2=A0 5 only crops up in deserialization, which enum_cast=
 would catch (or throw, actually :-).<br clear=3D"all"></div></div><span cl=
ass=3D""><br><br></span></div></div></blockquote><div><br></div><div>Not be=
ing a language lawyer, to me this seems like the language allows the initia=
lization of an enum instance with an invalid value. I don&#39;t see this as=
 being in-scope of the is_enum_value&lt;E&gt; proposal, but rather perhaps =
just a side note that it is possible to do. But that seems like a case that=
 is already known. The is_enum_value&lt;E&gt; function is concerned with va=
lidating that the passed in underlying type value is indeed a value that is=
 present in the list of enumerator values. It does not do any assignment to=
 an enum type. It only indicates whether or not it is safe to do so.</div><=
div><br></div><div>-Jon</div></div></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAMwGMjwgKtYMB3RhXHs-gCDncywyJ0BD%2BS=
8%3DVXLzv%3DR62eJmGQ%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfoote=
r">https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAMwGMjwgKt=
YMB3RhXHs-gCDncywyJ0BD%2BS8%3DVXLzv%3DR62eJmGQ%40mail.gmail.com</a>.<br />

--001a1148b2045a76ad056675d863--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Fri, 2 Mar 2018 15:54:27 -0800 (PST)
Raw View
------=_Part_6314_1384565991.1520034867564
Content-Type: multipart/alternative;
 boundary="----=_Part_6315_982664624.1520034867564"

------=_Part_6315_982664624.1520034867564
Content-Type: text/plain; charset="UTF-8"



On Friday, March 2, 2018 at 3:33:25 PM UTC-5, Tony V E wrote:

> P.S. there is a strange issue with 0 with enums.  Consider:
>
> enum Colour { Red = 1, Green, Blue, Etc };
>
> Colour col = Colour{};  // col == 0 now.(IIUC), not Red
>
> 0 is in some sense (ie in the language) a valid Colour enum value.  But I
> assume you don't want it to be considered valid.
>
> Actually, I think you could probably ignore this issue, or just mention it
> in passing (ie it might end up being a Note in the standard) that
> is_enum_value() will consider 0 invalid if it is not one of the enumerators.
> Or, leave this level of detail to the LWG guys.  It's what they live for
> :-)
>

I don't think it's a problem. `is_enum_value`, the way I originally defined
it, takes integers of the underlying type. So if `Colour` were a scoped
enum, you couldn't invoke `is_enum_value<Colour>(col)`.

But that leads to an interesting question: do we want an overload of
`is_enum_value` that takes values of the enumeration type itself as well?

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/111c5953-37df-4dab-9908-b219d46ef261%40isocpp.org.

------=_Part_6315_982664624.1520034867564
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Friday, March 2, 2018 at 3:33:25 PM UTC-5, Tony=
 V E wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-=
left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr=
"><div></div><div>P.S. there is a strange issue with 0 with enums.=C2=A0 Co=
nsider:<br><br></div><div>enum Colour { Red =3D 1, Green, Blue, Etc };<br><=
br></div><div>Colour col =3D Colour{};=C2=A0 // col =3D=3D 0 now.(IIUC), no=
t Red<br></div><div><br></div><div>0 is in some sense (ie in the language) =
a valid Colour enum value.=C2=A0 But I assume you don&#39;t want it to be c=
onsidered valid.<br><br></div><div>Actually, I think you could probably ign=
ore this issue, or just mention it in passing (ie it might end up being a N=
ote in the standard) that is_enum_value() will consider 0 invalid if it is =
not one of the enumerators.<br></div><div>Or, leave this level of detail to=
 the LWG guys.=C2=A0 It&#39;s what they live for :-)<br></div></div></block=
quote><div><br>I don&#39;t think it&#39;s a problem. `is_enum_value`, the w=
ay I originally defined it, takes integers of the underlying type. So if `C=
olour` were a scoped enum, you couldn&#39;t invoke `is_enum_value&lt;Colour=
&gt;(col)`.<br><br>But that leads to an interesting question: do we want an=
 overload of `is_enum_value` that takes values of the enumeration type itse=
lf as well?<br></div><br></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/111c5953-37df-4dab-9908-b219d46ef261%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/111c5953-37df-4dab-9908-b219d46ef261=
%40isocpp.org</a>.<br />

------=_Part_6315_982664624.1520034867564--

------=_Part_6314_1384565991.1520034867564--

.


Author: Jon Ringle <jon@ringle.org>
Date: Fri, 2 Mar 2018 20:44:39 -0500
Raw View
--f403045d727280954e0566783c22
Content-Type: text/plain; charset="UTF-8"

On Fri, Mar 2, 2018 at 6:54 PM, Nicol Bolas <jmckesson@gmail.com> wrote:

>
>
> On Friday, March 2, 2018 at 3:33:25 PM UTC-5, Tony V E wrote:
>
>> P.S. there is a strange issue with 0 with enums.  Consider:
>>
>> enum Colour { Red = 1, Green, Blue, Etc };
>>
>> Colour col = Colour{};  // col == 0 now.(IIUC), not Red
>>
>> 0 is in some sense (ie in the language) a valid Colour enum value.  But I
>> assume you don't want it to be considered valid.
>>
>> Actually, I think you could probably ignore this issue, or just mention
>> it in passing (ie it might end up being a Note in the standard) that
>> is_enum_value() will consider 0 invalid if it is not one of the enumerators.
>> Or, leave this level of detail to the LWG guys.  It's what they live for
>> :-)
>>
>
> I don't think it's a problem. `is_enum_value`, the way I originally
> defined it, takes integers of the underlying type. So if `Colour` were a
> scoped enum, you couldn't invoke `is_enum_value<Colour>(col)`.
>
> But that leads to an interesting question: do we want an overload of
> `is_enum_value` that takes values of the enumeration type itself as well?
>

Since it is possible to initialize an enum variable with a value that is
not an enumerator in the enumeration (which I'll call an invalid value), it
seems reasonable to me that someone may want to validate that an enum
variable does hold a valid value. Although, we could overload
is_enum_value<E>(E), it seems to me that a better name for this usecase
would be something like is_enum_valid<E>(E).

option 1: Use is_enum_value overloaded:
template <typename E> requires is_enum<E>
constexpr bool is_enum_value(underlying_type_t<E>);

template <typename E> requires is_enum<E>
constexpr bool is_enum_value(E);

option 2: No overloading. Different names:
template <typename E> requires is_enum<E>
constexpr bool is_enum_value(underlying_type_t<E>);

template <typename E> requires is_enum<E>
constexpr bool is_enum_valid(E);

option 3: Use is_enum_valid overloaded:
template <typename E> requires is_enum<E>
constexpr bool is_enum_valid(underlying_type_t<E>);

template <typename E> requires is_enum<E>
constexpr bool is_enum_valid(E);

option 4: Use is_enum_value_valid overloaded:
template <typename E> requires is_enum<E>
constexpr bool is_enum_value_valid(underlying_type_t<E>);

template <typename E> requires is_enum<E>
constexpr bool is_enum_value_valid(E);

I like option 3 or 4 personally. Opinions?

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAMwGMjyC0uXN2wz3XQm%3D6FWH-ggW4OiSE%3D4ozvf6NngJ0kOq8A%40mail.gmail.com.

--f403045d727280954e0566783c22
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div class=3D"gmail_extra"><div class=3D"gmail_quote">On F=
ri, Mar 2, 2018 at 6:54 PM, Nicol Bolas <span dir=3D"ltr">&lt;<a href=3D"ma=
ilto:jmckesson@gmail.com" target=3D"_blank">jmckesson@gmail.com</a>&gt;</sp=
an> wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;=
border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><span class=
=3D""><br><br>On Friday, March 2, 2018 at 3:33:25 PM UTC-5, Tony V E wrote:=
<br><blockquote class=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;b=
order-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div></div><di=
v>P.S. there is a strange issue with 0 with enums.=C2=A0 Consider:<br><br><=
/div><div>enum Colour { Red =3D 1, Green, Blue, Etc };<br><br></div><div>Co=
lour col =3D Colour{};=C2=A0 // col =3D=3D 0 now.(IIUC), not Red<br></div><=
div><br></div><div>0 is in some sense (ie in the language) a valid Colour e=
num value.=C2=A0 But I assume you don&#39;t want it to be considered valid.=
<br><br></div><div>Actually, I think you could probably ignore this issue, =
or just mention it in passing (ie it might end up being a Note in the stand=
ard) that is_enum_value() will consider 0 invalid if it is not one of the e=
numerators.<br></div><div>Or, leave this level of detail to the LWG guys.=
=C2=A0 It&#39;s what they live for :-)<br></div></div></blockquote></span><=
div><br>I don&#39;t think it&#39;s a problem. `is_enum_value`, the way I or=
iginally defined it, takes integers of the underlying type. So if `Colour` =
were a scoped enum, you couldn&#39;t invoke `is_enum_value&lt;Colour&gt;(co=
l)`.<br><br>But that leads to an interesting question: do we want an overlo=
ad of `is_enum_value` that takes values of the enumeration type itself as w=
ell?<br></div></div></blockquote></div><br></div><div class=3D"gmail_extra"=
>Since it is possible to initialize an enum variable with a value that is n=
ot an enumerator in the enumeration (which I&#39;ll call an invalid value),=
 it seems reasonable to me that someone may want to validate that an enum v=
ariable does hold a valid value. Although, we could overload is_enum_value&=
lt;E&gt;(E), it seems to me that a better name for this usecase would be so=
mething like is_enum_valid&lt;E&gt;(E).</div><div class=3D"gmail_extra"><br=
></div><div class=3D"gmail_extra">option 1: Use is_enum_value overloaded:</=
div><div class=3D"gmail_extra">template &lt;typename E&gt; requires is_enum=
&lt;E&gt;</div><div class=3D"gmail_extra">constexpr bool is_enum_value(unde=
rlying_type_t&lt;E&gt;);</div><div class=3D"gmail_extra"><div class=3D"gmai=
l_extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-siz=
e:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:n=
ormal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0p=
x;text-transform:none;white-space:normal;word-spacing:0px;text-decoration-s=
tyle:initial;text-decoration-color:initial"><br></div><div class=3D"gmail_e=
xtra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:s=
mall;font-style:normal;font-variant-ligatures:normal;font-variant-caps:norm=
al;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;t=
ext-transform:none;white-space:normal;word-spacing:0px;text-decoration-styl=
e:initial;text-decoration-color:initial">template &lt;typename E&gt; requir=
es is_enum&lt;E&gt;</div><div class=3D"gmail_extra" style=3D"color:rgb(34,3=
4,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-v=
ariant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spa=
cing:normal;text-align:start;text-indent:0px;text-transform:none;white-spac=
e:normal;word-spacing:0px;text-decoration-style:initial;text-decoration-col=
or:initial">constexpr bool is_enum_value(E);</div><div class=3D"gmail_extra=
"><br></div>option 2: No overloading. Different names:</div><div class=3D"g=
mail_extra"><div class=3D"gmail_extra">template &lt;typename E&gt; requires=
 is_enum&lt;E&gt;</div><div class=3D"gmail_extra">constexpr bool is_enum_va=
lue(underlying_type_t&lt;E&gt;);</div><div class=3D"gmail_extra"><div class=
=3D"gmail_extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;=
font-size:small;font-style:normal;font-variant-ligatures:normal;font-varian=
t-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-i=
ndent:0px;text-transform:none;white-space:normal;word-spacing:0px;backgroun=
d-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-colo=
r:initial"><br></div><div class=3D"gmail_extra" style=3D"color:rgb(34,34,34=
);font-family:arial,sans-serif;font-size:small;font-style:normal;font-varia=
nt-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing=
:normal;text-align:start;text-indent:0px;text-transform:none;white-space:no=
rmal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-sty=
le:initial;text-decoration-color:initial">template &lt;typename E&gt; requi=
res is_enum&lt;E&gt;</div><div class=3D"gmail_extra" style=3D"color:rgb(34,=
34,34);font-family:arial,sans-serif;font-size:small;font-style:normal;font-=
variant-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-sp=
acing:normal;text-align:start;text-indent:0px;text-transform:none;white-spa=
ce:normal;word-spacing:0px;background-color:rgb(255,255,255);text-decoratio=
n-style:initial;text-decoration-color:initial">constexpr bool is_enum_valid=
(E);</div><br class=3D"gmail-Apple-interchange-newline"></div>option 3: Use=
 is_enum_valid overloaded:</div><div class=3D"gmail_extra"><div class=3D"gm=
ail_extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-s=
ize:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps=
:normal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:=
0px;text-transform:none;white-space:normal;word-spacing:0px;background-colo=
r:rgb(255,255,255);text-decoration-style:initial;text-decoration-color:init=
ial">template &lt;typename E&gt; requires is_enum&lt;E&gt;</div><div class=
=3D"gmail_extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;=
font-size:small;font-style:normal;font-variant-ligatures:normal;font-varian=
t-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-i=
ndent:0px;text-transform:none;white-space:normal;word-spacing:0px;backgroun=
d-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-colo=
r:initial">constexpr bool is_enum_valid(underlying_type_t&lt;E&gt;);</div><=
div class=3D"gmail_extra" style=3D"color:rgb(34,34,34);font-family:arial,sa=
ns-serif;font-size:small;font-style:normal;font-variant-ligatures:normal;fo=
nt-variant-caps:normal;font-weight:400;letter-spacing:normal;text-align:sta=
rt;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;=
background-color:rgb(255,255,255);text-decoration-style:initial;text-decora=
tion-color:initial"><div class=3D"gmail_extra" style=3D"color:rgb(34,34,34)=
;font-family:arial,sans-serif;font-size:small;font-style:normal;font-varian=
t-ligatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:=
normal;text-align:start;text-indent:0px;text-transform:none;white-space:nor=
mal;word-spacing:0px;background-color:rgb(255,255,255);text-decoration-styl=
e:initial;text-decoration-color:initial"><br></div><div class=3D"gmail_extr=
a" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:smal=
l;font-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;=
font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text=
-transform:none;white-space:normal;word-spacing:0px;background-color:rgb(25=
5,255,255);text-decoration-style:initial;text-decoration-color:initial">tem=
plate &lt;typename E&gt; requires is_enum&lt;E&gt;</div><div class=3D"gmail=
_extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size=
:small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:no=
rmal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px=
;text-transform:none;white-space:normal;word-spacing:0px;background-color:r=
gb(255,255,255);text-decoration-style:initial;text-decoration-color:initial=
">constexpr bool is_enum_valid(E);</div></div><br class=3D"gmail-Apple-inte=
rchange-newline"><div class=3D"gmail_extra" style=3D"color:rgb(34,34,34);fo=
nt-family:arial,sans-serif;font-size:small;font-style:normal;font-variant-l=
igatures:normal;font-variant-caps:normal;font-weight:400;letter-spacing:nor=
mal;text-align:start;text-indent:0px;text-transform:none;white-space:normal=
;word-spacing:0px;text-decoration-style:initial;text-decoration-color:initi=
al">option 4: Use is_enum_value_valid overloaded:</div><div class=3D"gmail_=
extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:=
small;font-style:normal;font-variant-ligatures:normal;font-variant-caps:nor=
mal;font-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;=
text-transform:none;white-space:normal;word-spacing:0px;text-decoration-sty=
le:initial;text-decoration-color:initial"><div class=3D"gmail_extra" style=
=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-s=
tyle:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-wei=
ght:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transfo=
rm:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,25=
5);text-decoration-style:initial;text-decoration-color:initial">template &l=
t;typename E&gt; requires is_enum&lt;E&gt;</div><div class=3D"gmail_extra" =
style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;f=
ont-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;fon=
t-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-tr=
ansform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,2=
55,255);text-decoration-style:initial;text-decoration-color:initial">conste=
xpr bool is_enum_value_valid(underlying_type_t&lt;E&gt;);</div><div class=
=3D"gmail_extra" style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;=
font-size:small;font-style:normal;font-variant-ligatures:normal;font-varian=
t-caps:normal;font-weight:400;letter-spacing:normal;text-align:start;text-i=
ndent:0px;text-transform:none;white-space:normal;word-spacing:0px;backgroun=
d-color:rgb(255,255,255);text-decoration-style:initial;text-decoration-colo=
r:initial"><div class=3D"gmail_extra" style=3D"color:rgb(34,34,34);font-fam=
ily:arial,sans-serif;font-size:small;font-style:normal;font-variant-ligatur=
es:normal;font-variant-caps:normal;font-weight:400;letter-spacing:normal;te=
xt-align:start;text-indent:0px;text-transform:none;white-space:normal;word-=
spacing:0px;background-color:rgb(255,255,255);text-decoration-style:initial=
;text-decoration-color:initial"><br></div><div class=3D"gmail_extra" style=
=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;font-s=
tyle:normal;font-variant-ligatures:normal;font-variant-caps:normal;font-wei=
ght:400;letter-spacing:normal;text-align:start;text-indent:0px;text-transfo=
rm:none;white-space:normal;word-spacing:0px;background-color:rgb(255,255,25=
5);text-decoration-style:initial;text-decoration-color:initial">template &l=
t;typename E&gt; requires is_enum&lt;E&gt;</div><div class=3D"gmail_extra" =
style=3D"color:rgb(34,34,34);font-family:arial,sans-serif;font-size:small;f=
ont-style:normal;font-variant-ligatures:normal;font-variant-caps:normal;fon=
t-weight:400;letter-spacing:normal;text-align:start;text-indent:0px;text-tr=
ansform:none;white-space:normal;word-spacing:0px;background-color:rgb(255,2=
55,255);text-decoration-style:initial;text-decoration-color:initial">conste=
xpr bool is_enum_value_valid(E);</div></div></div><br class=3D"gmail-Apple-=
interchange-newline">I like option 3 or 4 personally. Opinions?<br class=3D=
"gmail-Apple-interchange-newline"><br></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAMwGMjyC0uXN2wz3XQm%3D6FWH-ggW4OiSE%=
3D4ozvf6NngJ0kOq8A%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter"=
>https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAMwGMjyC0uXN=
2wz3XQm%3D6FWH-ggW4OiSE%3D4ozvf6NngJ0kOq8A%40mail.gmail.com</a>.<br />

--f403045d727280954e0566783c22--

.


Author: jonringle@gmail.com
Date: Fri, 2 Mar 2018 23:48:26 -0800 (PST)
Raw View
------=_Part_7175_882161480.1520063306576
Content-Type: multipart/alternative;
 boundary="----=_Part_7176_736739905.1520063306577"

------=_Part_7176_736739905.1520063306577
Content-Type: text/plain; charset="UTF-8"



On Friday, March 2, 2018 at 4:02:33 PM UTC-5, Nevin ":-)" Liber wrote:
>
> On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <tvan...@gmail.com <javascript:>>
> wrote:
>
>> enum Colour { Red = 1, Green, Blue, Etc };
>>
>> Colour col = Colour{};  // col == 0 now.(IIUC), not Red
>>
>> 0 is in some sense (ie in the language) a valid Colour enum value.  But I
>> assume you don't want it to be considered valid.
>>
>
> Why is that any different than
>
> Colour col = Colour{5};
>

enum Color { Red = 1, Blue, Green };


int main()
{
    Color color0{};
    Color color5{5};
    (void)color0;
    (void)color5;
}


produces the following compilation error:

prog.cc: In function 'int main()':
prog.cc:10:19: error: invalid conversion from 'int' to 'Color' [-fpermissive]
     Color color5{5};
                   ^




> --
>  Nevin ":-)" Liber  <mailto:ne...@eviloverlord.com <javascript:>>
>  +1-847-691-1404
>

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/38a5182e-25f0-4a5d-8327-db0509a176dd%40isocpp.org.

------=_Part_7176_736739905.1520063306577
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Friday, March 2, 2018 at 4:02:33 PM UTC-5, Nevi=
n &quot;:-)&quot; Liber wrote:<blockquote class=3D"gmail_quote" style=3D"ma=
rgin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;">=
<div dir=3D"ltr">On Fri, Mar 2, 2018 at 2:33 PM, Tony V E <span dir=3D"ltr"=
>&lt;<a href=3D"javascript:" target=3D"_blank" gdf-obfuscated-mailto=3D"038=
BkeNKCwAJ" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;javascript:&#39=
;;return true;" onclick=3D"this.href=3D&#39;javascript:&#39;;return true;">=
tvan...@gmail.com</a>&gt;</span> wrote:<br><div><div class=3D"gmail_quote">=
<blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1p=
x #ccc solid;padding-left:1ex"><div dir=3D"ltr"><div>enum Colour { Red =3D =
1, Green, Blue, Etc };<br><br></div><div>Colour col =3D Colour{};=C2=A0 // =
col =3D=3D 0 now.(IIUC), not Red<br></div><div><br></div><div>0 is in some =
sense (ie in the language) a valid Colour enum value.=C2=A0 But I assume yo=
u don&#39;t want it to be considered valid.<br></div></div></blockquote><di=
v><br></div><div>Why is that any different than</div><div><br></div><div>Co=
lour col =3D Colour{5};</div></div></div></div></blockquote><div><br></div>=
<div class=3D"prettyprint" style=3D"background-color: rgb(250, 250, 250); b=
order-color: rgb(187, 187, 187); border-style: solid; border-width: 1px; wo=
rd-wrap: break-word;"><code class=3D"prettyprint"><div class=3D"subprettypr=
int"><span style=3D"color: #008;" class=3D"styled-by-prettify">enum</span><=
span style=3D"color: #000;" class=3D"styled-by-prettify"> </span><span styl=
e=3D"color: #606;" class=3D"styled-by-prettify">Color</span><span style=3D"=
color: #000;" class=3D"styled-by-prettify"> </span><span style=3D"color: #6=
60;" class=3D"styled-by-prettify">{</span><span style=3D"color: #000;" clas=
s=3D"styled-by-prettify"> </span><span style=3D"color: #606;" class=3D"styl=
ed-by-prettify">Red</span><span style=3D"color: #000;" class=3D"styled-by-p=
rettify"> </span><span style=3D"color: #660;" class=3D"styled-by-prettify">=
=3D</span><span style=3D"color: #000;" class=3D"styled-by-prettify"> </span=
><span style=3D"color: #066;" class=3D"styled-by-prettify">1</span><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify">,</span><span style=3D"co=
lor: #000;" class=3D"styled-by-prettify"> </span><span style=3D"color: #606=
;" class=3D"styled-by-prettify">Blue</span><span style=3D"color: #660;" cla=
ss=3D"styled-by-prettify">,</span><span style=3D"color: #000;" class=3D"sty=
led-by-prettify"> </span><span style=3D"color: #606;" class=3D"styled-by-pr=
ettify">Green</span><span style=3D"color: #000;" class=3D"styled-by-prettif=
y"> </span><span style=3D"color: #660;" class=3D"styled-by-prettify">};</sp=
an><span style=3D"color: #000;" class=3D"styled-by-prettify"><br><br><br></=
span><span style=3D"color: #008;" class=3D"styled-by-prettify">int</span><s=
pan style=3D"color: #000;" class=3D"styled-by-prettify"> main</span><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">()</span><span style=3D"=
color: #000;" class=3D"styled-by-prettify"><br></span><span style=3D"color:=
 #660;" class=3D"styled-by-prettify">{</span><span style=3D"color: #000;" c=
lass=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span style=3D"color: =
#606;" class=3D"styled-by-prettify">Color</span><span style=3D"color: #000;=
" class=3D"styled-by-prettify"> color0</span><span style=3D"color: #660;" c=
lass=3D"styled-by-prettify">{};</span><span style=3D"color: #000;" class=3D=
"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span style=3D"color: #606;" =
class=3D"styled-by-prettify">Color</span><span style=3D"color: #000;" class=
=3D"styled-by-prettify"> color5</span><span style=3D"color: #660;" class=3D=
"styled-by-prettify">{</span><span style=3D"color: #066;" class=3D"styled-b=
y-prettify">5</span><span style=3D"color: #660;" class=3D"styled-by-prettif=
y">};</span><span style=3D"color: #000;" class=3D"styled-by-prettify"><br>=
=C2=A0 =C2=A0 </span><span style=3D"color: #660;" class=3D"styled-by-pretti=
fy">(</span><span style=3D"color: #008;" class=3D"styled-by-prettify">void<=
/span><span style=3D"color: #660;" class=3D"styled-by-prettify">)</span><sp=
an style=3D"color: #000;" class=3D"styled-by-prettify">color0</span><span s=
tyle=3D"color: #660;" class=3D"styled-by-prettify">;</span><span style=3D"c=
olor: #000;" class=3D"styled-by-prettify"><br>=C2=A0 =C2=A0 </span><span st=
yle=3D"color: #660;" class=3D"styled-by-prettify">(</span><span style=3D"co=
lor: #008;" class=3D"styled-by-prettify">void</span><span style=3D"color: #=
660;" class=3D"styled-by-prettify">)</span><span style=3D"color: #000;" cla=
ss=3D"styled-by-prettify">color5</span><span style=3D"color: #660;" class=
=3D"styled-by-prettify">;</span><span style=3D"color: #000;" class=3D"style=
d-by-prettify"><br></span><span style=3D"color: #660;" class=3D"styled-by-p=
rettify">}</span><span style=3D"color: #000;" class=3D"styled-by-prettify">=
<br><br></span></div></code></div><div><br></div><div>produces the followin=
g compilation error:</div><div><pre class=3D"CompilerMessageE" data-type=3D=
"CompilerMessageE" data-text=3D"prog.cc: In function &#39;int main()&#39;:
prog.cc:10:19: error: invalid conversion from &#39;int&#39; to &#39;Color&#=
39; [-fpermissive]
     Color color5{5};
                   ^
" style=3D"box-sizing: border-box; overflow: auto; font-family: &quot;Couri=
er New&quot;, monospace; line-height: 1.42857; color: rgb(255, 0, 0); word-=
break: break-all; word-wrap: break-word; background-color: rgb(0, 0, 0); bo=
rder-radius: 4px;">prog.cc: In function &#39;int main()&#39;:
prog.cc:10:19: error: invalid conversion from &#39;int&#39; to &#39;Color&#=
39; [-fpermissive]
     Color color5{5};
                   ^
</pre><div><br></div>=C2=A0</div><blockquote class=3D"gmail_quote" style=3D=
"margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex=
;"><div dir=3D"ltr"><div><div class=3D"gmail_quote"><div>--=C2=A0<br></div>=
</div><div><div dir=3D"ltr"><div><div dir=3D"ltr"><div>=C2=A0Nevin &quot;:-=
)&quot; Liber=C2=A0 &lt;mailto:<a href=3D"javascript:" target=3D"_blank" gd=
f-obfuscated-mailto=3D"038BkeNKCwAJ" rel=3D"nofollow" onmousedown=3D"this.h=
ref=3D&#39;javascript:&#39;;return true;" onclick=3D"this.href=3D&#39;javas=
cript:&#39;;return true;">ne...@eviloverlord.com</a><wbr>&gt; =C2=A0+1-847-=
691-1404</div></div></div></div></div>
</div></div>
</blockquote></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/38a5182e-25f0-4a5d-8327-db0509a176dd%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/38a5182e-25f0-4a5d-8327-db0509a176dd=
%40isocpp.org</a>.<br />

------=_Part_7176_736739905.1520063306577--

------=_Part_7175_882161480.1520063306576--

.


Author: jonringle@gmail.com
Date: Sat, 3 Mar 2018 00:22:20 -0800 (PST)
Raw View
------=_Part_7305_1024310533.1520065341251
Content-Type: multipart/alternative;
 boundary="----=_Part_7306_91829454.1520065341251"

------=_Part_7306_91829454.1520065341251
Content-Type: text/plain; charset="UTF-8"

Thank you for the feedback so far.
Here is the next revision that considers much of the feedback given thus
far:
 is_enum_value-d0974r1.pdf
<https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=sharing>

As always, comments welcome!

-Jon

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/e59e956c-e67c-4fb3-a3d0-62bb37e32968%40isocpp.org.

------=_Part_7306_91829454.1520065341251
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Thank you for the feedback so far.<div>Here is the next re=
vision that considers much of the feedback given thus far:</div><div>=C2=A0=
<a href=3D"https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zk=
w/view?usp=3Dsharing">is_enum_value-d0974r1.pdf</a><br></div><div><br></div=
><div>As always, comments welcome!</div><div><br></div><div>-Jon</div></div=
>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/e59e956c-e67c-4fb3-a3d0-62bb37e32968%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/e59e956c-e67c-4fb3-a3d0-62bb37e32968=
%40isocpp.org</a>.<br />

------=_Part_7306_91829454.1520065341251--

------=_Part_7305_1024310533.1520065341251--

.


Author: Bjorn Reese <breese@mail1.stofanet.dk>
Date: Sat, 3 Mar 2018 16:50:59 +0100
Raw View
On 03/03/18 09:22, jonringle@gmail.com wrote:

> Here is the next revision that considers much of the feedback given thus
> far:
> is_enum_value-d0974r1.pdf
> <https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=sharing>

I would drop the trait, and instead focus on how it can be integrated
with the reflexpr proposals.

You could strengthen the proposal by adding a use-case that illustrates
how other parts of the C++ standard introduces the need for this
functionality.

One possible use-case is std::error_category. When defining a custom
error codes using <system_error>, you have to implement a custom
error_category. This requires an implementation of the message function
which takes the error value as a type-erased underlying type instead of
your custom enum type.

Omitting lots of boiler-plate code:

enum class errc
{
   one_error = 1,
   another_error
};

class my_error_category : public std::error_category
{
public:
   std::string message(int value) const
   {
     if (is_error_value<errc>(value))
     {
       switch (static_cast<errc>(value))
       {
       case errc::one_error:
         return "one error";
       case errc::another_error:
         return "another error";
       // Omitted default: to get compiler warnings for missing enums
       }
       return "I forgot to update switch statement with new errc values";
     }
     return "somebody smuggled a non-enum value into our category";
   }
};

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/a559fffa-4e3e-7775-0eca-e06073c3e9d0%40mail1.stofanet.dk.

.


Author: "Vicente J. Botet Escriba" <vicente.botet@wanadoo.fr>
Date: Sat, 3 Mar 2018 17:49:50 +0100
Raw View
This is a multi-part message in MIME format.
--------------95DC0BDB441C6DA216415DC1
Content-Type: text/plain; charset="UTF-8"; format=flowed
Content-Transfer-Encoding: quoted-printable

Le 03/03/2018 =C3=A0 09:22, jonringle@gmail.com a =C3=A9crit=C2=A0:
> Thank you for the feedback so far.
> Here is the next revision that considers much of the feedback given=20
> thus far:
> is_enum_value-d0974r1.pdf=20
> <https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?u=
sp=3Dsharing>
>
> As always, comments welcome!
>

I find the functions useful. However I would suggest some changes.

It is worth mentioning that enums can have a floating point underlying=20
type, and so the function couldn't work on this case.

I would like first a function that check if the underlying value is in=20
the range of possible values, so that we can avoid UB.

 =C2=A0=C2=A0=C2=A0 bool is_valid_underlying_value<E>(UT);

from http://en.cppreference.com/w/cpp/language/enum

    Values of integer, floating-point, and other enumeration types can
    be converted by static_cast
    <http://en.cppreference.com/w/cpp/language/static_cast> or explicit
    cast <http://en.cppreference.com/w/cpp/language/explicit_cast>, to
    any enumeration type. If the underlying type is not fixed and the
    source type is integer type or enumeration, the result is
    unspecified (until C++17)undefined behavior (since C++17) if the
    value, converted to the enumeration's underlying type, is out of
    range (the range is all values possible for the smallest bit field
    large enough to hold all enumerators of the target enumeration).
    Otherwise (underlying type is fixed, or source type is
    floating-point), the result is the same as the result of implicit
    conversion <http://en.cppreference.com/w/cpp/language/implicit_cast>
    to the underlying type. Note that the value after such conversion
    may not necessarily equal any of the named enumerators defined for
    the enumeration.


For the name of the proposed function I would use instead two

 =C2=A0=C2=A0=C2=A0 bool is_enumerator<E>(E);
 =C2=A0=C2=A0=C2=A0 bool is_value_of_enumerator<E>(UT);

both constrained to integral underlying types.

Note that is_value_of_enumerator needs is_valid_underlying_value and can=20
be define as

 =C2=A0=C2=A0=C2=A0 assert(is_valid_underlying_value(u));
 =C2=A0=C2=A0=C2=A0 is_enumerator(E(u))


is_valid_underlying_value is easy to define using some meta-programming.=20
The cost associated could be often nop or minimal.

is_enumerator on the other side would need the reflection facilities or=20
help from the compiler.

As others have suggested, I believe you should compare what we can have=20
with the reflection library (this should be the before of the Tony's table)=
..

In other words I believe the proposal would be reduced to a 3 functions,=20
one of them implementable using the reflection library.

Concerning the initial function enum_cast, I believe it is useful, but I=20
don't know if we consider this a cast. I could live with something like

 =C2=A0=C2=A0=C2=A0 template <class E, class UT>
 =C2=A0=C2=A0=C2=A0 E make_enum<E>(UT);

 =C2=A0=C2=A0=C2=A0 template <class E, class UT>
 =C2=A0=C2=A0=C2=A0 optional<E> try_make_enum(UT);

We could as well have make_enum/try_make_enum from a string.

I'll left the original enum_cast<E>(UT) as a synonym of=20
static_cast<E>(UT). This cast has the advantage to be grepable and catch=20
the intent.

Vicente

P.S. See how GSL uses narrow and narrow_cast (narrow do a check, which=20
narrow_cast don't).

--=20
You received this message because you are subscribed to the Google Groups "=
ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp=
..org/d/msgid/std-proposals/69da5d16-ae0f-d259-0cdb-01ebe79680ca%40wanadoo.f=
r.

--------------95DC0BDB441C6DA216415DC1
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<html>
  <head>
    <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8=
">
  </head>
  <body bgcolor=3D"#FFFFFF" text=3D"#000000">
    <div class=3D"moz-cite-prefix">Le 03/03/2018 =C3=A0 09:22,
      <a class=3D"moz-txt-link-abbreviated" href=3D"mailto:jonringle@gmail.=
com">jonringle@gmail.com</a> a =C3=A9crit=C2=A0:<br>
    </div>
    <blockquote type=3D"cite"
      cite=3D"mid:e59e956c-e67c-4fb3-a3d0-62bb37e32968@isocpp.org">
      <div dir=3D"ltr">Thank you for the feedback so far.
        <div>Here is the next revision that considers much of the
          feedback given thus far:</div>
        <div>=C2=A0<a
href=3D"https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/v=
iew?usp=3Dsharing"
            moz-do-not-send=3D"true">is_enum_value-d0974r1.pdf</a><br>
        </div>
        <div><br>
        </div>
        <div>As always, comments welcome!</div>
        <div><br>
        </div>
      </div>
    </blockquote>
    <br>
    I find the functions useful. However I would suggest some changes.<br>
    <br>
    It is worth mentioning that enums can have a floating point
    underlying type, and so the function couldn't work on this case.<br>
    <br>
    I would like first a function that check if the underlying value is
    in the range of possible values, so that we can avoid UB.<br>
    <br>
    =C2=A0=C2=A0=C2=A0 bool is_valid_underlying_value&lt;E&gt;(UT);<br>
    <br>
    from <a class=3D"moz-txt-link-freetext" href=3D"http://en.cppreference.=
com/w/cpp/language/enum">http://en.cppreference.com/w/cpp/language/enum</a>=
<br>
    <br>
    <blockquote>Values of integer, floating-point, and other enumeration
      types can be converted by <a
        href=3D"http://en.cppreference.com/w/cpp/language/static_cast"
        title=3D"cpp/language/static cast"><tt>static_cast</tt></a> or <a
        href=3D"http://en.cppreference.com/w/cpp/language/explicit_cast"
        title=3D"cpp/language/explicit cast">explicit cast</a>, to any
      enumeration type. If the underlying type is not fixed and the
      source type is integer type or enumeration, the result is <span
        class=3D"t-rev-inl t-until-cxx17"><span>unspecified</span> <span><s=
pan
            class=3D"t-mark-rev t-until-cxx17">(until C++17)</span></span><=
/span><span
        class=3D"t-rev-inl t-since-cxx17"><span>undefined behavior</span>
        <span><span class=3D"t-mark-rev t-since-cxx17">(since C++17)</span>=
</span></span>
      if the value, converted to the enumeration's underlying type, is
      out of range (the range is all values possible for the smallest
      bit field large enough to hold all enumerators of the target
      enumeration). Otherwise (underlying type is fixed, or source type
      is floating-point), the result is the same as the result of <a
        href=3D"http://en.cppreference.com/w/cpp/language/implicit_cast"
        title=3D"cpp/language/implicit cast" class=3D"mw-redirect">implicit
        conversion</a> to the underlying type. Note that the value after
      such conversion may not necessarily equal any of the named
      enumerators defined for the enumeration.<br>
    </blockquote>
    <br>
    For the name of the proposed function I would use instead two <br>
    <br>
    =C2=A0=C2=A0=C2=A0 bool is_enumerator&lt;E&gt;(E);<br>
    =C2=A0=C2=A0=C2=A0 bool is_value_of_enumerator&lt;E&gt;(UT);<br>
    <br>
    both constrained to integral underlying types. <br>
    <br>
    Note that is_value_of_enumerator needs is_valid_underlying_value and
    can be define as <br>
    <br>
    =C2=A0=C2=A0=C2=A0 assert(is_valid_underlying_value(u)); <br>
    =C2=A0=C2=A0=C2=A0 is_enumerator(E(u))<br>
    <br>
    <br>
    is_valid_underlying_value is easy to define using some
    meta-programming. The cost associated could be often nop or minimal.<br=
>
    <br>
    is_enumerator on the other side would need the reflection facilities
    or help from the compiler.<br>
    <br>
    As others have suggested, I believe you should compare what we can
    have with the reflection library (this should be the before of the
    Tony's table).<br>
    <br>
    In other words I believe the proposal would be reduced to a 3
    functions, one of them implementable using the reflection library.<br>
    <br>
    Concerning the initial function enum_cast, I believe it is useful,
    but I don't know if we consider this a cast. I could live with
    something like<br>
    <br>
    =C2=A0=C2=A0=C2=A0 template &lt;class E, class UT&gt;<br>
    =C2=A0=C2=A0=C2=A0 E make_enum&lt;E&gt;(UT);<br>
    <br>
    =C2=A0=C2=A0=C2=A0 template &lt;class E, class UT&gt;<br>
    =C2=A0=C2=A0=C2=A0 optional&lt;E&gt; try_make_enum(UT);<br>
    <br>
    We could as well have make_enum/try_make_enum from a string. <br>
    <br>
    I'll left the original enum_cast&lt;E&gt;(UT) as a synonym of
    static_cast&lt;E&gt;(UT). This cast has the advantage to be grepable
    and catch the intent.<br>
    <br>
    Vicente<br>
    <br>
    P.S. See how GSL uses narrow and narrow_cast (narrow do a check,
    which narrow_cast don't).<br>
  </body>
</html>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/69da5d16-ae0f-d259-0cdb-01ebe79680ca%=
40wanadoo.fr?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/69da5d16-ae0f-d259-0cdb-01ebe79680ca=
%40wanadoo.fr</a>.<br />

--------------95DC0BDB441C6DA216415DC1--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Sat, 3 Mar 2018 08:50:10 -0800 (PST)
Raw View
------=_Part_8645_1819546343.1520095810822
Content-Type: multipart/alternative;
 boundary="----=_Part_8646_1549258416.1520095810822"

------=_Part_8646_1549258416.1520095810822
Content-Type: text/plain; charset="UTF-8"

On Saturday, March 3, 2018 at 3:22:21 AM UTC-5, jonr...@gmail.com wrote:
>
> Thank you for the feedback so far.
> Here is the next revision that considers much of the feedback given thus
> far:
>  is_enum_value-d0974r1.pdf
> <https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=sharing>
>
> As always, comments welcome!
>

You don't use R-numbered revisions for drafts. They're only for published
P-numbered proposals.


--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/3e080c57-6957-4274-aed7-8538bf6531f2%40isocpp.org.

------=_Part_8646_1549258416.1520095810822
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">On Saturday, March 3, 2018 at 3:22:21 AM UTC-5, jonr...@gm=
ail.com wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-l=
eft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr"=
>Thank you for the feedback so far.<div>Here is the next revision that cons=
iders much of the feedback given thus far:</div><div>=C2=A0<a href=3D"https=
://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=3Dsha=
ring" target=3D"_blank" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;ht=
tps://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp\x3=
dsharing&#39;;return true;" onclick=3D"this.href=3D&#39;https://drive.googl=
e.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp\x3dsharing&#39;;ret=
urn true;">is_enum_value-d0974r1.pdf</a><br></div><div><br></div><div>As al=
ways, comments welcome!</div></div></blockquote><div><br>You don&#39;t use =
R-numbered revisions for drafts. They&#39;re only for published P-numbered =
proposals.</div><br><br></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/3e080c57-6957-4274-aed7-8538bf6531f2%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/3e080c57-6957-4274-aed7-8538bf6531f2=
%40isocpp.org</a>.<br />

------=_Part_8646_1549258416.1520095810822--

------=_Part_8645_1819546343.1520095810822--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Sat, 3 Mar 2018 10:06:29 -0800 (PST)
Raw View
------=_Part_8639_371724766.1520100389888
Content-Type: multipart/alternative;
 boundary="----=_Part_8640_1090887722.1520100389889"

------=_Part_8640_1090887722.1520100389889
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable



On Saturday, March 3, 2018 at 11:49:57 AM UTC-5, Vicente J. Botet Escriba=
=20
wrote:
>
> Le 03/03/2018 =C3=A0 09:22, jonr...@gmail.com <javascript:> a =C3=A9crit =
:
>
> Thank you for the feedback so far.=20
> Here is the next revision that considers much of the feedback given thus=
=20
> far:
>  is_enum_value-d0974r1.pdf=20
> <https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?u=
sp=3Dsharing>
>
> As always, comments welcome!
>
>
> I find the functions useful. However I would suggest some changes.
>
> It is worth mentioning that enums can have a floating point underlying=20
> type, and so the function couldn't work on this case.
>
> I would like first a function that check if the underlying value is in th=
e=20
> range of possible values, so that we can avoid UB.
>
>     bool is_valid_underlying_value<E>(UT);
>

Why do you need such a function? What's your use case?


> from http://en.cppreference.com/w/cpp/language/enum
>
> Values of integer, floating-point, and other enumeration types can be=20
> converted by static_cast=20
> <http://en.cppreference.com/w/cpp/language/static_cast> or explicit cast=
=20
> <http://en.cppreference.com/w/cpp/language/explicit_cast>, to any=20
> enumeration type. If the underlying type is not fixed and the source type=
=20
> is integer type or enumeration, the result is unspecified (until C++17)un=
defined=20
> behavior (since C++17) if the value, converted to the enumeration's=20
> underlying type, is out of range (the range is all values possible for th=
e=20
> smallest bit field large enough to hold all enumerators of the target=20
> enumeration). Otherwise (underlying type is fixed, or source type is=20
> floating-point), the result is the same as the result of implicit=20
> conversion <http://en.cppreference.com/w/cpp/language/implicit_cast> to=
=20
> the underlying type. Note that the value after such conversion may not=20
> necessarily equal any of the named enumerators defined for the enumeratio=
n.
>
>
> For the name of the proposed function I would use instead two=20
>
>     bool is_enumerator<E>(E);
>     bool is_value_of_enumerator<E>(UT);
>
> both constrained to integral underlying types.=20
>
> Note that is_value_of_enumerator needs is_valid_underlying_value
>

How do you figure that? If the value is not an enumerator, then it=20
*certainly* isn't in the range of the enumeration.
=20

> and can be define as=20
>
>     assert(is_valid_underlying_value(u));=20
>     is_enumerator(E(u))
>

Why would you assert on that? The function is supposed to return `false` if=
=20
the value isn't an enumerator. Equally importantly, why would you implement=
=20
it backwards?

--=20
You received this message because you are subscribed to the Google Groups "=
ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp=
..org/d/msgid/std-proposals/b46ecc93-d77e-41c8-b9ea-03da4bab6fca%40isocpp.or=
g.

------=_Part_8640_1090887722.1520100389889
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Saturday, March 3, 2018 at 11:49:57 AM UTC-5, V=
icente J. Botet Escriba wrote:<blockquote class=3D"gmail_quote" style=3D"ma=
rgin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;">
 =20
   =20
 =20
  <div bgcolor=3D"#FFFFFF" text=3D"#000000">
    <div>Le 03/03/2018 =C3=A0 09:22,
      <a href=3D"javascript:" target=3D"_blank" gdf-obfuscated-mailto=3D"cc=
E6a6-LCwAJ" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;javascript:&#3=
9;;return true;" onclick=3D"this.href=3D&#39;javascript:&#39;;return true;"=
>jonr...@gmail.com</a> a =C3=A9crit=C2=A0:<br>
    </div>
    <blockquote type=3D"cite">
      <div dir=3D"ltr">Thank you for the feedback so far.
        <div>Here is the next revision that considers much of the
          feedback given thus far:</div>
        <div>=C2=A0<a href=3D"https://drive.google.com/file/d/1kIDQyDoB_3Cs=
K-wj4kxLzWFs1t9d7Zkw/view?usp=3Dsharing" target=3D"_blank" rel=3D"nofollow"=
 onmousedown=3D"this.href=3D&#39;https://drive.google.com/file/d/1kIDQyDoB_=
3CsK-wj4kxLzWFs1t9d7Zkw/view?usp\x3dsharing&#39;;return true;" onclick=3D"t=
his.href=3D&#39;https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t=
9d7Zkw/view?usp\x3dsharing&#39;;return true;">is_enum_value-d0974r1.pdf</a>=
<br>
        </div>
        <div><br>
        </div>
        <div>As always, comments welcome!</div>
        <div><br>
        </div>
      </div>
    </blockquote>
    <br>
    I find the functions useful. However I would suggest some changes.<br>
    <br>
    It is worth mentioning that enums can have a floating point
    underlying type, and so the function couldn&#39;t work on this case.<br=
>
    <br>
    I would like first a function that check if the underlying value is
    in the range of possible values, so that we can avoid UB.<br>
    <br>
    =C2=A0=C2=A0=C2=A0 bool is_valid_underlying_value&lt;E&gt;(<wbr>UT);<br=
></div></blockquote><div><br>Why do you need such a function? What&#39;s yo=
ur use case?<br><br></div><blockquote class=3D"gmail_quote" style=3D"margin=
: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div=
 bgcolor=3D"#FFFFFF" text=3D"#000000">
    <br>
    from <a href=3D"http://en.cppreference.com/w/cpp/language/enum" target=
=3D"_blank" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;http://www.goo=
gle.com/url?q\x3dhttp%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fen=
um\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNE-s33ffQIH6XyDPpXDAnv-xTI_lA&#39=
;;return true;" onclick=3D"this.href=3D&#39;http://www.google.com/url?q\x3d=
http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fenum\x26sa\x3dD\x26=
sntz\x3d1\x26usg\x3dAFQjCNE-s33ffQIH6XyDPpXDAnv-xTI_lA&#39;;return true;">h=
ttp://en.cppreference.com/w/<wbr>cpp/language/enum</a><br>
    <br>
    <blockquote>Values of integer, floating-point, and other enumeration
      types can be converted by <a href=3D"http://en.cppreference.com/w/cpp=
/language/static_cast" title=3D"cpp/language/static cast" target=3D"_blank"=
 rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;http://www.google.com/url=
?q\x3dhttp%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstatic_cast\x=
26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNECREMO6-zWAYHasozbtmZ8KMw0eA&#39;;re=
turn true;" onclick=3D"this.href=3D&#39;http://www.google.com/url?q\x3dhttp=
%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fstatic_cast\x26sa\x3dD\=
x26sntz\x3d1\x26usg\x3dAFQjCNECREMO6-zWAYHasozbtmZ8KMw0eA&#39;;return true;=
"><tt>static_cast</tt></a> or <a href=3D"http://en.cppreference.com/w/cpp/l=
anguage/explicit_cast" title=3D"cpp/language/explicit cast" target=3D"_blan=
k" rel=3D"nofollow" onmousedown=3D"this.href=3D&#39;http://www.google.com/u=
rl?q\x3dhttp%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexplicit_ca=
st\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNF2XqftsxUBem8TLlVdKVbqvl5BMw&#39=
;;return true;" onclick=3D"this.href=3D&#39;http://www.google.com/url?q\x3d=
http%3A%2F%2Fen.cppreference.com%2Fw%2Fcpp%2Flanguage%2Fexplicit_cast\x26sa=
\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNF2XqftsxUBem8TLlVdKVbqvl5BMw&#39;;return=
 true;">explicit cast</a>, to any
      enumeration type. If the underlying type is not fixed and the
      source type is integer type or enumeration, the result is <span><span=
>unspecified</span> <span><span>(until C++17)</span></span></span><span><sp=
an>undefined behavior</span>
        <span><span>(since C++17)</span></span></span>
      if the value, converted to the enumeration&#39;s underlying type, is
      out of range (the range is all values possible for the smallest
      bit field large enough to hold all enumerators of the target
      enumeration). Otherwise (underlying type is fixed, or source type
      is floating-point), the result is the same as the result of <a href=
=3D"http://en.cppreference.com/w/cpp/language/implicit_cast" title=3D"cpp/l=
anguage/implicit cast" target=3D"_blank" rel=3D"nofollow" onmousedown=3D"th=
is.href=3D&#39;http://www.google.com/url?q\x3dhttp%3A%2F%2Fen.cppreference.=
com%2Fw%2Fcpp%2Flanguage%2Fimplicit_cast\x26sa\x3dD\x26sntz\x3d1\x26usg\x3d=
AFQjCNFaAr9kcQRoo6QJjXyVkHqg10FbqA&#39;;return true;" onclick=3D"this.href=
=3D&#39;http://www.google.com/url?q\x3dhttp%3A%2F%2Fen.cppreference.com%2Fw=
%2Fcpp%2Flanguage%2Fimplicit_cast\x26sa\x3dD\x26sntz\x3d1\x26usg\x3dAFQjCNF=
aAr9kcQRoo6QJjXyVkHqg10FbqA&#39;;return true;">implicit
        conversion</a> to the underlying type. Note that the value after
      such conversion may not necessarily equal any of the named
      enumerators defined for the enumeration.<br>
    </blockquote>
    <br>
    For the name of the proposed function I would use instead two <br>
    <br>
    =C2=A0=C2=A0=C2=A0 bool is_enumerator&lt;E&gt;(E);<br>
    =C2=A0=C2=A0=C2=A0 bool is_value_of_enumerator&lt;E&gt;(UT);<br>
    <br>
    both constrained to integral underlying types. <br>
    <br>
    Note that is_value_of_enumerator needs is_valid_underlying_value</div><=
/blockquote><div><br>How do you figure that? If the value is not an enumera=
tor, then it <i>certainly</i> isn&#39;t in the range of the enumeration.<br=
>=C2=A0</div><blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-le=
ft: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div bgcolor=3D"#=
FFFFFF" text=3D"#000000"> and
    can be define as <br>
    <br>
    =C2=A0=C2=A0=C2=A0 assert(is_valid_underlying_<wbr>value(u)); <br>
    =C2=A0=C2=A0=C2=A0 is_enumerator(E(u))<br></div></blockquote><div><br>W=
hy would you assert on that? The function is supposed to return `false` if =
the value isn&#39;t an enumerator. Equally importantly, why would you imple=
ment it backwards?</div><br></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/b46ecc93-d77e-41c8-b9ea-03da4bab6fca%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/b46ecc93-d77e-41c8-b9ea-03da4bab6fca=
%40isocpp.org</a>.<br />

------=_Part_8640_1090887722.1520100389889--

------=_Part_8639_371724766.1520100389888--

.


Author: Jon Ringle <jonringle@gmail.com>
Date: Sat, 3 Mar 2018 20:36:59 -0500
Raw View
--f403045d7272e8162a05668c3e53
Content-Type: text/plain; charset="UTF-8"

On Sat, Mar 3, 2018 at 11:50 AM, Nicol Bolas <jmckesson@gmail.com> wrote:

> On Saturday, March 3, 2018 at 3:22:21 AM UTC-5, jonr...@gmail.com wrote:
>>
>> Thank you for the feedback so far.
>> Here is the next revision that considers much of the feedback given thus
>> far:
>>  is_enum_value-d0974r1.pdf
>> <https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=sharing>
>>
>> As always, comments welcome!
>>
>
> You don't use R-numbered revisions for drafts. They're only for published
> P-numbered proposals.
>
>
>
What is the conventional way to mark iterative draft revisions prior to
being published?
Would something like this work...?
D0974R0-v1, DO974R0-v2, ...

Then when published:
P0974R0

Then an iterative draft revision sequence after that:
D0974R1-v1, D0974R1-v2, ...

Then another publishing:
P0974R1

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAMwGMjwpsvneLbfUD-XHKv_Z3zULttOvDpg5zGD9dmKC4YoSpw%40mail.gmail.com.

--f403045d7272e8162a05668c3e53
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><div class=3D"gmail_extra"><div class=3D"gmail_quote">On S=
at, Mar 3, 2018 at 11:50 AM, Nicol Bolas <span dir=3D"ltr">&lt;<a href=3D"m=
ailto:jmckesson@gmail.com" target=3D"_blank">jmckesson@gmail.com</a>&gt;</s=
pan> wrote:<br><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex=
;border-left:1px #ccc solid;padding-left:1ex"><div dir=3D"ltr"><span class=
=3D"">On Saturday, March 3, 2018 at 3:22:21 AM UTC-5, <a href=3D"mailto:jon=
r...@gmail.com" target=3D"_blank">jonr...@gmail.com</a> wrote:<blockquote c=
lass=3D"gmail_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #c=
cc solid;padding-left:1ex"><div dir=3D"ltr">Thank you for the feedback so f=
ar.<div>Here is the next revision that considers much of the feedback given=
 thus far:</div><div>=C2=A0<a href=3D"https://drive.google.com/file/d/1kIDQ=
yDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=3Dsharing" rel=3D"nofollow" target=3D=
"_blank">is_enum_value-d0974r1.pdf</a><br></div><div><br></div><div>As alwa=
ys, comments welcome!</div></div></blockquote></span><div><br>You don&#39;t=
 use R-numbered revisions for drafts. They&#39;re only for published P-numb=
ered proposals.</div><br><br></div></blockquote></div><div class=3D"gmail_e=
xtra"><br></div>What is the conventional way to mark iterative draft revisi=
ons prior to being published?</div><div class=3D"gmail_extra">Would somethi=
ng like this work...?</div><div class=3D"gmail_extra">D0974R0-v1, DO974R0-v=
2, ...</div><div class=3D"gmail_extra"><br></div><div class=3D"gmail_extra"=
>Then when published:</div><div class=3D"gmail_extra">P0974R0</div><div cla=
ss=3D"gmail_extra"><br></div><div class=3D"gmail_extra">Then an iterative d=
raft revision sequence after that:</div><div class=3D"gmail_extra">D0974R1-=
v1, D0974R1-v2, ...</div><div class=3D"gmail_extra"><br></div><div class=3D=
"gmail_extra">Then another publishing:</div><div class=3D"gmail_extra">P097=
4R1</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/CAMwGMjwpsvneLbfUD-XHKv_Z3zULttOvDpg5=
zGD9dmKC4YoSpw%40mail.gmail.com?utm_medium=3Demail&utm_source=3Dfooter">htt=
ps://groups.google.com/a/isocpp.org/d/msgid/std-proposals/CAMwGMjwpsvneLbfU=
D-XHKv_Z3zULttOvDpg5zGD9dmKC4YoSpw%40mail.gmail.com</a>.<br />

--f403045d7272e8162a05668c3e53--

.


Author: Nicol Bolas <jmckesson@gmail.com>
Date: Sat, 3 Mar 2018 19:38:47 -0800 (PST)
Raw View
------=_Part_9831_1555440602.1520134727239
Content-Type: multipart/alternative;
 boundary="----=_Part_9832_1543234883.1520134727239"

------=_Part_9832_1543234883.1520134727239
Content-Type: text/plain; charset="UTF-8"



On Saturday, March 3, 2018 at 8:37:03 PM UTC-5, Jon Ringle wrote:
>
> On Sat, Mar 3, 2018 at 11:50 AM, Nicol Bolas <jmck...@gmail.com
> <javascript:>> wrote:
>
>> On Saturday, March 3, 2018 at 3:22:21 AM UTC-5, jonr...@gmail.com wrote:
>>>
>>> Thank you for the feedback so far.
>>> Here is the next revision that considers much of the feedback given thus
>>> far:
>>>  is_enum_value-d0974r1.pdf
>>> <https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zkw/view?usp=sharing>
>>>
>>> As always, comments welcome!
>>>
>>
>> You don't use R-numbered revisions for drafts. They're only for published
>> P-numbered proposals.
>>
>
> What is the conventional way to mark iterative draft revisions prior to
> being published?
>

You really don't need to. It's just a draft.

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/69a7aaa4-caca-4808-a009-b574738e0bc7%40isocpp.org.

------=_Part_9832_1543234883.1520134727239
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr"><br><br>On Saturday, March 3, 2018 at 8:37:03 PM UTC-5, Jo=
n Ringle wrote:<blockquote class=3D"gmail_quote" style=3D"margin: 0;margin-=
left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir=3D"ltr=
"><div><div class=3D"gmail_quote">On Sat, Mar 3, 2018 at 11:50 AM, Nicol Bo=
las <span dir=3D"ltr">&lt;<a href=3D"javascript:" target=3D"_blank" gdf-obf=
uscated-mailto=3D"ZozB6XKoCwAJ" rel=3D"nofollow" onmousedown=3D"this.href=
=3D&#39;javascript:&#39;;return true;" onclick=3D"this.href=3D&#39;javascri=
pt:&#39;;return true;">jmck...@gmail.com</a>&gt;</span> wrote:<br><blockquo=
te class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc so=
lid;padding-left:1ex"><div dir=3D"ltr"><span>On Saturday, March 3, 2018 at =
3:22:21 AM UTC-5, <a>jonr...@gmail.com</a> wrote:<blockquote class=3D"gmail=
_quote" style=3D"margin:0;margin-left:0.8ex;border-left:1px #ccc solid;padd=
ing-left:1ex"><div dir=3D"ltr">Thank you for the feedback so far.<div>Here =
is the next revision that considers much of the feedback given thus far:</d=
iv><div>=C2=A0<a href=3D"https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4=
kxLzWFs1t9d7Zkw/view?usp=3Dsharing" rel=3D"nofollow" target=3D"_blank" onmo=
usedown=3D"this.href=3D&#39;https://drive.google.com/file/d/1kIDQyDoB_3CsK-=
wj4kxLzWFs1t9d7Zkw/view?usp\x3dsharing&#39;;return true;" onclick=3D"this.h=
ref=3D&#39;https://drive.google.com/file/d/1kIDQyDoB_3CsK-wj4kxLzWFs1t9d7Zk=
w/view?usp\x3dsharing&#39;;return true;">is_enum_value-d0974r1.pdf</a><br><=
/div><div><br></div><div>As always, comments welcome!</div></div></blockquo=
te></span><div><br>You don&#39;t use R-numbered revisions for drafts. They&=
#39;re only for published P-numbered proposals.</div></div></blockquote></d=
iv><div><br></div>What is the conventional way to mark iterative draft revi=
sions prior to being published?</div></div></blockquote><div><br>You really=
 don&#39;t need to. It&#39;s just a draft.</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/69a7aaa4-caca-4808-a009-b574738e0bc7%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/69a7aaa4-caca-4808-a009-b574738e0bc7=
%40isocpp.org</a>.<br />

------=_Part_9832_1543234883.1520134727239--

------=_Part_9831_1555440602.1520134727239--

.


Author: jonringle@gmail.com
Date: Mon, 5 Mar 2018 00:48:15 -0800 (PST)
Raw View
------=_Part_13542_1910834838.1520239696158
Content-Type: multipart/alternative;
 boundary="----=_Part_13543_657733511.1520239696158"

------=_Part_13543_657733511.1520239696158
Content-Type: text/plain; charset="UTF-8"

Please find a new draft d0974r0-v2
<https://drive.google.com/file/d/1CbMAtcz1E3AKQF-_6AzxNtK9VrkVQRfz/view?usp=sharing>
Changes:
1) Renamed is_enum_value => is_enumerator
2) Added "Tony Tables" :)
3) To a crack at suggesting a static reflection based implementation of
is_enumerator<E>

As always, comments welcome!

Thank you
-Jon

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/dd775663-eaec-49be-a7e7-845a226305a4%40isocpp.org.

------=_Part_13543_657733511.1520239696158
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Please find a new draft=C2=A0<a href=3D"https://drive.goog=
le.com/file/d/1CbMAtcz1E3AKQF-_6AzxNtK9VrkVQRfz/view?usp=3Dsharing">d0974r0=
-v2</a><div>Changes:</div><div>1) Renamed is_enum_value =3D&gt; is_enumerat=
or</div><div>2) Added &quot;Tony Tables&quot; :)</div><div>3) To a crack at=
 suggesting a static reflection based implementation of is_enumerator&lt;E&=
gt;</div><div><br></div><div>As always, comments welcome!</div><div><br></d=
iv><div>Thank you</div><div>-Jon</div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/dd775663-eaec-49be-a7e7-845a226305a4%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/dd775663-eaec-49be-a7e7-845a226305a4=
%40isocpp.org</a>.<br />

------=_Part_13543_657733511.1520239696158--

------=_Part_13542_1910834838.1520239696158--

.


Author: jonringle@gmail.com
Date: Sun, 25 Mar 2018 23:15:43 -0700 (PDT)
Raw View
------=_Part_12710_1131629619.1522044943511
Content-Type: multipart/alternative;
 boundary="----=_Part_12711_1425287868.1522044943512"

------=_Part_12711_1425287868.1522044943512
Content-Type: text/plain; charset="UTF-8"

Here is another draft d0974r0-v3
<https://drive.google.com/open?id=1g1WVwj0zeWlVudomjn86RjgMLTYYKYoY>

The main thing I've added is a possible implementation based on the Mirror
reflection library <http://matus-chochlik.github.io/mirror/doc/html/>
static reflection examples in p0385r2
<http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0385r2.pdf>:

template <typename E>

class enum_properties {

private:

    using namespace std;

    using U = underlying_type_t<E>;

    template <typename ... MEC>

    struct _hlpr {

        static void _eat(bool ...) { }

        static auto _make_map(void) {

            map<Enum, string> res;

            _eat(res.emplace(

                     reflect::get_constant_v<MEC>,

                     string(reflect::get_base_name<MEC>())

                     ).second...);

            return res;

        }

    };

    using ME = $reflect(E);

    using hlpr = reflect::unpack_sequence_t<

        reflect::get_enumerators_t<ME>,

        _hlpr

    >;

    auto m_ = hlpr::_make_map();

public:

    constexpr U min() const { return static_cast<U>(m_.begin()->first); }

    constexpr U max() const { return static_cast<U>(m_.rbegin()->first); }

    constexpr bool is_consecutive() const {

        U prev = static_cast<U>(m_.begin()->first);

        for (auto& e : m_) {

            if (prev == static_cast<U>(e.first)) continue;

            if (prev + 1 != static_cast<U>(e.first)) return false;

            prev = static_cast<U>(e.first);

        }

        return true;

    }

    constexpr bool has_enumerator(U v) {

        return m_.find(static_cast<E>(v)) != m_.end();

    }

    constexpr bool has_enumerator(E e) {

        return m_.find(e) != m_.end();

    }

    constexpr const string& to_string()(E e) const {

        return has_enumerator(e) ? m_[e] : "";

    }

};


namespace std {

template <typename E>

constexpr bool is_enumerator(underlying_type_t<E> v)

{

    enum_properties<E> enum_prop;

    if (enum_prop.is_consecutive())

        return enum_prop.min() <= v && v <= enum_prop.max();

    return enum_prop.has_enumerator(v);

}

template <typename E>

constexpr bool is_enumerator(E e)

{

    enum_properties<E> enum_prop;

    return enum_prop.has_enumerator(e);

}

}


As always, comments are welcome!
-Jon

--
You received this message because you are subscribed to the Google Groups "ISO C++ Standard - Future Proposals" group.
To unsubscribe from this group and stop receiving emails from it, send an email to std-proposals+unsubscribe@isocpp.org.
To post to this group, send email to std-proposals@isocpp.org.
To view this discussion on the web visit https://groups.google.com/a/isocpp.org/d/msgid/std-proposals/fe1c20d8-c2b4-43b1-9b57-cb8bff160652%40isocpp.org.

------=_Part_12711_1425287868.1522044943512
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Here is another draft=C2=A0<a href=3D"https://drive.google=
..com/open?id=3D1g1WVwj0zeWlVudomjn86RjgMLTYYKYoY">d0974r0-v3</a><div><br></=
div><div>The main thing I&#39;ve added is a possible implementation based o=
n the <a href=3D"http://matus-chochlik.github.io/mirror/doc/html/">Mirror r=
eflection library</a> static reflection examples in <a href=3D"http://www.o=
pen-std.org/jtc1/sc22/wg21/docs/papers/2017/p0385r2.pdf">p0385r2</a>:</div>=
<div><br></div><div><style type=3D"text/css">
p, li { white-space: pre-wrap; }
</style>
<pre><!--StartFragment--><span style=3D" color:#808000;">template</span><sp=
an style=3D" color:#c0c0c0;"> </span>&lt;<span style=3D" color:#808000;">ty=
pename</span><span style=3D" color:#c0c0c0;"> </span>E&gt;</pre>
<pre><span style=3D" color:#808000;">class</span><span style=3D" color:#c0c=
0c0;"> </span><span style=3D" color:#800080;">enum_properties</span><span s=
tyle=3D" color:#c0c0c0;"> </span>{</pre>
<pre><span style=3D" color:#808000;">private</span>:</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">using</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" co=
lor:#808000;">namespace</span><span style=3D" color:#c0c0c0;"> </span><span=
 style=3D" color:#800080;">std</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">using</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" co=
lor:#800080;">U</span><span style=3D" color:#c0c0c0;"> </span>=3D<span styl=
e=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;">underlying_ty=
pe_t</span>&lt;<span style=3D" color:#800080;">E</span>&gt;;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">template</span><span style=3D" color:#c0c0c0;"> </span>&lt;<span style=
=3D" color:#808000;">typename</span><span style=3D" color:#c0c0c0;"> </span=
>...<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;"=
>MEC</span>&gt;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">struct</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" c=
olor:#800080;">_hlpr</span><span style=3D" color:#c0c0c0;"> </span>{</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">static</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#808000;">void</span><span style=3D" color:#c0c0c0;"> </span><sp=
an style=3D" font-weight:600; color:#00677c;">_eat</span>(<span style=3D" c=
olor:#808000;">bool</span><span style=3D" color:#c0c0c0;"> </span>...)<span=
 style=3D" color:#c0c0c0;"> </span>{<span style=3D" color:#c0c0c0;"> </span=
>}</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">static</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#808000;">auto</span><span style=3D" color:#c0c0c0;"> </span><sp=
an style=3D" font-weight:600; color:#00677c;">_make_map</span>(<span style=
=3D" color:#808000;">void</span>)<span style=3D" color:#c0c0c0;"> </span>{<=
/pre>
<pre>            <span style=3D"font-family: Arial, Helvetica, sans-serif; =
color: rgb(9, 46, 100);">map</span><span style=3D"font-family: Arial, Helve=
tica, sans-serif;">&lt;</span><span style=3D"font-family: Arial, Helvetica,=
 sans-serif; color: rgb(9, 46, 100);">Enum</span><span style=3D"font-family=
: Arial, Helvetica, sans-serif;">,</span><span style=3D"font-family: Arial,=
 Helvetica, sans-serif; color: rgb(192, 192, 192);"> </span><span style=3D"=
font-family: Arial, Helvetica, sans-serif; color: rgb(9, 46, 100);">string<=
/span><span style=3D"font-family: Arial, Helvetica, sans-serif;">&gt;</span=
><span style=3D"font-family: Arial, Helvetica, sans-serif; color: rgb(192, =
192, 192);"> </span><span style=3D"font-family: Arial, Helvetica, sans-seri=
f; color: rgb(9, 46, 100);">res</span><span style=3D"font-family: Arial, He=
lvetica, sans-serif;">;</span><br></pre>
<pre><span style=3D" color:#c0c0c0;">            </span><span style=3D" col=
or:#092e64;">_eat</span>(<span style=3D" color:#092e64;">res</span>.<span s=
tyle=3D" color:#092e64;">emplace</span>(</pre>
<pre><span style=3D" color:#c0c0c0;">                     </span><span styl=
e=3D" color:#092e64;">reflect</span>::<span style=3D" color:#092e64;">get_c=
onstant_v</span>&lt;<span style=3D" color:#092e64;">MEC</span>&gt;,</pre>
<pre><span style=3D" color:#c0c0c0;">                     </span><span styl=
e=3D" color:#092e64;">string</span>(<span style=3D" color:#092e64;">reflect=
</span>::<span style=3D" color:#092e64;">get_base_name</span>&lt;<span styl=
e=3D" color:#092e64;">MEC</span>&gt;())</pre>
<pre><span style=3D" color:#c0c0c0;">                     </span>).<span st=
yle=3D" color:#092e64;">second</span>...);</pre>
<pre><span style=3D" color:#c0c0c0;">            </span><span style=3D" col=
or:#808000;">return</span><span style=3D" color:#c0c0c0;"> </span><span sty=
le=3D" color:#092e64;">res</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">        </span>}</pre>
<pre><span style=3D" color:#c0c0c0;">    </span>};</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">using</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" co=
lor:#800080;">ME</span><span style=3D" color:#c0c0c0;"> </span>=3D<span sty=
le=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;">$reflect</sp=
an>(<span style=3D" color:#800080;">E</span>);</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">using</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" co=
lor:#800080;">hlpr</span><span style=3D" color:#c0c0c0;"> </span>=3D<span s=
tyle=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;">reflect</s=
pan>::<span style=3D" color:#800080;">unpack_sequence_t</span>&lt;</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
800080;">reflect</span>::<span style=3D" color:#800080;">get_enumerators_t<=
/span>&lt;<span style=3D" color:#800080;">ME</span>&gt;,</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
800080;">_hlpr</span></pre>
<pre><span style=3D" color:#c0c0c0;">    </span>&gt;;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">auto</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" col=
or:#800000;">m_</span><span style=3D" color:#c0c0c0;"> </span>=3D<span styl=
e=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;">hlpr</span>::=
<span style=3D" color:#800080;">_make_map</span>();</pre>
<pre><span style=3D" color:#808000;">public</span>:</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">constexpr</span><span style=3D" color:#c0c0c0;"> </span><span style=3D=
" font-weight:600; color:#00677c;">U</span><span style=3D" color:#c0c0c0;">=
 </span><span style=3D" font-weight:600; color:#00677c;">min</span>()<span =
style=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;">const</sp=
an><span style=3D" color:#c0c0c0;"> </span>{<span style=3D" color:#c0c0c0;"=
> </span><span style=3D" color:#808000;">return</span><span style=3D" color=
:#c0c0c0;"> </span><span style=3D" color:#808000;">static_cast</span>&lt;<s=
pan style=3D" color:#092e64;">U</span>&gt;(<span style=3D" color:#092e64;">=
m_</span>.<span style=3D" color:#092e64;">begin</span>()-&gt;<span style=3D=
" color:#092e64;">first</span>);<span style=3D" color:#c0c0c0;"> </span>}</=
pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">constexpr</span><span style=3D" color:#c0c0c0;"> </span><span style=3D=
" font-weight:600; color:#00677c;">U</span><span style=3D" color:#c0c0c0;">=
 </span><span style=3D" font-weight:600; color:#00677c;">max</span>()<span =
style=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;">const</sp=
an><span style=3D" color:#c0c0c0;"> </span>{<span style=3D" color:#c0c0c0;"=
> </span><span style=3D" color:#808000;">return</span><span style=3D" color=
:#c0c0c0;"> </span><span style=3D" color:#808000;">static_cast</span>&lt;<s=
pan style=3D" color:#092e64;">U</span>&gt;(<span style=3D" color:#092e64;">=
m_</span>.<span style=3D" color:#092e64;">rbegin</span>()-&gt;<span style=
=3D" color:#092e64;">first</span>);<span style=3D" color:#c0c0c0;"> </span>=
}</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">constexpr</span><span style=3D" color:#c0c0c0;"> </span><span style=3D=
" color:#808000;">bool</span><span style=3D" color:#c0c0c0;"> </span><span =
style=3D" font-weight:600; color:#00677c;">is_consecutive</span>()<span sty=
le=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;">const</span>=
<span style=3D" color:#c0c0c0;"> </span>{</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
092e64;">U</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" co=
lor:#092e64;">prev</span><span style=3D" color:#c0c0c0;"> </span>=3D<span s=
tyle=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;">static_cas=
t</span>&lt;U&gt;(m_.begin()-&gt;first);</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">for</span><span style=3D" color:#c0c0c0;"> </span>(<span style=3D"=
 color:#808000;">auto</span>&amp;<span style=3D" color:#c0c0c0;"> </span><s=
pan style=3D" color:#092e64;">e</span><span style=3D" color:#c0c0c0;"> </sp=
an>:<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#092e64;"=
>m_</span>)<span style=3D" color:#c0c0c0;"> </span>{</pre>
<pre><span style=3D" color:#c0c0c0;">            </span><span style=3D" col=
or:#808000;">if</span><span style=3D" color:#c0c0c0;"> </span>(<span style=
=3D" color:#092e64;">prev</span><span style=3D" color:#c0c0c0;"> </span>=3D=
=3D<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;">=
static_cast</span>&lt;<span style=3D" color:#092e64;">U</span>&gt;(<span st=
yle=3D" color:#092e64;">e</span>.<span style=3D" color:#092e64;">first</spa=
n>))<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;"=
>continue</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">            </span><span style=3D" col=
or:#808000;">if</span><span style=3D" color:#c0c0c0;"> </span>(<span style=
=3D" color:#092e64;">prev</span><span style=3D" color:#c0c0c0;"> </span>+<s=
pan style=3D" color:#c0c0c0;"> </span><span style=3D" color:#000080;">1</sp=
an><span style=3D" color:#c0c0c0;"> </span>!=3D<span style=3D" color:#c0c0c=
0;"> </span><span style=3D" color:#808000;">static_cast</span>&lt;<span sty=
le=3D" color:#092e64;">U</span>&gt;(<span style=3D" color:#092e64;">e</span=
>.<span style=3D" color:#092e64;">first</span>))<span style=3D" color:#c0c0=
c0;"> </span><span style=3D" color:#808000;">return</span><span style=3D" c=
olor:#c0c0c0;"> </span><span style=3D" color:#808000;">false</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">            </span><span style=3D" col=
or:#092e64;">prev</span><span style=3D" color:#c0c0c0;"> </span>=3D<span st=
yle=3D" color:#c0c0c0;"> </span><span style=3D" color:#808000;">static_cast=
</span>&lt;<span style=3D" color:#092e64;">U</span>&gt;(<span style=3D" col=
or:#092e64;">e</span>.<span style=3D" color:#092e64;">first</span>);</pre>
<pre><span style=3D" color:#c0c0c0;">        </span>}</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#808000;">true</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span>}</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">constexpr</span><span style=3D" color:#c0c0c0;"> </span><span style=3D=
" color:#808000;">bool</span><span style=3D" color:#c0c0c0;"> </span><span =
style=3D" font-weight:600; color:#00677c;">has_enumerator</span>(<span styl=
e=3D" color:#092e64;">U</span><span style=3D" color:#c0c0c0;"> </span><span=
 style=3D" color:#092e64;">v</span>)<span style=3D" color:#c0c0c0;"> </span=
>{</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#092e64;">m_</span>.<span style=3D" color:#092e64;">find</span>(=
<span style=3D" color:#808000;">static_cast</span>&lt;<span style=3D" color=
:#092e64;">E</span>&gt;(<span style=3D" color:#092e64;">v</span>))<span sty=
le=3D" color:#c0c0c0;"> </span>!=3D<span style=3D" color:#c0c0c0;"> </span>=
<span style=3D" color:#092e64;">m_</span>.<span style=3D" color:#092e64;">e=
nd</span>();</pre>
<pre><span style=3D" color:#c0c0c0;">    </span>}</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">constexpr</span><span style=3D" color:#c0c0c0;"> </span><span style=3D=
" color:#808000;">bool</span><span style=3D" color:#c0c0c0;"> </span><span =
style=3D" font-weight:600; color:#00677c;">has_enumerator</span>(<span styl=
e=3D" color:#800080;">E</span><span style=3D" color:#c0c0c0;"> </span><span=
 style=3D" color:#092e64;">e</span>)<span style=3D" color:#c0c0c0;"> </span=
>{</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#092e64;">m_</span>.<span style=3D" color:#092e64;">find</span>(=
<span style=3D" color:#092e64;">e</span>)<span style=3D" color:#c0c0c0;"> <=
/span>!=3D<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#09=
2e64;">m_</span>.<span style=3D" color:#092e64;">end</span>();</pre>
<pre><span style=3D" color:#c0c0c0;">    </span>}</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">constexpr</span><span style=3D" color:#c0c0c0;"> </span><span style=3D=
" color:#808000;">const</span><span style=3D" color:#c0c0c0;"> </span><span=
 style=3D" font-weight:600; color:#00677c;">string</span>&amp;<span style=
=3D" color:#c0c0c0;"> </span><span style=3D" font-weight:600; color:#00677c=
;">to_string</span>()(<span style=3D" font-weight:600; color:#00677c;">E</s=
pan><span style=3D" color:#c0c0c0;"> </span><span style=3D" font-weight:600=
; color:#00677c;">e</span>)<span style=3D" color:#c0c0c0;"> </span><span st=
yle=3D" color:#808000;">const</span><span style=3D" color:#c0c0c0;"> </span=
>{</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#092e64;">has_enumerator</span>(<span style=3D" color:#092e64;">=
e</span>)<span style=3D" color:#c0c0c0;"> </span>?<span style=3D" color:#c0=
c0c0;"> </span><span style=3D" color:#092e64;">m_</span>[<span style=3D" co=
lor:#092e64;">e</span>]<span style=3D" color:#c0c0c0;"> </span>:<span style=
=3D" color:#c0c0c0;"> </span><span style=3D" color:#008000;">&quot;&quot;</=
span>;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span>}</pre>
<pre>};</pre>
<pre><br></pre>
<pre><span style=3D" color:#808000;">namespace</span><span style=3D" color:=
#c0c0c0;"> </span><span style=3D" color:#800080;">std</span><span style=3D"=
 color:#c0c0c0;"> </span>{</pre>
<pre><span style=3D" color:#808000;">template</span><span style=3D" color:#=
c0c0c0;"> </span>&lt;<span style=3D" color:#808000;">typename</span><span s=
tyle=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;">E</span>&g=
t;</pre>
<pre><span style=3D" color:#808000;">constexpr</span><span style=3D" color:=
#c0c0c0;"> </span><span style=3D" color:#808000;">bool</span><span style=3D=
" color:#c0c0c0;"> </span><span style=3D" color:#00677c;">is_enumerator</sp=
an>(<span style=3D" color:#800080;">underlying_type_t</span>&lt;<span style=
=3D" color:#800080;">E</span>&gt;<span style=3D" color:#c0c0c0;"> </span><s=
pan style=3D" color:#092e64;">v</span>)</pre>
<pre>{</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8000=
80;">enum_properties</span>&lt;<span style=3D" color:#800080;">E</span>&gt;=
<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#092e64;">enu=
m_prop</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">if</span><span style=3D" color:#c0c0c0;"> </span>(<span style=3D" colo=
r:#092e64;">enum_prop</span>.is_consecutive())</pre>
<pre><span style=3D" color:#c0c0c0;">        </span><span style=3D" color:#=
808000;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=
=3D" color:#092e64;">enum_prop</span>.min()<span style=3D" color:#c0c0c0;">=
 </span>&lt;=3D<span style=3D" color:#c0c0c0;"> </span><span style=3D" colo=
r:#092e64;">v</span><span style=3D" color:#c0c0c0;"> </span>&amp;&amp;<span=
 style=3D" color:#c0c0c0;"> </span><span style=3D" color:#092e64;">v</span>=
<span style=3D" color:#c0c0c0;"> </span>&lt;=3D<span style=3D" color:#c0c0c=
0;"> </span><span style=3D" color:#092e64;">enum_prop</span>.max();</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" c=
olor:#092e64;">enum_prop</span>.has_enumerator(<span style=3D" color:#092e6=
4;">v</span>);</pre>
<pre>}</pre>
<pre><span style=3D" color:#808000;">template</span><span style=3D" color:#=
c0c0c0;"> </span>&lt;<span style=3D" color:#808000;">typename</span><span s=
tyle=3D" color:#c0c0c0;"> </span><span style=3D" color:#800080;">E</span>&g=
t;</pre>
<pre><span style=3D" color:#808000;">constexpr</span><span style=3D" color:=
#c0c0c0;"> </span><span style=3D" color:#808000;">bool</span><span style=3D=
" color:#c0c0c0;"> </span><span style=3D" color:#00677c;">is_enumerator</sp=
an>(<span style=3D" color:#800080;">E</span><span style=3D" color:#c0c0c0;"=
> </span><span style=3D" color:#092e64;">e</span>)</pre>
<pre>{</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8000=
80;">enum_properties</span>&lt;<span style=3D" color:#800080;">E</span>&gt;=
<span style=3D" color:#c0c0c0;"> </span><span style=3D" color:#092e64;">enu=
m_prop</span>;</pre>
<pre><span style=3D" color:#c0c0c0;">    </span><span style=3D" color:#8080=
00;">return</span><span style=3D" color:#c0c0c0;"> </span><span style=3D" c=
olor:#092e64;">enum_prop</span>.has_enumerator(<span style=3D" color:#092e6=
4;">e</span>);</pre>
<pre>}</pre>
<pre>}</pre>
</div><div><div><br></div><div>As always, comments are welcome!</div><div>-=
Jon</div><div><br></div></div></div>

<p></p>

-- <br />
You received this message because you are subscribed to the Google Groups &=
quot;ISO C++ Standard - Future Proposals&quot; group.<br />
To unsubscribe from this group and stop receiving emails from it, send an e=
mail to <a href=3D"mailto:std-proposals+unsubscribe@isocpp.org">std-proposa=
ls+unsubscribe@isocpp.org</a>.<br />
To post to this group, send email to <a href=3D"mailto:std-proposals@isocpp=
..org">std-proposals@isocpp.org</a>.<br />
To view this discussion on the web visit <a href=3D"https://groups.google.c=
om/a/isocpp.org/d/msgid/std-proposals/fe1c20d8-c2b4-43b1-9b57-cb8bff160652%=
40isocpp.org?utm_medium=3Demail&utm_source=3Dfooter">https://groups.google.=
com/a/isocpp.org/d/msgid/std-proposals/fe1c20d8-c2b4-43b1-9b57-cb8bff160652=
%40isocpp.org</a>.<br />

------=_Part_12711_1425287868.1522044943512--

------=_Part_12710_1131629619.1522044943511--

.