Add #define to transform Object bounds on the fly
authorSam Moore <[email protected]>
Wed, 24 Sep 2014 06:27:26 +0000 (14:27 +0800)
committerSam Moore <[email protected]>
Wed, 24 Sep 2014 06:27:26 +0000 (14:27 +0800)
View model: Object bounds are fixed, transforming view transforms the View bounds,
Object bounds transformed to coordinates in View bounds before rendering.

Mutable Objects model (?) : Object bounds are transformed by operations, no transformation to View bounds necessary
The equivelant view bounds are still printed for comparison, but it is effectively (0,0,1,1)

First approach requires one transformation when altering view and then a *lot* during rendering
Second approach requires a lot of transformations when altering view and then <not as many> during rendering

Second approach also means we don't need a dedicated CPU renderer. Coordinates within bounds can be expressed as floats.

ALSO
  - Added cat and panda test images
  - Fixed segfault due to empty paths in cat.svg ... by not including empty paths...
  - ipdf will now run if the window can't be created so I can run it on the bus without X
    - Not much you can actually do without X though...
  - ParanoidNumbers got considerably more #defines for debugging and trying to make them less generally shit
    - Fixed some bugs in PN not revealed by realops tester
    - There are still bugs in PN that aren't revealed by anything
      - Despite it basically being exactly equivelant to doubles at the moment :S
    - Having bugs in basic mathematics operations is actually really really really hard to fix
      - Want to fix all the bugs so I can make PN faster
      - They are slow, they spend about 30% of their time doing std::vector stuff
        - And that's when the std::vector is *empty*

ALSO
  - The new approach to rendering means that the loss of precision is nowhere near as bad
    - This means we need to make new tests to demonstrate that there is in fact still a point to using arbitrary precision
    - Because floats are actually quite amazingly good if you aren't a moron about how you apply operations.
  - Really panicking now

ALSO
  - I'm sure I did something else but I forgot what it was.

18 files changed:
src/controlpanel.cpp
src/document.cpp
src/document.h
src/main.cpp
src/main.h
src/objectrenderer.cpp
src/objectrenderer.h
src/paranoidnumber.cpp
src/paranoidnumber.h
src/path.cpp
src/screen.cpp
src/screen.h
src/svg-tests/cat.svg [new file with mode: 0644]
src/svg-tests/cat2.svg [new file with mode: 0644]
src/svg-tests/panda.svg [new file with mode: 0644]
src/tests/realops.cpp
src/view.cpp
src/view.h

index f27bc7a..daa4b21 100644 (file)
@@ -336,7 +336,11 @@ void ControlPanel::LoadSVGIntoDocument()
        if (filename == "")
                return;
        
+       #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+               Rect bounds(0,0,1,1);
+       #else
        Rect bounds(m_view.GetBounds());
+       #endif
        bounds.x += bounds.w/Real(2);
        bounds.y += bounds.h/Real(2);
        
index 6b1e473..1522213 100644 (file)
@@ -316,7 +316,7 @@ unsigned Document::AddBezier(const Bezier & bezier)
        Bezier data = bezier.ToRelative(bounds); // Relative
        if (data.ToAbsolute(bounds) != bezier)
        {
-               Warn("%s != %s", data.ToAbsolute(Rect(0,0,1,1)).Str().c_str(),
+               Warn("%s != %s", data.ToAbsolute(bounds).Str().c_str(),
                        bezier.Str().c_str());
                Warn("ToAbsolute on ToRelative does not give original Bezier");
        }
@@ -561,7 +561,7 @@ void Document::ParseSVGNode(pugi::xml_node & root, SVGMatrix & parent_transform)
                        //Debug("Path data attribute is \"%s\"", d.c_str());
                        bool closed = false;
                        pair<unsigned, unsigned> range = ParseSVGPathData(d, transform, closed);
-                       if (true)//(closed)
+                       if (true && range.first < m_count && range.second < m_count)//(closed)
                        {
                                
                                string colour_str("");
@@ -1024,3 +1024,42 @@ void Document::AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real sca
 
        stbtt_FreeShape(font, instructions);
 }
+
+void Document::TransformObjectBounds(const SVGMatrix & transform)
+{
+       for (unsigned i = 0; i < m_count; ++i)
+       {
+               TransformXYPair(m_objects.bounds[i].x, m_objects.bounds[i].y, transform);
+               m_objects.bounds[i].w *= transform.a;
+               m_objects.bounds[i].h *= transform.d;
+       }
+}
+
+void Document::TranslateObjects(const Real & dx, const Real & dy)
+{
+       for (unsigned i = 0; i < m_count; ++i)
+       {
+               m_objects.bounds[i].x += dx;
+               m_objects.bounds[i].y += dy;
+       }
+}
+
+void Document::ScaleObjectsAboutPoint(const Real & x, const Real & y, const Real & scale_amount)
+{
+       for (unsigned i = 0; i < m_count; ++i)
+       {
+               m_objects.bounds[i].w /= scale_amount;
+               m_objects.bounds[i].h /= scale_amount;
+               //m_objects.bounds[i].x = x + (m_objects.bounds[i].x-x)/scale_amount;
+               //m_objects.bounds[i].y = y + (m_objects.bounds[i].y-x)/scale_amount;
+               m_objects.bounds[i].x -= x;
+               m_objects.bounds[i].x /= scale_amount;
+               m_objects.bounds[i].x += x;
+               
+               m_objects.bounds[i].y -= y;
+               m_objects.bounds[i].y /= scale_amount;
+               m_objects.bounds[i].y += y;
+
+       }       
+       
+}
index eb8710e..31a175b 100644 (file)
@@ -81,7 +81,11 @@ namespace IPDF
                        void AddText(const std::string & text, Real scale, Real x, Real y);
                        
                        void AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real scale, Real x, Real y);
-
+                       
+                       void TransformObjectBounds(const SVGMatrix & transform);
+                       void TranslateObjects(const Real & x, const Real & y);
+                       void ScaleObjectsAboutPoint(const Real & x, const Real & y, const Real & scale_amount);
+                       
 #ifndef QUADTREE_DISABLED
                        inline const QuadTree& GetQuadTree() { if (m_quadtree.root_id == QUADTREE_EMPTY) { GenBaseQuadtree(); } return m_quadtree; }
                        QuadTreeIndex GenQuadChild(QuadTreeIndex parent, QuadTreeNodeChildren type);
index 99e0b11..31ccf2e 100644 (file)
@@ -167,8 +167,11 @@ int main(int argc, char ** argv)
 
        if (input_filename != NULL)
        {
-               
-               doc.LoadSVG(input_filename, Rect(bounds.x+bounds.w/Real(2),bounds.y+bounds.h/Real(2),bounds.w/Real(800),bounds.h/Real(600)));
+               #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+                       doc.LoadSVG(input_filename, Rect(Real(1)/Real(2),Real(1)/Real(2),Real(1)/Real(800),Real(1)/Real(600)));         
+               #else
+                       doc.LoadSVG(input_filename, Rect(bounds.x+bounds.w/Real(2),bounds.y+bounds.h/Real(2),bounds.w/Real(800),bounds.h/Real(600)));
+               #endif
        }
        else if (input_text != NULL)
        {
@@ -181,6 +184,7 @@ int main(int argc, char ** argv)
 
 
        #ifndef CONTROLPANEL_DISABLED
+       if (!scr.Valid()) hide_control_panel = true;
        SDL_Thread * cp_thread = NULL;
        if (!hide_control_panel)
        {
index 92bf096..b9da3d7 100644 (file)
@@ -115,15 +115,22 @@ inline void MainLoop(Document & doc, Screen & scr, View & view, int max_frames =
                }
                scr.DebugFontPrintF("Rendered frame %lu\n", (uint64_t)frames);
                scr.DebugFontPrintF("Lazy Rendering = %d\n", view.UsingLazyRendering());
-               scr.DebugFontPrintF("[CPU] Render took %lf ms (%lf FPS) (total %lf s, avg FPS %lf)\n", cpu_frame*1e3, 1.0/cpu_frame, total_cpu_time,frames/total_cpu_time);
-               scr.DebugFontPrintF("[GPU] Render took %lf ms (%lf FPS) (total %lf s, avg FPS %lf)\n", gpu_frame*1e3, 1.0/gpu_frame, total_gpu_time, frames/total_gpu_time);
-               scr.DebugFontPrintF("[REALTIME] Render+Present+Cruft took %lf ms (%lf FPS) (total %lf s, avg FPS %lf)\n", real_frame*1e3, 1.0/real_frame, total_real_time,frames/total_real_time);
+               if (cpu_frame > 0 && total_cpu_time > 0)
+                       scr.DebugFontPrintF("[CPU] Render took %lf ms (%lf FPS) (total %lf s, avg FPS %lf)\n", cpu_frame*1e3, 1.0/cpu_frame, total_cpu_time,frames/total_cpu_time);
+               if (gpu_frame > 0 && total_gpu_time > 0)
+                       scr.DebugFontPrintF("[GPU] Render took %lf ms (%lf FPS) (total %lf s, avg FPS %lf)\n", gpu_frame*1e3, 1.0/gpu_frame, total_gpu_time, frames/total_gpu_time);
+               if (real_frame > 0 && total_real_time > 0)
+                       scr.DebugFontPrintF("[REALTIME] Render+Present+Cruft took %lf ms (%lf FPS) (total %lf s, avg FPS %lf)\n", real_frame*1e3, 1.0/real_frame, total_real_time,frames/total_real_time);
+
                scr.DebugFontPrintF("View bounds: %s\n", view.GetBounds().Str().c_str());
                scr.DebugFontPrintF("type of Real == %s\n", g_real_name[REALTYPE]);
                //#if REALTYPE == REAL_MPFRCPP
                //      scr.DebugFontPrintf("Precision: %s\nRounding: %s\n");
                //#endif 
 
+               #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+               scr.DebugFontPrint("Doing cumulative coordinate transforms on Objects.\n");
+               #else
                if (view.UsingGPUTransform())
                {
                        scr.DebugFontPrint("Doing coordinate transform on the GPU.\n");
@@ -132,6 +139,7 @@ inline void MainLoop(Document & doc, Screen & scr, View & view, int max_frames =
                {
                        scr.DebugFontPrint("Doing coordinate transform on the CPU.\n");
                }
+               #endif
                if (view.UsingGPURendering())
                {
                        scr.DebugFontPrint("Doing rendering using GPU.\n");
index 9327c97..cbceb3a 100644 (file)
@@ -24,9 +24,12 @@ ObjectRenderer::ObjectRenderer(const ObjectType & type,
                const char * vert_glsl_file, const char * frag_glsl_file, const char * geom_glsl_file)
                : m_type(type), m_shader_program(), m_indexes(), m_buffer_builder(NULL)
 {
-       m_shader_program.InitialiseShaders(vert_glsl_file, frag_glsl_file, geom_glsl_file);
-       m_shader_program.Use();
-       glUniform4f(m_shader_program.GetUniformLocation("colour"), 0,0,0,1); //TODO: Allow different colours
+       if (vert_glsl_file != NULL && frag_glsl_file != NULL && geom_glsl_file != NULL)
+       {
+               m_shader_program.InitialiseShaders(vert_glsl_file, frag_glsl_file, geom_glsl_file);
+               m_shader_program.Use();
+               glUniform4f(m_shader_program.GetUniformLocation("colour"), 0,0,0,1); //TODO: Allow different colours
+       }
 }
 
 /**
index 841040f..5a65363 100644 (file)
@@ -28,7 +28,7 @@ namespace IPDF
        {
                public:
                        /** Construct the ObjectRenderer **/
-                       ObjectRenderer(const ObjectType & type, const char * vert_glsl_file, const char * frag_glsl_file, const char * geom_glsl_file = "");
+                       ObjectRenderer(const ObjectType & type, const char * vert_glsl_file="", const char * frag_glsl_file="", const char * geom_glsl_file = "");
                        virtual ~ObjectRenderer() {}
 
                        /**
@@ -171,6 +171,15 @@ namespace IPDF
                        // do nothing on GPU
                        virtual void RenderUsingGPU(unsigned first_obj_id, unsigned last_obj_id) {}
        };
+
+       class FakeRenderer : public ObjectRenderer
+       {
+               public:
+                       FakeRenderer() : ObjectRenderer(PATH,NULL,NULL,NULL) {}
+                       ~FakeRenderer() {}
+                       virtual void RenderUsingCPU(Objects & objects, const View & view, const CPURenderTarget & target, unsigned first_obj_id, unsigned last_obj_id) {}
+                       virtual void RenderUsingGPU(unsigned first_obj_id, unsigned last_obj_id) {}
+       };
        
 }
 
index 82c7ba4..b2a66f4 100644 (file)
@@ -6,6 +6,8 @@
 #include <cassert>
 #include <iostream>
 
+// here be many copy paste bugs
+
 using namespace std;
 namespace IPDF
 {
@@ -80,20 +82,9 @@ ParanoidNumber & ParanoidNumber::operator=(const ParanoidNumber & a)
                for (auto n : a.m_next[i])
                        m_next[i].push_back(new ParanoidNumber(*n));
        }
-               /*
-               for (unsigned j = 0; j < m_next[i].size() && j < a.m_next[i].size(); ++j)
-               {
-                       if (a.m_next[i][j] != NULL)
-                               m_next[i][j]->operator=(*(a.m_next[i][j]));
-               }
-               
-               for (unsigned j = a.m_next[i].size(); j < m_next[i].size(); ++j)
-               {
-                       delete m_next[i][j];
-               }
-               m_next[i].resize(a.m_next[i].size());
-               */
-       //}     
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(a.Digit(),a.Digit());
+       #endif
        return *this;
 }
 
@@ -273,88 +264,147 @@ bool TrustingOp<int8_t>(int8_t & a, const int8_t & b, Optype op)
 
 ParanoidNumber & ParanoidNumber::operator+=(const digit_t & a)
 {
-       
-       //assert(this != NULL);
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare += a;
+       #endif
        delete Operation(new ParanoidNumber(a), ADD);
-       Simplify(ADD);
        Simplify(SUBTRACT);
+       Simplify(ADD);
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a);
+       #endif
        return *this;
 }
 
 
 ParanoidNumber & ParanoidNumber::operator-=(const digit_t & a)
 {
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare -= a;
+       #endif
        delete Operation(new ParanoidNumber(a), SUBTRACT);
-       Simplify(SUBTRACT);
        Simplify(ADD);
+       Simplify(SUBTRACT);
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a);
+       #endif
        return *this;
 }
 
 ParanoidNumber & ParanoidNumber::operator*=(const digit_t & a)
 {
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare *= a;
+       #endif
        delete Operation(new ParanoidNumber(a), MULTIPLY);
+       Simplify(DIVIDE);
        Simplify(MULTIPLY);
-       Simplify(DIVIDE);       
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a);
+       #endif
        return *this;
 }
 
 
 ParanoidNumber & ParanoidNumber::operator/=(const digit_t & a)
 {
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare /= a;
+       #endif
        delete Operation(new ParanoidNumber(a), DIVIDE);
        Simplify(MULTIPLY);
        Simplify(DIVIDE);
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a);
+       #endif
        return *this;
 }
 
 
 ParanoidNumber & ParanoidNumber::operator+=(const ParanoidNumber & a)
 {
-       
-       //assert(this != NULL);
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare += a.Digit();
+       #endif
        delete Operation(new ParanoidNumber(a), ADD);
-       Simplify(ADD);
        Simplify(SUBTRACT);
+       Simplify(ADD);
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a.Digit());
+       #endif
        return *this;
 }
 
 
 ParanoidNumber & ParanoidNumber::operator-=(const ParanoidNumber & a)
 {
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare -= a.Digit();
+       #endif
        delete Operation(new ParanoidNumber(a), SUBTRACT);
-       Simplify(SUBTRACT);
        Simplify(ADD);
+       Simplify(SUBTRACT);
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a.Digit());
+       #endif
        return *this;
 }
 
 ParanoidNumber & ParanoidNumber::operator*=(const ParanoidNumber & a)
 {
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare *= a.Digit();
+       #endif
        delete Operation(new ParanoidNumber(a), MULTIPLY);
+       Simplify(DIVIDE);
        Simplify(MULTIPLY);
-       Simplify(DIVIDE);       
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a.Digit());
+       #endif
        return *this;
 }
 
 
 ParanoidNumber & ParanoidNumber::operator/=(const ParanoidNumber & a)
 {
+       #ifdef PARANOID_COMPARE_EPSILON
+               digit_t compare = Digit();
+               compare /= a.Digit();
+       #endif
        delete Operation(new ParanoidNumber(a), DIVIDE);
        Simplify(MULTIPLY);
        Simplify(DIVIDE);
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(compare, a.Digit());
+       #endif
        return *this;
 }
 
 ParanoidNumber & ParanoidNumber::operator=(const digit_t & a)
 {
+
        for (int i = 0; i < NOP; ++i)
        {
                for (auto n : m_next[i])
                        delete n;
+               m_next[i].clear();
        }
        m_value = a;
        #ifdef PARANOID_CACHE_RESULT
        m_cached_result = a;
        #endif
+
+       #ifdef PARANOID_COMPARE_EPSILON
+               CompareForSanity(a,a);
+       #endif
+       
        return *this;
 }
 
@@ -366,12 +416,16 @@ ParanoidNumber * ParanoidNumber::OperationTerm(ParanoidNumber * b, Optype op, Pa
        m_cached_result = NAN;
        #endif
        #ifdef PARANOID_SIZE_LIMIT
-               if (m_size > PARANOID_SIZE_LIMIT)
+               if (m_size >= PARANOID_SIZE_LIMIT)
                {
                        if (op == ADD)
-                               m_value += b->Digit();
+                       {
+                               m_value += b->Digit() / GetFactors();
+                       }
                        else
-                               m_value -= b->Digit();
+                       {
+                               m_value -= b->Digit() / GetFactors();
+                       }
                        return b;
                }
                //Debug("At size limit %d", m_size);
@@ -493,20 +547,23 @@ ParanoidNumber * ParanoidNumber::OperationTerm(ParanoidNumber * b, Optype op, Pa
 
 ParanoidNumber * ParanoidNumber::OperationFactor(ParanoidNumber * b, Optype op, ParanoidNumber ** merge_point, Optype * merge_op)
 {
-       //assert(SanityCheck());
-       //assert(b->SanityCheck());
        #ifdef PARANOID_CACHE_RESULTS
        m_cached_result = NAN;
        #endif
        #ifdef PARANOID_SIZE_LIMIT
-               if (m_size > PARANOID_SIZE_LIMIT)
+               if (m_size >= PARANOID_SIZE_LIMIT)
                {
                        if (op == MULTIPLY)
                                m_value *= b->Digit();
                        else
                                m_value /= b->Digit();
-                       //Debug("At size limit %d", m_size);
+                               
+                       for (auto n : m_next[ADD])
+                               delete n->OperationFactor(new ParanoidNumber(*b), op);
+                       for (auto n : m_next[SUBTRACT])
+                               delete n->OperationFactor(new ParanoidNumber(*b), op);
                        return b;
+                       
                }
        #endif  
 
@@ -530,7 +587,11 @@ ParanoidNumber * ParanoidNumber::OperationFactor(ParanoidNumber * b, Optype op,
        }
        if (b->Floating() && b->m_value == 1)
                return b;
-       
+       if (b->Floating() && b->m_value == 0 && op == MULTIPLY)
+       {
+               operator=(*b);
+               return b;
+       }
 
                
        if (NoTerms() && b->NoTerms())
@@ -846,6 +907,11 @@ bool ParanoidNumber::SanityCheck(set<ParanoidNumber*> & visited) const
        {
                if (!div->SanityCheck(visited))
                        return false;
+               if (div->Digit() == 0)
+               {
+                       Error("Divide by zero");
+                       return false;
+               }
        }
        return true;
 }
index b152922..6ad24f2 100644 (file)
                                                                // but let's not do that...
                                                                
 
-#define PARANOID_CACHE_RESULTS
+//#define PARANOID_CACHE_RESULTS
 
 //#define PARANOID_USE_ARENA
 #define PARANOID_SIZE_LIMIT 0
 
 
+// Define to compare all ops against double ops and check within epsilon
+#define PARANOID_COMPARE_EPSILON 1e-6
+#define CompareForSanity(...) this->ParanoidNumber::CompareForSanityEx(__func__, __FILE__, __LINE__, __VA_ARGS__)
+
 namespace IPDF
 {
        typedef enum {ADD, SUBTRACT, MULTIPLY, DIVIDE, NOP} Optype;
@@ -184,6 +188,7 @@ namespace IPDF
                        ParanoidNumber operator+(const ParanoidNumber & a) const
                        {
                                ParanoidNumber result(*this);
+                               a.SanityCheck();
                                result += a;
                                return result;
                        }
@@ -197,6 +202,10 @@ namespace IPDF
                        {
                                ParanoidNumber result(*this);
                                result *= a;
+                               if (!result.SanityCheck())
+                               {
+                                       Fatal("Blargh");
+                               }
                                return result;
                        }
                        ParanoidNumber operator/(const ParanoidNumber & a) const
@@ -208,7 +217,15 @@ namespace IPDF
                        
                        std::string Str() const;
 
-                       
+                       inline void CompareForSanityEx(const char * func, const char * file, int line, const digit_t & compare, const digit_t & arg, const digit_t & eps = PARANOID_COMPARE_EPSILON)
+                       {
+                               if (fabs(Digit() - compare) > eps)
+                               {
+                                       Error("Called via %s(%lf) (%s:%d)", func, arg, file, line);
+                                       Error("Failed: %s", Str().c_str());
+                                       Fatal("This: %.30lf vs Expected: %.30lf", Digit(), compare);
+                               }
+                       }
 
                        
                        std::string PStr() const;
index af9fb74..f12e2a7 100644 (file)
@@ -21,6 +21,8 @@ Path::Path(const Objects & objects, unsigned start, unsigned end, const Colour &
        
        for (unsigned i = m_start; i <= m_end; ++i)
        {
+               if (i >= objects.bounds.size())
+                       break;
                const Rect & objb = objects.bounds[i];
                
                if (i == m_start || objb.x < xmin)
index e7d5d4b..46a2b73 100644 (file)
@@ -37,7 +37,8 @@ Screen::Screen(bool visible)
 
        if (!m_window)
        {
-               Fatal("Couldn't create window!");
+               Error("Couldn't create window!");
+               return;
        }
 
        SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 3);
@@ -111,6 +112,8 @@ Screen::Screen(bool visible)
 
 Screen::~Screen()
 {
+       if (!Valid())
+               return;
        SDL_GL_DeleteContext(m_gl_context);
        SDL_DestroyWindow(m_window);
        SDL_Quit();
@@ -118,6 +121,8 @@ Screen::~Screen()
 
 void Screen::Clear(float r, float g, float b, float a)
 {
+       if (!Valid())
+               return;
        glClearColor(r,g,b,a);
        glClear(GL_COLOR_BUFFER_BIT);
        DebugFontClear();
@@ -134,6 +139,9 @@ void Screen::ResizeViewport(int width, int height)
 
 bool Screen::PumpEvents()
 {
+       if (!Valid())
+               return true;
+
        SDL_Event evt;
        
        while (SDL_PollEvent(&evt))
@@ -212,6 +220,8 @@ void Screen::SetMouseCursor(Screen::MouseCursors cursor)
 
 void Screen::Present()
 {
+       if (!Valid())
+               return;
        if (m_debug_font_atlas)
                DebugFontFlush();
        m_last_frame_time = SDL_GetPerformanceCounter() - m_frame_begin_time;
@@ -227,7 +237,7 @@ void Screen::Present()
 
 double Screen::GetLastFrameTimeGPU() const
 {
-       if (!m_last_frame_gpu_timer)
+       if (!Valid() || !m_last_frame_gpu_timer)
                return 0;
        uint64_t frame_time_ns;
        glGetQueryObjectui64v(m_last_frame_gpu_timer, GL_QUERY_RESULT, &frame_time_ns);
@@ -278,6 +288,7 @@ void Screen::RenderPixels(int x, int y, int w, int h, uint8_t *pixels) const
 
 void Screen::ScreenShot(const char * filename) const
 {
+       if (!Valid()) return;
        Debug("Attempting to save BMP to file %s", filename);
 
        int w = ViewportWidth();
@@ -316,6 +327,7 @@ void Screen::ScreenShot(const char * filename) const
  */
 void Screen::RenderBMP(const char * filename) const
 {
+       if (!Valid()) return;
        if (access(filename, R_OK) == -1)
        {
                Error("No such file \"%s\" - Nothing to render - You might have done this deliberately?", filename);
@@ -384,6 +396,8 @@ void Screen::RenderBMP(const char * filename) const
 
 void Screen::DebugFontInit(const char *name, float font_size)
 {
+       if (!Valid()) return;
+
        unsigned char font_atlas_data[1024*1024];
        FILE *font_file = fopen(name, "rb");
        fseek(font_file, 0, SEEK_END);
@@ -415,6 +429,7 @@ void Screen::DebugFontInit(const char *name, float font_size)
 
 void Screen::DebugFontClear()
 {
+       if (!Valid()) return;
        m_debug_font_x = m_debug_font_y = 0;
        if (!m_debug_font_atlas) return;
        DebugFontPrint("\n");
@@ -422,6 +437,7 @@ void Screen::DebugFontClear()
 
 void Screen::DebugFontFlush()
 {
+       if (!Valid()) return;
        glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 40, -1, "Screen::DebugFontFlush()");      
                
        glEnable(GL_BLEND);
@@ -461,6 +477,7 @@ struct fontvertex
 
 void Screen::DebugFontPrint(const char* str)
 {
+       if (!Valid()) return;
        if (!m_debug_font_atlas || !m_show_debug_font) return;
 
        glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION, 41, -1, "Screen::DebugFontPrint()");
index e24bc3f..bdadd8e 100644 (file)
@@ -75,6 +75,8 @@ namespace IPDF
                
                void ShowDebugFont(bool show = true) {m_show_debug_font = show;}
                bool DebugFontShown() const {return m_show_debug_font;}
+
+               bool Valid() const {return m_window != NULL;}
        private:
                void ResizeViewport(int width, int height);
                void DebugFontFlush();
diff --git a/src/svg-tests/cat.svg b/src/svg-tests/cat.svg
new file mode 100644 (file)
index 0000000..6357fa6
--- /dev/null
@@ -0,0 +1,335 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg4606"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="452.92233"
+   height="353.87732"
+   xml:space="preserve"
+   sodipodi:docname="drawing1.svg"><metadata
+     id="metadata4612"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs4610" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1280"
+     inkscape:window-height="996"
+     id="namedview4608"
+     showgrid="false"
+     inkscape:zoom="0.91686094"
+     inkscape:cx="211.81711"
+     inkscape:cy="215.95496"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g4616"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" /><g
+     id="g4614"
+     inkscape:groupmode="layer"
+     inkscape:label="16061204"
+     transform="matrix(1.25,0,0,-1.25,-103.94542,797.364)"><g
+       id="g4616"
+       transform="matrix(0,-576,823.68,0,-123.84,699.84)"><path
+         style="fill:#000000"
+         d="m 0.43332582,0.25247174 c 0,6.4102e-4 3.75e-4,0.001166 8.3333e-4,0.001166 4.5834e-4,0 8.3334e-4,-5.2448e-4 8.3334e-4,-0.001166 0,-6.4103e-4 -3.75e-4,-0.001165 -8.3334e-4,-0.001165 -4.5833e-4,-5e-7 -8.3333e-4,5.2397e-4 -8.3333e-4,0.001165 z m 0.10916667,0.0389815 c -0.0114419,0.002596 -0.0234799,0.008327 -0.0258318,0.0122979 -5.7039e-4,9.6299e-4 -0.00146,0.001746 -0.001978,0.001741 -5.1731e-4,-5.83e-6 -0.003709,-0.00156 -0.007094,-0.003455 -0.0079,-0.004424 -0.0180856,-0.007076 -0.034975,-0.009109 -0.0129765,-0.001562 -0.0133895,-0.001568 -0.0813721,-0.001171 -0.0303081,1.7692e-4 -0.0559076,0.001881 -0.06375,0.004244 -0.001604,4.8339e-4 -0.004979,0.001211 -0.0075,0.001617 -0.00942,0.001516 -0.0263674,0.006481 -0.0329742,0.00966 -0.00619,0.002978 -0.0402879,0.0258184 -0.0422801,0.028321 -5.4764e-4,6.8794e-4 -0.003339,0.00336 -0.006204,0.005939 -0.003392,0.003054 -0.005207,0.005226 -0.005207,0.006232 0,0.002049 -0.001448,0.003353 -0.0179414,0.0161548 -0.004028,0.003126 -0.007858,0.006218 -0.008511,0.00687 -6.5333e-4,6.5227e-4 -0.002134,0.001897 -0.003291,0.002765 -0.00218,0.001637 -0.0121821,0.0107097 -0.0164401,0.0149119 -0.007369,0.007272 -0.0214287,0.024653 -0.0259845,0.0321221 -9.7749e-4,0.001603 -0.004403,0.006716 -0.007612,0.0113636 -0.003209,0.004647 -0.007214,0.01081 -0.008899,0.0136946 -0.001685,0.002885 -0.004529,0.007343 -0.006321,0.009907 -0.006666,0.009542 -0.0132589,0.0212838 -0.0221551,0.0394561 -0.009487,0.0193795 -0.0109545,0.0328076 -0.005336,0.0488307 8.4292e-4,0.002404 0.00197,0.006469 0.002504,0.009033 0.001047,0.005027 0.004756,0.0148738 0.007024,0.018648 7.7042e-4,0.001282 0.002342,0.004429 0.003493,0.006993 0.001151,0.002564 0.002646,0.005449 0.003324,0.00641 0.002771,0.00393 0.0180423,0.0150915 0.0265629,0.0194138 0.009709,0.004925 0.0125607,0.005975 0.0295833,0.0108953 0.005271,0.001523 0.0110833,0.00331 0.0129167,0.003971 0.001833,6.6036e-4 0.003708,0.001251 0.004167,0.001312 8.8201e-4,1.1764e-4 0.0138732,0.006101 0.0145833,0.006717 0.001177,0.001021 0.005952,0.002182 0.0102029,0.002483 0.002632,1.8603e-4 0.00582,6.9631e-4 0.007083,0.001134 0.001263,4.3766e-4 0.004547,0.001256 0.007297,0.001818 0.00275,5.6235e-4 0.007158,0.001523 0.009795,0.002135 0.002637,6.1186e-4 0.005559,0.001112 0.006492,0.001112 9.3324e-4,0 0.005587,9.1972e-4 0.0103408,0.002044 0.004754,0.001124 0.0104579,0.002195 0.0126749,0.002381 0.002217,1.8518e-4 0.004593,4.7683e-4 0.005281,6.4811e-4 0.003074,7.6585e-4 0.0174495,0.001582 0.025284,0.001436 0.004052,-7.569e-5 0.00949,1.5735e-4 0.0120833,5.1785e-4 0.002999,4.1683e-4 0.0207962,7.3452e-4 0.0488826,8.7261e-4 0.0359975,1.7697e-4 0.0446291,7.033e-5 0.0466667,-5.7657e-4 0.004171,-0.001324 0.0169447,-0.001742 0.0205635,-6.7225e-4 0.001685,4.98e-4 0.004497,8.8523e-4 0.00625,8.6054e-4 0.001753,-2.471e-5 0.006525,-1.02e-5 0.0106064,3.222e-5 0.008281,8.606e-5 0.0260113,-9.1227e-4 0.0304968,-0.001717 0.001604,-2.8785e-4 0.00656,-0.00105 0.0110127,-0.001694 0.008349,-0.001207 0.0198481,-0.003821 0.0254043,-0.005774 0.001741,-6.1228e-4 0.004666,-0.001444 0.0065,-0.001849 0.001833,-4.0458e-4 0.004409,-0.001489 0.005724,-0.00241 0.001315,-9.2085e-4 0.002721,-0.001674 0.003125,-0.001674 4.0395e-4,0 7.3445e-4,-4.8513e-4 7.3445e-4,-0.001078 0,-5.9294e-4 0.001167,-0.002205 0.002593,-0.003582 0.006424,-0.006201 0.0102805,-0.0118818 0.0116735,-0.0171935 0.001715,-0.006539 0.003234,-0.0159223 0.003249,-0.0200679 8.92e-6,-0.002424 5.6834e-4,-0.007292 0.001243,-0.0108179 6.7474e-4,-0.003526 0.001232,-0.008115 0.001238,-0.0101981 6.67e-6,-0.002083 3.6616e-4,-0.004706 7.9955e-4,-0.005828 4.3339e-4,-0.001122 9.6801e-4,-0.003193 0.001188,-0.004603 2.2004e-4,-0.00141 7.071e-4,-0.002721 0.001082,-0.002914 3.7526e-4,-1.928e-4 7.8833e-4,-0.00258 9.1792e-4,-0.005304 2.5384e-4,-0.005337 0.001162,-0.009795 0.003186,-0.015644 7.0374e-4,-0.002034 0.001095,-0.004034 8.6983e-4,-0.004444 -2.2533e-4,-4.1063e-4 2.9285e-4,-0.002549 0.001152,-0.004752 8.5867e-4,-0.002203 0.002154,-0.005972 0.002878,-0.008376 7.2429e-4,-0.002404 0.00207,-0.006862 0.002991,-0.009907 0.003415,-0.0112939 0.006964,-0.0290586 0.007858,-0.0393357 6.709e-4,-0.007708 0.00368,-0.0205991 0.0055,-0.0235298 8.692e-4,-0.001403 0.00158,-0.003177 0.00158,-0.003941 0,-7.6486e-4 3.199e-4,-0.001846 7.108e-4,-0.002403 3.909e-4,-5.5652e-4 0.00155,-0.00283 0.00257,-0.005051 0.00102,-0.002222 0.00281,-0.005368 0.00397,-0.006993 0.00296,-0.004136 0.00449,-0.0118425 0.00323,-0.0162529 -5.28e-4,-0.001849 -0.00128,-0.003153 -0.00167,-0.002898 -3.884e-4,2.549e-4 -3.399e-4,-6.107e-5 1.076e-4,-7.021e-4 0.00143,-0.002045 0.003,-0.009409 0.00256,-0.0120334 -2.302e-4,-0.001394 -0.00131,-0.004099 -0.00241,-0.006011 -0.00204,-0.003569 -0.00532,-0.005751 -0.00981,-0.006539 -0.00276,-4.849e-4 -0.00562,-0.002712 -0.00685,-0.005339 -0.00112,-0.002383 -0.00279,-0.004436 -0.005115,-0.006282 l -0.001562,-0.00124 0.004827,-4.2179e-4 c 0.00358,-3.1294e-4 0.00568,-8.9522e-4 0.00813,-0.002257 0.00182,-0.001009 0.00403,-0.002097 0.00492,-0.002418 0.00206,-7.4417e-4 0.00461,-0.005163 0.00467,-0.008074 1.022e-4,-0.004929 -0.00425,-0.0129557 -0.00837,-0.0154188 -8.726e-4,-5.2249e-4 -0.00159,-0.001285 -0.00159,-0.001695 0,-7.8904e-4 -0.00505,-0.004521 -0.0081,-0.005989 -0.00179,-8.595e-4 -0.00179,-9.088e-4 -3.431e-4,-0.002944 0.00243,-0.00341 0.00452,-0.010391 0.00396,-0.0132365 -3.973e-4,-0.002027 -5.08e-5,-0.003253 0.00166,-0.005864 0.00154,-0.00236 0.00204,-0.003912 0.00175,-0.005447 -4.693e-4,-0.002447 -0.00463,-0.006382 -0.00852,-0.008065 -0.006617,-0.00286 -0.0247958,-0.003832 -0.0337329,-0.001804 z m 0.0283777,0.001584 c 0.003888,0.001071 0.007385,0.002589 0.007429,0.003225 1.44e-5,2.0653e-4 0.00115,0.001218 0.00253,0.002247 0.00349,0.002613 0.00323,0.005321 -7.968e-4,0.008133 -0.00145,0.001014 -0.00169,9.8898e-4 -0.006684,-6.8701e-4 -0.00389,-0.001306 -0.005418,-0.001573 -0.006134,-0.001072 -0.001051,7.3467e-4 4.5601e-4,0.00172 0.002782,0.00182 0.005815,2.4896e-4 0.008523,0.002294 0.008987,0.006786 2.746e-4,0.002661 -2.006e-4,0.004549 -0.00224,0.008913 -0.003482,0.007435 -0.003505,0.007457 -0.006914,0.006485 -0.003731,-0.001065 -0.005831,-0.001109 -0.006315,-1.3193e-4 -2.8834e-4,5.8263e-4 8.55e-5,7.2727e-4 0.001304,5.0449e-4 0.001922,-3.5158e-4 0.009388,0.003031 0.0103315,0.004681 9.288e-4,0.001624 7.573e-4,0.004673 -5.6124e-4,0.009973 -6.8465e-4,0.002752 -0.001449,0.005979 -0.001699,0.00717 -2.5002e-4,0.001192 -9.0861e-4,0.002508 -0.001464,0.002925 -5.5492e-4,4.1695e-4 -0.002542,0.001947 -0.004417,0.003401 -0.001874,0.001453 -0.003841,0.002542 -0.00437,0.002418 -5.2909e-4,-1.2331e-4 -0.00133,4.5268e-4 -0.00178,0.00128 -4.4981e-4,8.2733e-4 -0.001326,0.001504 -0.001947,0.001504 -6.2115e-4,0 -0.002336,0.001175 -0.003812,0.002612 -0.001475,0.001437 -0.004514,0.003692 -0.006753,0.005012 -0.002239,0.00132 -0.005048,0.003387 -0.006243,0.004593 l -0.002173,0.002193 -0.006408,-0.002251 c -0.006825,-0.002398 -0.009985,-0.002698 -0.0168564,-0.001603 -0.002062,3.2879e-4 -0.004875,7.0729e-4 -0.00625,8.4109e-4 -0.005572,5.4236e-4 -0.0129107,0.001369 -0.0202244,0.002278 -0.004248,5.2809e-4 -0.009311,8.7984e-4 -0.01125,7.8159e-4 L 0.47541585,0.3768898 0.475656,0.3678568 C 0.47596449,0.3562536 0.477054,0.3505312 0.48056,0.3420877 c 0.00317,-0.007632 0.004309,-0.00975 0.007835,-0.0145625 0.001341,-0.00183 0.002437,-0.003708 0.002437,-0.004173 0,-8.3608e-4 0.002372,-0.001766 0.0120405,-0.004719 0.00776,-0.00237 0.009985,-0.003818 0.0111111,-0.007231 0.002259,-0.006845 0.008322,-0.0117472 0.0190692,-0.0154181 0.0130089,-0.004444 0.01311,-0.004461 0.0240736,-0.004204 0.00692,1.6265e-4 0.0111968,5.5338e-4 0.01375,0.001256 z m -0.0298516,0.0113749 c -0.002845,7.6446e-4 -0.005192,0.00191 -0.006667,0.003253 -0.001252,0.00114 -0.002932,0.002489 -0.003734,0.002998 -8.0209e-4,5.0915e-4 -0.001458,0.00113 -0.001458,0.001379 0,0.001176 0.003063,1.9767e-4 0.007357,-0.00235 0.002599,-0.001542 0.005734,-0.003102 0.006966,-0.003468 0.002516,-7.4657e-4 0.004825,-0.003075 0.002997,-0.003023 -5.8904e-4,1.69e-5 -0.003047,5.6136e-4 -0.005462,0.00121 z m -0.003222,0.00305 c -0.001313,7.905e-4 -0.002525,0.001342 -0.002692,0.001225 -1.6747e-4,-1.1655e-4 7.7003e-4,-8.5862e-4 0.002083,-0.001649 0.001313,-7.905e-4 0.002525,-0.001342 0.002692,-0.001225 1.6747e-4,1.1655e-4 -7.7003e-4,8.5863e-4 -0.002083,0.001649 z m 0.001395,0.0240722 c -0.005581,0.002383 -0.009925,0.00529 -0.0120709,0.008076 -0.001385,0.001798 -0.001445,0.002182 -4.1592e-4,0.002637 0.001903,8.4196e-4 0.002203,6.9854e-4 0.004027,-0.001926 0.002144,-0.003085 0.00751,-0.006993 0.0113507,-0.008267 0.002785,-9.2401e-4 0.003626,-0.001747 0.002285,-0.002235 -3.4375e-4,-1.2524e-4 -0.002673,6.4685e-4 -0.005176,0.001716 z m -0.1491991,-0.0382423 c 0.007398,-2.7127e-4 0.0316665,-2.3176e-4 0.0316666,5.129e-5 1.2e-7,5.106e-4 -0.005375,0.002252 -0.006952,0.002252 -7.0577e-4,0 -0.001515,-2.6224e-4 -0.001798,-5.8275e-4 -8.7765e-4,-9.9307e-4 -0.002562,-6.5268e-4 -0.005872,0.001187 -0.002044,0.001136 -0.003652,0.001623 -0.00449,0.00136 -7.1797e-4,-2.2535e-4 -0.002587,-3.6276e-4 -0.004153,-3.0536e-4 -0.00229,8.397e-5 -0.003294,-2.6784e-4 -0.005127,-0.001797 -0.001254,-0.001046 -0.002556,-0.001712 -0.002894,-0.00148 -3.3806e-4,2.3182e-4 6.566e-4,0.001463 0.00221,0.002737 0.00205,0.00168 0.003282,0.002232 0.004492,0.002013 0.002343,-4.2482e-4 0.003039,-4.1905e-4 0.005522,4.546e-5 0.001747,3.2692e-4 0.00279,4.079e-5 0.005166,-0.001418 0.002827,-0.001736 0.003093,-0.001785 0.005301,-9.7605e-4 0.002149,7.8753e-4 0.002592,7.4208e-4 0.005876,-6.039e-4 0.001953,-8.0053e-4 0.003564,-0.001234 0.003578,-9.6306e-4 1.458e-5,2.7081e-4 5.9241e-4,-3.205e-5 0.001284,-6.7307e-4 0.001115,-0.001034 0.002415,-0.001187 0.011501,-0.001357 l 0.0102434,-1.9114e-4 7.8265e-4,0.001939 c 5.2646e-4,0.001305 0.00166,0.002248 0.003463,0.002882 0.001474,5.1848e-4 0.003245,0.00127 0.003935,0.001671 0.001344,7.8018e-4 0.0117357,3.3275e-4 0.0133485,-5.7477e-4 4.5833e-4,-2.5787e-4 0.003635,-0.001062 0.007059,-0.001787 0.006168,-0.001306 0.00628,-0.001308 0.0120833,-2.8345e-4 0.006879,0.001215 0.0167061,0.004443 0.0199734,0.006562 l 0.002303,0.001493 -0.002693,0.001193 -0.002693,0.001192 -0.001627,-0.001562 c -8.9506e-4,-8.5927e-4 -0.002346,-0.001562 -0.003225,-0.001562 -0.001219,0 -0.001597,-4.1387e-4 -0.001597,-0.001748 0,-0.001217 -4.0675e-4,-0.001748 -0.001339,-0.001748 -8.7877e-4,0 -0.001165,3.169e-4 -8.3334e-4,9.2179e-4 2.7821e-4,5.07e-4 5.0583e-4,0.001523 5.0583e-4,0.002258 0,0.001027 5.9555e-4,0.00142 0.002577,0.001697 0.001582,2.2127e-4 0.002741,7.9953e-4 0.003002,0.001498 2.3409e-4,6.2599e-4 0.001043,0.001233 0.001798,0.00135 0.002028,3.1294e-4 0.006789,-0.001391 0.006789,-0.002429 0,-6.518e-4 5.9455e-4,-4.8286e-4 0.002165,6.151e-4 l 0.002165,0.001514 -0.00154,0.003282 c -0.00102,0.002174 -0.001906,0.003185 -0.002625,0.002996 -5.9671e-4,-1.5717e-4 -8.5584e-4,-2.622e-5 -5.7581e-4,2.9038e-4 2.8001e-4,3.1684e-4 -2.4839e-4,5.7605e-4 -0.001174,5.7605e-4 -9.2586e-4,0 -0.002435,5.6416e-4 -0.003354,0.001254 -0.001257,9.4365e-4 -0.001942,0.001096 -0.002769,6.1609e-4 -7.0019e-4,-4.0641e-4 -0.001542,-4.4161e-4 -0.002321,-9.709e-5 -9.6261e-4,4.2576e-4 -8.24e-4,5.4237e-4 6.5295e-4,5.4942e-4 0.00283,1.34e-5 0.002248,9.9522e-4 -8.3333e-4,0.001404 -0.00149,1.9767e-4 -0.003833,7.8962e-4 -0.005208,0.001316 -0.003347,0.00128 -0.0379423,0.001846 -0.0491667,8.046e-4 -0.004125,-3.8286e-4 -0.008062,-6.6014e-4 -0.00875,-6.162e-4 -6.875e-4,4.371e-5 -0.004812,6.183e-5 -0.009167,3.963e-5 -0.0272773,-1.3846e-4 -0.0459626,-3.788e-5 -0.0466307,2.5076e-4 -4.2477e-4,1.8362e-4 -0.007075,5.9988e-4 -0.0147791,9.2506e-4 -0.0233022,9.8356e-4 -0.0370463,0.001989 -0.0394392,0.002884 -7.3034e-4,2.7331e-4 -0.004682,9.1154e-4 -0.008781,0.001418 -0.0131244,0.001623 -0.0170366,0.002223 -0.0170366,0.002615 0,2.1061e-4 -0.002156,6.7559e-4 -0.004792,0.001033 -0.002635,3.5769e-4 -0.006667,9.0915e-4 -0.008958,0.001225 -0.005855,8.0804e-4 -0.0179115,0.003818 -0.0235638,0.005883 -0.002623,9.5833e-4 -0.007019,0.002373 -0.009769,0.003144 -0.00275,7.7092e-4 -0.006401,0.002308 -0.008113,0.003416 -0.001712,0.001108 -0.004649,0.002618 -0.006527,0.003356 l -0.003414,0.001342 0.001234,-0.001667 c 0.001078,-0.001457 0.004383,-0.00456 0.0101543,-0.009538 0.003042,-0.002623 0.0292972,-0.0207338 0.0334295,-0.0230592 0.002235,-0.001258 0.00468,-0.002811 0.005433,-0.003452 7.5306e-4,-6.4103e-4 0.003431,-0.001915 0.005952,-0.002831 l 0.004583,-0.001665 0.003635,0.001484 c 0.001999,8.1638e-4 0.005517,0.001657 0.007817,0.001868 l 0.004182,3.8386e-4 0.002681,-0.002893 c 0.002174,-0.002346 0.003237,-0.002956 0.005621,-0.003227 0.002838,-3.2203e-4 0.007501,-0.003269 0.007501,-0.004741 0,-8.3392e-4 0.006079,-0.002584 0.009117,-0.002624 0.001347,-1.807e-5 0.004535,-3.1271e-4 0.007083,-6.5507e-4 0.006735,-9.0496e-4 0.031037,-0.002049 0.0388002,-0.001826 0.003667,1.0512e-4 0.007229,1.7051e-4 0.007917,1.4533e-4 z m -0.0164997,0.002219 c -8.6845e-4,0.001742 -0.004856,0.0038 -0.008643,0.004461 -0.001627,2.8391e-4 -0.00292,2.913e-5 -0.004809,-9.4727e-4 -0.002533,-0.001309 -0.002633,-0.001315 -0.005117,-2.8875e-4 -0.003111,0.001285 -0.005343,9.373e-4 -0.008845,-0.001379 -0.002623,-0.001735 -0.00442,-0.002246 -0.00442,-0.001257 0,8.0192e-4 0.007626,0.00474 0.009179,0.00474 7.7305e-4,0 0.002612,-2.9405e-4 0.004086,-6.5343e-4 0.002219,-5.4085e-4 0.003161,-4.7232e-4 0.005473,3.9813e-4 0.002738,0.001031 0.002888,0.001025 0.007711,-3.148e-4 0.003855,-0.001071 0.005312,-0.001843 0.006735,-0.003573 0.002137,-0.002596 0.002194,-0.00285 6.4763e-4,-0.00285 -6.4267e-4,0 -0.001542,7.4872e-4 -0.001998,0.001664 z m 0.0956664,-0.001665 c 0.002979,3.0845e-4 0.00572,5.6603e-4 0.006091,5.7249e-4 0.001624,2.798e-5 -5.4577e-4,0.001177 -0.002223,0.001177 -0.001027,0 -0.002235,2.5676e-4 -0.002683,5.7051e-4 -4.4873e-4,3.1381e-4 -0.003944,9.8549e-4 -0.007767,0.001493 -0.006798,9.0181e-4 -0.006991,8.9569e-4 -0.00878,-2.792e-4 -0.001006,-6.6128e-4 -0.002448,-0.001202 -0.003204,-0.001202 -0.001374,0 -0.003101,-0.00164 -0.003101,-0.002946 0,-7.5787e-4 0.0115917,-4.2978e-4 0.0216667,6.1317e-4 z m -0.14520625,0.005975 c -6.8359e-4,7.2115e-4 -0.001948,0.001387 -0.00281,0.00148 -0.004366,4.6911e-4 -0.005387,9.2605e-4 -0.00821,0.003674 -0.00294,0.002861 -0.003171,0.002959 -0.006084,0.002577 -0.006355,-8.338e-4 -0.0117977,-0.003797 -0.006974,-0.003797 7.9795e-4,0 0.001807,-2.3788e-4 0.002242,-5.2862e-4 4.3541e-4,-2.9073e-4 0.002104,-7.9574e-4 0.003708,-0.001122 0.001604,-3.2651e-4 0.005354,-0.00125 0.008333,-0.002051 0.002979,-8.0163e-4 0.006681,-0.001477 0.008227,-0.0015 0.00273,-4.138e-5 0.002775,-5.83e-6 0.001567,0.001269 z m 0.0965446,0.0221568 c 0.002704,0.001895 -8.6875e-4,0.0214039 -0.00392,0.0214039 -0.002595,0 -0.005543,-0.008085 -0.005941,-0.0162983 -2.1155e-4,-0.004359 -7.7591e-4,-0.00569 -0.001676,-0.003952 -4.7546e-4,9.1766e-4 7.7584e-4,0.0102592 0.001894,0.0141411 4.6318e-4,0.001608 0.001396,0.00367 0.002074,0.004583 6.7726e-4,9.1288e-4 0.001231,0.002023 0.001231,0.002467 0,4.581e-4 8.4365e-4,8.0752e-4 0.00195,8.0752e-4 0.002186,0 0.003472,-0.001505 0.00431,-0.005047 2.9123e-4,-0.00123 0.001112,-0.00417 0.001824,-0.006533 8.0429e-4,-0.002668 0.00113,-0.005731 8.5984e-4,-0.008085 l -4.3503e-4,-0.00379 0.017204,5.0932e-4 c 0.009462,2.8019e-4 0.0245931,4.5338e-4 0.0336242,3.8502e-4 0.0152214,-1.1532e-4 0.0163764,-5.128e-5 0.0158208,8.7413e-4 -3.2968e-4,5.4912e-4 -0.00181,0.002626 -0.003289,0.004616 -0.001479,0.00199 -0.003483,0.005399 -0.004453,0.007576 -9.6968e-4,0.002177 -0.00262,0.005794 -0.003667,0.008038 -0.001047,0.002244 -0.00234,0.006571 -0.002874,0.009615 -5.3321e-4,0.003045 -0.001177,0.006454 -0.001431,0.007576 -2.537e-4,0.001122 -3.99e-4,0.004427 -3.2289e-4,0.007345 1.707e-4,0.006545 -4.0647e-4,0.008389 -0.002625,0.008389 -0.002133,0 -0.00833,-0.001211 -0.0223296,-0.004363 -0.0131868,-0.002969 -0.0290572,-0.00561 -0.036562,-0.006083 -0.00527,-3.3222e-4 -0.005323,-3.5344e-4 -0.006667,-0.002666 -7.4504e-4,-0.001282 -0.002716,-0.004036 -0.004381,-0.006119 -0.001664,-0.002083 -0.003279,-0.004547 -0.003588,-0.005475 -3.7947e-4,-0.00114 -8.3564e-4,-0.001495 -0.001406,-0.001096 -8.4001e-4,5.8747e-4 3.8028e-4,0.002578 0.006669,0.010878 0.002557,0.003375 0.00321,0.005029 0.001976,0.005004 -3.4375e-4,-6.99e-6 -0.00381,-0.003029 -0.007702,-0.006715 -0.003892,-0.003686 -0.007207,-0.00643 -0.007366,-0.006096 -2.7363e-4,5.7406e-4 0.0108708,0.0113067 0.0124485,0.0119886 0.001665,7.197e-4 4.5182e-4,0.001783 -0.003522,0.003088 -0.005428,0.001782 -0.0106679,0.00391 -0.0191084,0.007762 -0.007739,0.003532 -0.0196429,0.007475 -0.0271793,0.009002 -0.006444,0.001306 -0.0077,0.001388 -0.0128198,8.3234e-4 -0.003122,-3.3869e-4 -0.006701,-8.8829e-4 -0.007953,-0.001221 -0.001527,-4.06e-4 -0.002553,-4.123e-4 -0.003115,-1.923e-5 -5.6208e-4,3.9306e-4 -0.00237,2.098e-5 -0.005489,-0.00113 -0.00433,-0.001598 -0.0155075,-0.004042 -0.0242344,-0.005299 -0.002062,-2.9697e-4 -0.006972,-0.001301 -0.0109102,-0.00223 -0.007328,-0.00173 -0.019883,-0.004055 -0.028512,-0.005281 -0.005301,-7.5297e-4 -0.0227572,-0.005101 -0.028027,-0.006981 -0.003181,-0.001135 -0.005884,-0.001534 -0.005884,-8.6865e-4 0,1.7326e-4 7.4185e-4,0.001026 0.001649,0.001894 0.001484,0.001421 0.003808,0.008456 0.005433,0.0164391 8.4934e-4,0.004175 0.004003,0.0105633 0.008773,0.0177739 8.4817e-4,0.001282 0.002552,0.004167 0.003787,0.00641 0.001235,0.002244 0.004503,0.006694 0.007264,0.009891 0.002761,0.003196 0.005736,0.006944 0.006611,0.008328 8.7564e-4,0.001384 0.003456,0.004261 0.005735,0.006392 0.002278,0.002131 0.00526,0.005241 0.006625,0.00691 l 0.002482,0.003034 -0.002044,0.003993 c -0.001124,0.002196 -0.002645,0.005828 -0.00338,0.008072 -0.0016,0.004885 -0.00458,0.0107809 -0.005449,0.0107809 -3.4347e-4,0 -8.3048e-4,5.5086e-4 -0.001082,0.001224 -2.5178e-4,6.7327e-4 -7.8458e-4,0.001083 -0.001184,9.1027e-4 -3.9943e-4,-1.7263e-4 -0.001142,4.5658e-4 -0.00165,0.001398 -6.5595e-4,0.001215 -6.63e-4,0.001712 -2.429e-5,0.001712 4.949e-4,0 6.8108e-4,1.5297e-4 4.1372e-4,3.3994e-4 -2.6736e-4,1.8697e-4 -7.9861e-4,3.3926e-4 -0.001181,3.3844e-4 -9.6461e-4,-2.33e-6 -0.003675,0.004023 -0.003126,0.004643 2.4585e-4,2.7817e-4 4.058e-5,5.0578e-4 -4.5614e-4,5.0578e-4 -8.1224e-4,0 -0.002485,0.002191 -0.002224,0.002914 5.791e-5,1.6026e-4 -8.3079e-4,0.001208 -0.001975,0.002329 -0.002448,0.002397 -0.003965,0.004197 -0.007863,0.009326 -0.001583,0.002083 -0.003646,0.004575 -0.004584,0.005536 -0.002027,0.002078 -0.002131,0.002622 -4.9917e-4,0.002622 6.9765e-4,0 0.002768,-0.002176 0.004851,-0.005099 0.001998,-0.002804 0.005417,-0.006915 0.007598,-0.009136 0.00218,-0.00222 0.005425,-0.006068 0.00721,-0.008551 0.005172,-0.007193 0.005736,-0.006635 0.003294,0.003264 -3.9532e-4,0.001603 -9.5253e-4,0.00829 -0.001238,0.0148601 -6.2281e-4,0.0143223 9.5884e-4,0.0281921 0.005067,0.0444347 5.94e-4,0.002348 0.001466,0.002751 0.002677,0.001238 4.9084e-4,-6.1334e-4 3.7328e-4,-0.001488 -3.3325e-4,-0.002478 -0.001079,-0.001512 -0.001454,-0.002985 -0.00425,-0.0166793 -0.001638,-0.00802 -0.00182,-0.0346937 -2.788e-4,-0.0407925 4.8593e-4,-0.001923 0.001437,-0.005914 0.002114,-0.00887 6.7678e-4,-0.002955 0.002542,-0.008069 0.004145,-0.0113637 0.001603,-0.003295 0.002918,-0.006522 0.002921,-0.007172 3.33e-6,-6.5006e-4 0.001338,-0.003126 0.002967,-0.005502 l 0.00296,-0.00432 -0.001685,-0.001491 c -0.002225,-0.001969 -0.009017,-0.00956 -0.0114762,-0.0128262 -0.001074,-0.001427 -0.002256,-0.002738 -0.002627,-0.002914 -0.002039,-9.678e-4 -0.0151343,-0.0181328 -0.0151343,-0.0198355 0,-3.3094e-4 -0.00185,-0.003287 -0.004111,-0.006569 -0.004603,-0.006681 -0.00718,-0.011845 -0.007985,-0.0159964 -2.9746e-4,-0.001535 -0.001073,-0.004681 -0.001723,-0.006991 -6.5002e-4,-0.00231 -0.001182,-0.004876 -0.001182,-0.005701 0,-0.001469 1.1732e-4,-0.001439 0.005541,0.001432 0.003048,0.001613 0.006002,0.002933 0.006565,0.002933 5.6303e-4,0 0.001531,4.2785e-4 0.002152,9.5081e-4 0.001191,0.001003 0.0204975,0.0101195 0.0214414,0.0101241 3.0299e-4,0 0.001749,7.8823e-4 0.003214,0.001748 0.001465,9.6008e-4 0.003027,0.001746 0.003472,0.001746 4.45e-4,0 9.3408e-4,1.9668e-4 0.001087,4.3706e-4 4.0656e-4,6.3969e-4 0.0108067,0.00539 0.0118005,0.00539 0.001493,0 0.0109861,0.003436 0.0128526,0.004652 9.9276e-4,6.468e-4 0.002177,0.001176 0.002631,0.001176 0.001073,0 0.007857,0.003203 0.009225,0.004355 0.001138,9.5863e-4 0.003352,0.001212 0.003352,3.8345e-4 0,-6.842e-4 0.009428,-0.007357 0.0101783,-0.007205 3.2726e-4,6.661e-5 3.9658e-4,-2.405e-4 1.5404e-4,-6.8252e-4 -2.4254e-4,-4.4196e-4 6.5481e-4,-0.001684 0.001994,-0.002761 0.001339,-0.001077 0.002893,-0.002941 0.003452,-0.004142 0.001012,-0.002175 0.001033,-0.002183 0.004494,-0.001748 0.006214,7.8048e-4 0.014869,3.8736e-4 0.0204864,-9.3059e-4 0.006211,-0.001457 0.0204784,-0.006626 0.0263962,-0.009562 0.004538,-0.002252 0.0167856,-0.006854 0.0209195,-0.00786 0.002539,-6.1824e-4 0.002811,-5.3123e-4 0.006059,0.001933 0.00187,0.001419 0.00358,0.00258 0.0038,0.00258 0.001101,0 1.3318e-4,-0.001427 -0.002097,-0.003091 -0.001373,-0.001024 -0.002498,-0.002059 -0.0025,-0.002299 -4.16e-6,-4.268e-4 0.005424,-7.3974e-4 0.007079,-4.0815e-4 4.5833e-4,9.184e-5 0.001958,2.4487e-4 0.003333,3.4015e-4 0.001375,9.528e-5 0.004,4.6486e-4 0.005833,8.2127e-4 0.001833,3.5641e-4 0.005583,8.8304e-4 0.008333,0.00117 0.005256,5.4895e-4 0.0110926,0.001643 0.0125,0.002343 8.941e-4,4.4476e-4 0.0150293,0.003664 0.0191667,0.004365 0.004892,8.2897e-4 0.00592,9.2191e-4 0.0133378,0.001206 0.005687,2.1766e-4 0.009405,-5.82e-6 0.0153527,-9.1066e-4 0.004316,-6.588e-4 0.007959,-0.00112 0.008095,-0.001025 1.3596e-4,9.51e-5 -0.001804,6.6043e-4 -0.004311,0.001256 -0.002507,5.9592e-4 -0.004558,0.001239 -0.004558,0.001429 0,1.9021e-4 -0.001219,7.1026e-4 -0.002708,0.001156 -0.003338,9.982e-4 -0.005724,0.002388 -0.005172,0.003013 2.2775e-4,2.5769e-4 0.00302,-5.6405e-4 0.006205,-0.001826 0.003185,-0.001262 0.006343,-0.002295 0.007017,-0.002295 6.7451e-4,0 0.001432,-2.3251e-4 0.001683,-5.1666e-4 2.5115e-4,-2.8421e-4 0.001867,-7.0892e-4 0.003591,-9.4383e-4 0.002649,-3.6101e-4 0.002876,-5.0017e-4 0.001468,-8.9924e-4 -0.001438,-4.0723e-4 -0.001323,-4.9033e-4 8.3333e-4,-6.0484e-4 0.001375,-7.301e-5 0.003062,-1.0204e-4 0.00375,-6.451e-5 6.875e-4,3.73e-5 0.003408,-4.4563e-4 0.006045,-0.001074 0.00575,-0.001369 0.0101957,-0.00145 0.0142699,-2.6003e-4 0.002597,7.588e-4 0.003018,0.001148 0.003018,0.002788 0,0.004899 0.008434,0.0152049 0.0152017,0.0185747 0.00239,0.00119 0.002483,0.001394 0.002033,0.004444 -2.5952e-4,0.001758 -8.3913e-4,0.003454 -0.001288,0.003768 -4.489e-4,3.1393e-4 -6.1418e-4,9.3887e-4 -3.6731e-4,0.001389 8.4153e-4,0.001534 0.002696,-3.7278e-4 0.003261,-0.003352 2.9758e-4,-0.001569 9.6151e-4,-0.002846 0.001475,-0.002838 5.1387e-4,8.15e-6 0.002708,9.247e-4 0.004877,0.002037 0.006316,0.003241 0.008023,0.006264 0.009142,0.016187 0.001253,0.0111129 0.001047,0.0209287 -5.3836e-4,0.0257102 -7.13e-4,0.00215 -0.001302,0.004614 -0.001309,0.005475 -2.516e-5,0.003092 -0.001361,0.00336 -0.003121,6.2582e-4 -9.0479e-4,-0.001406 -0.002788,-0.00426 -0.004186,-0.006344 -0.001397,-0.002083 -0.003918,-0.006743 -0.005601,-0.0103541 -0.003545,-0.007607 -0.005729,-0.0106949 -0.009714,-0.0137367 -0.002859,-0.002185 -0.005695,-0.002488 -0.005695,-6.0899e-4 0,4.4942e-4 -0.001125,0.00164 -0.0025,0.002646 -0.001375,0.001006 -0.0025,0.002201 -0.0025,0.002655 0,0.001314 0.001624,0.00308 0.002832,0.00308 8.1808e-4,0 0.001249,0.001635 0.00165,0.006265 9.5177e-4,0.010987 0.00221,0.021301 0.003074,0.025204 4.6119e-4,0.002083 0.001363,0.007721 0.002003,0.0125291 6.4054e-4,0.004808 0.00198,0.011566 0.002976,0.0150185 0.001079,0.003739 0.001597,0.007074 0.001282,0.008248 -5.5651e-4,0.002074 -0.0181085,0.0267447 -0.0201999,0.028392 -6.695e-4,5.2734e-4 -0.002812,0.003162 -0.004761,0.005855 -0.003628,0.005013 -0.006698,0.008522 -0.0141821,0.0162044 -0.003606,0.003702 -0.0100976,0.008385 -0.0242573,0.0174985 -0.003182,0.002048 -0.0171717,0.009308 -0.0179363,0.009308 -3.1716e-4,0 -0.002889,-0.003129 -0.005716,-0.006954 -0.004603,-0.006227 -0.008714,-0.009946 -0.0109947,-0.009946 -0.001033,0 -9.8062e-4,0.001005 7.584e-5,0.001462 4.6488e-4,2.0092e-4 0.001601,0.001401 0.002525,0.002668 0.001483,0.002033 0.002271,0.004661 0.003882,0.0129432 2.5401e-4,0.001306 8.1976e-4,0.002118 0.001381,0.001981 5.2273e-4,-1.2758e-4 8.4277e-4,-8.6101e-4 7.1119e-4,-0.00163 -9.7667e-4,-0.005707 -0.001844,-0.009215 -0.002635,-0.010657 -5.0759e-4,-9.2587e-4 -7.5065e-4,-0.001804 -5.4011e-4,-0.001951 3.9406e-4,-2.7556e-4 0.008831,0.0118838 0.008831,0.0127273 0,4.8858e-4 -0.009535,0.004544 -0.0138112,0.005874 -0.001341,4.1726e-4 -0.003075,0.001154 -0.003854,0.001637 -7.7817e-4,4.8307e-4 -0.003754,0.001534 -0.006613,0.002335 -0.002859,8.0128e-4 -0.0102848,0.003196 -0.0165018,0.005323 -0.006217,0.002126 -0.0126162,0.004053 -0.0142204,0.004282 -0.001604,2.2894e-4 -0.004979,0.001016 -0.0075,0.001749 -0.004389,0.001277 -0.00641,0.001709 -0.0151765,0.003247 -0.005803,0.001018 -0.0108216,2.5961e-4 -0.0206568,-0.003123 -0.004812,-0.001655 -0.008937,-0.003025 -0.009167,-0.003045 -2.2917e-4,-1.935e-5 -0.002292,-3.525e-4 -0.004583,-7.4028e-4 -0.004963,-8.3987e-4 -0.00935,-1.9531e-4 -0.0204167,0.003 -0.0175624,0.005071 -0.0337072,0.005004 -0.05125,-2.1018e-4 -0.002888,-8.5856e-4 -0.007259,-0.001614 -0.015,-0.002594 -0.0200325,-0.002534 -0.027704,-0.004906 -0.0366354,-0.0113272 -0.003708,-0.002666 -0.004121,-0.003223 -0.003997,-0.005393 7.592e-5,-0.001331 5.3059e-4,-0.002695 0.00101,-0.00303 4.7961e-4,-3.3379e-4 8.7218e-4,-9.4529e-4 8.7218e-4,-0.001357 0,-0.001524 0.005516,-0.006943 0.0116064,-0.011405 0.004368,-0.0032 0.007861,-0.005148 0.0115003,-0.006414 0.002875,-0.001 0.005227,-0.002008 0.005227,-0.002239 0,-5.2768e-4 0.00906,-0.005006 0.0145833,-0.007209 0.002292,-9.1392e-4 0.004354,-0.001819 0.004583,-0.002012 8.6008e-4,-7.2361e-4 0.0139268,-0.006348 0.0183333,-0.007891 0.002521,-8.8284e-4 0.005248,-0.002015 0.006061,-0.002517 8.1269e-4,-5.0129e-4 0.002744,-9.3087e-4 0.004292,-9.546e-4 0.001548,-2.372e-5 0.002642,-2.3984e-4 0.002432,-4.8023e-4 -2.1069e-4,-2.4038e-4 5e-6,-4.3706e-4 4.7857e-4,-4.3706e-4 0.00162,0 0.0113141,-0.00336 0.0157788,-0.005469 0.002452,-0.001158 0.004635,-0.002106 0.00485,-0.002106 2.1512e-4,0 0.001959,-7.5184e-4 0.003875,-0.001671 0.001916,-9.1893e-4 0.005921,-0.00252 0.0089,-0.003558 0.002979,-0.001038 0.006354,-0.002474 0.0075,-0.003191 0.001146,-7.1692e-4 0.004521,-0.002457 0.0075,-0.003866 0.002979,-0.001409 0.007667,-0.003941 0.0104167,-0.005625 0.00275,-0.001685 0.005656,-0.003064 0.006458,-0.003065 0.001713,-2.91e-6 0.001898,-7.7006e-4 3.9665e-4,-0.001642 -0.00109,-6.3263e-4 -0.001071,-6.4173e-4 -0.010605,0.005108 -0.002063,0.001244 -0.005812,0.003235 -0.008333,0.004425 -0.002521,0.00119 -0.005521,0.002741 -0.006667,0.003448 -0.001146,7.0606e-4 -0.006021,0.002807 -0.0108333,0.004669 -0.004812,0.001862 -0.009875,0.003964 -0.01125,0.004672 -0.003935,0.002026 -0.017306,0.006652 -0.0204677,0.007081 -0.001576,2.1366e-4 -0.004464,0.001149 -0.006417,0.002079 -0.001953,9.3005e-4 -0.004953,0.002096 -0.006667,0.00259 -0.001714,4.9468e-4 -0.006617,0.002512 -0.0108958,0.004484 -0.004279,0.001971 -0.008136,0.003584 -0.008572,0.003584 -4.3565e-4,0 -0.00106,2.912e-4 -0.001387,6.4712e-4 -3.2703e-4,3.5592e-4 -0.001791,0.001076 -0.003253,0.001599 -0.001462,5.2377e-4 -0.005114,0.002252 -0.008115,0.00384 -0.003001,0.001588 -0.007242,0.003606 -0.009425,0.004483 -0.004565,0.001835 -0.0135518,0.007053 -0.0135518,0.007869 0,3.0276e-4 -0.001406,0.001607 -0.003125,0.002897 -0.004344,0.003262 -0.006871,0.006549 -0.008586,0.011166 l -0.001467,0.003948 0.003752,0.002883 c 0.003863,0.002969 0.0131533,0.007585 0.0184871,0.009187 0.003049,9.1552e-4 0.00458,0.001173 0.0159387,0.002683 0.0118865,0.00158 0.0152551,0.002123 0.0161674,0.002605 5.0379e-4,2.6655e-4 0.003627,0.001069 0.006941,0.001784 0.003314,7.1457e-4 0.006217,0.001516 0.00645,0.00178 4.5409e-4,5.1381e-4 0.018976,0.001483 0.0236668,0.001238 0.001545,-8.058e-5 0.004358,-5.3656e-4 0.00625,-0.001013 0.003763,-9.4801e-4 0.0132192,-0.001472 0.0125321,-6.9471e-4 -2.353e-4,2.6624e-4 1.92e-4,3.1774e-4 9.4956e-4,1.1445e-4 7.5756e-4,-2.0329e-4 0.001621,-1.1741e-4 0.001918,1.9085e-4 2.975e-4,3.0825e-4 0.002649,0.001395 0.005226,0.002416 0.004114,0.001629 0.005446,0.001855 0.0109369,0.001855 0.003439,0 0.007846,-3.9335e-4 0.009795,-8.7412e-4 0.001949,-4.8077e-4 0.004673,-8.7413e-4 0.006055,-8.7413e-4 0.001381,0 0.002944,-4.1309e-4 0.003472,-9.1799e-4 8.7142e-4,-8.3339e-4 0.001283,-8.2753e-4 0.004468,6.365e-5 0.002041,5.7104e-4 0.004641,8.555e-4 0.006215,6.8007e-4 0.001489,-1.6587e-4 0.005504,-6.0911e-4 0.008923,-9.8499e-4 0.003419,-3.7588e-4 0.007169,-0.001151 0.008333,-0.001722 0.001164,-5.7133e-4 0.005231,-0.001739 0.009037,-0.002594 0.003806,-8.5538e-4 0.0120561,-0.003283 0.0183333,-0.005395 0.006277,-0.002112 0.0130885,-0.004398 0.015136,-0.00508 0.007076,-0.002358 0.0262846,-0.009847 0.0284139,-0.0110781 0.001175,-6.7922e-4 0.00305,-0.001698 0.004167,-0.002264 0.001116,-5.6624e-4 0.004604,-0.002333 0.00775,-0.003927 0.003146,-0.001594 0.00604,-0.002759 0.006431,-0.00259 9.3348e-4,4.0344e-4 2.8305e-4,0.002534 -0.002976,0.00975 l -0.00269,0.005955 -0.005742,0.001248 c -0.003158,6.8658e-4 -0.009406,0.001846 -0.0138837,0.002577 -0.007812,0.001275 -0.0108677,0.002336 -0.009022,0.003133 4.5861e-4,1.9821e-4 0.004508,-2.8197e-4 0.008999,-0.001067 0.004491,-7.851e-4 0.009591,-0.001594 0.0113338,-0.001798 0.001743,-2.0355e-4 0.003377,-7.4897e-4 0.003631,-0.001212 5.8585e-4,-0.001068 0.003617,-0.001109 0.003617,-4.918e-5 0,4.3604e-4 -9.375e-4,0.001759 -0.002083,0.00294 -0.001146,0.001181 -0.002083,0.002601 -0.002083,0.003157 0,0.001133 -0.004509,0.007473 -0.006323,0.008891 -0.001317,0.00103 -0.001586,0.002868 -4.1863e-4,0.002868 9.1956e-4,0 0.007575,-0.008901 0.007575,-0.0101307 0,-4.8001e-4 3.7298e-4,-0.001034 8.2884e-4,-0.001231 8.2995e-4,-3.587e-4 0.0108866,0.001924 0.0116712,0.002649 2.2917e-4,2.1181e-4 0.001917,7.0362e-4 0.00375,0.001093 0.001833,3.8929e-4 0.004093,9.6445e-4 0.005021,0.001278 9.2795e-4,3.1368e-4 0.004486,4.9209e-4 0.007908,3.9646e-4 0.007863,-2.1976e-4 0.008567,-0.001225 0.002845,-0.004063 -0.002149,-0.001066 -0.005828,-0.003295 -0.008174,-0.004954 -0.00295,-0.002085 -0.005938,-0.003489 -0.009683,-0.004549 -0.002979,-8.4321e-4 -0.005885,-0.001677 -0.006458,-0.001854 -5.7292e-4,-1.7643e-4 -0.001042,6.085e-5 -0.001042,5.2729e-4 0,4.6645e-4 0.001406,0.001273 0.003125,0.001791 0.002987,9.0166e-4 0.0191798,0.008725 0.0212842,0.0102839 0.002314,0.001714 -0.0170756,-7.2561e-4 -0.0246176,-0.003097 -0.004394,-0.001382 -0.004471,-0.00149 -0.002737,-0.003835 6.715e-4,-9.0807e-4 0.001412,-0.002403 0.001645,-0.003322 2.3342e-4,-9.1896e-4 0.001572,-0.004031 0.002974,-0.006916 0.001402,-0.002885 0.00313,-0.007017 0.003839,-0.009182 0.001259,-0.003841 0.001502,-0.004085 0.009972,-0.0100013 0.004775,-0.003335 0.008682,-0.00644 0.008682,-0.006899 0,-4.592e-4 7.899e-4,-0.001334 0.001755,-0.001945 9.6543e-4,-6.1058e-4 0.00249,-0.002117 0.003388,-0.003348 8.9816e-4,-0.001231 0.002878,-0.00346 0.004399,-0.004953 0.001521,-0.001494 0.004173,-0.004681 0.005892,-0.007083 0.001719,-0.002402 0.003957,-0.005156 0.004974,-0.006119 0.002763,-0.002617 0.0170668,-0.022745 0.0183274,-0.0257897 3.2447e-4,-7.837e-4 0.001199,-0.001311 0.002174,-0.001311 0.001346,0 0.001614,-3.8192e-4 0.001535,-0.002185 -1.2525e-4,-0.002877 0.001812,-0.007402 0.005488,-0.012817 0.001641,-0.002418 0.003512,-0.005813 0.004157,-0.007545 6.4513e-4,-0.001732 0.001923,-0.004907 0.002839,-0.007055 9.1654e-4,-0.002148 0.002196,-0.005348 0.002843,-0.007111 l 0.001177,-0.003205 0.003813,0.005427 c 0.002097,0.002985 0.00362,0.005778 0.003385,0.006206 -5.744e-4,0.001047 0.001263,0.001775 0.002426,9.6205e-4 6.8097e-4,-4.762e-4 6.6168e-4,-8.3434e-4 -7.258e-5,-0.001348 -5.5e-4,-3.8461e-4 -0.001,-0.001143 -0.001,-0.001685 0,-0.001208 -0.00215,-0.004549 -0.005337,-0.008293 -0.002235,-0.002626 -0.002355,-0.003082 -0.001839,-0.006968 3.0394e-4,-0.002287 0.001145,-0.005743 0.00187,-0.00768 9.5741e-4,-0.00256 0.001341,-0.006545 0.001406,-0.0145939 1.0843e-4,-0.0135441 -4.8126e-4,-0.0175385 -0.003219,-0.0218047 -0.002343,-0.00365 -0.004888,-0.005567 -0.0100724,-0.007586 -0.00305,-0.001187 -0.003501,-0.00164 -0.003958,-0.003976 -2.8412e-4,-0.00145 -5.166e-4,-0.003509 -5.166e-4,-0.004577 0,-0.00256 -0.003256,-0.007619 -0.006637,-0.0103119 -0.002577,-0.002053 -0.002956,-0.003901 -8.0028e-4,-0.003901 5.3001e-4,0 7.2126e-4,-4.1439e-4 4.3338e-4,-9.3899e-4 -3.7417e-4,-6.8187e-4 -1.5852e-4,-8.4329e-4 7.8746e-4,-5.8945e-4 7.4586e-4,2.0018e-4 0.001086,1.0443e-4 7.9587e-4,-2.2389e-4 -2.7876e-4,-3.1544e-4 5.455e-4,-0.001241 0.001832,-0.002056 0.005393,-0.00342 0.0110886,-0.007503 0.0110886,-0.007949 0,-2.6387e-4 5.625e-4,-4.7978e-4 0.00125,-4.7978e-4 6.8751e-4,0 0.00125,-2.799e-4 0.00125,-6.2203e-4 0,-3.4213e-4 6.6069e-4,-4.7535e-4 0.001468,-2.9615e-4 8.0751e-4,1.7925e-4 0.002592,4.1736e-4 0.003965,5.2919e-4 0.001373,1.1183e-4 0.003244,5.2955e-4 0.004157,9.2827e-4 0.004365,0.001906 0.0104845,0.0110529 0.0105365,0.0157481 3.37e-5,0.003037 -0.00142,0.007375 -0.00265,0.007907 -0.00101,4.3659e-4 -0.00107,0.002613 -7.85e-5,0.002613 4.028e-4,0 0.00115,-7.8671e-4 0.00167,-0.001748 5.14e-4,-9.6154e-4 0.00138,-0.002572 0.00192,-0.003579 5.409e-4,-0.001007 0.00101,-0.003105 0.00104,-0.004662 6.45e-5,-0.003124 9.78e-5,-0.003144 0.0035,-0.002101 0.00445,0.001361 0.00705,0.002929 0.00834,0.005037 0.00199,0.003239 0.00296,0.0103329 0.00188,0.0137551 -0.00129,0.004081 -0.00495,0.009552 -0.00723,0.0108017 -0.0012,6.5775e-4 -0.00158,0.001197 -0.00101,0.00144 0.00137,5.9126e-4 0.0049,-0.001292 0.00548,-0.002925 2.862e-4,-7.9726e-4 8.09e-4,-0.00145 0.00116,-0.00145 0.0013,0 0.00234,0.004639 0.00158,0.007022 -4.17e-4,0.001298 -8.571e-4,0.003068 -9.78e-4,0.003934 -1.209e-4,8.6556e-4 -8.56e-4,0.002492 -0.00163,0.003613 -7.775e-4,0.001122 -0.00228,0.003869 -0.00334,0.006105 l -0.00193,0.004065 -0.00372,4.5979e-4 c -0.0066,8.1597e-4 -0.009969,0.001637 -0.009969,0.002429 0,4.4586e-4 0.001325,9.1719e-4 0.003125,0.001112 0.00172,1.8578e-4 0.00402,5.2232e-4 0.00511,7.4785e-4 0.0015,3.0932e-4 0.00189,2.0938e-4 0.0016,-4.067e-4 -2.113e-4,-4.4925e-4 -0.00139,-8.9977e-4 -0.00261,-0.001001 -0.00123,-1.0146e-4 -0.00223,-3.9569e-4 -0.00223,-6.5396e-4 0,-5.1434e-4 0.00665,-0.001405 0.00727,-9.7279e-4 2.101e-4,1.4691e-4 -9.397e-4,0.00363 -0.00256,0.007741 -0.00316,0.008046 -0.00412,0.0119007 -0.00553,0.0223338 -0.00145,0.0107461 -0.003381,0.0226941 -0.004372,0.0270979 l -9.1828e-4,0.004079 -0.007799,5.606e-5 c -0.007435,5.345e-5 -0.0144336,0.001051 -0.0144336,0.002056 0,9.2498e-4 0.00333,0.001682 0.0108066,0.002456 0.00418,4.3276e-4 0.007985,0.001055 0.008454,0.001383 5.8151e-4,4.0665e-4 -7.816e-5,0.003726 -0.002074,0.0104344 -0.004601,0.0154667 -0.004775,0.015957 -0.005682,0.015957 -5.2744e-4,0 -6.4748e-4,7.8108e-4 -3.1218e-4,0.002031 2.9968e-4,0.001117 1.9755e-4,0.003018 -2.2694e-4,0.004225 -4.2449e-4,0.001207 -0.001202,0.004554 -0.001728,0.007439 -0.001354,0.007429 -0.004199,0.0196895 -0.00464,0.0199976 -2.0413e-4,1.4275e-4 -0.002728,-1.4809e-4 -0.00561,-6.463e-4 -0.002881,-4.9822e-4 -0.009457,-0.00137 -0.0146134,-0.001937 -0.005156,-5.6732e-4 -0.009375,-0.001283 -0.009375,-0.00159 0,-5.7623e-4 0.0219166,-8.422e-5 0.0268244,6.0219e-4 0.00187,2.6161e-4 0.00247,1.5815e-4 0.002212,-3.8189e-4 -3.9542e-4,-8.2956e-4 -0.001341,-9.0621e-4 -0.0178167,-0.001444 -0.006433,-2.1011e-4 -0.0123394,-2.0954e-4 -0.013125,1.17e-6 -0.001783,4.784e-4 -0.001858,0.001767 -1.3098e-4,0.00223 0.001754,4.7073e-4 0.0201506,0.00269 0.0222974,0.00269 9.4176e-4,0 0.003331,5.4787e-4 0.005309,0.001217 l 0.003596,0.001217 0,0.004589 c 0,0.002524 -4.3144e-4,0.007242 -9.5876e-4,0.0104853 -0.001087,0.006687 -8.2233e-4,0.006484 -0.009458,0.007228 -0.005895,5.074e-4 -0.008203,7.2781e-4 -0.008687,8.2961e-4 -0.001109,2.3321e-4 0.004413,0.003371 0.008687,0.004936 0.006545,0.002397 0.00625,0.002321 0.00625,0.001604 0,-3.432e-4 -0.00265,-0.001557 -0.00589,-0.002698 -0.003329,-0.001172 -0.005746,-0.002379 -0.005558,-0.002775 2.1215e-4,-4.4825e-4 0.002719,-7.6151e-4 0.006948,-8.6831e-4 l 0.006616,-1.6709e-4 -5.5408e-4,0.00512 c -0.001831,0.0169222 -0.007078,0.0274889 -0.0177848,0.0358166 -0.002078,0.001616 -0.003777,0.003143 -0.003777,0.003394 0,2.5058e-4 -0.004276,0.001926 -0.009501,0.003724 -0.009053,0.003114 -0.0177959,0.004983 -0.0313744,0.006709 -0.002497,3.1741e-4 -0.006416,8.7435e-4 -0.008708,0.001238 -0.003723,5.902e-4 -0.008716,8.2142e-4 -0.0291667,0.001351 -0.003208,8.302e-5 -0.009089,-2.3741e-4 -0.0130672,-7.1206e-4 -0.007846,-9.3601e-4 -0.008147,-0.001127 -0.008171,-0.005174 -1.5e-5,-0.002503 -0.003806,-0.0138224 -0.005567,-0.0166202 -7.6206e-4,-0.001211 -0.001769,-0.002113 -0.002237,-0.002003 -4.6824e-4,1.0914e-4 -0.001948,0.00201 -0.003289,0.004223 -0.002309,0.003813 -0.002435,0.004445 -0.002385,0.0120244 l 5.241e-5,0.008 -0.003918,4.6853e-4 c -0.006409,7.6558e-4 -0.0855568,5.4562e-4 -0.0918342,-2.5613e-4 -0.002979,-3.8049e-4 -0.0116042,-8.2685e-4 -0.0191667,-9.9191e-4 -0.008712,-1.9014e-4 -0.0166508,-7.1424e-4 -0.0216667,-0.00143 -0.00911,-0.001301 -0.0380435,-0.006808 -0.040197,-0.007651 -7.9587e-4,-3.1163e-4 -0.00202,-5.666e-4 -0.00272,-5.666e-4 -7.0004e-4,0 -0.005861,-0.001055 -0.0114696,-0.002343 -0.008258,-0.001898 -0.0117711,-0.003084 -0.0184775,-0.006241 -0.006128,-0.002884 -0.0118694,-0.004904 -0.0220833,-0.007769 -0.007591,-0.00213 -0.015739,-0.004559 -0.0181056,-0.005398 -0.008452,-0.002998 -0.0211142,-0.009624 -0.0273222,-0.0142961 -0.005093,-0.003833 -0.012955,-0.0113267 -0.0129567,-0.0123492 -8.2e-7,-4.968e-4 -3.2992e-4,-0.001152 -7.3134e-4,-0.001457 -4.0142e-4,-3.0448e-4 -0.001762,-0.002783 -0.003024,-0.005507 -0.001262,-0.002724 -0.003011,-0.006076 -0.003886,-0.007449 -8.7575e-4,-0.001372 -0.001396,-0.002717 -0.001156,-0.002989 2.3988e-4,-2.7142e-4 -1.4224e-4,-0.001304 -8.4915e-4,-0.002295 -7.0691e-4,-9.9094e-4 -0.001841,-0.003842 -0.002521,-0.006335 -6.7962e-4,-0.002494 -0.002434,-0.008336 -0.0039,-0.0129835 -0.00244,-0.007739 -0.002659,-0.009284 -0.002609,-0.0183566 3.975e-5,-0.007207 4.5612e-4,-0.0111773 0.001528,-0.0145688 0.001768,-0.005596 0.004595,-0.0125962 0.005412,-0.0134033 3.2449e-4,-3.2052e-4 0.001456,-0.002681 0.002514,-0.005245 0.001058,-0.002564 0.002251,-0.005186 0.002651,-0.005827 4.0011e-4,-6.4103e-4 0.001986,-0.003526 0.003525,-0.00641 0.003114,-0.005839 0.01142,-0.0202737 0.0118628,-0.0206161 1.5637e-4,-1.2092e-4 0.002536,0.00138 0.005289,0.003335 0.004846,0.003442 0.008136,0.00471 0.0100622,0.003877 0.001508,-6.5173e-4 1.6013e-4,-0.003658 -0.004259,-0.0095 -0.002256,-0.002982 -0.00415,-0.005998 -0.004209,-0.006702 -1.7934e-4,-0.002137 0.004987,-0.010217 0.0226168,-0.0353707 0.008213,-0.011718 0.0208415,-0.0265332 0.0214784,-0.0251969 6.1722e-4,0.001295 -0.002436,0.008539 -0.004922,0.0116761 -0.006774,0.008551 -0.0152297,0.0175478 -0.0173545,0.0184662 -0.001191,5.1462e-4 -0.001065,0.00147 1.8985e-4,0.001439 5.7292e-4,-1.456e-5 0.002524,-0.001653 0.004336,-0.003642 0.001812,-0.001989 0.005574,-0.006107 0.008361,-0.009152 0.002787,-0.003045 0.006064,-0.00711 0.007283,-0.009033 0.002742,-0.004325 0.004913,-0.0112415 0.003624,-0.011547 -4.9252e-4,-1.1684e-4 4.2191e-4,-0.001238 0.002032,-0.002491 0.00161,-0.001253 0.005097,-0.004246 0.007749,-0.006649 0.008929,-0.008094 0.010703,-0.009598 0.0175244,-0.0148601 0.00916,-0.007066 0.014731,-0.0110714 0.0154065,-0.0110765 0.00152,-1.166e-5 0.004478,-0.002053 0.004065,-0.002805 -4.7844e-4,-8.7185e-4 0.001964,-0.002664 0.005364,-0.003937 0.001061,-3.9709e-4 0.002436,-0.001076 0.003055,-0.001509 6.1932e-4,-4.331e-4 0.001529,-6.1341e-4 0.002021,-4.007e-4 5.3048e-4,2.2925e-4 6.5276e-4,1.1282e-4 3.003e-4,-2.8602e-4 -3.5234e-4,-3.9866e-4 -6.525e-5,-6.7278e-4 7.0457e-4,-6.7278e-4 7.1455e-4,0 0.001299,-3.7454e-4 0.001299,-8.3229e-4 0,-7.9388e-4 0.007862,-0.003247 0.0104065,-0.003247 6.4753e-4,0 0.001495,-3.9644e-4 0.001882,-8.81e-4 8.638e-4,-0.001079 0.009915,-0.003519 0.0235991,-0.006361 0.004606,-9.5665e-4 0.004837,-8.4948e-4 0.00681,0.003162 0.001589,0.003231 0.004685,0.008216 0.00715,0.0115093 0.001931,0.002581 0.003909,0.003204 0.004625,0.001457 3.8607e-4,-9.4219e-4 0.001647,-0.0139298 0.001738,-0.0179044 3.466e-5,-0.001509 4.1666e-4,-0.001784 0.002956,-0.002128 0.001604,-2.1725e-4 0.005729,-8.1568e-4 0.009167,-0.00133 0.0111198,-0.001663 0.0243935,-0.003225 0.03,-0.00353 0.002062,-1.1223e-4 0.007219,-3.9813e-4 0.0114583,-6.3531e-4 0.006953,-3.8893e-4 0.007708,-3.3368e-4 0.007708,5.6358e-4 0,5.4714e-4 2.8125e-4,8.7383e-4 6.25e-4,7.2599e-4 3.4375e-4,-1.4785e-4 6.25e-4,0.003442 6.25e-4,0.007978 0,0.00784 -8.175e-5,0.008247 -0.001655,0.008247 -9.9739e-4,0 -0.002107,-6.5886e-4 -0.002791,-0.001657 -0.00133,-0.00194 -0.003399,-0.009617 -0.003441,-0.0127656 -1.6e-5,-0.001202 -4.0407e-4,-0.002185 -8.6241e-4,-0.002185 -0.001129,0 -0.001059,0.001025 5.3632e-4,0.007842 0.001505,0.00643 0.003522,0.009915 0.006,0.0103687 0.003312,6.0571e-4 0.003616,-1.9003e-4 0.003751,-0.009829 l 1.2934e-4,-0.009255 0.005417,-6.8811e-4 c 0.005984,-7.6026e-4 0.0444263,-7.8397e-4 0.045505,-2.797e-5 z m 0.0204944,0.011678 c -0.002359,0.006984 -0.002308,0.009108 3.8375e-4,0.0159985 0.002498,0.006394 0.0025,0.006397 0.003649,0.005593 5.6188e-4,-3.9295e-4 3.0091e-4,-0.001436 -7.9183e-4,-0.003166 -8.9644e-4,-0.001419 -0.002239,-0.004455 -0.002983,-0.006746 -0.00133,-0.004095 -0.001317,-0.004268 7.7706e-4,-0.0101981 0.002367,-0.006704 0.00241,-0.006906 0.001465,-0.006906 -3.6699e-4,0 -0.001492,0.002442 -0.0025,0.005426 z m 0.004834,-0.005074 c 0,1.9411e-4 9.2763e-4,0.001124 0.002061,0.002066 0.004354,0.003619 0.004584,0.00734 0.001198,0.0194438 -0.001498,0.005356 -0.00208,0.006525 -0.003112,0.006248 -9.4293e-4,-2.5304e-4 -0.001125,-7.745e-5 -7.0833e-4,6.8228e-4 3.0874e-4,5.6259e-4 5.6134e-4,0.001133 5.6134e-4,0.001267 0,1.3403e-4 5.3723e-4,2.437e-4 0.001194,2.437e-4 0.001613,0 0.001755,-4.0769e-4 0.005568,-0.0160256 0.001293,-0.005296 -8.1e-5,-0.0100696 -0.003733,-0.0129662 -0.001579,-0.001253 -0.003029,-0.001712 -0.003029,-9.5898e-4 z m -0.1225,0.007312 c 0,3.697e-4 -9.0377e-4,0.002009 -0.002008,0.003642 -0.002697,0.003988 -0.003993,0.008919 -0.002453,0.009332 6.2068e-4,1.6655e-4 0.001129,9.5682e-4 0.001129,0.001756 0,0.002177 0.003176,0.007687 0.005585,0.009689 0.004409,0.003664 0.005259,0.001264 0.004479,-0.0126463 -5.5793e-4,-0.009941 -6.3168e-4,-0.0102614 -0.002611,-0.011325 -0.002315,-0.001243 -0.004121,-0.00144 -0.004121,-4.477e-4 z m 0.00427,0.002679 c 0.00125,0.002237 0.00171,0.0204099 5.2882e-4,0.0209202 -4.9949e-4,2.1585e-4 -0.001742,-3.3887e-4 -0.002761,-0.001233 -0.004707,-0.004128 -0.005983,-0.0128431 -0.002668,-0.0182206 0.002102,-0.003409 0.003569,-0.003848 0.0049,-0.001467 z m 0.029254,0.008111 c -0.001658,4.6655e-4 -0.003381,0.003235 -0.003981,0.006398 -4.598e-4,0.002424 -7.05e-5,0.003854 0.002407,0.008839 0.003616,0.007277 0.008175,0.0140753 0.0093,0.0138649 0.003247,-6.0746e-4 0.003891,-0.0102032 0.00131,-0.0195132 -0.002361,-0.008518 -0.004558,-0.0108495 -0.009036,-0.00959 z m 0.004545,0.00283 c 0.002417,0.002996 0.004438,0.0109853 0.00442,0.0174679 -1.791e-5,0.006495 -7.5622e-4,0.007572 -0.003202,0.004673 -9.8258e-4,-0.001165 -0.001787,-0.002316 -0.001787,-0.002558 0,-2.4219e-4 -8.8425e-4,-0.001735 -0.001965,-0.003317 -0.003573,-0.005232 -0.004942,-0.008947 -0.004471,-0.0121352 4.6424e-4,-0.003143 0.002945,-0.006889 0.004353,-0.006573 4.5833e-4,1.0285e-4 0.001652,0.001202 0.002652,0.002442 z m 0.10760844,0.0111643 c 6.0156e-4,1.6836e-4 0.00132,1.4767e-4 0.001597,-4.604e-5 2.7691e-4,-1.9364e-4 -2.1529e-4,-3.3141e-4 -0.001094,-3.0612e-4 -9.7079e-4,2.798e-5 -0.001168,1.6609e-4 -5.0348e-4,3.521e-4 z m -0.0265104,0.0162103 c 0,4.8076e-4 5.8495e-4,8.7412e-4 0.0013,8.7412e-4 0.001577,0 0.009708,0.005252 0.0129902,0.008392 0.001307,0.00125 0.002377,0.00302 0.002377,0.003934 0,0.001832 0.001635,0.002218 0.003333,7.8671e-4 5.7057e-4,-4.8077e-4 0.001545,-8.7413e-4 0.002164,-8.7413e-4 6.1989e-4,0 0.003586,-9.2826e-4 0.00659,-0.002063 0.003005,-0.001135 0.005801,-0.001917 0.006213,-0.001739 4.1245e-4,1.7821e-4 9.871e-4,5.594e-5 0.001277,-2.7232e-4 0.001279,-0.001447 -0.002361,-0.001087 -0.007615,7.5379e-4 -0.008808,0.003086 -0.00915,0.003114 -0.0107572,8.7308e-4 -0.002484,-0.003462 -0.0146744,-0.011539 -0.017415,-0.011539 -2.5193e-4,0 -4.5805e-4,3.9336e-4 -4.5805e-4,8.7413e-4 z m -0.0530228,0.0203638 c -0.0205334,0.007449 -0.0368057,0.0147896 -0.0465778,0.0210115 -0.005575,0.003549 -0.0128994,0.008729 -0.0128994,0.009121 0,2.4924e-4 7.2856e-4,7.2582e-4 0.001619,0.001059 0.002025,7.5804e-4 0.004822,-2.797e-5 0.0102163,-0.00287 0.012343,-0.006505 0.0317771,-0.0160344 0.0398313,-0.0195316 0.008535,-0.003706 0.0133704,-0.00616 0.0205675,-0.0104397 0.003377,-0.002008 0.005025,-0.00386 0.00342,-0.003842 -5.8904e-4,6.41e-6 -0.007869,0.002478 -0.0161771,0.005492 z m 0.0104533,-0.001777 c -0.001508,0.001001 -0.0152535,0.007775 -0.0220055,0.0108446 -0.004579,0.002082 -0.0115162,0.005417 -0.0154167,0.007411 -0.0230308,0.0117756 -0.0241806,0.0123174 -0.0275241,0.0129701 -0.002589,5.0553e-4 -0.001862,-1.3613e-4 0.00677,-0.005975 0.0108339,-0.007328 0.0243791,-0.0137635 0.0420283,-0.0199677 0.005518,-0.00194 0.0109451,-0.003974 0.0120604,-0.00452 0.001701,-8.3298e-4 0.005169,-0.00148 0.004087,-7.6282e-4 z m -0.20850195,0.003275 c 4.6905e-4,0.001254 0.001733,0.002053 0.002453,0.00155 2.4052e-4,-1.6818e-4 1.903e-4,-8.5006e-4 -1.116e-4,-0.001515 -7.2254e-4,-0.001592 -0.002936,-0.001625 -0.002341,-3.496e-5 z m 0.008155,0.006984 c 2.9094e-4,6.4103e-4 1.5748e-4,0.001165 -2.9657e-4,0.001165 -4.5405e-4,0 -0.001972,6.7477e-4 -0.003374,0.001499 -0.003192,0.001878 -0.00464,0.005277 -0.00349,0.00819 0.001169,0.002961 0.009684,0.008046 0.0125771,0.007511 6.875e-4,-1.2715e-4 0.002786,-5.0827e-4 0.004664,-8.4703e-4 0.002796,-5.0442e-4 0.00366,-0.001012 0.00477,-0.002803 0.001876,-0.003025 0.001467,-0.006512 -9.6211e-4,-0.00821 -0.002582,-0.001804 -0.003475,-0.001085 -9.6914e-4,7.8036e-4 0.001075,8.0006e-4 0.001566,0.001455 0.001092,0.001455 -4.7403e-4,0 -0.001571,-6.6941e-4 -0.002437,-0.001488 -8.6628e-4,-8.1818e-4 -0.003241,-0.002264 -0.005278,-0.003214 -0.002037,-9.493e-4 -0.003789,-0.002136 -0.003894,-0.002637 -3.413e-4,-0.001626 -0.001081,-0.002568 -0.002016,-0.002568 -5.3642e-4,0 -6.9656e-4,4.8269e-4 -3.8667e-4,0.001165 z m 0.0101472,0.007725 c 0.004586,0.003033 0.005108,0.00401 0.003479,0.00651 -0.00136,0.002087 -0.007357,0.003641 -0.0104859,0.002716 -0.003132,-9.2524e-4 -0.008733,-0.004625 -0.008095,-0.005347 2.8346e-4,-3.2075e-4 6.141e-5,-9.6568e-4 -4.9344e-4,-0.001433 -0.001455,-0.001226 -3.3983e-4,-0.0043 0.002246,-0.006187 l 0.002184,-0.001594 0.003365,0.0012 c 0.001851,6.6025e-4 0.005361,0.002521 0.007801,0.004134 z m 0.29776948,9.7675e-4 c -6.875e-4,2.7908e-4 -0.005172,0.001083 -0.009966,0.001787 -0.004794,7.0385e-4 -0.0105265,0.001779 -0.0127392,0.002389 -0.002213,6.099e-4 -0.004947,0.001109 -0.006076,0.001109 -0.001129,0 -0.002053,6.556e-5 -0.002054,1.4569e-4 -3.2e-5,0.002507 -0.002902,0.0184134 -0.003969,0.0219988 -0.001881,0.006319 -0.001889,0.00929 -2.725e-5,0.010113 0.001803,7.968e-4 0.002384,3.6865e-4 0.00321,-0.002368 3.6675e-4,-0.001215 0.001206,-0.003913 0.001865,-0.005996 6.5917e-4,-0.002083 0.001449,-0.005624 0.001756,-0.007867 6.109e-4,-0.00447 0.002566,-0.008718 0.004791,-0.0104111 0.001279,-9.7313e-4 0.007063,-0.002399 0.0158674,-0.003911 0.006126,-0.001052 0.0123672,-0.002979 0.0132079,-0.004077 0.001833,-0.002395 -0.002203,-0.004398 -0.005866,-0.002911 z m 0.003733,0.0019 c -6.4527e-4,0.001176 -0.005396,0.002684 -0.0115397,0.003662 -0.00281,4.4766e-4 -0.00661,0.00111 -0.008443,0.001471 -0.001833,3.6148e-4 -0.004447,8.4609e-4 -0.005808,0.001077 -0.00247,4.1888e-4 -0.00388,0.001841 -0.006296,0.006352 -5.5797e-4,0.001042 -0.00132,0.001894 -0.001694,0.001894 -0.001018,0 1.0451e-4,-0.004233 0.0014,-0.005282 8.3049e-4,-6.7215e-4 8.812e-4,-0.001082 1.9327e-4,-0.001563 -5.1293e-4,-3.5874e-4 -7.2831e-4,-0.001024 -4.7862e-4,-0.001479 6.329e-4,-0.001153 0.0203391,-0.005423 0.0295823,-0.00641 9.9483e-4,-1.0618e-4 0.002068,-3.7459e-4 0.002386,-5.9656e-4 8.5303e-4,-5.9651e-4 0.00124,-1.1218e-4 6.989e-4,8.7424e-4 z m -0.0338524,0.021374 c -0.001251,0.005372 -0.002323,0.008971 -0.002764,0.009279 -0.001631,0.001141 -0.001272,-0.001752 0.001359,-0.0109517 0.001125,-0.003934 0.002366,-0.002456 0.001405,0.001673 z m -0.0865479,-0.0133657 c -6.875e-4,2.6177e-4 -0.004063,9.3438e-4 -0.0075,0.001495 -0.009537,0.001554 -0.0193064,0.003974 -0.0236958,0.005869 -0.0100485,0.004337 -0.0167005,0.007722 -0.0164833,0.008387 1.3066e-4,4.0006e-4 -1.4733e-4,0.001052 -6.1778e-4,0.001448 -0.002394,0.002017 0.003741,0.001979 0.009883,-6.136e-5 0.002565,-8.5193e-4 0.009351,-0.003095 0.0150804,-0.004985 0.005729,-0.00189 0.0117292,-0.004037 0.0133333,-0.004772 0.001604,-7.3491e-4 0.005441,-0.00236 0.008527,-0.003611 0.00352,-0.001427 0.005616,-0.002655 0.005625,-0.003294 1.533e-5,-0.001076 -0.001976,-0.001304 -0.004152,-4.7529e-4 z m -0.0025,0.002642 c 0,4.9417e-4 -0.0157178,0.006752 -0.0201943,0.00804 -0.002414,6.9459e-4 -0.007613,0.002362 -0.0115538,0.003706 -0.0115757,0.003948 -0.0161174,0.003568 -0.007841,-6.5501e-4 0.002513,-0.001282 0.006167,-0.002934 0.00812,-0.003671 0.001954,-7.3683e-4 0.004382,-0.00172 0.005397,-0.002185 0.002879,-0.001319 0.009099,-0.002639 0.0105727,-0.002244 8.7138e-4,2.338e-4 0.001332,4.138e-5 0.001332,-5.5664e-4 0,-8.359e-4 0.001498,-0.001272 0.007917,-0.002304 0.002335,-3.7541e-4 0.00625,-4.5741e-4 0.00625,-1.3089e-4 z m 0.0153823,0.0104118 c -0.003189,0.001229 -0.0156912,0.005766 -0.0277818,0.0100828 -0.0229976,0.008211 -0.0286257,0.0104878 -0.0355172,0.0143693 -0.005534,0.003117 -0.007083,0.004384 -0.007083,0.005797 0,0.002343 0.007235,5.2704e-4 0.0222207,-0.005576 0.003284,-0.001337 0.008883,-0.003596 0.0124431,-0.005019 0.00356,-0.001423 0.007623,-0.003261 0.009029,-0.004084 0.004828,-0.002826 0.0102699,-0.005243 0.0172415,-0.007658 0.008475,-0.002935 0.0190331,-0.008074 0.0190517,-0.009272 2.325e-5,-0.00149 -0.003502,-9.9103e-4 -0.009604,0.00136 z m 0.005451,-1.8741e-4 c 0,7.5244e-4 -0.007388,0.004063 -0.0151362,0.006782 -0.006052,0.002124 -0.0148415,0.006105 -0.0194246,0.008798 -0.001363,8.0069e-4 -0.003425,0.00174 -0.004583,0.002087 -0.001158,3.4732e-4 -0.003606,0.001317 -0.005439,0.002154 -0.007996,0.003652 -0.0222263,0.008814 -0.0251489,0.009122 l -0.003184,3.3641e-4 0.004583,-0.002965 c 0.002521,-0.001631 0.00524,-0.003124 0.006042,-0.003319 8.0208e-4,-1.9493e-4 0.001458,-5.9901e-4 0.001458,-8.979e-4 0,-2.989e-4 4.1086e-4,-5.4348e-4 9.1303e-4,-5.4348e-4 5.0216e-4,0 0.001908,-4.9429e-4 0.003125,-0.001098 0.001217,-6.0414e-4 0.009712,-0.003784 0.0188786,-0.007065 0.0205993,-0.007375 0.0310093,-0.0112093 0.0346797,-0.0127741 0.003274,-0.001396 0.003237,-0.001389 0.003237,-6.1672e-4 z m -0.23868628,6.8426e-4 c -0.001738,0.0039 -9.1142e-4,0.007584 0.002256,0.0100524 0.001116,8.69e-4 0.003826,0.00181 0.006846,0.002377 0.007667,0.00144 0.007467,0.001476 0.007762,-0.001402 2.4634e-4,-0.002406 2.325e-5,-0.002709 -0.00375,-0.005106 -0.005014,-0.003184 -0.010261,-0.005263 -0.010261,-0.004066 0,4.525e-4 8.9226e-4,9.7937e-4 0.001983,0.001171 0.001091,1.9138e-4 0.003903,0.001555 0.00625,0.003031 0.003276,0.00206 0.004267,0.003077 0.004267,0.004377 0,0.001995 4.8563e-4,0.001939 -0.006384,7.3223e-4 -0.005132,-9.0157e-4 -0.005574,-0.001112 -0.007028,-0.003351 -0.00173,-0.002664 -0.002066,-0.006192 -6.8202e-4,-0.00716 6.5238e-4,-4.5623e-4 6.5073e-4,-7.4382e-4 -5.83e-6,-0.001028 -5.0151e-4,-2.1678e-4 -0.001065,-4.953e-5 -0.001253,3.7127e-4 z m 0.0532913,0.001041 -0.002415,0.001762 0.004333,0.005974 c 0.005089,0.007017 0.0101893,0.0115102 0.0130642,0.0115102 0.002303,0 0.005412,-0.002497 0.005412,-0.004347 0,-0.001598 -0.003374,-0.008599 -0.005643,-0.0117086 -0.001717,-0.002353 -0.003732,-0.003384 -0.007822,-0.004001 -0.001218,-1.8386e-4 -0.002732,-4.7325e-4 -0.003365,-6.4312e-4 -6.3304e-4,-1.6987e-4 -0.002238,4.8426e-4 -0.003565,0.001454 z m 0.007434,7.8572e-4 c 0.003641,6.6003e-4 0.004341,0.00105 0.00599,0.00334 0.001027,0.001426 0.002681,0.004393 0.003675,0.006594 0.001935,0.004285 0.001515,0.006399 -0.00143,0.007189 -0.002134,5.7261e-4 -0.007747,-0.004134 -0.0123303,-0.0103407 -0.00376,-0.005091 -0.003862,-0.005356 -0.00247,-0.006431 0.001706,-0.001318 0.001342,-0.001298 0.006565,-3.514e-4 z m 0.22312478,0.0165315 c 4.1e-5,0.008725 1.7982e-4,0.0100343 6.8008e-4,0.006416 3.457e-4,-0.0025 8.2647e-4,-0.004684 0.001068,-0.004853 2.419e-4,-1.6917e-4 8.3512e-4,0.00109 0.001318,0.002797 l 8.7844e-4,0.003105 -4.9608e-4,-0.003788 c -2.7284e-4,-0.002083 -7.2864e-4,-0.006127 -0.001013,-0.008986 -3.1758e-4,-0.003195 -8.9665e-4,-0.005286 -0.001502,-0.005426 -7.362e-4,-1.6981e-4 -9.7244e-4,0.002545 -9.3394e-4,0.0107347 z m -0.15016392,-0.001329 c -0.002063,0.001076 -0.004312,0.002456 -0.005,0.003065 -6.875e-4,6.0944e-4 -0.002946,0.002541 -0.005019,0.004293 -0.005778,0.004882 -0.00788,0.006992 -0.0103084,0.0103449 -0.002004,0.002767 -0.002101,0.003171 -9.5412e-4,0.003973 0.001916,0.00134 0.003492,6.8797e-4 0.0117969,-0.004876 0.0117155,-0.00785 0.0162203,-0.01285 0.015481,-0.0171833 -3.5352e-4,-0.002072 -0.001422,-0.002004 -0.005996,3.8328e-4 z m 0.003776,0.001948 c -0.001224,0.003433 -0.00357,0.005818 -0.0111796,0.011362 -0.007486,0.005454 -0.0106014,0.007273 -0.0114458,0.006682 -4.9503e-4,-3.4617e-4 0.007342,-0.009226 0.0115566,-0.013095 0.003157,-0.002898 0.009225,-0.006552 0.0108805,-0.006552 4.1772e-4,0 5.0243e-4,7.2115e-4 1.8823e-4,0.001603 z M 0.1998234,0.45391616 c -0.001476,2.718e-4 -0.002816,0.002239 -0.002441,0.003587 4.8925e-4,0.001761 0.0103521,0.0135489 0.0117847,0.014085 0.004121,0.001542 0.007493,-3.3241e-4 0.007493,-0.004167 0,-0.001523 -7.9594e-4,-0.002904 -0.002708,-0.004701 -0.00149,-0.001399 -0.003419,-0.003452 -0.004287,-0.004561 -0.00327,-0.004179 -0.005341,-0.005071 -0.009841,-0.004243 z m 0.007937,0.00412 c 0.001022,0.001522 0.003085,0.003939 0.004585,0.00537 0.003051,0.002913 0.003391,0.006095 7.7213e-4,0.007242 -0.002331,0.001021 -0.003953,-1.176e-4 -0.009123,-0.006403 -0.006154,-0.007483 -0.006306,-0.008978 -9.086e-4,-0.008978 0.002543,0 0.002996,2.6824e-4 0.004674,0.002768 z m -0.0274332,0.008018 c -0.00123,0.001313 -0.001204,0.001528 3.8579e-4,0.003089 0.002784,0.002734 0.009262,0.006183 0.0102791,0.005472 0.001299,-9.0818e-4 1.4099e-4,-0.003328 -0.00266,-0.005558 -0.001358,-0.001082 -0.002314,-0.002075 -0.002125,-0.002207 1.8915e-4,-1.3227e-4 -7.589e-4,-6.831e-4 -0.002107,-0.001224 -0.00239,-9.594e-4 -0.002483,-9.4889e-4 -0.003773,4.2801e-4 z m 0.005594,0.002488 c 0.002549,0.001856 0.004408,0.004167 0.003733,0.00464 -6.3923e-4,4.4702e-4 -0.008637,-0.004611 -0.008744,-0.00553 -1.4788e-4,-0.00127 0.00275,-7.5553e-4 0.005011,8.9031e-4 z m -0.024665,0.00245 c -0.003259,0.002518 8.2667e-4,0.0100987 0.006297,0.0116833 0.001922,5.5682e-4 0.002971,5.5245e-4 0.00495,-2.063e-5 0.005293,-0.001533 0.003848,-0.005042 -0.004044,-0.009823 -0.002719,-0.001647 -0.005116,-0.002995 -0.005326,-0.002995 -2.1048e-4,0 -0.001055,5.1968e-4 -0.001877,0.001155 z m 0.006012,0.002487 c 0.005984,0.003446 0.007878,0.006074 0.00555,0.007702 -0.003783,0.002645 -0.0111585,-0.00208 -0.0111585,-0.007149 0,-0.003018 0.001134,-0.00313 0.005609,-5.5291e-4 z m 0.1332407,0.00538 c -0.004003,0.002398 -0.007729,0.004562 -0.00828,0.004808 -0.001961,8.7563e-4 -0.0120762,0.009226 -0.013824,0.0114116 -0.003603,0.004505 0.001107,0.004569 0.009394,1.2751e-4 0.00895,-0.004797 0.0112204,-0.006285 0.0120779,-0.007916 8.4481e-4,-0.001607 3.2788e-4,-0.004713 -8.7616e-4,-0.005265 -4.0892e-4,-1.8734e-4 0.001705,-0.001761 0.004698,-0.003497 0.005121,-0.00297 0.006377,-0.00403 0.004774,-0.00403 -3.7754e-4,0 -0.003961,0.001962 -0.007964,0.00436 z m -0.002758,0.005984 c 2.6329e-4,9.3176e-4 -6e-5,0.002159 -7.7224e-4,0.002932 -0.001974,0.002142 -0.0126595,0.007963 -0.0153425,0.008357 l -0.002464,3.6253e-4 0.001868,-0.002326 c 0.001028,-0.001279 0.002639,-0.002531 0.003581,-0.002781 9.4165e-4,-2.5054e-4 0.003754,-0.002171 0.00625,-0.004267 0.002496,-0.002096 0.004963,-0.003827 0.005482,-0.003846 5.1949e-4,-1.888e-5 0.001148,6.8679e-4 0.001397,0.001568 z m 0.0175995,0.003944 c -0.006753,0.00378 -0.0147237,0.009509 -0.017482,0.0125641 -0.003624,0.004014 -0.005772,0.0110098 -0.003661,0.0119221 0.001023,4.4233e-4 0.006299,-0.001875 0.009692,-0.004257 0.007263,-0.005099 0.0162931,-0.0125643 0.0173615,-0.0143525 0.001528,-0.002557 0.001591,-0.006194 1.3135e-4,-0.00759 -0.001027,-9.8189e-4 -0.001431,-8.6723e-4 -0.006042,0.001714 z m 0.004996,0.00203 c -1.7665e-4,0.001283 -0.001073,0.003362 -0.001991,0.004621 -0.001939,0.002658 -0.0199057,0.0157742 -0.0216075,0.0157742 -8.815e-4,0 -0.001029,-6.0949e-4 -6.3381e-4,-0.002624 5.4306e-4,-0.002771 0.003414,-0.007283 0.004634,-0.007283 3.9681e-4,0 0.002317,-0.001508 0.004268,-0.003351 0.003659,-0.003457 0.0129848,-0.00947 0.014688,-0.00947 6.2226e-4,0 8.4985e-4,8.2609e-4 6.4245e-4,0.002332 z m -0.10035379,0.0149216 c 0,5.8892e-4 -4.5941e-4,8.132e-4 -0.001238,6.043e-4 -8.3371e-4,-2.2372e-4 -0.00252,8.6951e-4 -0.005165,0.003349 l -0.003927,0.003681 -0.0129598,3.8212e-4 c -0.0160611,4.7355e-4 -0.0223924,0.001254 -0.0205606,0.002535 3.2649e-4,2.2832e-4 0.00442,-3.572e-5 0.009097,-5.868e-4 0.008876,-0.001046 0.0210194,-0.001336 0.0217409,-5.1969e-4 5.1263e-4,5.8005e-4 -0.004585,0.00781 -0.007442,0.0105554 -0.00139,0.001335 -0.002016,0.002638 -0.001892,0.003931 1.0245e-4,0.001064 -2.6527e-4,0.00225 -8.1715e-4,0.002636 -0.001382,9.6656e-4 -0.00126,0.002217 2.1725e-4,0.002217 0.001397,0 0.002946,-0.001747 0.002946,-0.003322 0,-0.001149 0.0178649,-0.0204243 0.0212032,-0.0228768 0.00172,-0.001263 0.001858,-0.001632 9.3983e-4,-0.002501 -0.001343,-0.001272 -0.002143,-0.001303 -0.002143,-8.334e-5 z m -0.005833,0.006639 c -0.001561,0.002139 -0.003333,0.003093 -0.003333,0.001793 0,-5.5847e-4 0.004041,-0.004124 0.004674,-0.004124 1.9773e-4,0 -4.0572e-4,0.001049 -0.001341,0.002331 z m -0.004549,0.004623 c -3.0212e-4,3.4184e-4 -9.4809e-4,6.2152e-4 -0.001435,6.2152e-4 -5.5258e-4,0 -4.8935e-4,-3.3437e-4 1.6794e-4,-8.8821e-4 0.001143,-9.6305e-4 0.002164,-7.4813e-4 0.001268,2.6669e-4 z m -0.0075,0.009324 c -3.0212e-4,3.4184e-4 -9.4809e-4,6.2152e-4 -0.001435,6.2152e-4 -5.5258e-4,0 -4.8935e-4,-3.3437e-4 1.6794e-4,-8.8821e-4 0.001143,-9.6305e-4 0.002164,-7.4814e-4 0.001268,2.6669e-4 z m 0.2891194,-0.0203433 c -0.002248,0.002544 0.007059,0.0112587 0.0151197,0.0141567 0.002446,8.7946e-4 0.002694,8.6997e-4 0.004019,-1.5352e-4 0.001327,-0.001025 0.001326,-0.001208 -1.708e-5,-0.003038 -7.8588e-4,-0.001071 -0.004515,-0.00411 -0.008287,-0.006755 -0.006518,-0.004569 -0.009495,-0.005726 -0.0108347,-0.004211 z m 0.004699,0.001592 c 0.004879,0.002267 0.0132195,0.009271 0.0132269,0.0111077 4.16e-6,0.001042 -0.002985,3.7015e-4 -0.006467,-0.001454 -0.00335,-0.001755 -0.009097,-0.007109 -0.009833,-0.00916 -6.3731e-4,-0.001776 6.916e-5,-0.001889 0.003073,-4.9368e-4 z m -0.21934958,0.003505 c -0.00119,0.001195 -0.003564,0.003941 -0.005276,0.006101 -0.001712,0.002161 -0.003458,0.004077 -0.003879,0.004259 -0.001032,4.46e-4 -9.7428e-4,0.002434 8.387e-5,0.002892 0.001892,8.175e-4 0.006743,-0.001063 0.010274,-0.003983 0.005191,-0.004292 0.00564,-0.005049 0.004589,-0.007742 -8.8366e-4,-0.002263 -0.002116,-0.003736 -0.003106,-0.003713 -2.8763e-4,6.82e-6 -0.001496,9.9024e-4 -0.002686,0.002185 z m 0.003923,0.002132 c 7.6991e-4,0.001403 -0.002022,0.004662 -0.005677,0.006626 -0.003143,0.001689 -0.004832,0.00226 -0.004832,0.001632 0,-2.3804e-4 0.00233,-0.003043 0.005737,-0.006907 0.001986,-0.002252 0.00397,-0.002814 0.004772,-0.001352 z m 0.0876848,8.3331e-4 c -2.9765e-4,5.3701e-4 -0.005799,0.002675 -0.0223611,0.008688 -0.005729,0.00208 -0.0108003,0.003993 -0.0112693,0.004251 -4.6894e-4,2.5803e-4 -0.003281,0.00111 -0.00625,0.001893 -0.0126041,0.003325 -0.0278544,0.007949 -0.0353466,0.0107171 -0.002778,0.001026 -0.008868,0.003181 -0.0135336,0.004789 -0.004666,0.001607 -0.0104781,0.003812 -0.0129167,0.0049 -0.002439,0.001088 -0.005302,0.002168 -0.006362,0.002401 -0.003119,6.849e-4 -0.016887,0.005423 -0.021405,0.007367 -0.002292,9.8568e-4 -0.006063,0.003088 -0.008381,0.004672 -0.003736,0.002554 -0.004196,0.003134 -0.004051,0.005114 1.9024e-4,0.002606 0.001116,0.003977 0.003814,0.005648 0.003366,0.002085 0.0120277,0.004355 0.0188079,0.004929 0.029079,0.002462 0.0318931,0.002597 0.0514588,0.002467 0.0137112,-9.13e-5 0.0220797,-4.1222e-4 0.0266667,-0.001023 0.003677,-4.8928e-4 0.00856,-0.001142 0.0108514,-0.00145 0.0046,-6.184e-4 0.0151159,-7.7598e-4 0.0218362,-3.2723e-4 0.004351,2.9056e-4 0.006283,-3.6098e-4 0.004587,-0.001547 -5.7493e-4,-4.0205e-4 -3.5011e-4,-0.001183 6.9842e-4,-0.002426 0.002543,-0.003014 0.005808,-0.009605 0.007983,-0.0161104 0.001617,-0.004838 0.002146,-0.008375 0.002525,-0.0168998 4.7622e-4,-0.0106976 4.5987e-4,-0.0108349 -0.002117,-0.0177613 -0.001428,-0.003839 -0.002596,-0.007838 -0.002596,-0.008887 0,-0.001256 -4.0259e-4,-0.001907 -0.001181,-0.001907 -6.493e-4,0 -0.001306,2.2552e-4 -0.001458,5.0115e-4 z m 0.003585,0.0102457 c 0.001957,0.005363 0.002353,0.007666 0.002362,0.0137287 2.192e-5,0.0140072 -0.003197,0.0258782 -0.009323,0.0343823 l -0.003568,0.004953 -0.0123704,1.5465e-4 c -0.006804,8.505e-5 -0.0131131,4.3258e-4 -0.0140207,7.7229e-4 -9.0767e-4,3.397e-4 -0.003216,4.6768e-4 -0.00513,2.844e-4 -0.002166,-2.0742e-4 -0.00287,-1.5173e-4 -0.001866,1.4748e-4 0.001153,3.4364e-4 -5.7686e-4,7.0026e-4 -0.006067,0.001251 -0.0170709,0.001711 -0.0732769,-5.4098e-4 -0.0813582,-0.00326 -0.002647,-8.9064e-4 -0.006657,-0.002297 -0.008772,-0.003076 -0.001983,-7.3073e-4 -0.003198,-0.003093 -0.002712,-0.005273 3.1644e-4,-0.001417 0.001675,-0.002829 0.004627,-0.004808 0.002298,-0.001541 0.004625,-0.002802 0.005169,-0.002802 5.4492e-4,0 0.001669,-5.2447e-4 0.002499,-0.001165 8.2957e-4,-6.4102e-4 0.001887,-0.001166 0.002349,-0.001166 8.6456e-4,0 0.0253245,-0.008496 0.0268177,-0.009314 0.001961,-0.001076 0.0365345,-0.0134128 0.0375875,-0.0134128 2.7166e-4,0 0.001676,-3.5414e-4 0.00312,-7.8699e-4 0.001444,-4.3284e-4 0.005626,-0.001645 0.009293,-0.002695 0.003667,-0.001049 0.0100417,-0.003022 0.0141667,-0.004383 0.004125,-0.001362 0.009375,-0.00308 0.0116667,-0.00382 0.002292,-7.3917e-4 0.004467,-0.00169 0.004833,-0.002114 3.6653e-4,-4.2354e-4 0.001492,-7.8328e-4 0.0025,-7.9944e-4 0.001008,-1.614e-5 0.004646,-0.001168 0.008084,-0.002561 0.005395,-0.002185 0.006353,-0.002405 0.007006,-0.001607 4.1567e-4,5.0819e-4 0.001814,0.003824 0.003107,0.007368 z M 0.2310347,0.51849347 c -0.001452,0.001153 -0.001306,0.002023 7.336e-4,0.004363 0.002444,0.002804 0.003938,0.003467 0.007857,0.003488 0.004661,2.552e-5 0.006284,-9.7731e-4 0.006804,-0.004204 4.2885e-4,-0.002661 3.9468e-4,-0.002707 -0.002686,-0.003607 -0.003916,-0.001144 -0.0112895,-0.001167 -0.0127089,-4.015e-5 z m 0.011334,9.3356e-4 c 0.00211,5.1439e-4 0.002624,9.6303e-4 0.002624,0.002289 0,0.004557 -0.009103,0.00468 -0.0124025,1.6861e-4 -0.001836,-0.002511 -0.001247,-0.003098 0.003111,-0.003098 0.002223,0 0.005223,2.8789e-4 0.006667,6.3976e-4 z m 0.30054101,0.006135 c -0.00895,0.001232 -0.0104167,0.001548 -0.0104167,0.002242 0,5.3396e-4 0.003177,0.00117 0.0102083,0.002044 0.005615,6.9755e-4 0.0118878,0.001625 0.0139404,0.002061 0.003716,7.8888e-4 0.005193,7.004e-4 0.003712,-2.2229e-4 -6.7164e-4,-4.1846e-4 -0.0212303,-0.003575 -0.0232839,-0.003575 -4.0914e-4,0 -3.011e-4,-3.0964e-4 2.4008e-4,-6.8809e-4 6.2299e-4,-4.3566e-4 0.005264,-7.8362e-4 0.0126502,-9.4846e-4 0.006416,-1.432e-4 0.011464,-4.8915e-4 0.0112168,-7.6878e-4 -4.3566e-4,-4.9295e-4 -0.0149049,-6.0678e-4 -0.0182676,-1.4371e-4 z m -0.0773611,0.004686 c -0.001023,7.1556e-4 -5.7e-4,0.003134 9.963e-4,0.005317 8.5351e-4,0.001189 0.002405,0.003998 0.003448,0.006241 0.001043,0.002244 0.002584,0.005038 0.003425,0.006209 0.002886,0.004022 0.008813,0.005927 0.0107129,0.003444 0.001743,-0.002277 -0.00337,-0.0134612 -0.008249,-0.0180433 -0.002722,-0.002556 -0.008621,-0.004365 -0.0103336,-0.003168 z m 0.007841,0.003155 c 0.005629,0.004214 0.0112874,0.0155325 0.008688,0.0173794 -9.8819e-4,7.0221e-4 -0.00146,6.7704e-4 -0.003325,-1.7735e-4 -0.002858,-0.001309 -0.005096,-0.003925 -0.007031,-0.008217 -8.6713e-4,-0.001923 -0.002361,-0.004764 -0.003319,-0.006313 -0.002297,-0.003712 -0.002226,-0.004468 4.228e-4,-0.004468 0.001344,0 0.003075,6.8088e-4 0.004564,0.001796 z m 0.0445201,0.006035 c -0.001998,0.001131 -0.002327,0.001613 -0.001639,0.002404 0.00249,0.00286 0.0183695,0.004715 0.0237194,0.002771 0.006437,-0.00234 0.003496,-0.004075 -0.009628,-0.00568 -0.00954,-0.001167 -0.009495,-0.001169 -0.0124533,5.0518e-4 z m 0.0139843,9.438e-4 c 0.009648,0.001375 0.010186,0.001533 0.008905,0.002612 -0.002149,0.00181 -0.0142194,0.001545 -0.020482,-4.5035e-4 -0.002242,-7.1441e-4 -0.002461,-0.001288 -9.4869e-4,-0.002489 0.001395,-0.001108 0.002691,-0.001074 0.0125259,3.2718e-4 z M 0.21394932,0.5407253 c -2.2838e-4,2.735e-4 -3.6821e-4,0.001272 -3.1073e-4,0.002218 7.983e-5,0.001315 8.9145e-4,0.002095 0.003438,0.003305 0.006213,0.002953 0.0109526,0.002777 0.0141629,-5.2668e-4 0.002526,-0.002599 0.00169,-0.003974 -0.002694,-0.004429 -0.007339,-7.6254e-4 -0.0142105,-0.00103 -0.0145963,-5.6785e-4 z m 0.0150021,0.002023 c 0.001031,2.667e-4 0.001875,7.6557e-4 0.001875,0.001109 0,0.001026 -0.003974,0.003484 -0.005632,0.003484 -0.001917,0 -0.0102015,-0.002843 -0.0102015,-0.003501 0,-0.00204 0.001022,-0.002345 0.006553,-0.001961 0.003042,2.1134e-4 0.006374,6.0247e-4 0.007406,8.6918e-4 z m -0.0409878,0.0268832 c -0.002754,0.014668 -0.003683,0.032421 -0.001721,0.0328785 5.3533e-4,1.2483e-4 7.3237e-4,-0.002353 5.5101e-4,-0.006928 -2.4695e-4,-0.00623 0.001679,-0.0245392 0.002883,-0.0274075 2.3545e-4,-5.6089e-4 5.083e-5,-0.00102 -4.1033e-4,-0.00102 -4.6113e-4,0 -0.001048,0.001115 -0.001303,0.002477 z m 0.19770656,0.0247279 c 6.0156e-4,1.6834e-4 0.00132,1.4764e-4 0.001597,-4.598e-5 2.7691e-4,-1.9364e-4 -2.1528e-4,-3.3137e-4 -0.001094,-3.0607e-4 -9.7079e-4,2.797e-5 -0.001168,1.6605e-4 -5.0347e-4,3.5207e-4 z M 0.30388028,0.33030873 c 6.9375e-4,0.001264 -0.001456,0.0171504 -0.002321,0.0171504 -0.001292,0 -0.007762,-0.0102317 -0.009106,-0.0144001 -6.0701e-4,-0.001882 -5.4715e-4,-0.001933 0.003252,-0.002751 0.005148,-0.001108 0.007567,-0.001108 0.008175,4.6e-7 z m 0.27228556,-5.6352e-4 c 7.203e-4,1.933e-4 0.00315,0.001986 0.00539,0.003985 l 0.00408,0.003633 -2.383e-4,0.005697 c -1.998e-4,0.004775 -5.32e-4,0.005975 -0.00205,0.007413 -0.00233,0.002208 -0.00138,0.003087 0.00467,0.004317 0.00246,5.0024e-4 0.00447,0.00104 0.00447,0.001198 0,0.001267 -0.00526,0.004592 -0.00965,0.006105 -0.00523,0.001799 -0.00536,0.001813 -0.010806,0.001095 -0.003271,-4.3153e-4 -0.005702,-0.001071 -0.005977,-0.001572 -2.7922e-4,-5.088e-4 0.001087,-0.001945 0.00344,-0.003615 0.003917,-0.002781 0.006324,-0.006563 0.006324,-0.009935 0,-8.465e-4 4.6562e-4,-0.001865 0.001035,-0.002263 8.24e-4,-5.7628e-4 7.816e-4,-8.373e-4 -2.083e-4,-0.001282 -9.879e-4,-4.4389e-4 -0.001023,-6.5787e-4 -1.724e-4,-0.001042 7.085e-4,-3.2028e-4 0.00108,-0.001947 0.0011,-0.004808 3.1e-5,-0.004318 -8.666e-4,-0.007076 -0.002538,-0.007798 -8.5091e-4,-3.6771e-4 -0.001254,-0.001479 -5.3623e-4,-0.001479 1.9168e-4,0 9.3782e-4,1.5816e-4 0.001658,3.514e-4 z m 0.014181,0.0125288 c 0.00232,0.00367 0.00386,0.008226 0.00336,0.009897 -4.285e-4,0.001425 -6.528e-4,0.001485 -0.00418,0.001111 -0.00205,-2.1725e-4 -0.00395,-5.5548e-4 -0.00423,-7.5158e-4 -2.804e-4,-1.9615e-4 5.128e-4,-0.001577 0.00176,-0.003069 0.00192,-0.002291 0.0021,-0.002835 0.00113,-0.003507 -0.00116,-8.1422e-4 -0.00112,-0.006071 5.15e-5,-0.006071 3.24e-4,0 0.00127,0.001076 0.0021,0.002391 z m -0.35027046,0.026194 c 0.004154,0.001482 0.0123338,0.003269 0.020194,0.004412 0.0133692,0.001944 0.0186405,0.002964 0.019328,0.003742 2.8018e-4,3.1702e-4 8.4201e-4,4.3269e-4 0.001249,2.5699e-4 4.0649e-4,-1.757e-4 0.001974,3.73e-5 0.003484,4.7285e-4 0.00151,4.3572e-4 0.005558,0.001261 0.008995,0.001833 0.003438,5.7249e-4 0.00775,0.001381 0.009583,0.001797 0.001833,4.1568e-4 0.004828,9.3386e-4 0.006656,0.001151 0.001827,2.176e-4 0.005522,0.001159 0.008211,0.002092 0.002688,9.3275e-4 0.005412,0.001696 0.006052,0.001696 6.4047e-4,0 0.001164,2.6224e-4 0.001164,5.8275e-4 0,3.2051e-4 7.2516e-4,5.8275e-4 0.001611,5.8275e-4 0.003496,0 -1.3287e-4,0.005465 -0.007427,0.0111838 -0.004605,0.003611 -0.007265,0.004613 -0.008704,0.003279 -0.001781,-0.00165 -0.0241966,-0.0105192 -0.0268757,-0.0106336 -5.3836e-4,-2.273e-5 -0.001663,-5.0594e-4 -0.0025,-0.001073 -8.3623e-4,-5.6715e-4 -0.008271,-0.004156 -0.0165207,-0.007975 -0.0173021,-0.00801 -0.0248263,-0.011624 -0.0254167,-0.0122094 -2.2916e-4,-2.2728e-4 -0.001344,-8.5694e-4 -0.002477,-0.001399 -0.002866,-0.001371 -6.5446e-4,-0.001235 0.003394,2.0938e-4 z m 0.29848865,0.009711 c 0.001736,7.5519e-4 0.002952,0.001604 0.002703,0.001885 -2.4893e-4,2.8164e-4 -1.5348e-4,6.0006e-4 2.1212e-4,7.0758e-4 0.00162,4.7622e-4 0.00509,0.00447 0.00562,0.006466 3.1973e-4,0.001205 9.138e-4,0.002335 0.00132,0.002511 0.001048,4.5291e-4 9.1915e-4,0.004183 -1.6067e-4,0.00465 -0.001522,6.5786e-4 -0.008345,-0.00504 -0.0114237,-0.009541 -0.002941,-0.0043 -0.004353,-0.009258 -0.002407,-0.008456 5.3908e-4,2.2214e-4 0.0024,0.001022 0.004136,0.001777 z m 7.7854e-4,0.0456515 c 2.5758e-4,0.001227 -3.625e-5,0.001933 -9.4708e-4,0.002273 -0.001081,4.0448e-4 -0.001306,1.613e-4 -0.001238,-0.001342 1.1047e-4,-0.002458 2.1046e-4,-0.00271 0.001073,-0.00271 4.0631e-4,0 9.068e-4,8.007e-4 0.001112,0.001779 z m 0.0102216,0.009797 c 0.002197,0.00437 0.006041,0.0109613 0.008542,0.0146472 l 0.004547,0.006702 -0.001874,0.005828 c -0.00189,0.005879 -0.005888,0.0143106 -0.0106822,0.022533 -0.001433,0.002457 -0.002605,0.004883 -0.002605,0.00539 0,5.075e-4 -3.3981e-4,9.2273e-4 -7.5514e-4,9.2273e-4 -8.8125e-4,0 -0.002117,-0.005517 -0.001414,-0.006313 2.6192e-4,-2.9636e-4 -5.55e-5,-0.001292 -7.0545e-4,-0.002212 -6.4992e-4,-9.2033e-4 -0.001581,-0.004427 -0.002069,-0.007792 -4.8814e-4,-0.003365 -0.001434,-0.009135 -0.002101,-0.0128205 -0.001872,-0.0103382 -0.004241,-0.0330226 -0.003302,-0.0316142 2.6732e-4,4.0064e-4 0.001156,7.2843e-4 0.001976,7.2843e-4 0.001262,0 0.001581,7.3532e-4 0.002089,0.004807 3.2978e-4,0.002644 0.001128,0.006905 0.001773,0.00947 6.4545e-4,0.002565 0.001174,0.007613 0.001175,0.0112189 7.2e-7,0.004115 3.212e-4,0.006556 8.6063e-4,0.006556 4.7272e-4,0 0.001055,-3.5665e-4 0.001294,-7.926e-4 9.1536e-4,-0.001668 -0.003684,-0.0320213 -0.005094,-0.0336166 -7.642e-4,-8.6463e-4 9.3e-5,-0.001423 0.002317,-0.001508 0.001883,-7.267e-5 0.00233,5.1101e-4 0.006029,0.007867 z m -0.40160812,0.0253417 c 0.003425,0.004772 0.004389,0.006788 0.003244,0.006788 -0.002407,0 -0.0133937,-0.007025 -0.0126957,-0.008118 1.3039e-4,-2.0408e-4 9.8708e-4,-0.001609 0.001904,-0.003122 0.00199,-0.003285 0.001998,-0.003281 0.007548,0.004452 z m 0.42515119,0.0367777 c -1.5112e-4,7.8916e-4 -5.0696e-4,0.001597 -7.9076e-4,0.001796 -4.6491e-4,3.2512e-4 -0.0105896,-4.809e-4 -0.0155481,-0.001238 -0.004461,-6.8097e-4 0.00202,-0.00182 0.0109602,-0.001926 0.005548,-6.575e-5 0.005648,-4.009e-5 0.005379,0.001368 z m -0.0783704,0.0874698 c 0.00154,9.8291e-4 0.001769,0.001296 6.7146e-4,9.1683e-4 -0.002657,-9.1714e-4 -0.005092,-0.00237 -0.004005,-0.00239 5.4736e-4,-1.02e-5 0.002047,6.5289e-4 0.003333,0.001474 z m -0.13681581,0.0100679 c 0.004068,0.001365 0.007007,0.002678 0.006584,0.002941 -0.002241,0.001396 -0.008486,0.002413 -0.0152104,0.002479 -0.006981,6.786e-5 -0.007559,-2.745e-5 -0.0132856,-0.00219 -0.003293,-0.001243 -0.005877,-0.002523 -0.005743,-0.002843 1.3436e-4,-3.2051e-4 0.002659,-0.001178 0.00561,-0.001904 0.007793,-0.00192 0.0128341,-0.001573 0.0220448,0.001518 z m 0.1429039,-0.001103 c 0,2.2762e-4 -0.001163,2.9449e-4 -0.002584,1.486e-4 -0.001592,-1.6338e-4 -0.002197,-4.3291e-4 -0.001574,-7.0177e-4 0.001132,-4.8917e-4 0.004159,-8.654e-5 0.004159,5.5317e-4 z m -0.0747012,0.030773 c 0.002548,0.006117 0.003843,0.0108887 0.003856,0.0142094 1.367e-5,0.003641 -5.5415e-4,0.003977 -0.006742,0.003994 l -0.003004,7.95e-6 -5.3125e-4,-0.003934 c -8.276e-4,-0.006128 -6.444e-4,-0.00971 6.2215e-4,-0.0121645 0.002317,-0.004491 0.002972,-0.005464 0.003682,-0.005464 3.9711e-4,0 0.00135,0.001508 0.002118,0.003351 z m 0.001993,0.0209279 c 5.7291e-4,1.6166e-4 0.00151,1.6166e-4 0.002083,0 5.7292e-4,-1.6166e-4 1.0417e-4,-2.9393e-4 -0.001042,-2.9393e-4 -0.001146,0 -0.001615,1.3227e-4 -0.001042,2.9393e-4 z m -0.15290081,0.0472207 c 8.1081e-4,1.4776e-4 0.001936,1.3804e-4 0.0025,-2.162e-5 5.6419e-4,-1.5963e-4 -9.919e-5,-2.8051e-4 -0.001474,-2.6864e-4 -0.001375,1.189e-5 -0.001837,1.4249e-4 -0.001026,2.9024e-4 z"
+         id="path4620"
+         inkscape:connector-curvature="0" /><path
+         style="fill:#ffaaaa;fill-opacity:1;stroke:#aa0000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 288.7223,191.08099 c -4.6957,-0.50374 -14.05703,-2.7168 -14.96591,-3.53801 -0.2793,-0.25236 3.3608,-8.26093 5.5697,-12.25392 2.28489,-4.13033 7.53335,-15.42197 10.21648,-21.97993 4.11475,-10.05702 26.93721,-55.062664 30.22331,-59.600018 3.04567,-4.205384 6.44374,-6.294154 9.139,-5.617685 2.4897,0.624874 6.19877,8.084259 7.17736,14.434543 2.33703,15.16537 3.17263,53.8596 1.19338,55.26122 -0.41545,0.2942 -0.81477,1.57606 -0.88738,2.84858 -0.0726,1.27253 -0.37475,6.71418 -0.67143,12.09258 l -0.53942,9.77889 -6.26058,2.73292 c -7.73672,3.3773 -13.68629,4.87515 -21.68509,5.45938 -3.39339,0.24784 -7.73154,0.56537 -9.64032,0.70561 -1.90879,0.14024 -5.89988,-0.005 -8.8691,-0.32416 l 0,0 z"
+         id="path4643"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ffaaaa;fill-opacity:1;stroke:#aa0000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 138.43934,153.84832 c -1.91623,-4.05058 -7.23918,-22.16358 -12.85049,-43.72783 -1.60045,-6.15053 -3.16957,-11.876881 -3.48693,-12.725229 -1.00888,-2.696877 0.66002,-0.500868 10.7152,14.099539 5.34063,7.75475 11.14373,16.95162 12.89577,20.43749 1.75204,3.48586 4.53421,8.36559 6.18259,10.84383 3.44855,5.18469 3.3453,5.76269 -1.76078,9.85659 -4.45827,3.5745 -7.27314,5.30377 -8.63338,5.30377 -0.62038,0 -1.99827,-1.83967 -3.06198,-4.08816 l 0,0 z"
+         id="path4645"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#6c5353;fill-opacity:1;stroke:#ac9393;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 165.86853,329.0596 c -2.24676,-0.37395 -5.06859,-1.18855 -6.27075,-1.81021 -2.2406,-1.15866 -6.2256,-5.39209 -6.2256,-6.61371 0,-0.37528 1.3882,-1.05614 3.0849,-1.51301 1.93624,-0.52138 3.0849,-1.28149 3.0849,-2.0414 0,-0.92072 -0.48337,-1.0894 -2.01803,-0.70423 -6.35749,1.59564 -6.263,1.61838 -10.69761,-2.57568 -4.09161,-3.86967 -12.46856,-8.55892 -15.29199,-8.56015 -2.46992,-7.7e-4 -4.24423,-1.46535 -4.79075,-3.95366 -0.56679,-2.58059 1.84028,-15.32759 2.89438,-15.32759 0.32858,0 0.59742,-0.44361 0.59742,-0.98579 0,-0.54218 1.21469,-3.5204 2.69929,-6.61826 1.48461,-3.09786 2.69929,-6.12477 2.69929,-6.72647 0,-2.06682 -1.51292,-1.09042 -3.0849,1.99091 -0.86559,1.6967 -1.65351,3.0849 -1.75093,3.0849 -0.0974,0 -0.18394,-4.07785 -0.19226,-9.0619 -0.0146,-8.72118 -0.15132,-9.47031 -3.63712,-19.92376 -3.5598,-10.67538 -7.56708,-29.07679 -6.55292,-30.09095 0.28419,-0.28419 1.38296,0.0509 2.44171,0.7446 3.25964,2.1358 3.71128,1.40674 1.12342,-1.81349 -2.469,-3.07235 -2.47,-3.07728 -1.24956,-6.18422 0.67178,-1.71018 4.01296,-7.87489 7.42484,-13.69937 9.12103,-15.57061 10.39675,-18.99247 10.44836,-28.02572 l 0.0423,-7.40986 4.63056,-2.47474 c 4.32792,-2.31301 12.72202,-9.441 12.72202,-10.80313 0,-0.33532 -1.68881,-3.17388 -3.75291,-6.30792 -2.06409,-3.13403 -5.02221,-8.22195 -6.5736,-11.30648 -1.55138,-3.08454 -4.83635,-8.46384 -7.29992,-11.954 -9.87539,-13.99055 -19.47637,-28.498799 -19.10508,-28.870096 0.63385,-0.633844 14.4722,1.938754 19.04236,3.540039 7.42463,2.601436 22.52652,9.342267 28.87193,12.887197 6.53293,3.64968 20.80949,12.44249 24.13121,14.86219 1.94513,1.41693 2.04455,1.41134 5.99756,-0.33686 5.84005,-2.58275 19.54845,-6.45092 28.80785,-8.12887 14.76011,-2.67476 48.57546,-1.72823 62.91705,1.76112 2.12087,0.51601 3.97095,1.01459 4.1113,1.10795 0.14034,0.0934 -2.1855,4.29423 -5.16853,9.33527 -2.98304,5.04105 -6.67629,12.09862 -8.20723,15.6835 -3.97002,9.29632 -15.52295,28.22837 -23.20999,38.03473 -3.71221,4.73568 -6.39078,8.84424 -6.15928,9.44752 0.52065,1.35681 1.71667,1.37712 2.23058,0.0379 0.21732,-0.56631 3.16872,-4.65642 6.55868,-9.08914 8.78728,-11.49026 24.06027,-37.38217 24.06027,-40.78875 0,-1.96622 7.88322,-14.70543 22.9633,-37.10849 3.43358,-5.100949 12.78343,-14.557003 14.39352,-14.557003 0.30388,0 -1.00135,1.822021 -2.90052,4.048936 -1.89916,2.226914 -5.35613,7.866503 -7.68214,12.532417 -2.32601,4.66592 -7.84841,15.59804 -12.272,24.29361 -4.42358,8.69557 -9.69691,19.97475 -11.71851,25.06484 -3.0877,7.7744 -11.5185,24.55614 -17.11955,34.07695 -0.7949,1.35119 -1.25083,2.65114 -1.01319,2.88877 0.23764,0.23764 4.36155,1.3012 9.16425,2.36347 16.5032,3.6502 37.05958,1.85922 51.86672,-4.5189 2.2342,-0.96237 4.66953,-1.61457 5.41183,-1.44931 1.22236,0.27211 1.35232,-0.5232 1.378,-8.4324 0.0156,-4.80306 0.54165,-11.1622 1.16903,-14.13142 0.6508,-3.08009 1.33803,-12.02284 1.60018,-20.82309 0.37944,-12.73736 0.17995,-17.93131 -1.1451,-29.81374 -2.32786,-20.875166 -5.06062,-26.809246 -12.40111,-26.928555 l -3.51903,-0.0572 3.0849,-1.428058 c 4.98485,-2.307577 6.41052,-1.986974 10.62976,2.390412 5.00738,5.195071 7.90634,11.635925 10.25055,22.774511 1.05966,5.03504 3.04203,12.45162 4.40524,16.48127 2.17682,6.43466 2.47634,8.31253 2.46016,15.42452 -0.0171,7.52771 -0.2479,8.7468 -3.27771,17.31455 -4.14759,11.72865 -4.20519,14.62989 -0.4576,23.04986 1.54092,3.46211 3.27309,7.81463 3.84928,9.67228 1.25455,4.04477 0.66932,9.44482 -0.956,8.82112 -0.62146,-0.23848 -1.06761,0.0814 -1.06761,0.7654 0,0.6463 0.35363,1.29296 0.78584,1.43704 1.38607,0.46202 -2.92622,11.83798 -12.29191,32.42642 -1.44971,3.18689 -7.51161,14.34801 -8.24098,15.17325 -0.14715,0.1665 -0.70975,-0.0485 -1.25022,-0.47782 -0.54047,-0.42929 -3.48722,-1.14272 -6.54834,-1.58541 -3.06112,-0.44268 -7.13652,-1.58939 -9.05646,-2.54825 -1.91993,-0.95886 -3.72597,-1.50819 -4.01342,-1.22075 -0.97498,0.97498 3.16663,4.46177 9.94946,8.37638 3.71691,2.14516 6.75469,4.11744 6.75062,4.38285 -0.004,0.2654 -1.8189,2.91192 -4.03294,5.88114 -5.95804,7.99026 -18.48254,20.59356 -24.76629,24.92213 -7.86135,5.4153 -30.72978,18.1335 -41.46095,23.05837 l -9.12979,4.18995 -7.53889,-1.18248 c -10.64316,-1.66938 -39.88009,-4.89931 -49.95631,-5.51889 -6.53803,-0.40203 -9.08057,-0.88417 -11.08722,-2.10247 -2.49606,-1.51545 -2.70336,-1.52633 -5.01296,-0.26301 -4.4085,2.41136 -5.28121,3.33897 -4.74141,5.03972 0.83056,2.61688 6.31349,5.71479 17.74579,10.02652 5.93244,2.23745 12.17937,4.79398 13.88206,5.68119 l 3.09581,1.6131 -5.39858,0.96166 c -6.13723,1.09325 -28.01832,1.21893 -34.16281,0.19623 l 0,0 z m 6.50164,-38.13557 c 0.71244,-1.08732 2.29124,-5.32671 3.50845,-9.42084 3.46274,-11.64715 3.05484,-11.33812 18.51973,-14.03097 12.64709,-2.20219 15.19925,-3.39616 11.49596,-5.37809 -1.04601,-0.55981 -5.28242,-0.2404 -14.8461,1.11934 -7.36033,1.04648 -14.32344,1.90735 -15.47357,1.91305 -1.76447,0.009 -2.20945,0.46214 -2.84848,2.90244 -0.41654,1.59066 -1.8176,6.88319 -3.11346,11.7612 -2.58888,9.74531 -2.84025,12.01666 -1.39443,12.60007 1.96012,0.79092 2.88758,0.4634 4.1519,-1.4662 z m 104.24389,-0.49096 c 1.54805,-1.54806 1.0582,-3.26917 -1.9211,-6.74981 -3.88225,-4.53554 -8.50678,-7.74923 -11.15121,-7.74923 -3.33626,0 -2.82441,2.47711 1.46536,7.09163 3.46892,3.73154 9.09034,8.33288 10.18021,8.33288 0.2757,0 0.91773,-0.41646 1.42674,-0.92547 z m 32.92033,-19.4086 c 1.27607,-0.93308 1.32805,-1.32526 0.45502,-3.43292 -0.54208,-1.30872 -1.76962,-2.8932 -2.72786,-3.52106 -2.49523,-1.63494 -15.45377,-6.54743 -17.96388,-6.80998 -1.79314,-0.18755 -2.15458,0.0968 -2.35756,1.85486 -0.36061,3.12324 1.9032,5.86572 6.94123,8.40891 3.57281,1.80355 10.16084,3.94963 13.78139,4.48937 0.23706,0.0353 1.07931,-0.40979 1.87166,-0.98918 l 0,0 z m -170.04428,-4.75002 c 0,-0.64685 1.21468,-3.58812 2.69929,-6.53616 1.48461,-2.94805 2.69929,-5.67242 2.69929,-6.05416 0,-0.38174 -1.12791,-0.91768 -2.50648,-1.19098 -1.75689,-0.3483 -4.15736,-2.20511 -8.02671,-6.20883 -3.03613,-3.14156 -5.71193,-5.52022 -5.94624,-5.28591 -0.92624,0.92623 2.0211,4.89388 7.19108,9.68049 2.98772,2.76618 5.43223,5.37239 5.43223,5.79159 0,0.4192 -0.86763,2.72405 -1.92807,5.12188 -2.24063,5.06647 -2.34486,5.85817 -0.77122,5.85817 0.63626,0 1.15683,-0.52924 1.15683,-1.17609 z m 77.89381,-14.41658 -1.92807,-0.84162 2.31368,-0.50649 c 1.8897,-0.41368 1.46573,-0.57087 -2.31368,-0.85781 -6.22266,-0.47245 -16.61552,0.32408 -14.85789,1.13874 1.44946,0.67182 10.65228,1.76289 15.62912,1.85296 2.8751,0.0521 2.95378,-0.002 1.15684,-0.78578 z m -23.2734,-35.50103 c 1.64903,-2.22692 4.49436,-6.82535 6.32295,-10.21875 1.8286,-3.39339 4.30641,-7.43216 5.50624,-8.97505 5.401,-6.94517 16.95326,-27.72105 18.05934,-32.47833 0.43824,-1.88485 0.27593,-2.12087 -1.45856,-2.12087 -2.42536,0 -6.66961,4.78562 -11.56354,13.03853 -5.23394,8.8263 -22.12839,42.0523 -22.12839,43.5195 0,2.45754 2.28298,1.25788 5.26196,-2.76503 z m -30.71638,-23.89968 c 5.55742,-8.16993 12.16994,-17.77272 14.69451,-21.33953 4.47576,-6.32357 5.72674,-10.07396 3.76472,-11.28656 -1.46331,-0.90437 -13.03718,12.09111 -19.60531,22.01341 -7.6522,11.55998 -18.48582,31.96401 -17.67124,33.28202 1.00177,1.62089 8.16225,-7.00538 18.81732,-22.66934 z m 19.77979,9.35164 c 3.9304,-6.07577 12.84248,-24.22842 13.96652,-28.4478 0.3955,-1.48461 0.57149,-3.13311 0.39107,-3.66332 -0.51789,-1.52208 -2.86896,-1.12636 -4.58209,0.77122 -2.51156,2.78198 -7.69824,10.81318 -9.11768,14.11807 -1.53272,3.56867 -6.55157,20.1735 -6.55157,21.67585 0,2.56738 2.64442,0.56893 5.89375,-4.45402 l 0,0 z m 69.38594,-48.99128 c 8.41536,-5.70633 17.2674,-15.04727 17.2674,-18.22109 0,-1.3622 -0.35577,-1.46096 -3.54173,-0.98319 -5.75671,0.86327 -9.6486,2.99916 -14.97757,8.21976 -6.46759,6.33608 -9.53211,10.38631 -8.96895,11.85387 0.76818,2.00184 6.73505,1.49432 10.22085,-0.86935 z m -36.70032,-8.53094 c 4.82932,-2.40655 16.94888,-14.23194 16.94888,-16.53749 0,-2.48644 -2.31556,-2.60532 -6.49043,-0.33322 -4.87627,2.65383 -13.81074,9.91348 -16.86378,13.70257 -4.22865,5.24811 -0.98657,6.85167 6.40533,3.16814 l 0,0 z m 18.3282,-2.69054 c 1.68559,-1.86575 3.34128,-2.97045 4.3369,-2.89367 5.02066,0.38722 5.78446,-0.006 10.0377,-5.16198 5.10441,-6.1883 7.1376,-10.09159 5.90084,-11.32834 -1.9478,-1.9478 -13.06352,7.00186 -20.84956,16.78671 -5.61865,7.06105 -5.19404,8.98195 0.57412,2.59728 z m 41.53081,-17.48039 c 4.93547,-3.57524 7.36985,-8.76665 4.60789,-9.82651 -1.41195,-0.54182 -15.12654,8.00835 -15.12654,9.43043 0,1.27695 2.57951,2.47716 5.47568,2.54777 1.10283,0.0269 3.37217,-0.94137 5.04297,-2.15169 l 0,0 z"
+         id="path4655"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#6c5353;fill-opacity:1;stroke:#ac9393;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 141.12531,351.48913 c -4.29535,-0.89008 -6.68623,-2.46441 -8.20608,-5.40347 -1.51803,-2.93553 -0.96887,-3.82622 2.35905,-3.82622 3.08049,0 8.83919,-2.12716 8.83919,-3.26504 0,-0.48537 -0.95453,-0.57016 -2.50649,-0.22264 -6.88518,1.54173 -8.63594,1.7037 -11.48835,1.0628 -3.93694,-0.88457 -9.88125,-3.88737 -11.71692,-5.91885 -0.77998,-0.86319 -1.69893,-2.81438 -2.04211,-4.33599 -0.60616,-2.68765 -0.46517,-2.92574 4.94305,-8.34707 8.83336,-8.85476 7.99377,-8.49801 12.87239,-5.46951 2.44582,1.5183 6.09246,2.94715 8.79379,3.44564 2.53833,0.46842 5.30926,0.99758 6.15761,1.17592 0.84834,0.17833 2.80467,1.99299 4.34738,4.03256 4.79772,6.34291 7.76803,7.28308 24.18797,7.65606 10.4333,0.237 15.65442,0.009 21.01624,-0.91907 9.5977,-1.66068 9.99487,-1.62629 16.50097,1.42833 7.11942,3.34258 9.91317,4.07124 9.91317,2.58553 0,-0.63847 -2.60675,-2.15454 -6.30309,-3.66584 l -6.30308,-2.5771 9.96641,-2.93891 c 5.48152,-1.61639 13.01215,-4.14909 16.73472,-5.62823 3.72258,-1.47913 8.32101,-2.92217 10.21875,-3.20675 1.89773,-0.28458 3.45042,-0.82696 3.45042,-1.2053 0,-0.37833 4.94549,-3.08456 10.98997,-6.01384 11.84247,-5.73911 32.3106,-17.26328 39.15613,-22.04607 2.32392,-1.62366 6.67614,-5.33737 9.6716,-8.25267 5.34749,-5.20441 5.60609,-5.34805 14.25555,-7.91834 4.8451,-1.43978 8.83992,-2.55448 8.87737,-2.47712 0.0375,0.0774 0.69057,1.81961 1.45139,3.87164 0.76081,2.05204 3.16499,5.83648 5.34261,8.40987 2.17762,2.57339 4.68469,5.55131 5.57125,6.6176 2.659,3.19802 4.17226,1.85172 4.17226,-3.71194 0,-3.50512 -0.67251,-6.38921 -2.69929,-11.57599 -1.48461,-3.7993 -2.69929,-7.18511 -2.69929,-7.52404 0,-0.33891 2.23852,-1.59142 4.97451,-2.78334 4.92378,-2.14504 7.25984,-3.93702 6.3363,-4.86056 -0.26256,-0.26256 -4.50958,1.50598 -9.43784,3.93008 -4.92825,2.4241 -9.12876,4.23915 -9.33447,4.03344 -0.2057,-0.2057 0.17257,-1.20819 0.84061,-2.22776 1.24941,-1.90683 4.66331,-16.69047 4.00602,-17.34775 -1.29552,-1.29553 -2.723,2.14463 -5.89607,14.20932 l -1.66337,6.32443 -4.74597,1.53456 c -7.35806,2.37914 -10.53017,3.1029 -10.53017,2.40257 0,-0.35326 2.01013,-3.36199 4.46696,-6.68607 5.91312,-8.00043 8.93498,-13.12196 15.48873,-26.25073 7.51622,-15.0568 14.44499,-32.01582 15.52108,-37.98967 0.49358,-2.74013 0.68353,-6.40838 0.4221,-8.15166 -0.2899,-1.93326 -7.1e-4,-4.9536 0.7414,-7.74319 0.66918,-2.51546 1.25309,-7.05073 1.29755,-10.07839 0.0671,-4.56766 -0.25563,-6.10689 -1.89571,-9.04131 -2.89333,-5.17672 -3.16462,-7.48355 -1.6853,-14.33027 1.13631,-5.25919 1.19944,-7.21741 0.45345,-14.06709 -0.51315,-4.71169 -1.68334,-10.15939 -2.86893,-13.35598 -1.10127,-2.96922 -2.9869,-9.96117 -4.19029,-15.53768 -2.8025,-12.986736 -6.11776,-19.446076 -13.2572,-25.829851 -2.18118,-1.950314 -2.42722,-1.995099 -5.91165,-1.075921 -9.88942,2.608779 -16.09854,7.870852 -25.75829,21.829512 -7.3204,10.57823 -7.5907,10.86381 -9.63824,10.18324 -8.54006,-2.83856 -41.26029,-4.63178 -57.98028,-3.17758 -5.28005,0.45923 -9.69123,0.74383 -9.80262,0.63245 -0.11138,-0.11139 5.74573,-3.6706 13.01579,-7.90936 12.22993,-7.130556 15.49309,-9.578226 12.76941,-9.578226 -0.58999,0 -5.50801,2.588341 -10.92893,5.751878 -5.42092,3.163528 -11.56111,6.522378 -13.64485,7.464118 -2.08375,0.94173 -3.78863,1.98654 -3.78863,2.32179 0,0.33525 -0.45408,0.43529 -1.00907,0.22233 -0.555,-0.21298 -1.85644,0.35162 -2.8921,1.25464 -2.822,2.46057 -4.80685,3.2709 -15.80271,6.45163 l -10.06355,2.91105 -7.67464,-4.97176 c -11.24544,-7.28498 -25.06175,-14.69066 -34.28193,-18.375453 -10.78112,-4.308615 -13.43363,-5.106695 -24.17078,-7.272405 -5.02253,-1.013059 -9.95581,-2.381784 -10.96283,-3.041614 -3.55606,-2.33002 -3.51969,-1.565974 0.40294,8.466833 1.68266,4.303694 3.90383,10.917129 4.93593,14.696519 7.27504,26.63991 11.71844,42.05268 12.96409,44.96838 0.79694,1.86539 1.61104,4.81533 1.80911,6.55542 0.19808,1.74009 0.63967,4.89906 0.98132,7.01993 1.10476,6.85809 -1.87834,14.94313 -11.56966,31.3571 -2.66944,4.52117 -5.54764,9.46525 -6.39599,10.98684 l -1.54245,2.76651 -6.16981,-4.62285 c -3.39339,-2.54257 -6.43009,-4.62347 -6.74822,-4.62422 -1.50728,-0.004 -0.13894,1.53115 4.79334,5.37629 2.95447,2.30327 5.24587,4.31364 5.09201,4.4675 -0.15387,0.15387 -2.77585,-0.97725 -5.82662,-2.51359 -3.05077,-1.53635 -6.29657,-2.66485 -7.21288,-2.50778 -1.19088,0.20414 0.52307,1.32453 6.00984,3.92856 4.22172,2.00364 7.78711,3.75424 7.9231,3.89023 0.13599,0.13598 0.94195,3.91199 1.79103,8.39114 0.84908,4.47914 3.13719,13.63897 5.0847,20.35518 4.82102,16.62588 4.99935,17.45661 3.89767,18.15699 -0.50704,0.32235 -3.65377,0.59141 -6.99273,0.5979 -12.77598,0.0248 -27.065868,3.13216 -40.542537,8.81591 l -5.976646,2.52062 -0.50509,-17.35538 c -0.277799,-9.54546 -0.505089,-20.07571 -0.505089,-23.40056 l 0,-6.04517 4.962547,0 c 5.166237,0 14.872685,-1.73072 17.453884,-3.11213 2.33256,-1.24835 1.760811,-3.02354 -1.400529,-4.34843 -5.736383,-2.40406 -21.015902,-4.30955 -21.015902,-2.62087 0,0.39366 1.995546,0.92489 4.434548,1.18053 9.951357,1.04303 16.873604,2.86477 16.035894,4.22022 -1.020533,1.65125 -17.770203,3.71022 -19.699217,2.42154 -0.966492,-0.64567 -1.152224,-3.34687 -1.128792,-16.41662 0.01543,-8.60408 0.279653,-16.58752 0.587173,-17.74099 l 0.559126,-2.0972 9.438762,-0.21647 9.438763,-0.21648 0,-1.92806 c 0,-2.6725 -3.554378,-4.29359 -12.050667,-5.49611 -5.611903,-0.79428 -6.844365,-1.20985 -6.844365,-2.30786 0,-5.25214 5.104414,-33.81798 6.253963,-34.99906 0.412851,-0.42418 5.158049,-1.11828 10.544882,-1.54245 8.417534,-0.66283 9.830892,-0.96404 10.054952,-2.14296 0.19894,-1.04671 -1.078541,-1.9839 -5.391478,-3.9553 -3.108705,-1.42096 -6.997345,-3.05828 -8.641423,-3.63849 -1.644077,-0.5802 -3.158834,-1.49689 -3.366126,-2.03708 -0.441961,-1.15173 4.884331,-16.99512 6.283138,-18.68959 0.525243,-0.63626 1.420893,-2.63678 1.990334,-4.44559 0.569441,-1.80881 1.53395,-3.70255 2.143354,-4.20831 0.609404,-0.50577 2.290995,-2.76887 3.736869,-5.029136 1.445873,-2.26027 3.143592,-4.307095 3.772712,-4.548512 0.62912,-0.241417 4.87699,-4.153444 9.4397,-8.693388 8.78228,-8.738474 29.37626,-25.688729 30.42411,-25.041124 1.28358,0.793295 10.45218,-2.19568 15.89013,-5.180202 6.75404,-3.706831 15.77234,-9.479892 17.48628,-11.193826 0.85212,-0.852122 0.9948,-1.521443 0.46134,-2.164213 -0.57488,-0.692703 2.64904,-2.535312 12.61272,-7.208687 7.36176,-3.452967 14.26257,-6.498376 15.33515,-6.767574 1.37961,-0.346262 4.02789,0.432812 9.05237,2.66304 3.90624,1.73387 7.75252,3.152491 8.5473,3.152491 2.55186,0 1.64906,-3.263816 -2.08286,-7.529958 -3.49207,-3.991963 -3.5097,-4.039977 -1.73525,-4.724292 0.98596,-0.380238 6.99844,-2.7635 13.36105,-5.296138 14.06065,-5.5968433 28.98206,-10.5893751 36.25017,-12.1288881 9.38376,-1.9876444 24.49498,-1.549385 37.47437,1.0868409 14.0367,2.8509716 20.76362,4.7069087 30.65323,8.4571242 9.44809,3.582783 12.55119,5.608074 20.21601,13.194279 7.75729,7.677733 12.23397,14.700524 18.16954,28.503484 2.70827,6.297962 6.98793,15.041738 9.51038,19.430613 3.62509,6.307399 5.39411,10.646686 8.44092,20.704997 8.15117,26.909159 9.2374,32.904689 10.8583,59.932999 0.86329,14.3953 1.07721,61.27376 0.30103,65.96961 l -0.47803,2.89209 -8.60477,0 c -7.38973,0 -9.09069,0.24503 -12.0459,1.73526 -1.89262,0.95439 -3.44113,2.25584 -3.44113,2.8921 0,1.37666 9.95922,4.42646 16.83236,5.15455 6.09997,0.64618 6.76579,1.78188 7.26812,12.39747 0.83358,17.61574 -3.47863,41.0971 -9.76693,53.184 -2.66704,5.1264 -4.00905,6.73666 -8.39016,10.06735 -7.97876,6.06577 -16.70444,9.42974 -27.54992,10.62118 l -4.63955,0.50969 -1.25469,-2.58568 c -1.8826,-3.87968 -6.01028,-9.25515 -6.7539,-8.79556 -0.35976,0.22234 -0.8881,2.58926 -1.1741,5.25982 -0.28599,2.67055 -0.79274,5.29688 -1.12611,5.83629 -0.74913,1.21212 -8.63547,2.40424 -16.04187,2.42492 l -5.55197,0.0155 -1.18464,-4.04893 c -0.65155,-2.22691 -1.79721,-7.3438 -2.5459,-11.37086 -1.10291,-5.93236 -1.63591,-7.37371 -2.80848,-7.59479 -1.3755,-0.25935 -1.43075,0.30684 -1.11491,11.4249 0.22645,7.97112 0.62818,11.88062 1.26102,12.27174 0.51079,0.31569 -4.31434,1.35606 -10.72251,2.31194 -6.40816,0.95589 -11.77643,1.61276 -11.92948,1.45971 -0.15305,-0.15305 -1.19004,-4.59664 -2.30442,-9.87464 -1.11438,-5.278 -2.19003,-9.86152 -2.39031,-10.18559 -0.6205,-1.00399 -1.6264,-0.65176 -2.17164,0.76043 -0.96697,2.50452 -1.85708,12.9589 -1.39602,16.39631 0.66234,4.93817 1.62642,1.88959 1.70969,-5.40634 0.0363,-3.18131 0.40243,-6.30477 0.81362,-6.94104 0.59469,-0.92021 0.7582,-0.76246 0.79938,0.77123 0.0285,1.06044 0.82597,4.93636 1.77221,8.61316 l 1.72044,6.68511 -3.49566,0.33277 c -1.92262,0.18303 -8.51461,1.44208 -14.64887,2.79789 -15.13981,3.34625 -14.76734,3.43851 -16.34404,-4.04862 -2.15082,-10.21345 -4.21298,-9.52753 -5.0075,1.66561 -0.48082,6.77392 -0.56794,7.03236 -2.50611,7.43416 -1.10439,0.22896 -11.04972,1.44898 -22.10073,2.71116 -11.05102,1.26218 -23.0243,2.99763 -26.60729,3.85655 -3.583,0.85891 -6.90895,1.56409 -7.391,1.56706 -0.48206,0.003 -1.10945,-1.54824 -1.3942,-3.44713 -0.92281,-6.15374 -2.7722,-5.44993 -4.37687,1.66566 l -0.90146,3.99732 -7.65888,2.75091 c -5.31222,1.90803 -8.97535,2.75091 -11.95545,2.75091 l -4.29656,0 2.04069,-1.89124 c 1.12237,-1.04018 2.04068,-2.23438 2.04068,-2.65377 0,-1.31914 -1.33092,-1.6521 -2.23749,-0.55976 -1.48871,1.79379 -9.53114,4.99008 -13.57264,5.39416 -2.12087,0.21205 -5.37613,0.0706 -7.2339,-0.31441 z m 160.6641,-39.4791 c 1.54935,-2.212 1.55021,-8.39699 0.002,-13.61074 -1.34872,-4.54163 -2.77812,-5.55488 -4.99986,-3.54423 -1.71235,1.54965 -1.96195,5.49831 -0.70523,11.15677 1.70459,7.67506 3.33075,9.38534 5.70319,5.9982 l 3.6e-4,0 z M 113.26844,260.89512 c 0,-0.63626 -0.34705,-1.15683 -0.77123,-1.15683 -0.42417,0 -0.77122,0.52057 -0.77122,1.15683 0,0.63627 0.34705,1.15684 0.77122,1.15684 0.42418,0 0.77123,-0.52057 0.77123,-1.15684 z m -11.73846,-13.46404 c 10.89942,-2.07686 11.7319,-2.80023 6.14707,-5.34137 -5.24246,-2.38537 -13.53431,-3.81353 -18.341238,-3.15903 -5.309821,0.72297 -10.772534,2.34136 -10.772534,3.19149 0,0.89016 0.666216,0.8322 6.700369,-0.58295 6.786009,-1.59147 9.346905,-1.48463 16.711433,0.69719 l 6.05921,1.79511 -4.13115,0.90589 c -12.185666,2.67209 -17.626633,2.62752 -21.630907,-0.17719 -2.266457,-1.58749 -3.797047,-1.5734 -3.182037,0.0293 0.739779,1.92783 6.379634,4.11589 10.657383,4.13467 2.121711,0.009 7.423793,-0.66258 11.782401,-1.4931 l 0,-2e-5 z m 26.05154,-61.29717 c 1.47929,-1.096 1.47875,-1.12294 -0.0454,-2.27101 -2.73305,-2.05868 -16.07575,-6.86157 -20.07463,-7.22615 -5.30052,-0.48326 -9.617558,1.30943 -9.617558,3.99376 0,2.55571 2.424768,4.08748 8.587068,5.42464 6.79896,1.47531 19.20323,1.5215 21.15053,0.0788 l 0,0 z m -17.08459,-25.60782 c 2.7166,-0.37235 3.55561,-0.79635 3.38001,-1.70813 -0.32031,-1.66324 -4.81878,-4.57333 -8.6362,-5.58681 -1.73529,-0.4607 -3.70106,-1.11683 -4.36836,-1.45805 -2.63962,-1.34975 -14.596844,2.41759 -14.596844,4.599 0,3.08287 2.200772,3.62872 18.208974,4.51628 1.31936,0.0732 4.02495,-0.0899 6.01242,-0.36229 l 0,0 z M 282.49741,98.882624 c 2.58281,-2.582812 0.89662,-8.055939 -3.06043,-9.933681 -3.265,-1.549339 -3.99001,-1.50578 -4.95523,0.297747 -1.01042,1.887999 -1.00638,4.283627 0.0134,7.955765 0.75186,2.707311 0.99445,2.892095 3.79675,2.892095 1.69312,0 3.52004,-0.526476 4.20549,-1.211926 z m -70.51207,-1.872976 c 0.84834,-0.848348 1.54245,-1.877426 1.54245,-2.286838 0,-1.979182 -5.36982,-6.423956 -11.72858,-9.708129 l -7.05972,-3.646201 -1.79165,2.082903 c -1.89945,2.208251 -1.84733,4.145894 0.22217,8.259034 1.07945,2.145388 1.17902,2.204418 8.40378,4.982196 5.75956,2.214428 8.43275,2.295831 10.41155,0.317035 l 0,0 z m 92.30458,-8.617916 c 3.73819,-3.511853 0.84652,-11.570799 -4.33079,-12.069749 l -2.596,-0.250183 0.42339,6.177296 c 0.23288,3.397512 0.65177,6.546797 0.93088,6.998412 0.84165,1.361807 3.67521,0.926651 5.57252,-0.855776 l 0,0 z m -37.65853,-7.47674 c 4.63576,-3.649849 18.74435,-12.548643 22.33639,-14.088376 1.96242,-0.841192 3.21244,-1.837312 3.01345,-2.401381 -0.18702,-0.530149 -0.82326,-0.888403 -1.41387,-0.796121 -4.49857,0.702905 -7.81974,1.865087 -11.36314,3.976329 -2.26573,1.349972 -4.86861,2.531539 -5.7842,2.625706 -1.93554,0.199067 -2.01694,-0.949617 -0.95798,-13.518047 0.41552,-4.931667 0.36754,-7.519451 -0.13943,-7.519451 -1.23091,0 -1.68446,2.78359 -2.2249,13.654943 l -0.50628,10.184428 -3.15979,2.512244 c -1.73788,1.381734 -3.27754,2.79158 -3.42146,3.132986 -0.14391,0.341414 -0.77338,1.132468 -1.39881,1.757901 -1.29104,1.291032 -0.76209,2.691431 1.01659,2.691431 0.65624,0 2.45777,-0.995668 4.00343,-2.212592 l 0,0 z m -39.41944,-3.185988 c 0.10885,0 0.1979,-1.023493 0.1979,-2.274429 0,-2.54825 -1.99642,-4.348937 -9.40877,-8.486301 -3.03593,-1.694573 -5.18318,-2.377959 -6.94103,-2.209055 -2.41286,0.231841 -2.54523,0.404417 -2.54523,3.318512 0,2.829598 0.30653,3.279635 3.85613,5.66141 6.37624,4.278449 9.48764,5.468426 12.23668,4.680016 1.32353,-0.379584 2.49548,-0.690153 2.60432,-0.690153 z M 173.60283,77.4039 c 2.46907,-0.549009 4.44857,-3.864228 4.44857,-7.450332 0,-1.879175 -0.81162,-3.265079 -3.46745,-5.920909 -3.38392,-3.383915 -3.56358,-3.458219 -7.45716,-3.084096 -3.23181,0.310537 -4.36779,0.82651 -5.98006,2.716194 -1.0947,1.283058 -2.51001,2.48489 -3.14515,2.670737 -0.84719,0.247899 -0.64176,0.60666 0.77123,1.34688 2.33903,1.225341 6.15468,5.568865 5.63721,6.417091 -0.92226,1.511785 3.55989,4.558858 5.92912,4.030761 0.63627,-0.141823 2.10493,-0.468669 3.26369,-0.726326 l 0,0 z M 154.1434,61.615775 c 0,-0.688835 -1.81352,-1.624964 -3.14798,-1.624964 -0.38948,0 -0.70815,0.520578 -0.70815,1.156839 0,0.71981 0.72838,1.156839 1.92807,1.156839 1.06043,0 1.92806,-0.309921 1.92806,-0.688714 z m 76.35135,-1.997035 c 0,-1.543606 -6.37333,-8.111412 -7.87123,-8.111412 -1.66782,0 -3.04618,1.874156 -2.47434,3.364351 0.26302,0.685398 1.89911,2.291118 3.63576,3.568268 3.38918,2.49243 6.70981,3.075806 6.70981,1.178793 z m 115.68387,-1.606881 c 14.90775,-0.505969 16.6304,-0.749291 14.35324,-2.027376 -2.55016,-1.431317 -33.87103,0.876799 -35.56195,2.620653 -0.52844,0.544983 0.5641,0.648894 3.47052,0.330081 2.33295,-0.255908 10.31514,-0.67142 17.73819,-0.923358 z M 205.94225,54.977844 c -0.47603,-4.254118 -2.85811,-8.535536 -5.31524,-9.553313 -2.80497,-1.161853 -8.83772,-0.842268 -9.27629,0.49141 -0.17436,0.530218 0.19486,0.964032 0.82048,0.964032 0.62563,0 1.34075,0.809787 1.58915,1.799526 0.24842,0.989739 1.89332,3.437335 3.65534,5.439101 2.85163,3.239617 3.51038,3.613936 5.99457,3.406249 2.60297,-0.217618 2.77345,-0.389107 2.53199,-2.547005 l 0,0 z m 32.41925,-7.743331 c 1.32056,-2.89832 -0.0237,-5.797038 -3.63739,-7.843716 -3.59558,-2.0364 -7.47243,-2.268416 -9.19081,-0.550038 -1.1065,1.106509 -0.96171,1.525192 1.61481,4.669492 4.74192,5.786893 9.54652,7.38263 11.21339,3.724262 z"
+         id="path4657"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#6c5353;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 57.044126,290.7513 c -0.923075,-1.01999 -0.915274,-1.1248 0.188149,-2.52757 1.561608,-1.98526 1.497152,-4.43194 -0.150907,-5.72831 -0.716135,-0.56331 -1.449012,-1.60969 -1.628616,-2.3253 -0.256724,-1.02286 -0.810163,-1.37842 -2.588113,-1.66272 -1.243858,-0.1989 -2.381816,-0.24138 -2.528797,-0.0944 -0.657556,0.65755 0.508434,1.95029 1.759076,1.95029 0.759255,0 1.380463,0.23686 1.380463,0.52636 0,0.2895 0.721794,1.34844 1.603987,2.35321 1.590279,1.81122 1.595592,1.83963 0.621739,3.32419 l -0.98225,1.49735 -1.530345,-1.80553 c -1.900715,-2.24251 -4.685165,-8.19309 -6.24123,-13.33798 -1.304687,-4.31375 -1.225856,-5.01536 1.388588,-12.35864 1.87214,-5.25835 1.839087,-10.48606 -0.08558,-13.53492 -0.872094,-1.38149 -2.189274,-2.56374 -3.461805,-3.10719 l -2.054091,-0.87722 0.248051,-6.56174 c 0.18145,-4.79994 0.485803,-6.9278 1.133549,-7.92509 1.627027,-2.50503 2.455707,-5.15568 2.499369,-7.99459 0.03067,-1.99405 0.393237,-3.28822 1.244475,-4.44204 0.975793,-1.32266 1.198904,-2.35365 1.188979,-5.49421 -0.01195,-3.78109 -0.05604,-3.90214 -2.007124,-5.51039 -1.097197,-0.9044 -2.281553,-1.64437 -2.631901,-1.64437 -0.691482,0 -1.652464,-8.25256 -1.070612,-9.19402 0.182932,-0.29599 1.055712,-0.69699 1.939511,-0.8911 2.161964,-0.47485 4.597607,-3.37295 5.749606,-6.84129 0.877436,-2.64171 0.881881,-2.9809 0.06161,-4.70103 -0.710892,-1.49076 -0.77634,-2.33457 -0.334125,-4.30781 0.431884,-1.92716 0.377335,-2.7877 -0.254117,-4.00879 -1.179026,-2.27999 -3.556877,-4.95765 -4.402551,-4.95765 -0.538293,0 -0.656538,-0.5478 -0.441421,-2.04502 0.716338,-4.98573 1.349706,-6.32674 4.237366,-8.97161 1.803425,-1.6518 3.09531,-3.37974 3.487926,-4.6652 0.465667,-1.52465 1.366869,-2.55523 3.558692,-4.06957 l 2.935109,-2.02788 -0.502224,-2.88017 c -0.276223,-1.58409 -1.114247,-4.15456 -1.862274,-5.71215 l -1.36005,-2.83198 1.37308,-2.70965 c 3.30459,-6.52129 37.00949,-39.888887 40.292115,-39.888887 0.462148,0 -0.511969,1.507441 -4.052614,6.271398 -2.278282,3.065439 -7.756569,14.706489 -10.263776,21.809949 -0.910537,2.57974 -2.176328,7.31694 -2.81287,10.52711 -0.636541,3.21017 -1.466592,6.45018 -1.844559,7.20002 -0.377966,0.74984 -1.10583,3.69467 -1.617476,6.54406 -0.511645,2.8494 -1.526897,7.7262 -2.256117,10.83733 -0.914086,3.89984 -1.784476,11.01316 -2.802578,22.90424 -1.36428,15.9343 -1.464902,19.03321 -1.321455,40.6972 0.407807,61.5889 0.516862,55.13561 -1.008625,59.68525 -0.748845,2.23336 -1.444312,3.63085 -1.545481,3.10552 -0.262951,-1.3654 -1.482265,-0.73879 -1.32314,0.67996 0.07291,0.65002 -0.597016,2.47458 -1.488715,4.05459 -1.367947,2.42387 -2.02773,3.01842 -4.222598,3.80511 -3.203055,1.14806 -3.045592,1.15318 -4.213302,-0.13712 l 0,0 z"
+         id="path4659"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#6c5353;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 107.14339,346.48564 c -1.61512,-4.07652 -1.86389,-4.53446 -2.62123,-4.82508 -0.42342,-0.16248 -1.72393,0.19132 -2.89003,0.78622 -1.60025,0.81638 -3.463895,1.12371 -7.599599,1.25321 l -5.479415,0.17157 -2.678381,-2.25109 c -4.758175,-3.99908 -6.588268,-6.42365 -3.146396,-4.16845 1.704326,1.11672 9.833578,1.68796 11.480201,0.80672 0.661128,-0.35383 1.287781,-0.38688 1.59075,-0.0839 0.30297,0.30296 1.356317,0.19492 2.673904,-0.27426 1.195705,-0.42579 2.664816,-0.79032 3.264686,-0.81007 1.82794,-0.0602 5.70431,-2.07355 8.50189,-4.41581 1.4586,-1.22121 2.89407,-2.07077 3.18993,-1.88792 0.75299,0.46537 1.66232,3.98591 1.66594,6.44983 0.002,1.13671 -0.51735,3.09993 -1.15339,4.36271 -1.36399,2.70805 -4.6859,6.93135 -5.45197,6.93135 -0.29516,0 -0.90126,-0.92026 -1.34689,-2.04502 z"
+         id="path4661"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 48.479614,340.19124 c -5.024068,-3.83198 -6.135012,-7.00907 -6.163228,-17.62567 l -0.02045,-7.69624 3.202706,-6.44124 c 4.626117,-9.30399 8.339081,-12.9361 15.611488,-15.27155 1.649651,-0.52977 3.556485,-1.32513 4.23741,-1.76746 0.680925,-0.44234 2.722156,-3.77895 4.536069,-7.4147 1.813912,-3.63575 3.588116,-6.87996 3.942674,-7.20935 1.253738,-1.16474 13.813756,-6.15206 19.731516,-7.83497 8.104161,-2.30469 13.959941,-3.11852 25.854171,-3.59319 l 10.03934,-0.40064 -0.33727,4.30516 c -0.18549,2.36784 -1.23424,9.58132 -2.33055,16.02995 -1.09631,6.44863 -1.95884,12.94439 -1.91673,14.43502 0.0492,1.74097 0.74032,4.24555 1.93258,7.00322 l 1.85604,4.29298 -5.55134,5.26019 c -3.05323,2.89311 -8.25076,8.02266 -11.55006,11.399 -3.41738,3.4972 -6.70273,6.37049 -7.63474,6.67719 -2.72692,0.89736 -11.784669,2.18974 -15.363332,2.19207 -3.282764,0.002 -3.414549,-0.0547 -5.337212,-2.30087 -1.084236,-1.26669 -2.105466,-2.92316 -2.269399,-3.68104 -0.625286,-2.89078 -0.715825,-3.01151 -1.597333,-2.13001 -0.709712,0.70971 -0.709707,1.12143 4e-5,3.47975 0.442746,1.47113 0.752642,2.71638 0.688657,2.76721 -1.604308,1.27459 -12.12728,4.59611 -14.544243,4.5908 -4.175249,-0.009 -7.327905,-2.03896 -7.94456,-5.11503 -0.613541,-3.06054 -0.867638,-3.60735 -1.676312,-3.60735 -1.385976,0 -1.374536,1.28788 0.04241,4.77501 0.756141,1.86087 1.374801,3.61367 1.374801,3.8951 0,0.82984 -3.555134,2.78201 -5.06636,2.78201 -0.766106,0 -2.452157,-0.80791 -3.74678,-1.79535 z m 7.416657,-25.06259 c 6.348534,-8.17299 8.496919,-11.86112 6.909251,-11.86112 -0.695709,0 -5.210764,3.81986 -6.579751,5.56665 -1.293046,1.6499 -3.381218,7.25421 -2.88705,7.74838 0.622886,0.62289 1.198559,0.29563 2.55755,-1.45391 l 0,0 z m 26.86562,-1.29904 c 2.178686,-3.19168 6.504868,-7.4094 8.983901,-8.75865 2.654995,-1.44503 3.006357,-2.00082 2.134855,-3.37693 -0.767892,-1.2125 -2.91535,-0.32203 -6.081354,2.52172 -4.408602,3.95986 -8.602901,11.04923 -6.537084,11.04923 0.285934,0 0.960791,-0.64591 1.499682,-1.43537 z"
+         id="path4663"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 140.16749,350.55239 c -2.98606,-0.84807 -4.71348,-1.99935 -6.05682,-4.03672 -1.75771,-2.66582 -1.39635,-3.21411 2.5492,-3.86791 4.3243,-0.71656 7.54701,-2.20606 7.80697,-3.6083 0.18069,-0.97467 -0.037,-1.00978 -3.5447,-0.57162 -9.61747,1.20136 -13.1016,0.62352 -19.48143,-3.23102 -2.64561,-1.59841 -4.66579,-4.65567 -4.69403,-7.10377 -0.016,-1.38923 11.86371,-13.41341 13.25228,-13.41341 0.57995,0 2.31134,0.71426 3.84753,1.58724 3.36339,1.91132 8.34738,3.59018 12.25261,4.12728 2.69294,0.37038 3.16087,0.68629 7.61168,5.13889 3.67477,3.67624 5.29445,4.90548 7.19486,5.46046 6.5633,1.91669 26.55382,2.23314 38.95683,0.61668 9.1979,-1.19873 8.27579,-1.34557 18.45827,2.93945 5.15716,2.17024 7.20909,2.34351 7.20909,0.60873 0,-1.10374 -2.74093,-2.78074 -8.18009,-5.00487 l -2.72669,-1.11498 5.72606,-1.73634 c 3.14933,-0.95499 10.266,-3.31076 15.81483,-5.23506 5.54882,-1.92429 11.52308,-3.86566 13.27613,-4.31414 1.75305,-0.44848 4.11312,-1.42806 5.24461,-2.17684 1.13148,-0.74879 5.34143,-3.00451 9.35543,-5.01273 15.52023,-7.7648 35.10455,-18.96582 40.79738,-23.33356 1.62812,-1.24915 4.94038,-4.08702 7.36059,-6.30639 6.04374,-5.5422 7.27737,-6.25193 14.76479,-8.49455 3.59924,-1.07804 6.94401,-2.08131 7.43283,-2.2295 0.64322,-0.19499 1.1415,0.36225 1.80361,2.01703 2.35303,5.8808 11.90055,17.92295 14.21007,17.92295 3.42792,0 3.41205,-6.41659 -0.042,-16.98519 -1.37451,-4.20567 -2.41747,-7.71968 -2.31769,-7.8089 0.0998,-0.0892 1.77653,-0.95459 3.72612,-1.92301 4.73023,-2.34966 7.08941,-4.18738 7.08941,-5.5224 0,-0.88727 -0.237,-1.02769 -1.22702,-0.72699 -1.55345,0.47184 -7.0624,2.82516 -12.61092,5.38716 -4.13416,1.90892 -4.27933,1.93649 -3.88839,0.73866 1.15896,-3.55103 3.44311,-13.01911 3.68035,-15.25548 0.19482,-1.83655 0.0649,-2.63835 -0.46024,-2.83986 -1.75833,-0.67473 -3.288,2.71887 -6.28271,13.93824 l -1.84264,6.90329 -6.45867,1.99842 c -3.55227,1.09914 -6.57981,1.87728 -6.72788,1.72921 -0.14807,-0.14806 1.69577,-3.05742 4.0974,-6.46525 5.72985,-8.13042 8.48881,-12.85632 14.4192,-24.69911 6.01945,-12.02062 11.2086,-24.03884 14.12924,-32.72366 2.00224,-5.95386 2.21628,-7.13428 2.37329,-13.08814 0.0949,-3.59923 0.55887,-8.50728 1.03102,-10.90678 0.47215,-2.39949 0.8585,-6.45555 0.85855,-9.01347 8e-5,-4.2037 -0.18561,-5.03827 -1.93174,-8.68182 -2.45207,-5.11663 -2.74181,-7.38708 -1.66406,-13.04027 1.62719,-8.53523 0.85947,-17.91116 -2.35155,-28.71878 -0.89316,-3.00619 -2.73849,-9.81399 -4.10074,-15.12845 -2.77307,-10.818445 -4.37055,-15.026449 -7.38651,-19.457334 -2.61393,-3.840195 -7.79379,-8.756268 -9.22614,-8.756268 -2.30603,0 -9.82939,2.805982 -12.91902,4.818397 -5.67616,3.697137 -9.34904,7.896716 -20.95279,23.957475 -1.34972,1.86814 -2.82774,3.51873 -3.2845,3.66798 -0.45676,0.14924 -2.54268,-0.0946 -4.63538,-0.54188 -10.01183,-2.13984 -46.16632,-3.56417 -58.06614,-2.28756 l -4.09004,0.43879 10.8852,-6.58176 c 10.77892,-6.517502 13.92772,-8.826396 13.92772,-10.212664 0,-1.749333 -2.44949,-0.634628 -19.88808,9.050634 -5.9895,3.32652 -11.15122,6.04821 -11.47051,6.04821 -0.31929,0 -1.92192,0.86423 -3.56141,1.92049 -3.60143,2.32027 -6.03999,3.25055 -16.4374,6.27066 l -8.00296,2.3246 -9.44789,-5.92515 c -11.48669,-7.20377 -28.84995,-16.06769 -38.07819,-19.438872 -3.7492,-1.369624 -10.86588,-3.406236 -15.81483,-4.525806 -4.94895,-1.11957 -10.65769,-2.62981 -12.68608,-3.356093 -2.0284,-0.726282 -3.94025,-1.164609 -4.24856,-0.974062 -0.68117,0.420985 -0.66894,0.46417 3.36586,11.882947 1.78294,5.045846 5.6648,17.807266 8.62636,28.358716 2.96156,10.55144 6.41367,22.34739 7.67135,26.2132 5.03689,15.48215 4.99179,22.35233 -0.21894,33.3523 -2.51426,5.30763 -14.31984,26.24049 -15.05531,26.69503 -0.24371,0.15062 -3.17201,-1.67957 -6.50733,-4.06711 -5.45371,-3.90396 -7.66896,-4.84569 -7.66896,-3.26016 0,0.43056 2.16722,2.57465 5.45339,5.39518 l 1.36335,1.17017 -1.36335,-0.37058 c -0.74984,-0.20382 -1.98079,-0.68421 -2.73544,-1.06753 -2.14691,-1.09051 -5.17197,-1.23998 -5.17197,-0.25555 0,0.63214 10.18386,6.46923 13.54433,7.76321 0.25091,0.0966 1.30009,3.97232 2.33151,8.61269 1.03142,4.64036 3.63025,14.8764 5.77518,22.74675 2.14492,7.87034 3.78114,14.42844 3.63604,14.57355 -0.14511,0.14511 -3.3653,0.42964 -7.15599,0.63229 -6.67751,0.35697 -6.8834,0.335 -6.6113,-0.70552 0.32007,-1.22398 -1.06322,-2.65278 -2.00487,-2.07081 -0.3419,0.21131 -0.52404,1.04922 -0.40474,1.86203 0.21539,1.46757 0.18454,1.48241 -4.44663,2.13782 -7.985561,1.13011 -20.713134,4.87857 -29.553944,8.70405 l -2.531515,1.09541 -0.338016,-11.81652 c -0.185909,-6.49909 -0.484857,-16.62472 -0.66433,-22.50139 l -0.326313,-10.68488 5.64987,-0.32259 c 6.442676,-0.36785 13.483486,-1.67393 16.28398,-3.0207 3.706436,-1.78244 2.503151,-4.27509 -2.926397,-6.06215 -3.914007,-1.28823 -12.588377,-2.75783 -16.296802,-2.76097 l -2.59036,-0.002 0,-10.83067 c 0,-5.95686 0.156057,-11.96922 0.346794,-13.3608 l 0.346794,-2.53014 9.469307,0 9.469308,0 0,-2.18136 c 0,-3.76327 -2.268305,-4.98907 -12.738948,-6.88414 -3.431445,-0.62106 -5.484611,-1.25392 -5.674647,-1.74914 -0.560521,-1.4607 3.248103,-25.16459 5.065167,-31.52429 0.929154,-3.25203 0.137853,-2.96621 11.971957,-4.32436 8.255395,-0.94744 9.556555,-1.35171 9.556555,-2.96917 0,-1.42557 -1.546971,-2.35404 -9.991349,-5.99671 l -7.186828,-3.10019 0.180099,-1.78595 c 0.286159,-2.83767 4.130149,-13.40375 7.148592,-19.64952 3.938872,-8.15032 7.787369,-12.955562 17.768846,-22.186198 17.53467,-16.215665 29.97795,-26.348969 32.35542,-26.348969 2.22322,0 10.28084,-2.884614 15.07713,-5.397588 6.50057,-3.405925 15.80314,-9.238924 17.62216,-11.049646 0.80138,-0.797727 1.45877,-1.902038 1.46088,-2.454025 0.003,-0.717427 1.55888,-1.811057 5.45721,-3.835207 7.6021,-3.94728 21.2898,-9.983872 22.63798,-9.983872 0.617,0 3.99684,1.138103 7.51077,2.529119 8.07116,3.195032 9.00291,3.455987 10.11585,2.833154 1.87481,-1.049195 0.77152,-4.047155 -3.33259,-9.055686 -1.05145,-1.283157 -1.7983,-2.446438 -1.65967,-2.585069 0.55361,-0.553615 25.77199,-10.142586 33.44037,-12.7152811 16.24335,-5.4495447 18.12968,-5.803627 30.81165,-5.7836306 12.06603,0.019025 16.51864,0.5443581 30.22532,3.5660766 10.39801,2.2923031 21.75844,6.0124101 28.99098,9.4934441 5.38909,2.593772 6.68726,3.52145 11.95193,8.540863 9.46285,9.022031 12.68277,13.895969 20.83302,31.534637 2.84112,6.148696 5.61007,11.915656 6.15324,12.815465 3.02124,5.005012 7.8019,15.596101 9.72993,21.555717 10.95811,33.872126 12.69229,47.503736 12.83279,100.872886 0.0414,15.74666 -0.11335,29.30515 -0.34402,30.12997 l -0.41939,1.49969 -8.08832,0 c -8.45986,0 -10.30858,0.34292 -13.875,2.57369 -4.5192,2.82674 -1.05378,5.03574 11.89532,7.58256 4.43922,0.87311 7.45674,1.74893 8.07204,2.34289 2.98962,2.88589 2.60627,24.60487 -0.72358,40.99492 -3.39917,16.73119 -7.86104,26.09613 -14.9832,31.44795 -7.27323,5.46533 -14.62275,8.61896 -23.88543,10.2491 -7.34537,1.2927 -7.47681,1.26004 -9.47167,-2.35363 -2.05761,-3.72732 -5.42149,-7.7646 -6.46951,-7.7646 -0.72009,0 -1.88245,3.0878 -1.88878,5.01754 -0.002,0.51013 -0.26743,2.1603 -0.59057,3.66706 -0.53933,2.51478 -0.75185,2.78564 -2.59036,3.30139 -2.18908,0.61408 -18.00883,1.91076 -18.41055,1.50904 -0.13665,-0.13664 -1.23298,-4.51729 -2.4363,-9.73477 -1.20332,-5.21748 -2.43695,-10.26218 -2.74141,-11.21045 -0.63934,-1.99131 -1.91205,-2.68601 -3.10581,-1.69527 -0.71415,0.59269 -0.78148,2.14392 -0.47969,11.05252 0.19308,5.69968 0.49461,10.8795 0.67005,11.5107 0.28691,1.03224 -0.0173,1.21378 -3.0256,1.80564 -1.83952,0.3619 -6.63019,1.09272 -10.64594,1.62404 l -7.30135,0.96604 -1.98791,-8.49774 c -1.09335,-4.67375 -2.16587,-9.23394 -2.38337,-10.13375 -0.3048,-1.26094 -0.69954,-1.63602 -1.72178,-1.63602 -1.9229,0 -2.73505,2.9534 -3.09353,11.24977 -0.31701,7.33682 -0.0304,9.74578 1.15936,9.74578 0.90017,0 1.40309,-2.30024 1.47548,-6.74857 0.0536,-3.29155 0.86096,-7.37869 0.98302,-4.97622 0.0305,0.59988 0.63523,3.48702 1.34391,6.41587 l 1.2885,5.32518 -1.15322,0.22079 c -0.63427,0.12144 -7.10207,1.37193 -14.3729,2.77888 -7.48932,1.44924 -13.80702,2.41069 -14.57465,2.21803 -1.07324,-0.26937 -1.52196,-0.93386 -2.15824,-3.19602 -0.4418,-1.57077 -1.20158,-4.26782 -1.6884,-5.99345 -0.96429,-3.41808 -2.39253,-4.78122 -3.54924,-3.38747 -0.37165,0.44781 -1.03916,3.93964 -1.48337,7.75963 -0.44422,3.81999 -0.98015,7.13389 -1.19098,7.36424 -0.21082,0.23035 -9.93733,1.6284 -21.61446,3.10678 -11.67713,1.47838 -24.29868,3.28855 -28.04788,4.02261 -3.74921,0.73405 -6.98413,1.23369 -7.18871,1.1103 -0.20459,-0.12339 -0.67374,-1.57278 -1.04257,-3.22086 -1.20808,-5.39827 -3.21463,-5.31051 -4.83087,0.21131 -0.58306,1.99199 -1.13666,4.11261 -1.23022,4.71249 -0.23918,1.53352 -12.78497,5.78114 -18.1553,6.14684 l -3.81737,0.25994 1.55005,-1.64979 c 1.63078,-1.73571 1.76882,-3.53734 0.29281,-3.82159 -0.47922,-0.0923 -2.07151,0.57473 -3.53844,1.48227 -5.82894,3.60617 -14.49598,5.21813 -19.8621,3.6941 l 0,0 z m 162.19165,-38.50755 c 1.98985,-3.41939 0.89593,-14.73026 -1.70595,-17.63907 -2.0761,-2.32102 -5.25655,-0.17374 -5.85602,3.9537 -0.41037,2.82538 0.88552,9.91569 2.47372,13.53472 0.89828,2.04692 1.22829,2.3325 2.52066,2.18136 1.01665,-0.1189 1.82887,-0.76128 2.56759,-2.03071 z M 103.64657,247.60607 c 5.83312,-1.16271 8.39806,-2.24694 8.05808,-3.40624 -0.3325,-1.13384 -7.09865,-4.14799 -11.22944,-5.00245 -5.506672,-1.13905 -11.617557,-1.04296 -16.723722,0.26298 -5.245744,1.34163 -5.897552,1.82746 -5.424457,4.04311 0.489154,2.29086 1.190985,3.04593 3.980762,4.28272 4.778011,2.11825 10.03072,2.07391 21.338777,-0.18012 l 0,0 z m 23.07071,-60.53274 c 4.71445,-1.30916 2.77732,-3.63738 -5.82465,-7.00058 -8.18055,-3.19844 -11.87872,-4.04212 -16.43619,-3.74963 -4.28356,0.2749 -6.627022,1.4211 -7.147794,3.49602 -0.767292,3.05713 3.043824,5.7138 10.000764,6.97138 5.09133,0.92034 16.51271,1.08676 19.40787,0.28281 l 0,0 z m -13.39095,-26.6036 c 0.67486,-0.36561 1.22702,-1.04844 1.22702,-1.51742 0,-2.52497 -9.12039,-7.27252 -14.827444,-7.71831 -3.430334,-0.26795 -9.170233,1.20077 -12.33812,3.15706 -2.473308,1.52736 -2.281568,3.68921 0.445579,5.02387 3.745216,1.83289 22.615445,2.61366 25.492965,1.0548 z M 282.51775,99.34226 c 1.06575,-0.749879 1.39982,-1.517548 1.53047,-3.516907 0.21275,-3.256089 -1.35044,-5.938486 -4.35356,-7.470561 -4.57207,-2.332496 -6.66254,-0.497922 -6.2701,5.502569 0.27496,4.20429 1.17956,6.404229 2.76017,6.712609 1.90143,0.37097 4.88216,-0.20686 6.33302,-1.22771 l 0,0 z m -70.98388,-1.284759 c 1.67163,-0.809692 2.80486,-3.064957 2.26249,-4.502624 -0.87583,-2.3216 -6.17174,-6.17418 -14.63863,-10.649063 l -4.55854,-2.409258 -1.57266,1.883453 c -2.3844,2.855619 -2.54817,4.90647 -0.68878,8.625218 1.48947,2.978914 1.75403,3.206609 5.66656,4.877048 7.32449,3.127165 10.5077,3.638949 13.52956,2.175226 z m 92.12936,-8.565143 c 3.039,-1.852876 3.69094,-5.549778 1.70291,-9.656508 -1.25844,-2.599587 -2.82855,-3.645383 -6.35189,-4.230794 -2.71504,-0.45111 -2.57194,-1.071302 -1.75082,7.587705 0.31127,3.282531 0.83192,6.288712 1.15699,6.680402 0.86119,1.037671 3.19423,0.868212 5.24281,-0.380805 z M 272.23892,77.87455 c 4.60358,-3.091751 10.88375,-7.031012 13.95593,-8.753912 5.96625,-3.345917 7.42586,-4.821691 5.6885,-5.751505 -1.56103,-0.835438 -7.01928,0.672239 -12.62355,3.486875 -2.69519,1.353603 -5.30598,2.461099 -5.80177,2.461099 -0.81994,0 -0.86586,-0.906528 -0.50794,-10.026739 0.30371,-7.739209 0.23918,-10.122107 -0.28288,-10.444755 -0.99747,-0.616472 -2.00769,1.088229 -2.38061,4.01717 -0.17845,1.401499 -0.57293,6.434124 -0.87662,11.183612 l -0.55218,8.635437 -1.75911,1.420815 c -5.0171,4.05224 -7.77161,7.834383 -6.57628,9.029712 1.21041,1.210418 3.84744,0.02705 11.71651,-5.257809 l 0,0 z m -44.81443,0.449315 c 0.30765,-0.190138 0.55936,-1.357032 0.55936,-2.593097 0,-1.962037 -0.31213,-2.538073 -2.45829,-4.53667 -3.35693,-3.126106 -10.95799,-6.933772 -13.84157,-6.933772 -1.22286,0 -2.59559,0.308918 -3.05053,0.686478 -1.22699,1.018322 -1.06887,5.006593 0.26577,6.703318 1.25743,1.598563 7.38397,5.593563 10.29332,6.712086 1.90527,0.732494 7.02327,0.708652 8.23194,-0.03834 l 0,-6e-6 z m -53.91995,-0.287437 c 2.55985,-0.711078 3.76367,-2.108062 4.6022,-5.340684 0.94746,-3.652555 0.54268,-5.015308 -2.50554,-8.435342 -3.47893,-3.903274 -5.1066,-4.566876 -9.29226,-3.788475 -2.63791,0.490576 -3.7666,1.075883 -6.21438,3.222631 -1.64505,1.442749 -2.99243,2.868587 -2.99417,3.168523 -0.002,0.299937 0.87846,1.145834 1.95599,1.879773 2.35827,1.60629 4.30451,4.116017 4.79318,6.180894 0.70978,2.999277 5.03888,4.394941 9.65498,3.11268 l 0,0 z m -18.8142,-15.897045 c 0.52026,-0.841797 -1.74638,-2.638378 -3.32869,-2.638378 -1.45338,0 -2.19958,1.443927 -1.30391,2.523147 0.7563,0.911284 4.08937,0.994192 4.6326,0.115231 l 0,0 z m 76.36995,-1.824579 c 0.54842,-1.429148 -4.10154,-7.277276 -6.96275,-8.756862 -2.86675,-1.482456 -5.9579,1.532212 -4.17324,4.069995 2.82357,4.015135 10.20209,7.120573 11.13599,4.686867 z m 114.97824,-1.651706 c 8.39206,-0.456629 15.48606,-1.058007 15.76445,-1.336397 0.31133,-0.311329 0.23746,-0.829936 -0.1919,-1.347286 -0.56704,-0.68324 -2.10426,-0.841121 -8.18963,-0.841121 -6.35117,0 -22.42881,1.200259 -25.09523,1.873457 -0.4499,0.113589 -1.46579,0.349917 -2.25754,0.525172 -0.79174,0.175261 -1.5816,0.688873 -1.75523,1.141368 -0.40982,1.067975 1.84716,1.066399 21.72508,-0.01522 l 0,2.2e-5 z M 206.3244,57.133264 c 1.44106,-2.120338 -2.02524,-10.275041 -5.05365,-11.889044 -2.11489,-1.127138 -7.55721,-1.388985 -9.31512,-0.44818 -1.26378,0.676355 -1.38371,2.070197 -0.21665,2.518039 0.461,0.176901 1.22577,1.089459 1.69949,2.027905 1.61966,3.208578 4.98918,7.243816 6.81621,8.16289 1.9568,0.984353 5.28671,0.780484 6.06972,-0.37161 z m 31.5992,-8.402703 c 1.19716,-1.363332 1.64785,-3.186075 1.24326,-5.028184 -0.94938,-4.322514 -9.03534,-8.015498 -12.99121,-5.933291 -2.64037,1.389784 -2.59608,2.310803 0.28521,5.929541 4.04366,5.078632 9.36895,7.416335 11.46274,5.031934 z"
+         id="path4665"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 166.1033,328.34877 c -1.4912,-0.26684 -3.71131,-0.86709 -4.93357,-1.33387 -2.38293,-0.91005 -7.1362,-5.3221 -6.62493,-6.14935 0.16992,-0.27494 1.31791,-0.83289 2.55108,-1.23987 2.24993,-0.74254 3.61595,-2.26249 2.9711,-3.30589 -0.21858,-0.35366 -1.97885,-0.43414 -4.79694,-0.21929 l -4.45165,0.33939 -4.09167,-3.45049 c -4.48018,-3.77811 -10.09544,-6.95708 -14.65633,-8.29742 -4.11903,-1.21048 -4.42891,-1.58352 -4.42891,-5.33159 0,-3.72476 1.39037,-11.00398 2.48276,-12.99837 1.7114,-3.12454 5.77914,-13.2499 5.87087,-14.61367 0.14537,-2.16139 -1.72046,-1.94619 -3.28752,0.37916 l -1.24874,1.85301 -0.0168,-4.85237 c -0.0258,-7.42897 -0.77926,-11.62877 -4.00139,-22.30321 -3.1637,-10.4809 -5.70573,-21.06331 -6.20231,-25.82005 l -0.30439,-2.91582 2.2818,1.1641 c 3.71578,1.89564 4.05542,0.71363 1.00931,-3.51255 -1.18448,-1.64335 -1.49534,-2.5667 -1.26036,-3.74374 0.17155,-0.85931 2.94824,-6.25816 6.17042,-11.99745 10.94499,-19.495 11.52151,-20.99611 11.9763,-31.18361 l 0.31763,-7.11505 3.92503,-2.28844 c 4.25361,-2.48003 10.71572,-7.68592 12.44563,-10.02623 l 1.07859,-1.45918 -4.08825,-6.7209 c -2.24853,-3.6965 -5.38421,-9.05223 -6.96817,-11.90163 -1.58396,-2.84939 -5.10818,-8.49365 -7.83161,-12.54279 -2.72342,-4.04914 -7.8335,-11.6457 -11.35574,-16.881245 -3.52223,-5.235542 -6.31168,-9.61155 -6.19877,-9.724461 0.39388,-0.393874 13.14464,2.228364 17.15136,3.527233 13.60793,4.411322 31.12822,13.354543 49.83301,25.437223 2.6349,1.70205 5.38928,3.09464 6.12087,3.09464 0.73159,0 3.11571,-0.70588 5.29806,-1.56862 8.40417,-3.32237 23.19943,-7.15926 31.50752,-8.17091 15.56993,-1.8959 41.39376,-1.02496 56.44259,1.90359 2.39949,0.46695 4.53961,1.01511 4.75582,1.21814 0.2162,0.20302 -1.5916,3.92236 -4.01734,8.26518 -2.42574,4.34283 -5.95454,11.12178 -7.84176,15.06433 -5.84049,12.20119 -13.58595,25.013 -22.85228,37.8001 -6.54901,9.03733 -6.95129,9.69849 -6.75219,11.09745 0.29825,2.09565 2.17517,1.69638 4.02926,-0.85714 14.14304,-19.47821 25.27418,-37.54627 29.21512,-47.42198 0.98659,-2.47231 3.48884,-7.32164 5.56058,-10.77629 7.15869,-11.93728 19.29991,-29.744902 22.98013,-33.705147 3.73864,-4.023096 5.35913,-4.968613 2.82988,-1.651154 -2.99125,3.923413 -23.09339,44.110411 -29.54708,59.068761 -3.11537,7.22078 -10.10003,21.28959 -14.50992,29.22652 -1.76536,3.17731 -3.20976,6.27607 -3.20976,6.88611 0,0.93961 0.72945,1.29219 4.77172,2.30637 7.2824,1.82712 9.65705,2.21011 16.98477,2.73935 11.754,0.84891 25.14655,-0.82284 35.33733,-4.41106 2.64119,-0.92998 6.27457,-2.11855 8.07419,-2.64127 l 3.27203,-0.95041 0.64091,-10.30641 c 0.35249,-5.66852 0.90001,-12.05913 1.21671,-14.20136 1.03089,-6.97327 1.83078,-24.82235 1.47509,-32.91542 -0.72625,-16.5244 -3.05017,-31.597941 -5.77819,-37.478908 -1.63671,-3.528351 -3.99437,-5.596759 -6.38409,-5.600836 -2.09755,-0.0036 -1.84376,-0.908325 0.44734,-1.594755 2.05692,-0.616269 2.36318,-0.5621 4.26212,0.753864 5.74059,3.978239 9.53555,11.230629 12.9124,24.676375 1.32272,5.26674 3.40463,12.97535 4.62647,17.13026 l 2.22154,7.55437 -0.22079,8.32293 c -0.21924,8.2642 -0.23924,8.37679 -2.83497,15.95767 -2.05059,5.98879 -2.67289,8.63407 -2.88651,12.27013 l -0.27233,4.63538 3.29728,8.45275 c 1.8135,4.64902 3.45881,9.35383 3.65626,10.45515 0.49544,2.7635 -0.12499,5.18887 -1.41356,5.52584 -1.13177,0.29596 -1.42309,1.97884 -0.50201,2.89992 0.84476,0.84476 -1.0951,6.54698 -6.65607,19.56549 -6.07868,14.23051 -12.86376,27.15877 -14.02062,26.71484 -0.44427,-0.17048 -3.52262,-0.89014 -6.8408,-1.59925 -3.31817,-0.7091 -7.21905,-1.8035 -8.66861,-2.43199 -1.44956,-0.62849 -3.22873,-1.14271 -3.95371,-1.14271 -3.44602,0 0.18085,3.94044 8.03517,8.72987 7.87691,4.8032 7.56739,4.37228 5.37245,7.47976 -5.00458,7.08519 -16.96161,19.73456 -23.99652,25.38595 -5.86234,4.70943 -24.09816,15.16525 -40.88055,23.43955 l -11.15957,5.50207 -18.5614,-2.29144 c -10.20877,-1.26029 -25.06457,-2.91302 -33.01288,-3.67274 -12.53485,-1.19811 -14.83573,-1.5619 -17.34865,-2.74297 l -2.89716,-1.36167 -2.38947,1.15672 c -4.74578,2.29739 -5.92222,3.96573 -4.82068,6.8363 0.71159,1.85439 6.86189,5.0695 19.82984,10.3662 12.49491,5.10347 13.13259,5.4321 11.38552,5.86751 -2.60437,0.64906 -32.36372,0.96081 -35.64631,0.37342 l 0,0 z m 6.54579,-36.87229 c 0.62868,-0.93626 2.31969,-5.17017 3.75778,-9.40872 1.4381,-4.23855 3.12013,-8.34896 3.73784,-9.13426 1.61418,-2.05208 3.66941,-2.74654 14.19888,-4.79775 10.78241,-2.1005 13.46272,-3.02248 13.46272,-4.63096 0,-1.4138 -1.55227,-2.22837 -4.24648,-2.22837 -2.33885,0 -28.18084,3.12129 -29.66718,3.58331 -1.10448,0.34332 -1.35861,1.09305 -4.51571,13.3222 -2.69541,10.44081 -3.04062,13.78514 -1.51671,14.69343 1.63952,0.97719 3.57252,0.41253 4.78886,-1.39888 l 0,0 z m 104.41527,-0.75175 c 1.4684,-1.4684 1.37508,-2.61039 -0.44804,-5.48296 -3.03758,-4.78612 -9.72944,-9.78653 -13.09694,-9.78653 -4.28458,0 -3.16816,3.81706 2.82435,9.65647 6.9969,6.81815 8.64999,7.68366 10.72063,5.61302 z m 32.20208,-18.8282 c 0.88492,-0.4576 1.63719,-1.13246 1.67173,-1.49968 0.14843,-1.57804 -0.23457,-2.96663 -1.29629,-4.69981 -1.32982,-2.17084 -5.89846,-4.46091 -14.92548,-7.48154 -6.98304,-2.33668 -8.38362,-2.1232 -8.37768,1.27688 0.008,4.87883 4.8656,8.42117 16.35657,11.92912 4.97003,1.51724 4.60654,1.49097 6.57115,0.47503 l 0,0 z m -168.01816,-8.16608 c 0.83628,-2.09956 2.166,-5.23543 2.95494,-6.96862 0.78895,-1.73319 1.43445,-3.27005 1.43445,-3.41524 0,-0.14521 -1.28837,-0.83964 -2.86303,-1.54319 -1.81083,-0.80908 -4.95134,-3.21767 -8.54528,-6.55375 -5.6757,-5.26848 -7.14836,-5.9128 -6.36308,-2.78399 0.1997,0.79565 3.05294,4.22879 6.34054,7.6292 3.2876,3.40041 5.97746,6.31934 5.97746,6.48651 0,0.16718 -0.73621,2.15725 -1.63602,4.42239 -0.89981,2.26513 -1.63602,4.74185 -1.63602,5.5038 0,1.1704 0.21846,1.3586 1.40778,1.21282 1.18433,-0.14517 1.6491,-0.77844 2.92826,-3.98993 z m 77.54073,-11.74293 c -0.98054,-0.81687 -1.07804,-1.07254 -0.409,-1.07254 0.48313,0 0.87842,-0.34716 0.87842,-0.77148 0,-1.45179 -11.64794,-1.78896 -18.13252,-0.52488 -0.82483,0.16079 -1.49969,0.52432 -1.49969,0.80785 0,1.29452 7.2144,2.49274 15.54217,2.58136 l 4.90805,0.0522 -1.28743,-1.07253 0,-2e-5 z m -25.62105,-33.70617 c 1.30252,-1.45199 4.31768,-5.93058 6.70036,-9.95243 2.38268,-4.02185 6.05207,-9.88918 8.15421,-13.03851 8.22116,-12.31658 16.23952,-27.46604 16.34921,-30.88933 0.0644,-2.00896 -0.0159,-2.11164 -1.78289,-2.28038 -3.62842,-0.34651 -8.89733,6.71225 -18.45671,24.72643 -10.51238,19.81007 -16.26643,31.93863 -15.76826,33.23683 0.5923,1.54349 2.41642,0.85903 4.80408,-1.80261 l 0,0 z m -45.94695,-3.67077 c 3.29952,-2.77636 12.00296,-14.63418 28.00376,-38.1531 3.476,-5.10922 6.72559,-10.3032 7.22133,-11.54216 1.22324,-3.05718 0.93136,-5.2902 -0.72209,-5.52443 -2.92998,-0.41505 -16.38989,15.78322 -24.87746,29.93867 -5.1787,8.63698 -12.8449,23.52441 -12.8449,24.94426 0,2.12455 0.97365,2.2264 3.21936,0.33676 z m 34.67364,-9.91307 c 2.63217,-3.35255 13.0065,-23.30062 14.98586,-28.81527 2.01053,-5.60149 0.89879,-8.8627 -2.47072,-7.24774 -1.81476,0.86979 -6.97151,7.79089 -9.70272,13.02243 -2.61124,5.00176 -7.98508,21.78485 -7.98508,24.9383 0,0.955 0.30981,1.23798 1.35537,1.23798 1.00102,0 1.99902,-0.81981 3.81729,-3.1357 z m 69.58669,-50.58944 c 4.1119,-2.09204 13.99887,-11.01431 16.99322,-15.33516 1.79745,-2.59372 2.47598,-5.36935 1.41237,-5.7775 -1.35452,-0.51978 -7.70113,0.75892 -10.61541,2.13877 -3.27451,1.5504 -7.03336,4.70682 -12.28114,10.31284 -6.97875,7.45515 -7.10142,10.34908 -0.4171,9.8399 1.67601,-0.12767 3.88463,-0.65816 4.90806,-1.17885 l 0,0 z m -36.61828,-8.74445 c 4.73071,-2.20209 14.70289,-11.00656 17.72134,-15.64625 1.07996,-1.66 0.82879,-3.91362 -0.4927,-4.42073 -1.28166,-0.49181 -5.19374,0.92626 -8.61296,3.12207 -4.52355,2.90502 -12.82583,10.00036 -14.65327,12.52308 -1.46168,2.01778 -2.03433,4.6165 -1.20094,5.44989 0.79543,0.79543 4.43014,0.27921 7.23853,-1.02806 l 0,0 z m 18.05163,-1.64083 c 3.0094,-3.07857 5.73034,-4.81323 6.86619,-4.37736 1.94796,0.7475 4.98833,-0.76739 7.94107,-3.95671 6.03867,-6.52248 9.1375,-12.98509 6.67878,-13.92859 -3.09721,-1.18851 -14.77144,8.57809 -22.47778,18.80479 -4.19316,5.56453 -3.48414,8.03663 0.99174,3.45787 l 0,0 z m 43.01876,-19.24197 c 4.71942,-3.16691 7.44875,-8.59701 5.24176,-10.42865 -0.63908,-0.53038 -1.41546,-0.37856 -3.91428,0.76543 -3.95128,1.80896 -11.97257,7.12435 -12.38907,8.20976 -0.48632,1.26732 0.12809,2.30362 1.73391,2.92448 3.75195,1.45064 5.34908,1.19877 9.32768,-1.47102 z"
+         id="path4667"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 57.502697,290.48524 c -0.181514,-0.47301 0.0651,-1.69268 0.548025,-2.71037 1.195091,-2.51847 1.138547,-2.90903 -0.894303,-6.17703 -1.933092,-3.10763 -2.361486,-3.37205 -5.673347,-3.50183 L 49.254793,278.00871 48.038934,274.3 c -1.471703,-4.48911 -1.333656,-7.04159 0.748598,-13.84157 2.495004,-8.14789 1.480309,-13.5436 -3.098439,-16.47615 -1.266366,-0.81107 -2.346981,-1.48848 -2.401367,-1.50535 -0.05439,-0.0169 0.09473,-2.85186 0.33138,-6.29999 0.328387,-4.78487 0.716167,-6.82972 1.637734,-8.63614 0.664108,-1.30176 1.441638,-3.87583 1.727845,-5.72016 0.286207,-1.84432 1.004789,-4.50312 1.596849,-5.90843 0.651683,-1.54684 1.076474,-3.79546 1.076474,-5.69827 0,-3.06327 -0.06871,-3.20765 -2.703294,-5.68114 -2.571658,-2.4144 -2.721144,-2.7122 -3.069853,-6.11581 l -0.366559,-3.57782 2.220252,-1.13269 c 4.001854,-2.04159 7.280874,-8.12772 6.080287,-11.2855 -0.288649,-0.75921 -0.524816,-3.0454 -0.524816,-5.08043 0,-3.19877 -0.209325,-3.98819 -1.545096,-5.82689 -0.849803,-1.16976 -1.954114,-2.46364 -2.454025,-2.87529 -2.068002,-1.70287 -0.710002,-6.53852 3.054387,-10.87626 1.569381,-1.80841 3.344225,-4.09354 3.944098,-5.07807 0.599873,-0.98453 2.19499,-2.63321 3.544704,-3.66375 2.223587,-1.69775 2.43577,-2.05839 2.259619,-3.84056 -0.163382,-1.65298 -1.567417,-6.00778 -3.015389,-9.35262 -0.415409,-0.9596 1.600085,-4.20428 5.406702,-8.70406 6.164513,-7.28705 32.733625,-33.145952 33.386,-32.493576 0.116456,0.116455 -0.636422,1.401437 -1.673061,2.855516 -2.262001,3.17288 -6.82509,12.1914 -9.446166,18.66947 -3.442154,8.50739 -9.479542,33.36073 -11.341549,46.68829 -2.463475,17.63265 -2.673707,22.47656 -3.005882,69.25805 -0.271456,38.23014 -0.446845,45.55971 -1.128779,47.17182 -0.444062,1.04978 -1.13108,1.90869 -1.526706,1.90869 -0.395626,0 -1.158329,1.29679 -1.694895,2.88176 -1.026024,3.0308 -2.845977,5.40593 -4.675191,6.10137 -2.959352,1.1251 -3.552641,1.17415 -3.880099,0.32081 z"
+         id="path4669"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 107.01553,344.81774 c -1.64401,-3.8216 -1.98983,-3.98692 -5.82299,-2.78366 -2.151931,0.67552 -4.912745,1.02988 -8.064866,1.03516 -4.790051,0.008 -4.794107,0.007 -6.98695,-2.03862 l -2.194116,-2.04665 6.44161,-0.0342 c 8.76638,-0.0466 13.242202,-1.192 18.562022,-4.75011 3.08096,-2.06068 4.18783,-2.55433 4.52048,-2.0161 0.87063,1.40871 1.1341,5.4147 0.49616,7.54395 -0.65749,2.1945 -4.1003,7.1966 -5.2001,7.55528 -0.33321,0.10867 -1.12127,-1.00058 -1.75125,-2.465 z"
+         id="path4671"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 206.4529,325.83322 c -1.49969,-0.80695 -8.00285,-3.58366 -14.45149,-6.17047 -10.17199,-4.08039 -11.74924,-4.87071 -11.90943,-5.96747 -0.17293,-1.184 -0.0519,-1.24156 1.90869,-0.90746 11.81555,2.01352 33.29662,3.86083 34.39866,2.95819 0.37162,-0.30438 0.56481,-0.73278 0.42932,-0.95201 -0.13549,-0.21923 -3.67271,-0.56216 -7.86049,-0.76207 -7.08383,-0.33816 -23.74781,-2.27819 -24.71777,-2.87766 -0.23599,-0.14585 -0.42906,-0.63566 -0.42906,-1.08848 0,-0.69504 0.70091,-0.77049 4.49904,-0.48433 18.0727,1.36164 41.35148,3.8594 46.11499,4.94804 1.89321,0.43267 4.46994,0.80392 5.72606,0.825 2.78063,0.0467 4.8926,0.77068 3.6472,1.25032 -6.30487,2.42814 -20.14092,7.13045 -24.81293,8.43291 -8.85723,2.4692 -9.37163,2.50183 -12.54279,0.79549 l 0,0 z"
+         id="path4673"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ffaaaa;fill-opacity:1;stroke:#ac9393;stroke-width:0.54533899;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 140.61762,316.41355 c -1.41678,-0.53908 -3.38,-1.49706 -4.36272,-2.12882 -0.98271,-0.63177 -2.41862,-1.55822 -3.19092,-2.05878 -1.51677,-0.9831 -4.036,-4.46685 -3.56832,-4.93453 1.6404,-1.6404 17.24262,6.88338 17.24262,9.41997 0,1.07993 -2.86633,0.94045 -6.12066,-0.29784 z"
+         id="path4675"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 180.80377,200.733 c 0,-1.38959 0.40279,-3.50923 1.14522,-6.02663 0.47259,-1.60243 0.75342,-2.10936 1.3595,-2.45403 0.64645,-0.36763 0.76413,-0.61093 0.76559,-1.58286 9.5e-4,-0.63165 0.29839,-2.08269 0.66099,-3.22452 1.15298,-3.63076 6.73849,-12.95418 9.31934,-15.556 l 1.32845,-1.33924 0.0907,0.89757 c 0.0499,0.49367 -0.11717,1.53663 -0.37119,2.31769 -0.66234,2.03664 -5.54647,12.74494 -7.86098,17.23495 -2.17538,4.2201 -5.74322,10.37349 -6.16636,10.635 -0.16224,0.10027 -0.27122,-0.26214 -0.27122,-0.90193 z"
+         id="path4679"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 191.16521,216.89573 c 0,-0.0793 1.45355,-2.80937 3.23012,-6.06689 1.77656,-3.25752 4.67745,-8.7449 6.44642,-12.19417 4.83923,-9.4359 9.01572,-17.36497 10.95032,-20.78922 0.95262,-1.68614 1.73204,-3.18515 1.73204,-3.33112 0,-0.14597 0.39878,-0.68786 0.88617,-1.20421 0.4874,-0.51634 1.34777,-1.59407 1.91194,-2.39494 0.56417,-0.80088 1.89083,-2.3764 2.94812,-3.50116 l 1.92235,-2.04503 -0.12564,1.14639 c -0.21367,1.94968 -4.31465,10.09321 -8.87782,17.62916 -1.07684,1.77836 -2.25255,3.81488 -2.6127,4.52559 -0.36014,0.71071 -1.60507,2.56862 -2.7665,4.12869 -3.34236,4.48954 -5.91453,8.54873 -8.994,14.19361 -1.57254,2.88259 -3.39629,6.04643 -4.05277,7.03075 -1.48438,2.22568 -2.59805,3.45702 -2.59805,2.87255 z"
+         id="path4681"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 148.3561,209.91698 c 0,-0.19139 0.96524,-2.13335 2.14497,-4.31547 1.17973,-2.18211 3.10293,-5.80799 4.27377,-8.05752 6.04676,-11.61752 11.25006,-19.34983 18.28795,-27.17661 3.4972,-3.8892 7.27094,-7.49917 7.40838,-7.08687 0.18455,0.55366 -1.56002,3.76985 -3.66014,6.74764 -1.15422,1.63657 -4.02148,5.61367 -6.37168,8.83798 -2.35021,3.22432 -7.07211,9.97289 -10.49311,14.99683 -8.88782,13.05226 -11.59014,16.79537 -11.59014,16.05402 z"
+         id="path4683"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 169.22777,290.18345 c 0.11393,-0.26244 0.49408,-1.82688 0.8448,-3.47653 1.2774,-6.0085 4.06628,-15.1581 5.58927,-18.33703 0.59741,-1.24696 1.09582,-1.42505 2.07289,-0.74068 0.5483,0.38404 0.7034,0.36457 1.90119,-0.23876 1.20758,-0.60825 3.61659,-1.27008 4.62303,-1.27008 0.80502,0 -0.13143,0.73433 -1.76171,1.38147 -2.83741,1.12632 -4.594,2.11501 -5.41108,3.04561 -0.69171,0.78781 -1.0537,1.89361 -2.52767,7.72147 -1.78583,7.06093 -2.88846,10.22695 -4.03719,11.59214 -0.75198,0.89368 -1.6373,1.11433 -1.29353,0.32239 z"
+         id="path4685"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 188.16584,266.20263 c 0,-0.44242 7.00168,-1.89334 11.65663,-2.41555 1.95826,-0.21968 2.37371,0.2233 0.64578,0.68858 -3.8536,1.03767 -12.30241,2.22368 -12.30241,1.72697 z"
+         id="path4687"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 273.91636,288.44245 c -3.69632,-1.98028 -10.76641,-8.94015 -10.76641,-10.59857 0,-1.70773 6.86332,2.63208 10.05433,6.35753 1.81047,2.1137 2.92904,4.8232 1.99117,4.8232 -0.10585,0 -0.68144,-0.26197 -1.27909,-0.58216 z"
+         id="path4689"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 303.09603,269.40397 c -6.35433,-1.67705 -12.4716,-5.18825 -13.94557,-8.00451 -0.22084,-0.42196 -0.36367,-1.15817 -0.31739,-1.63602 0.0767,-0.79154 0.16316,-0.86521 0.97257,-0.82836 0.48863,0.0222 2.02239,0.49601 3.40837,1.05282 1.38597,0.5568 3.91291,1.49432 5.61542,2.08338 3.93825,1.36261 6.58539,2.69686 8.07536,4.07026 3.33896,3.07774 1.49053,4.66103 -3.80876,3.26243 z"
+         id="path4691"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 325.59127,252.25672 c -7.33523,-3.43786 -9.06493,-4.49483 -5.66937,-3.46441 2.3111,0.70134 9.22095,1.58286 11.08076,1.41364 2.01439,-0.18329 2.01,-0.21554 0.31098,2.28637 -0.60902,0.89683 -1.25612,1.62763 -1.43799,1.62401 -0.18187,-0.004 -2.10985,-0.84045 -4.28438,-1.85961 z"
+         id="path4693"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 244.33576,152.76974 c 0,-0.95813 5.56044,-6.95455 9.38835,-10.12447 1.50999,-1.25044 3.1749,-2.75157 3.69978,-3.33584 1.04829,-1.1669 3.52161,-2.40353 6.1902,-3.09503 1.8171,-0.47086 3.51273,-0.5611 3.7366,-0.19886 0.35501,0.57442 -5.11343,6.25666 -11.40935,11.85541 -3.10299,2.7594 -4.42278,3.69802 -6.15219,4.37539 -1.41377,0.55374 -5.45339,0.94145 -5.45339,0.5234 z"
+         id="path4695"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 239.76854,136.54224 c -0.33742,-0.16273 -0.6135,-0.45419 -0.6135,-0.64767 0,-0.19349 1.52309,-1.7455 3.38464,-3.44892 1.86155,-1.70341 3.96631,-3.81118 4.67725,-4.68393 1.14105,-1.40075 4.13375,-3.70215 4.81422,-3.70215 0.31137,0 0.0543,0.89998 -0.66206,2.31769 -1.53105,3.0301 -6.97688,9.45615 -8.58212,10.12686 -1.04465,0.43648 -2.16314,0.45061 -3.01843,0.0381 z"
+         id="path4697"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 269.21719,124.01901 c -0.51665,-0.51665 0.29631,-1.69586 1.89813,-2.75329 2.25821,-1.49073 6.8102,-4.06236 6.94757,-3.925 0.38247,0.38247 -2.49384,4.09438 -4.1131,5.30799 -2.0406,1.52941 -4.00477,2.09812 -4.7326,1.3703 z"
+         id="path4699"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 210.25469,143.89627 c 0.005,-0.62935 2.73845,-3.99078 4.71728,-5.80069 2.85705,-2.61315 14.64363,-10.30553 15.09657,-9.8526 0.34736,0.34736 -1.41209,2.39561 -5.57718,6.49263 -6.04088,5.94215 -8.59736,7.90627 -11.66405,8.96136 -1.81086,0.62303 -2.57633,0.68233 -2.57262,0.1993 z"
+         id="path4701"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 276.96121,98.294794 c -1.32163,-1.321629 -1.86716,-7.935273 -0.71434,-8.660171 0.55172,-0.346923 2.73213,0.670094 3.86463,1.802592 1.92837,1.928369 2.22103,4.76889 0.6529,6.337014 -0.78136,0.781366 -1.12115,0.927077 -2.16188,0.927077 -0.73068,0 -1.40076,-0.165964 -1.64131,-0.406512 z"
+         id="path4703"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 300.52505,87.760834 c -0.91956,-1.512081 -1.67344,-9.060546 -0.97372,-9.749563 0.14997,-0.147674 0.63099,-0.307502 1.06895,-0.355174 0.74137,-0.0807 0.8776,0.06374 1.97555,2.094679 0.6486,1.199746 1.38834,2.831974 1.64388,3.627173 0.44508,1.385036 0.44302,1.485914 -0.049,2.399614 -0.53804,0.999074 -2.39777,2.834972 -2.87178,2.834972 -0.15174,0 -0.50897,-0.383266 -0.79384,-0.851701 z"
+         id="path4705"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 232.86886,46.654386 c -2.28596,-1.480418 -5.86034,-5.737956 -5.66572,-6.748573 0.0661,-0.343131 0.42606,-0.555368 1.13832,-0.671143 3.60293,-0.58564 8.48628,2.498302 8.83347,5.578531 0.11832,1.049783 0.039,1.320143 -0.56473,1.923837 -0.94995,0.949943 -2.18916,0.922566 -3.74134,-0.08265 l 0,0 z"
+         id="path4707"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 218.25531,30.952486 c -2.07283,-0.79805 -9.52925,-4.583933 -10.45726,-5.309517 -0.87698,-0.685679 -0.71229,-0.840856 2.31657,-2.18281 2.37541,-1.052443 2.44114,-1.064982 3.21453,-0.61319 1.67491,0.978435 6.69996,6.728142 7.13517,8.164137 0.23627,0.779549 -0.0518,0.771904 -2.20901,-0.05862 z"
+         id="path4709"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 143.58438,57.106164 c 2.8364,-2.340894 13.96957,-8.741503 24.199,-13.912326 6.67356,-3.373383 8.34528,-4.101829 7.16459,-3.12194 -0.22858,0.189701 -0.4156,0.471026 -0.4156,0.625166 0,1.585503 -16.97961,12.621258 -22.97847,14.934664 -2.66648,1.028301 -6.88429,2.170758 -7.96952,2.158661 l -0.818,-0.0091 0.818,-0.675107 0,0 z"
+         id="path4711"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 200.74913,55.344843 c -1.42006,-1.028689 -3.96509,-4.112002 -5.23471,-6.341875 -0.53232,-0.934923 -1.14583,-1.69986 -1.36335,-1.69986 -0.21753,0 -0.61341,-0.183371 -0.87974,-0.407491 -0.45659,-0.384213 -0.4575,-0.427048 -0.0161,-0.749841 1.02584,-0.750108 5.07706,-0.191306 7.47238,1.030697 1.44865,0.739045 1.9708,1.675837 2.81753,5.05496 0.97743,3.900729 0.97345,3.933433 -0.47794,3.933433 -0.88582,0 -1.47269,-0.207603 -2.31811,-0.820023 z"
+         id="path4713"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 170.30599,76.18715 c -1.76796,-0.917619 -5.76192,-5.413137 -7.46944,-8.407443 l -1.19805,-2.100892 0.92538,-0.96281 c 1.19932,-1.247833 2.7987,-2.17977 4.32816,-2.521961 1.01427,-0.226926 1.4203,-0.185299 2.39406,0.245438 0.64495,0.285292 1.35081,0.450337 1.56859,0.366768 0.55492,-0.212942 3.60067,2.780762 4.73165,4.650799 1.11835,1.849143 1.21611,3.490672 0.32752,5.499481 -0.74381,1.681518 -1.49883,2.5052 -2.88117,3.14319 -1.33647,0.616822 -1.68518,0.628003 -2.7267,0.08743 z"
+         id="path4715"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 205.88936,96.247288 c -2.28396,-0.56495 -6.32458,-2.057279 -8.35206,-3.084681 -2.41356,-1.223047 -2.98652,-2.132565 -3.88601,-6.16869 -0.29886,-1.341056 -0.10829,-1.923447 0.84873,-2.593776 0.93026,-0.651575 1.54505,-0.527317 4.46044,0.901524 6.5306,3.200658 11.65455,6.935598 12.4483,9.073793 0.23281,0.627117 -0.51864,1.588243 -1.59257,2.03696 -1.13028,0.472261 -1.39501,0.461129 -3.92683,-0.16513 z"
+         id="path4717"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 221.18843,76.715106 c -0.6586,-0.230603 -2.19236,-1.060795 -3.40837,-1.844871 -1.21601,-0.784076 -3.28598,-2.011315 -4.59993,-2.727198 -1.31395,-0.715883 -2.51029,-1.528235 -2.65853,-1.805226 -0.35376,-0.661019 -0.3458,-2.886838 0.0127,-3.556761 0.45411,-0.848516 1.82833,-0.64765 4.50924,0.659104 5.08099,2.47662 10.08345,5.746879 10.77902,7.046571 0.43706,0.81666 -0.10111,1.799976 -1.24723,2.278855 -1.1777,0.492075 -1.86678,0.481806 -3.38694,-0.05047 l 0,0 z"
+         id="path4719"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 226.87003,58.551043 c -0.66667,-0.328625 -1.90894,-1.27603 -2.76059,-2.105345 -1.58097,-1.539509 -2.18454,-2.791969 -1.61832,-3.358189 0.23254,-0.232533 0.8812,0.27 2.57746,1.996818 2.22645,2.266563 3.37082,3.706982 3.13357,3.944234 -0.066,0.06599 -0.66544,-0.148894 -1.33212,-0.477518 z"
+         id="path4721"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 81.074904,140.94149 c -0.18746,-0.19698 -0.340837,-0.84674 -0.340837,-1.44389 0,-1.43137 1.032163,-5.21658 1.62064,-5.94332 0.438024,-0.54094 0.550075,-0.55408 1.944279,-0.22808 3.520934,0.8233 13.833581,5.34501 14.088761,6.17739 0.06126,0.19984 -0.712685,0.4192 -2.166954,0.61419 -7.708466,1.03354 -14.590037,1.4078 -15.145889,0.82371 z"
+         id="path4723"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 95.969671,158.93985 c -4.416962,-0.21957 -6.320087,-0.55614 -7.105298,-1.25659 -0.720077,-0.64234 -0.290966,-1.1647 1.766987,-2.15094 2.928707,-1.40355 5.394103,-1.85277 9.159552,-1.66897 3.529518,0.17229 5.630358,0.65646 8.109018,1.86886 1.70627,0.8346 3.62884,2.51889 3.27693,2.8708 -0.58807,0.58806 -7.20509,0.73463 -15.207189,0.33684 z"
+         id="path4725"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 76.303188,187.11847 c -0.712349,-0.0562 -1.29518,-0.20957 -1.29518,-0.3409 0,-0.13132 -0.263546,-0.27797 -0.585659,-0.32589 -0.989755,-0.14725 -1.135283,-0.75121 -0.924867,-3.83831 l 0.197303,-2.8947 0.651843,0.297 c 0.603202,0.27484 0.616592,0.32305 0.17944,0.64605 -0.865713,0.63967 0.05057,0.98564 3.657471,1.381 6.241728,0.68416 10.980797,1.83422 12.36792,3.00141 1.188061,0.99968 1.028557,1.79697 -0.410294,2.05087 -1.102289,0.19451 -11.446334,0.21205 -13.837977,0.0235 l 0,10e-6 z"
+         id="path4727"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 111.40938,185.256 c -5.99745,-0.87652 -9.80367,-2.09791 -11.800765,-3.78679 -0.755747,-0.63911 -0.840076,-0.82161 -0.545339,-1.1802 0.603569,-0.73434 3.537884,-1.89681 5.706474,-2.26069 3.32051,-0.55718 6.27369,0.12528 12.94156,2.99074 6.67897,2.87022 8.49006,4.05391 6.86758,4.4885 -1.11752,0.29933 -10.64543,0.11733 -13.16951,-0.25156 z"
+         id="path4729"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 48.92939,154.34128 c 0.177565,-1.91053 3.265863,-11.43618 4.473396,-13.79789 0.310279,-0.60685 0.649393,-1.55778 0.753588,-2.11319 0.11217,-0.59792 0.346349,-1.00983 0.574109,-1.00983 1.021563,0 3.217218,5.21241 3.050414,7.24158 -0.08028,0.97656 -0.287452,1.22295 -2.541426,3.02243 -2.61564,2.08822 -3.492611,3.34386 -3.809003,5.45372 -0.131109,0.87429 -0.430207,1.38226 -1.24999,2.12288 -0.592703,0.53547 -1.156259,0.97359 -1.252346,0.97359 -0.09609,0 -0.09552,-0.85198 0.0013,-1.89329 z"
+         id="path4731"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 43.52483,188.86546 c 0.189069,-7.10192 1.250323,-18.82655 1.793592,-19.81543 0.179827,-0.32732 0.226421,-0.3001 0.233324,0.13634 0.0047,0.29993 0.75815,1.46236 1.674236,2.58316 2.432398,2.97596 2.656901,3.93522 1.469421,6.2786 -0.374921,0.73987 -0.681674,1.56816 -0.681674,1.84065 0,0.27248 0.429455,1.16201 0.954343,1.97672 1.239046,1.92319 1.305296,2.77117 0.381539,4.88359 -0.821765,1.87918 -2.384209,3.73211 -3.794064,4.49945 -1.411465,0.76822 -1.766004,1.11032 -2.002989,1.93274 -0.08643,0.29994 -0.09891,-1.64218 -0.02773,-4.31582 z"
+         id="path4733"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 43.284268,223.51844 c -0.306634,-3.93906 0.01145,-23.40243 0.339828,-20.79373 0.166437,1.32222 0.339594,1.62865 1.764362,3.12238 1.663363,1.74386 1.706818,1.86186 1.925232,5.22773 l 0.152582,2.35138 -1.498623,2.25191 c -1.5972,2.40002 -1.860908,3.50885 -1.048101,4.40699 0.588669,0.65048 0.539259,1.69136 -0.157386,3.31556 -1.123694,2.61985 -1.282138,2.63248 -1.477894,0.11778 z"
+         id="path4735"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 44.474033,264.75702 c -0.0068,-0.22495 -0.307237,-2.80168 -0.66767,-5.72606 -0.785184,-6.3706 -1.105822,-11.25434 -0.850624,-12.95612 0.167835,-1.1192 0.248344,-1.23001 0.782024,-1.07636 1.090301,0.3139 1.954041,1.12562 2.36728,2.22471 0.224952,0.5983 0.728777,1.50591 1.119612,2.01692 0.390834,0.511 0.794862,1.19566 0.897839,1.52146 0.319239,1.01 -1.048268,7.96493 -2.001259,10.17808 -0.290596,0.67486 -0.598732,1.66582 -0.684747,2.20215 -0.169791,1.05869 -0.940241,2.35169 -0.962455,1.61522 z"
+         id="path4737"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 53.195089,285.43772 c -1.174608,-1.66445 -3.000004,-4.8438 -3.000004,-5.2252 0,-0.0562 0.636417,0.11324 1.414261,0.37657 1.111708,0.37635 1.58623,0.73196 2.218123,1.66228 0.442125,0.65093 1.094071,1.53035 1.448769,1.95427 0.799938,0.95605 0.799335,1.07593 -0.01142,2.26906 l -0.656322,0.96586 -1.413411,-2.00284 1e-6,0 z"
+         id="path4739"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 98.730254,349.18115 c -3.968305,-1.06616 -7.570005,-2.77891 -7.013651,-3.33527 0.08441,-0.0844 1.215968,-0.1505 2.514581,-0.14688 1.672685,0.005 2.550745,0.13083 3.011494,0.43272 0.95755,0.62741 1.329841,0.5511 4.124922,-0.84549 1.39975,-0.69941 2.62078,-1.19587 2.7134,-1.10325 0.25829,0.25828 0.9116,3.22464 0.91639,4.16087 0.002,0.45741 -0.14298,0.97889 -0.32294,1.15885 -0.51723,0.51723 -3.40333,0.36111 -5.944196,-0.32155 z"
+         id="path4741"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 107.62343,346.21703 c -0.37028,-0.63736 -0.82619,-1.49975 -1.01313,-1.91642 -0.19343,-0.43114 -0.41722,-0.63245 -0.51935,-0.4672 -0.0987,0.15971 -0.40015,-0.19899 -0.66986,-0.79711 -0.57307,-1.27084 -1.00286,-1.43233 -2.39574,-0.90016 -0.56208,0.21475 -1.20161,0.32151 -1.42119,0.23725 -0.21958,-0.0843 -1.29347,0.0427 -2.386415,0.28212 -1.295705,0.28384 -3.458473,0.44552 -6.215456,0.46465 -4.836176,0.0336 -4.700492,0.0804 -7.614066,-2.62919 l -1.685875,-1.56785 2.4014,-0.0359 c 1.893782,-0.0283 2.199667,-0.083 1.447057,-0.25867 -0.563861,-0.13162 1.045989,-0.18165 3.934485,-0.12227 3.316043,0.0682 4.763432,0.0126 4.499047,-0.17269 -0.271925,-0.19059 0.06367,-0.23181 1.1099,-0.13632 0.824825,0.0753 1.260382,0.0444 0.967905,-0.0685 -0.338237,-0.13065 0.05871,-0.21161 1.090678,-0.22244 1.55219,-0.0163 4.45138,-0.80896 3.25847,-0.89089 -0.30087,-0.0207 0.005,-0.2113 0.68168,-0.42525 0.67485,-0.21329 1.40732,-0.32129 1.6277,-0.24002 0.22038,0.0813 0.31285,0.0599 0.20548,-0.0474 -0.27518,-0.27519 1.40703,-1.24881 1.77004,-1.02446 0.1927,0.1191 0.21934,0.0565 0.0752,-0.17671 -0.16341,-0.26441 -0.0979,-0.31304 0.2447,-0.18159 0.31532,0.121 0.40424,0.0766 0.27267,-0.13633 -0.13494,-0.21834 -0.0366,-0.25503 0.31837,-0.1188 0.28247,0.1084 0.42637,0.10986 0.31976,0.003 -0.1066,-0.10661 -0.0572,-0.35849 0.10987,-0.55975 0.35582,-0.42874 0.89619,-0.4982 0.63905,-0.0821 -0.0965,0.15608 0.65123,-0.22217 1.66154,-0.84054 1.01031,-0.61838 2.14013,-1.14486 2.5107,-1.16996 0.96449,-0.0653 1.47628,1.48522 1.51493,4.58974 0.0276,2.21975 -0.0517,2.6292 -0.83109,4.28897 -1.37445,2.92704 -4.04485,6.48148 -4.86944,6.48148 -0.20118,0 -0.66875,-0.52148 -1.03903,-1.15885 z"
+         id="path4743"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d=""
+         id="path4745"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 186.38008,343.70778 c 0.24141,-1.93218 0.84627,-3.72663 1.06132,-3.14864 0.0837,0.22495 0.28182,0.91619 0.44027,1.53609 0.31868,1.24678 0.88781,1.87655 1.48778,1.64632 0.2159,-0.0829 0.53328,0.0189 0.7053,0.22623 0.32883,0.39621 -0.36293,0.66764 -2.83114,1.11087 l -1.05856,0.19009 0.19503,-1.56096 z"
+         id="path4747"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 250.4689,334.27897 c -0.38365,-1.74674 0.35897,-10.00741 1.01245,-11.2622 0.34855,-0.66928 0.43645,-0.53156 0.76786,1.203 0.92938,4.86439 1.36038,10.13804 0.85413,10.45092 -0.12678,0.0784 -0.72754,0.22194 -1.33502,0.31908 -1.07488,0.17188 -1.10974,0.15281 -1.29942,-0.7108 z"
+         id="path4749"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 299.0152,310.78747 c -0.71435,-2.39992 -2.0581,-9.18351 -2.23598,-11.28784 -0.15859,-1.8762 -0.13163,-2.00635 0.5587,-2.69668 1.55602,-1.55602 2.59171,-0.19385 3.58388,4.71362 0.64171,3.17404 0.49185,8.25444 -0.28237,9.57238 -0.81557,1.38835 -1.13912,1.3283 -1.62423,-0.30148 l 0,0 z"
+         id="path4753"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 313.04847,323.53677 c 0,-0.0643 0.19511,-0.31196 0.43358,-0.55043 0.38178,-0.38179 0.39658,-0.76679 0.12389,-3.22334 -0.41862,-3.77123 -0.87183,-15.37322 -0.64685,-16.55958 l 0.18097,-0.95434 0.23112,0.81801 c 0.12712,0.4499 0.78725,3.82122 1.46696,7.49183 0.67972,3.6706 1.47536,7.74912 1.76811,9.06337 0.77433,3.47631 0.81887,3.33893 -1.20336,3.71154 -1.86771,0.34414 -2.35442,0.38609 -2.35442,0.20294 z"
+         id="path4755"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 347.42626,283.83372 c -2.1759,-2.81543 -6.80098,-9.63258 -8.31774,-12.25996 -0.56273,-0.97479 -1.32245,-2.08947 -1.68826,-2.47706 l -0.6651,-0.70471 1.57563,-0.34846 c 0.86659,-0.19165 2.46037,-0.71775 3.54173,-1.1691 1.08136,-0.45136 2.15001,-0.75008 2.37478,-0.66383 1.03328,0.39651 2.76894,5.07593 4.10997,11.08074 0.91187,4.08309 1.53597,9.00657 1.14168,9.00657 -0.0925,0 -1.02524,-1.10888 -2.07269,-2.46419 z"
+         id="path4757"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 343.31951,319.38075 c 0.005,-2.1045 0.43857,-6.59605 0.70258,-7.28406 0.27007,-0.70379 0.77437,-0.13214 2.48259,2.81414 2.33811,4.0327 2.78049,4.65548 3.50164,4.92966 1.28546,0.48873 0.65072,0.74986 -2.26066,0.93004 -1.61216,0.0998 -3.26862,0.24687 -3.68104,0.3269 l -0.74984,0.14551 0.005,-1.86219 z"
+         id="path4759"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 393.2133,231.63731 c -4.2584,-0.62401 -11.11604,-2.40744 -13.02717,-3.38791 l -0.98623,-0.50596 0.80347,-0.41474 c 1.25358,-0.64708 5.0262,-2.04612 6.49149,-2.40732 1.33832,-0.32989 10.69694,-0.19356 13.62833,0.19854 l 1.32018,0.17658 -0.1756,2.21125 c -0.2753,3.46692 -0.35794,3.71294 -1.39253,4.14522 -1.09213,0.45632 -3.47933,0.45071 -6.66194,-0.0157 z"
+         id="path4761"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#c8b7b7;fill-opacity:1;stroke:#280b0b;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 354.04068,183.43335 c -1.31686,-2.08172 -3.32136,-6.56591 -3.92732,-8.78566 -0.81673,-2.99187 -0.65117,-6.74707 0.42713,-9.6877 0.97773,-2.66636 1.77705,-4.36271 2.05571,-4.36271 0.32772,0 2.52322,3.61923 3.72166,6.13506 1.00092,2.10118 1.04268,2.30484 1.13599,5.54073 0.0533,1.84765 -0.0471,4.36303 -0.22309,5.58972 -0.509,3.54802 -1.5466,6.7294 -2.19477,6.7294 -0.14424,0 -0.59213,-0.52148 -0.99531,-1.15884 z"
+         id="path4763"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 108.1079,346.47098 c -0.23072,-0.26244 -0.68169,-0.99865 -1.00215,-1.63601 -0.32045,-0.63737 -0.69073,-1.15885 -0.82284,-1.15885 -0.13211,0 -0.50176,-0.44332 -0.82145,-0.98515 l -0.58125,-0.98514 -1.83154,0.18664 c -1.00735,0.10266 -2.93585,0.36143 -4.285564,0.57505 -2.850672,0.45118 -8.545769,0.51318 -10.001402,0.10889 -0.580067,-0.16111 -1.761361,-0.96564 -2.800296,-1.90717 l -1.796988,-1.6285 0.89161,-0.0107 c 0.490386,-0.006 3.529688,-0.12296 6.754004,-0.26023 6.286305,-0.26762 10.085776,-0.83605 11.142106,-1.66696 0.36092,-0.2839 1.00778,-0.51619 1.43746,-0.51619 0.42968,0 0.78124,-0.12533 0.78124,-0.27851 0,-0.27011 0.23966,-0.39407 2.11319,-1.09305 0.48739,-0.18184 0.88617,-0.52023 0.88617,-0.75198 0,-0.23176 0.0772,-0.34416 0.17159,-0.24979 0.0944,0.0944 1.11594,-0.31463 2.27015,-0.9089 1.15421,-0.59426 2.22778,-1.08048 2.3857,-1.08048 0.6197,0 1.03496,1.80517 1.03496,4.49905 0,2.56058 -0.0558,2.83467 -0.91559,4.49904 -1.13196,2.1912 -3.74287,5.72606 -4.22936,5.72606 -0.19814,0 -0.54903,-0.21472 -0.77975,-0.47717 z"
+         id="path4773"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.10755,0.25130674)" /></g></g></svg>
\ No newline at end of file
diff --git a/src/svg-tests/cat2.svg b/src/svg-tests/cat2.svg
new file mode 100644 (file)
index 0000000..b4e6f19
--- /dev/null
@@ -0,0 +1,371 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg4813"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="217.07661"
+   height="359.81012"
+   xml:space="preserve"
+   sodipodi:docname="drawing2.svg"><metadata
+     id="metadata4819"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs4817" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1280"
+     inkscape:window-height="996"
+     id="namedview4815"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="0.91686094"
+     inkscape:cx="265.92699"
+     inkscape:cy="448.99328"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g4823" /><g
+     id="g4821"
+     inkscape:groupmode="layer"
+     inkscape:label="16061205"
+     transform="matrix(1.25,0,0,-1.25,-228.11101,785.68839)"><g
+       id="g4823"
+       transform="matrix(0,-576,823.68,0,-123.84,699.84)"><path
+         style="fill:#000000"
+         d="m 0.35327642,0.37202527 c -2.6913e-4,1.9021e-4 -0.002707,6.2943e-4 -0.005417,9.7605e-4 -0.00271,3.4668e-4 -0.00624,0.001028 -0.007844,0.001514 -0.001604,4.8613e-4 -0.003667,0.001091 -0.004583,0.001345 -0.004631,0.001282 -0.0217322,0.007215 -0.0221666,0.007691 -2.7499e-4,3.0122e-4 -0.0019,8.8426e-4 -0.003611,0.001296 -0.001711,4.1131e-4 -0.003548,0.001342 -0.004083,0.002069 -9.4095e-4,0.001278 -0.006725,0.003186 -0.0113184,0.003733 -0.001185,1.4108e-4 -0.003899,5.3869e-4 -0.006031,8.8362e-4 -0.003891,6.2943e-4 -0.00904,-5.82e-6 -0.00904,-0.001112 0,-2.6428e-4 -0.001406,-8.0338e-4 -0.003125,-0.001198 -0.003404,-7.8141e-4 -0.009624,-0.003328 -0.0100694,-0.004122 -1.5279e-4,-2.7261e-4 -0.001011,-4.9563e-4 -0.001908,-4.9563e-4 -0.001713,0 -0.007765,-0.001953 -0.009897,-0.003194 -6.875e-4,-4.0006e-4 -0.002608,-8.7203e-4 -0.004267,-0.001049 -0.00166,-1.7674e-4 -0.004718,-8.6317e-4 -0.006797,-0.001525 -0.003293,-0.001049 -0.005694,-0.001224 -0.0186493,-0.00136 -0.017209,-1.8059e-4 -0.0279867,2.9656e-4 -0.0315366,0.001396 -0.001917,5.94e-4 -0.007452,7.3462e-4 -0.02375,6.0356e-4 -0.0133501,-1.0734e-4 -0.0233688,7.879e-5 -0.0269493,5.0064e-4 -0.005933,6.9907e-4 -0.0129735,0.002473 -0.0164457,0.004144 l -0.002022,9.7285e-4 0.003745,0.005019 c 0.004622,0.006194 0.009707,0.009993 0.0212863,0.015902 0.005386,0.002749 0.0170769,0.007128 0.0191116,0.007158 4.7126e-4,6.99e-6 0.001767,5.0245e-4 0.00288,0.001101 l 0.002024,0.001088 -0.001469,0.002689 c -0.004767,0.008729 -0.004955,0.019862 -5.2551e-4,0.0311994 9.4995e-4,0.002432 8.9539e-4,0.002643 -9.3899e-4,0.003633 -0.001071,5.7803e-4 -0.002687,0.001222 -0.00359,0.001432 -0.00305,7.0775e-4 -0.0133212,0.007229 -0.0189716,0.0120444 -0.006851,0.005839 -0.006387,0.005414 -0.009178,0.008415 -0.003098,0.003331 -0.002988,0.004237 5.1262e-4,0.004237 0.001542,0 0.003699,4.8906e-4 0.004792,0.001087 0.0105369,0.005762 0.0314325,0.008018 0.0523559,0.005651 0.005525,-6.2494e-4 0.009909,-7.1117e-4 0.0176576,-3.4732e-4 0.0104546,4.9093e-4 0.0202915,3.7893e-4 0.0272863,-3.1067e-4 0.0143447,-0.001414 0.0393346,-0.008905 0.0469344,-0.014069 0.003002,-0.00204 0.003133,-0.002068 0.005182,-0.00113 0.002095,9.6e-4 0.006624,0.002174 0.0156817,0.004204 0.008874,0.001988 0.0184485,0.00931 0.025726,0.0196707 0.001986,0.002827 0.005516,0.006629 0.007846,0.00845 0.00233,0.00182 0.00513,0.004228 0.006224,0.00535 0.001093,0.001122 0.002949,0.002854 0.004124,0.00385 0.001175,9.9592e-4 0.002699,0.002311 0.003386,0.002922 0.002965,0.002635 0.006081,0.005315 0.00839,0.007214 0.001363,0.001122 0.00391,0.003355 0.00566,0.004963 0.00396,0.003639 0.0152128,0.009413 0.0244006,0.0125209 0.003832,0.001296 0.008734,0.003016 0.0108937,0.003821 0.003907,0.001458 0.005479,0.001849 0.0189898,0.004729 0.0113603,0.002421 0.0178761,0.00307 0.0325,0.003238 0.008252,9.458e-5 0.0138465,3.9059e-4 0.0139913,7.4033e-4 1.3274e-4,3.2052e-4 -5.2351e-4,6.6655e-4 -0.001458,7.6897e-4 -9.3483e-4,1.0242e-4 -0.0017,4.087e-4 -0.0017,6.8062e-4 0,6.211e-4 0.0112528,0.001023 0.0133448,4.7686e-4 8.52e-4,-2.2251e-4 0.00938,-5.055e-4 0.0189514,-6.2888e-4 0.009571,-1.2337e-4 0.0177716,-3.8392e-4 0.0182229,-5.7899e-4 0.001242,-5.3666e-4 0.008006,6.7896e-4 0.009683,0.00174 8.1201e-4,5.1389e-4 0.002317,0.001227 0.003344,0.001585 0.001027,3.5806e-4 0.001868,0.001111 0.001869,0.001674 8.4e-7,5.6247e-4 5.3083e-4,0.001252 0.001177,0.001532 6.4641e-4,2.8039e-4 0.001236,9.9282e-4 0.001311,0.001583 7.475e-5,5.9034e-4 4.0286e-4,0.001729 7.292e-4,0.00253 3.2635e-4,8.0128e-4 0.001127,0.002768 0.001779,0.004371 6.5219e-4,0.001603 0.001625,0.00416 0.002162,0.005683 7.2852e-4,0.002065 0.001849,0.003294 0.00441,0.004834 0.001888,0.001136 0.00444,0.002709 0.005672,0.003496 0.00485,0.003099 0.0156166,0.001146 0.0322812,-0.005854 0.003815,-0.001603 0.007615,-0.003438 0.008444,-0.004079 8.2906e-4,-6.4102e-4 0.00305,-0.002346 0.004936,-0.003788 0.001886,-0.001442 0.004022,-0.003396 0.004748,-0.004343 7.2553e-4,-9.4611e-4 0.00271,-0.003175 0.004409,-0.004953 0.0017,-0.001778 0.003586,-0.004151 0.004191,-0.005273 6.0572e-4,-0.001122 0.00191,-0.002826 0.002897,-0.003788 9.8779e-4,-9.6154e-4 0.003696,-0.004371 0.006019,-0.007576 0.003708,-0.005117 0.004299,-0.006431 0.004846,-0.0107809 0.001032,-0.008214 6.6615e-4,-0.0124462 -0.001334,-0.0154219 -0.002075,-0.003087 -0.005115,-0.004974 -0.008014,-0.004974 -0.003449,0 -0.009041,0.003241 -0.0133022,0.007709 -0.005295,0.005553 -0.005768,0.006222 -0.007842,0.0110917 -0.002721,0.00639 -0.009839,0.0155973 -0.0146665,0.0189735 -6.0595e-4,4.2374e-4 -0.001102,0.001035 -0.001102,0.001358 0,0.002078 -0.0139069,0.0138975 -0.0163516,0.0138975 -0.002432,0 -0.002524,-0.002982 -3.3569e-4,-0.0108636 0.001606,-0.005784 0.003079,-0.00895 0.004164,-0.00895 0.001303,0 0.004513,-0.003942 0.006771,-0.008316 0.001346,-0.002607 0.002982,-0.00531 0.003634,-0.006007 0.001854,-0.001979 0.005451,-0.008472 0.005451,-0.009839 0,-6.7825e-4 6.9896e-4,-0.002192 0.001553,-0.003364 0.002086,-0.002862 0.002492,-0.004524 0.003059,-0.0125451 5.3971e-4,-0.007628 0.001455,-0.0114099 0.003699,-0.0152911 0.005766,-0.009971 0.004886,-0.0215691 -0.001749,-0.0230418 -9.2845e-4,-2.0606e-4 -0.001523,-4.9007e-4 -0.001321,-6.3111e-4 3.6646e-4,-2.5626e-4 9.8767e-4,-3.7778e-4 0.006382,-0.001248 0.002596,-4.1893e-4 0.003279,-0.00101 0.007083,-0.006129 0.002316,-0.003116 0.004867,-0.006192 0.005669,-0.006836 8.0208e-4,-6.4406e-4 0.001458,-0.001379 0.001458,-0.001632 0,-2.5373e-4 0.001063,-0.001496 0.002362,-0.002761 0.004092,-0.003984 0.006251,-0.009035 0.00579,-0.0135437 -8.1115e-4,-0.007928 -0.007812,-0.0146888 -0.01521,-0.0146888 -0.001932,0 -0.002079,-1.5606e-4 -0.001511,-0.001603 0.001166,-0.00297 5.8205e-4,-0.00752 -0.001872,-0.0145865 -0.002787,-0.008026 -0.001594,-0.007333 -0.0138072,-0.008026 -0.006162,-3.4965e-4 -0.00765,-2.4359e-4 -0.0109632,7.8141e-4 -0.004872,0.001507 -0.008219,0.004878 -0.008761,0.008822 -3.8085e-4,0.002772 -4.7687e-4,0.002859 -0.003834,0.003475 -0.004565,8.3747e-4 -0.0170445,0.001945 -0.0178739,0.001587 -6.0566e-4,-2.6172e-4 -0.0138922,0.001221 -0.0226528,0.002529 -0.008007,0.001195 -0.0111068,8.3228e-4 -0.0168216,-0.001967 -0.002894,-0.001418 -0.007996,-0.003844 -0.011338,-0.00539 -0.003342,-0.001547 -0.009996,-0.004838 -0.0147875,-0.007312 -0.004791,-0.002475 -0.009932,-0.004941 -0.0114238,-0.00548 -0.001492,-5.3911e-4 -0.003088,-0.001275 -0.003546,-0.001634 -8.7026e-4,-6.8321e-4 -0.0126082,-0.004581 -0.0203003,-0.006741 -0.004054,-0.001138 -0.0143355,-0.002633 -0.0282511,-0.004108 -0.005786,-6.13e-4 -0.0101763,-0.001312 -0.0139486,-0.00222 -0.003844,-9.2593e-4 -0.0171959,-0.002453 -0.0237578,-0.002717 -0.003237,-1.3042e-4 -0.006201,-3.7361e-4 -0.006588,-5.4045e-4 -0.001088,-4.7004e-4 -0.0129263,-0.001053 -0.0134773,-6.6352e-4 z m 0.0187025,0.002422 c 0.006891,5.0309e-4 0.0131793,0.001158 0.013973,0.001455 7.937e-4,2.9708e-4 0.001984,3.9487e-4 0.002646,2.173e-4 6.6161e-4,-1.7756e-4 0.001775,7.722e-5 0.002474,5.6615e-4 6.9913e-4,4.8886e-4 0.002341,8.4446e-4 0.003649,7.9021e-4 0.001308,-5.42e-5 0.00519,3.328e-4 0.008628,8.6019e-4 0.003438,5.2733e-4 0.011797,0.001541 0.0185765,0.002252 0.00678,7.1131e-4 0.0125205,0.001513 0.0127575,0.001781 2.3704e-4,2.6818e-4 0.001159,4.8764e-4 0.002048,4.8764e-4 8.8962e-4,0 0.001617,3.803e-4 0.001617,8.4516e-4 0,4.6486e-4 5.0347e-4,0.001055 0.001119,0.001311 0.002593,0.00108 0.004272,0.003805 0.0101607,0.0164917 0.001116,0.002404 0.002034,0.004802 0.002041,0.005328 1.808e-5,0.001388 0.002153,0.001748 0.003589,6.0583e-4 6.7831e-4,-5.3928e-4 0.002187,-0.002312 0.003353,-0.00394 0.002014,-0.002812 0.002077,-0.003184 0.001258,-0.007467 -4.7371e-4,-0.002479 -6.6967e-4,-0.004641 -4.3546e-4,-0.004805 7.3714e-4,-5.1544e-4 0.00555,0.001512 0.012904,0.005436 0.003906,0.002084 0.00845,0.0043 0.0100977,0.004924 0.001648,6.2389e-4 0.005808,0.002567 0.009246,0.004319 0.0149084,0.007596 0.0138692,0.007233 0.0199394,0.006976 0.003013,-1.2745e-4 0.00679,-6.067e-4 0.008394,-0.001065 0.001604,-4.5833e-4 0.005422,-9.8764e-4 0.008483,-0.001176 l 0.005567,-3.4283e-4 0.001336,0.004109 c 0.001423,0.004374 0.005241,0.0102453 0.007526,0.0115713 0.001176,6.8234e-4 0.001494,6.7716e-4 0.002139,-3.496e-5 0.001448,-0.0016 7.5702e-4,-0.004949 -0.002145,-0.0103987 -0.001606,-0.003016 -0.002792,-0.005572 -0.002636,-0.005681 1.5572e-4,-1.0886e-4 0.002503,-3.4091e-4 0.005215,-5.1556e-4 0.002713,-1.7465e-4 0.007305,-5.7972e-4 0.0102051,-9.0018e-4 0.0029,-3.2039e-4 0.005949,-4.324e-4 0.006776,-2.4889e-4 0.001869,4.1492e-4 0.002968,-0.001256 0.001589,-0.002418 -7.4364e-4,-6.2657e-4 -7.3446e-4,-0.001568 3.884e-5,-0.003985 0.001632,-0.0051 0.007354,-0.007548 0.0163229,-0.006984 0.008106,5.1002e-4 0.0108321,0.001369 0.0116597,0.003676 6.4048e-4,0.001785 1.6291e-4,0.002107 -0.00195,0.001316 -0.003373,-0.001262 -0.0117928,-5.7902e-4 -0.0117928,9.5723e-4 0,6.1119e-4 4.3212e-4,7.3432e-4 0.001458,4.1568e-4 8.0208e-4,-2.4907e-4 0.003017,-5.6382e-4 0.004922,-6.9948e-4 0.002629,-1.8718e-4 0.003849,2.273e-5 0.005064,8.7209e-4 8.7984e-4,6.1526e-4 0.002195,0.001278 0.002923,0.001474 7.8046e-4,2.0939e-4 0.001749,0.001686 0.002362,0.003601 0.001076,0.003363 7.4312e-4,0.00441 -0.001084,0.003403 -0.001935,-0.001067 -0.005774,-0.00139 -0.008646,-7.268e-4 -0.003119,7.1993e-4 -0.004043,0.002127 -9.5776e-4,0.001458 0.004924,-0.001067 0.005537,-0.001022 0.007643,5.6789e-4 0.001157,8.7313e-4 0.00262,0.001449 0.003251,0.00128 9.0747e-4,-2.4353e-4 0.001021,1.3741e-4 5.433e-4,0.001826 -0.001074,0.003797 -0.00154,0.004169 -0.005276,0.004216 -0.004537,5.711e-5 -0.007218,3.9679e-4 -0.009419,0.001194 -0.001881,6.8141e-4 -0.004676,0.00496 -0.004411,0.006755 8.438e-5,5.7244e-4 1.1024e-4,0.001346 5.741e-5,0.001718 -1.234e-4,8.7121e-4 -0.0107425,0.00364 -0.0132688,0.003459 -0.002296,-1.6398e-4 -0.008437,7.2011e-4 -0.0197438,0.002842 -0.004583,8.6032e-4 -0.0115208,0.001687 -0.0154167,0.001836 -0.0105295,4.0472e-4 -0.0359122,3.6019e-4 -0.0454167,-7.967e-5 -0.004583,-2.1212e-4 -0.0126458,-4.511e-4 -0.0179167,-5.3112e-4 -0.009765,-1.4819e-4 -0.0207447,-0.001685 -0.026235,-0.003673 -0.00548,-0.001984 -0.005432,-0.001976 -0.005426,-8.9464e-4 8.33e-6,0.001363 0.0171473,0.005206 0.025619,0.005745 0.003822,2.4301e-4 0.006042,6.3998e-4 0.006042,0.00108 0,3.8286e-4 -9.4456e-4,0.002903 -0.002099,0.0056 -0.002878,0.006724 -0.005279,0.022897 -0.003513,0.0236604 8.1431e-4,3.5194e-4 0.005541,-0.003069 0.00559,-0.004045 2.067e-5,-4.1713e-4 0.002321,-0.003737 0.007763,-0.0112018 0.002285,-0.003135 0.005593,-0.009669 0.005593,-0.0110472 0,-4.6445e-4 4.3731e-4,-0.001516 9.718e-4,-0.002336 8.9197e-4,-0.001369 0.001286,-0.001464 0.004792,-0.001155 0.002101,1.852e-4 0.0110201,3.8514e-4 0.0198203,4.4429e-4 0.0110712,7.448e-5 0.0163057,3.2121e-4 0.0169913,8.0087e-4 5.4498e-4,3.813e-4 0.00166,0.003922 0.002478,0.007867 0.001705,0.008223 0.002314,0.009803 0.00545,0.0141338 0.002363,0.003264 0.00582,0.005124 0.006665,0.003585 6.556e-4,-0.001195 -0.002938,-0.0124121 -0.005058,-0.0157899 -0.001006,-0.001603 -0.002079,-0.003613 -0.002385,-0.004468 -3.0561e-4,-8.5484e-4 -0.001851,-0.002408 -0.003433,-0.003452 -0.001583,-0.001044 -0.002737,-0.002057 -0.002564,-0.002252 1.722e-4,-1.9482e-4 0.00231,-4.1312e-4 0.004751,-4.8503e-4 0.004933,-1.4534e-4 0.014727,-0.001351 0.0211047,-0.002598 l 0.004167,-8.1451e-4 0.002583,0.003247 c 0.003571,0.004489 0.005123,0.004362 0.007763,-6.3409e-4 l 0.00205,-0.003881 0.006302,-0.001261 c 0.003466,-6.9365e-4 0.006771,-0.001365 0.007344,-0.001491 6.5515e-4,-1.4459e-4 0.001042,-0.001339 0.001042,-0.003218 0,-0.003282 0.001898,-0.006161 0.004434,-0.006723 0.003712,-8.2384e-4 0.0105333,-0.00118 0.0108978,-5.6958e-4 2.6034e-4,4.363e-4 5.8591e-4,4.4184e-4 0.001064,1.806e-5 8.5993e-4,-7.6276e-4 0.006105,-0.001054 0.006105,-3.3916e-4 0,2.8911e-4 -0.002625,0.001616 -0.005833,0.002949 -0.005562,0.002311 -0.007186,0.003537 -0.004685,0.003537 6.3138e-4,0 0.001638,-4.1253e-4 0.002236,-9.1673e-4 0.00156,-0.001315 0.007246,-0.003236 0.0102767,-0.003474 0.002194,-1.7167e-4 0.002876,1.095e-4 0.004464,0.001843 0.001031,0.001125 0.001875,0.00241 0.001875,0.002855 0,0.001412 -0.006249,0.00552 -0.008413,0.005529 -0.002724,1.224e-5 -0.00443,8.5664e-4 -0.003854,0.001907 7.0805e-4,0.00129 0.008146,-0.001352 0.0112729,-0.004004 l 0.002452,-0.00208 5.7173e-4,0.0032 c 0.001021,0.005717 8.437e-5,0.007212 -0.005896,0.009404 -0.003059,0.001121 -0.007801,0.004307 -0.007801,0.005241 0,0.001467 0.001378,0.001023 0.004015,-0.001293 0.001369,-0.001202 0.003704,-0.002681 0.00519,-0.003288 l 0.002701,-0.001102 -5.2842e-4,0.001472 c -5.0413e-4,0.001405 -0.004517,0.006072 -0.007895,0.009182 -8.7019e-4,8.0129e-4 -0.002577,0.002899 -0.003792,0.004662 -0.00467,0.006774 -0.005487,0.007046 -0.0309411,0.0103253 -0.0113311,0.00146 -0.0120206,0.001408 -0.0133135,-0.001001 -0.003604,-0.006716 -0.004679,-0.008417 -0.005932,-0.009385 -7.6691e-4,-5.926e-4 -0.001719,-9.3706e-4 -0.002116,-7.6544e-4 -3.9708e-4,1.7162e-4 -7.6633e-4,0.002591 -8.2055e-4,0.005377 -1.5983e-4,0.00821 -2.4097e-4,0.008326 -0.006568,0.009444 -0.002979,5.2633e-4 -0.006175,0.001241 -0.007102,0.001589 -9.2689e-4,3.4765e-4 -0.003552,9.048e-4 -0.005833,0.001238 -0.0108106,0.001579 -0.0184763,0.003444 -0.0237314,0.005774 -0.001604,7.1101e-4 -0.003221,0.001294 -0.003593,0.001295 -3.7213e-4,1.17e-6 -0.002739,6.8432e-4 -0.005259,0.001518 -0.007129,0.002358 -0.0197333,0.003042 -0.0493321,0.002676 -0.015326,-1.8937e-4 -0.0234846,4.9438e-4 -0.0234846,0.001968 0,0.001014 -1.1622e-4,0.001012 0.003854,4.871e-5 0.002431,-5.9003e-4 0.0101382,-8.0204e-4 0.0311464,-8.5675e-4 0.0158493,-4.125e-5 0.0291387,-3.248e-4 0.0307436,-6.5593e-4 0.001555,-3.2078e-4 0.003167,-4.3637e-4 0.003582,-2.5687e-4 0.001152,4.9771e-4 -9.7061e-4,0.001971 -0.002839,0.001971 -9.0346e-4,0 -0.001825,4.8653e-4 -0.002047,0.001081 -2.2565e-4,6.034e-4 -0.003414,0.002253 -0.007215,0.003733 -0.0150559,0.005863 -0.0246859,0.0164488 -0.0270144,0.0296968 -3.4233e-4,0.001948 0.001662,0.007998 0.003142,0.009487 3.1872e-4,3.2052e-4 0.00121,0.001763 0.001981,0.003205 0.001555,0.002911 0.00761,0.007025 0.013793,0.009372 0.00204,7.7467e-4 0.004193,0.001715 0.004784,0.00209 5.9083e-4,3.7482e-4 0.002484,9.9903e-4 0.004207,0.001387 0.001723,3.881e-4 0.003654,9.9927e-4 0.004291,0.001358 6.3687e-4,3.5887e-4 0.003637,0.001482 0.006667,0.002496 l 0.005509,0.001844 -0.0105324,5.006e-5 c -0.009436,4.487e-5 -0.0105204,-5.321e-5 -0.0104167,-9.4261e-4 1.0075e-4,-8.641e-4 -6.9377e-4,-9.7643e-4 -0.006134,-8.6724e-4 -0.003437,6.899e-5 -0.009697,-3.211e-5 -0.0139095,-2.2464e-4 -0.007645,-3.4943e-4 -0.007658,-3.5265e-4 -0.006906,-0.001736 9.2826e-4,-0.001707 0.001385,-0.0122917 5.5595e-4,-0.0128717 -0.001016,-7.106e-4 -0.001856,4.296e-4 -0.00514,0.006981 -0.001741,0.003473 -0.003724,0.006464 -0.004406,0.006647 -0.003033,8.1383e-4 -0.0236944,-0.00404 -0.0385274,-0.009051 -0.0168345,-0.005687 -0.0247603,-0.0100069 -0.0323001,-0.0176044 -0.001431,-0.001442 -0.00393,-0.003507 -0.005553,-0.004588 -0.002992,-0.001993 -0.003202,-0.002987 -6.3048e-4,-0.002987 0.001554,0 0.005291,-0.002216 0.007234,-0.004288 0.002789,-0.002977 0.00417,-0.008532 0.00212,-0.008532 -3.4002e-4,0 -0.003663,0.002098 -0.007384,0.004662 -0.003721,0.002564 -0.007329,0.004662 -0.008017,0.004662 -6.8821e-4,0 -0.003115,-0.001901 -0.005394,-0.004225 -0.002278,-0.002324 -0.005141,-0.004868 -0.00636,-0.005654 -0.00122,-7.8625e-4 -0.002573,-0.001966 -0.003006,-0.002622 -4.3362e-4,-6.5606e-4 -0.001864,-0.002635 -0.003178,-0.004398 l -0.00239,-0.003205 0.001805,-8.6611e-4 c 0.003964,-0.001903 0.0116514,-0.007413 0.0130899,-0.009383 0.003756,-0.005143 0.006002,-0.0156837 0.003342,-0.0156837 -6.3052e-4,0 -0.004024,0.003398 -0.004947,0.004953 -7.092e-4,0.001195 -0.0109268,0.009464 -0.0146984,0.0118956 l -0.003911,0.002521 -0.006369,-0.004415 c -0.006344,-0.004398 -0.0117653,-0.006654 -0.0184418,-0.007672 -0.001599,-2.4384e-4 -0.005057,-0.001095 -0.007685,-0.001893 -0.004361,-0.001323 -0.004698,-0.001554 -0.00386,-0.002649 0.002632,-0.003439 0.003709,-0.0120639 0.001899,-0.0152092 -4.2552e-4,-7.3969e-4 -1.9572e-4,-0.001329 6.9625e-4,-0.001785 7.3229e-4,-3.7447e-4 0.002666,-0.0025 0.004298,-0.004723 0.002427,-0.003307 0.002967,-0.004679 0.002969,-0.007539 1.67e-6,-0.003387 -0.003166,-0.0130551 -0.005111,-0.0155963 -0.001751,-0.002288 -0.002918,-0.006525 -0.00233,-0.00846 9.896e-4,-0.003258 -0.00135,-0.0106308 -0.004686,-0.0147655 -0.00165,-0.002045 -0.003575,-0.004165 -0.004277,-0.004711 -0.001163,-9.0396e-4 -0.001101,-0.001019 6.9199e-4,-0.001287 0.001083,-1.623e-4 0.005252,-8.4755e-4 0.009264,-0.001523 0.004013,-6.7529e-4 0.008047,-0.001061 0.008965,-8.5711e-4 9.1836e-4,2.0379e-4 0.00392,0.002385 0.006671,0.004846 0.002751,0.002462 0.006404,0.005709 0.008118,0.007216 0.004664,0.0041 0.006979,0.006907 0.007481,0.009069 3.2048e-4,0.001381 8.3738e-4,0.001887 0.001793,0.001755 0.005029,-6.9429e-4 -0.007145,-0.0209072 -0.0152908,-0.0253878 -0.001164,-6.4027e-4 -0.002116,-0.001527 -0.002116,-0.00197 0,-7.9627e-4 0.0117553,-0.005469 0.0158807,-0.006312 0.002059,-4.2092e-4 0.004941,6.236e-4 0.0112668,0.004083 0.002881,0.001575 0.0116172,0.008936 0.0159059,0.0134011 0.002309,0.002404 0.006118,0.006333 0.008466,0.008732 0.002347,0.002399 0.004495,0.005087 0.004774,0.005973 6.8063e-4,0.002167 0.002542,0.002045 0.003186,-2.0921e-4 0.002456,-0.008589 -0.002211,-0.0186023 -0.0119577,-0.0256545 -0.003119,-0.002257 -0.0139769,-0.007092 -0.0182811,-0.008142 -0.001416,-3.451e-4 -0.002574,-8.2139e-4 -0.002574,-0.001059 0,-2.3712e-4 0.001969,-8.6113e-4 0.004375,-0.001387 0.002406,-5.2558e-4 0.0055,-0.001203 0.006875,-0.001506 0.003666,-8.0641e-4 0.008385,-7.4889e-4 0.0223799,2.7279e-4 z m 0.0207451,0.024153 c -0.004246,0.001711 -0.005573,0.002904 -0.003227,0.002904 6.3138e-4,0 0.001635,-4.1066e-4 0.002231,-9.1253e-4 0.003881,-0.00327 0.009954,-0.002822 0.009954,7.3298e-4 0,0.00247 0.001082,0.002755 0.00627,0.001654 0.002281,-4.8374e-4 0.005553,-8.824e-4 0.007272,-8.859e-4 l 0.003125,-6.41e-6 0,0.00287 0,0.00287 0.004359,-0.001073 c 0.002397,-5.9044e-4 0.004646,-9.4936e-4 0.004997,-7.9767e-4 3.5098e-4,1.5169e-4 7.7e-5,0.001035 -6.088e-4,0.001962 -0.001365,0.001846 -0.001593,0.002911 -6.2195e-4,0.002907 3.4375e-4,0 0.001334,-0.001208 0.002202,-0.002683 0.001661,-0.002824 0.00107,-0.003876 -0.001922,-0.00342 -7.2656e-4,1.1072e-4 -0.002522,3.7984e-4 -0.003989,5.9802e-4 l -0.002668,3.9662e-4 1.3529e-4,-0.002372 c 7.442e-5,-0.001305 -5.15e-5,-0.002503 -2.7984e-4,-0.002663 -4.0377e-4,-2.824e-4 -0.007159,2.7827e-4 -0.0134778,0.001119 l -0.003125,4.1556e-4 0,-0.00207 c 0,-0.002294 -1.7097e-4,-0.002428 -0.00375,-0.002947 -0.001894,-2.7448e-4 -0.00356,6.48e-5 -0.006875,0.0014 z m 0.0854167,0.006253 c -0.001317,2.109e-4 -0.001458,0.001175 -0.001458,0.009981 0,0.006573 3.3924e-4,0.0102586 0.001042,0.0113163 0.001206,0.001816 0.002148,0.002003 0.002814,5.5781e-4 2.5852e-4,-5.609e-4 0.001184,-0.002248 0.002057,-0.00375 8.7294e-4,-0.001502 0.001587,-0.003618 0.001587,-0.004703 0,-0.002396 -0.003097,-0.0127673 -0.003963,-0.0132733 -3.4119e-4,-1.9924e-4 -0.001277,-2.5723e-4 -0.002079,-1.2885e-4 z m 0.002645,0.006267 c 0.001671,0.005979 0.001795,0.008378 5.4282e-4,0.0104741 -0.002322,0.003887 -0.00298,0.002437 -0.002967,-0.006541 1.3e-5,-0.008776 7.4075e-4,-0.009957 0.002424,-0.003934 z m -0.10826994,0.005591 c -0.003896,9.8222e-4 -0.008208,0.002027 -0.009583,0.002323 -0.003719,7.9854e-4 -0.01625,0.005338 -0.01625,0.005887 0,8.419e-4 0.001319,5.2051e-4 0.007301,-0.001779 0.003226,-0.00124 0.008246,-0.002792 0.0111571,-0.003448 0.002911,-6.5682e-4 0.006947,-0.001622 0.008969,-0.002146 0.002022,-5.2349e-4 0.004579,-8.7291e-4 0.005682,-7.7646e-4 0.001991,1.7395e-4 0.00198,2.0076e-4 -0.001385,0.003552 -0.003671,0.003656 -0.004069,0.00449 -0.002141,0.00449 6.875e-4,0 0.00125,-2.7774e-4 0.00125,-6.1713e-4 0,-3.3945e-4 3.7959e-4,-4.5309e-4 8.4353e-4,-2.5256e-4 4.6395e-4,2.0046e-4 0.003702,6.148e-5 0.007197,-3.0892e-4 0.007056,-7.479e-4 0.008272,-3.6136e-4 0.006886,0.002188 -4.1798e-4,7.6877e-4 -7.5995e-4,0.001732 -7.5995e-4,0.00214 0,0.001079 0.00397,0.002202 0.008647,0.002445 0.005928,3.0903e-4 0.006597,9.0286e-4 0.004632,0.004109 -0.002368,0.003862 -0.002191,0.004192 0.002346,0.004396 0.002315,1.039e-4 0.003958,4.5985e-4 0.003958,8.5752e-4 0,0.001318 0.001126,0.001445 0.002054,2.3211e-4 0.001359,-0.001776 4.1632e-4,-0.002369 -0.00377,-0.002369 -0.004335,0 -0.004683,-7.3724e-4 -0.002051,-0.004348 0.002151,-0.00295 0.00132,-0.003599 -0.005229,-0.00409 -0.008242,-6.1766e-4 -0.008245,-6.19e-4 -0.007659,-0.003411 7.3269e-4,-0.00349 -8.3549e-4,-0.004836 -0.004665,-0.004003 -0.004724,0.001028 -0.0115971,0.001476 -0.0115971,7.5495e-4 0,-3.5058e-4 3.75e-4,-6.3741e-4 8.3334e-4,-6.3741e-4 4.5833e-4,0 8.3333e-4,-3.0303e-4 8.3333e-4,-6.7343e-4 0,-3.7039e-4 9.375e-4,-0.001533 0.002083,-0.002583 0.002351,-0.002155 0.002636,-0.003153 9.015e-4,-0.003153 -6.5002e-4,0 -0.001681,-1.2698e-4 -0.002292,-2.8222e-4 -6.1041e-4,-1.5525e-4 -0.004297,5.2144e-4 -0.008193,0.001504 z m 0.13531134,0.006209 c 5.2678e-4,0.003264 0.002732,0.007139 0.004063,0.007139 0.001343,0 0.002488,-0.002876 0.001948,-0.004892 -5.6648e-4,-0.002112 -0.004102,-0.005598 -0.005677,-0.005598 -5.7114e-4,0 -6.8659e-4,0.001161 -3.3318e-4,0.003351 z m 0.003481,0.001001 c 0.001393,0.002331 0.001553,0.003807 4.133e-4,0.003807 -7.563e-4,0 -0.002525,-0.003558 -0.002535,-0.005099 -8.42e-6,-0.001314 8.9187e-4,-7.6504e-4 0.002121,0.001292 z m -0.19154186,0.0222273 c -8.1261e-4,0.005506 -0.005779,0.0152875 -0.009486,0.018684 -0.003357,0.003076 -0.003415,0.003566 -4.726e-4,0.004017 0.00126,1.9314e-4 0.002754,4.5035e-4 0.003318,5.7158e-4 0.001099,2.3597e-4 0.002019,-5.4452e-4 0.006552,-0.005563 0.003995,-0.004422 0.005736,-0.008748 0.005513,-0.0136946 -2.1392e-4,-0.004732 -0.001438,-0.007284 -0.003493,-0.007284 -0.001147,0 -0.00155,6.8159e-4 -0.001931,0.003269 z m 0.003583,0.00485 c 0,0.002604 -5.4755e-4,0.00564 -0.001279,0.007089 -0.001552,0.003076 -0.007022,0.009124 -0.008652,0.009567 -0.001861,5.0573e-4 -0.003129,-7.2932e-4 -0.00197,-0.001919 0.001686,-0.00173 0.006078,-0.008398 0.006575,-0.009981 2.6082e-4,-8.3199e-4 9.7015e-4,-0.002693 0.001576,-0.004135 6.0615e-4,-0.001442 0.001334,-0.003354 0.001617,-0.004249 9.4756e-4,-0.002992 0.002133,-9.7645e-4 0.002133,0.003627 z m 0.0533333,-0.005517 c -0.007165,0.001481 -0.01,0.002258 -0.01,0.00274 0,7.2564e-4 0.00119,5.9785e-4 0.005594,-6.0076e-4 0.004696,-0.001278 0.0105498,-0.002107 0.0100966,-0.001429 -0.001914,0.002863 -0.003624,0.004846 -0.004178,0.004846 -3.7345e-4,0 -6.7899e-4,3.9336e-4 -6.7899e-4,8.7412e-4 0,0.001054 6.209e-4,0.001071 0.006746,1.8625e-4 0.003724,-5.3788e-4 0.005779,-5.2879e-4 0.009425,4.196e-5 0.002564,4.0134e-4 0.004663,9.4015e-4 0.004663,0.001197 0,2.5722e-4 -5.7698e-4,0.001611 -0.001282,0.003009 -0.001186,0.00235 -0.001174,0.002597 1.5928e-4,0.003278 0.001597,8.1671e-4 0.003623,9.8137e-4 0.003623,2.945e-4 0,-2.4341e-4 -7.3377e-4,-7.6302e-4 -0.001631,-0.001155 -0.001531,-6.6853e-4 -0.001553,-8.412e-4 -3.6988e-4,-0.002822 0.001804,-0.00302 0.001275,-0.004528 -0.00175,-0.004978 -0.003971,-5.9056e-4 -0.0105931,-5.6014e-4 -0.0137003,6.305e-5 -0.001571,3.1503e-4 -0.003002,4.7092e-4 -0.00318,3.4644e-4 -1.7803e-4,-1.2453e-4 6.4089e-4,-0.001295 0.00182,-0.002601 0.003768,-0.004174 0.002544,-0.004925 -0.005357,-0.003292 z m 0.12118575,0.005411 c -0.002257,0.00369 -0.003377,0.0202826 -0.001512,0.0223929 2.3334e-4,2.6403e-4 0.002142,4.8005e-4 0.004242,4.8005e-4 l 0.003817,0 -5.8808e-4,-0.00864 c -3.2344e-4,-0.004752 -9.692e-4,-0.009669 -0.001435,-0.0109266 -4.6582e-4,-0.001258 -0.001046,-0.003008 -0.00129,-0.00389 -6.0678e-4,-0.002197 -0.001649,-0.002009 -0.003234,5.8275e-4 z m 0.00382,0.009023 c 4.2426e-4,0.00329 7.8401e-4,0.007377 7.9944e-4,0.009081 2.759e-5,0.00304 -1.5e-5,0.003095 -0.002264,0.002914 -0.002133,-1.7163e-4 -0.002335,-4.265e-4 -0.002919,-0.003681 -6.0931e-4,-0.003394 4.9961e-4,-0.014355 0.001575,-0.0155721 0.00106,-0.0012 0.002046,0.001348 0.002808,0.007259 z m -0.0978285,0.0384699 c -0.00547,0.004051 -0.005656,0.004283 -0.004545,0.005667 6.3727e-4,7.9398e-4 0.002155,0.001835 0.003373,0.002313 0.002027,7.9559e-4 0.00237,7.7215e-4 0.004056,-2.7706e-4 0.001013,-6.304e-4 0.00253,-0.002195 0.003372,-0.003477 0.001799,-0.00274 0.002143,-0.00845 5.0781e-4,-0.00845 -5.8271e-4,0 -0.003626,0.001901 -0.006763,0.004224 z m 0.006479,-2.9035e-4 c -4.9306e-4,0.002804 -0.003476,0.007139 -0.004913,0.007139 -0.002257,0 -0.003744,-7.4005e-4 -0.003744,-0.001863 0,-0.001146 0.007086,-0.007461 0.008372,-0.007461 3.681e-4,0 4.9633e-4,9.834e-4 2.8494e-4,0.002185 z m -0.0201016,0.0190211 -0.005959,0.00492 0.002038,0.001538 c 0.002028,0.00153 0.002051,0.001532 0.004593,4.8596e-4 0.002765,-0.001138 0.004974,-0.003348 0.006618,-0.006622 8.5967e-4,-0.001712 8.3442e-4,-0.002351 -1.4443e-4,-0.003657 l -0.001186,-0.001583 -0.005959,0.00492 z m 0.005612,-7.9148e-4 c 0,0.003542 -0.004562,0.00725 -0.008119,0.0066 -0.001727,-3.1579e-4 -0.001582,-5.4817e-4 0.002519,-0.004052 0.00466,-0.003981 0.005601,-0.004409 0.005601,-0.002548 z m 0.0268455,0.007709 c -6.7282e-4,5.7599e-4 -0.007551,0.007653 -0.009,0.009261 -5.5683e-4,6.176e-4 0.005385,0.002816 0.006675,0.00247 0.001717,-4.6079e-4 0.003921,-0.004673 0.004423,-0.008452 4.3633e-4,-0.003288 -4.5664e-4,-0.004684 -0.002098,-0.003279 z m 6.5453e-4,0.003086 c 0,0.001881 -0.001898,0.006077 -0.003051,0.006746 -9.4332e-4,5.4747e-4 -0.001472,5.054e-4 -0.002476,-1.9712e-4 -0.001147,-8.0232e-4 -0.001008,-0.001227 0.001371,-0.004175 0.002623,-0.003251 0.004156,-0.004126 0.004156,-0.002374 z M 0.34251578,0.37998763 c 0.0123163,0.004369 0.0192348,0.009049 0.0239869,0.0162273 0.003017,0.004557 0.004253,0.009746 0.002908,0.0122065 -7.1952e-4,0.001316 -8.9114e-4,0.001228 -0.003617,-0.001855 -0.009673,-0.0109424 -0.0216551,-0.0212595 -0.0290841,-0.025043 -0.002536,-0.001291 -0.004787,-0.002452 -0.005003,-0.002579 -2.1589e-4,-1.2692e-4 1.5599e-4,-4.6789e-4 8.2641e-4,-7.5763e-4 0.001597,-6.9021e-4 0.00437,-1.8998e-4 0.009983,0.001801 z m -0.10104167,1.748e-5 0.003542,0.001061 0,0.007354 c 0,0.005617 2.46e-4,0.007299 0.001042,0.007124 0.001316,-2.9044e-4 0.009599,-0.007786 0.010948,-0.009907 l 0.001011,-0.00159 0.003039,0.001444 c 0.001671,7.9418e-4 0.003787,0.001444 0.0047,0.001444 0.00218,0 0.002852,8.5466e-4 0.002938,0.003741 7.117e-5,0.002364 9.072e-5,0.002378 0.003405,0.002453 0.001833,4.137e-5 0.003921,-2.8369e-4 0.004639,-7.2238e-4 0.001125,-6.8706e-4 0.001772,-5.5793e-4 0.004669,9.3187e-4 0.006281,0.00323 0.0109872,0.009935 0.0117184,0.0166961 5.4708e-4,0.005058 -3.492e-5,0.005315 -0.004976,0.002193 -0.003351,-0.002117 -0.010795,-0.004881 -0.0131756,-0.004891 -7.1041e-4,-5.82e-6 -0.001648,-2.5058e-4 -0.002083,-5.4988e-4 -0.00127,-8.7267e-4 -0.007231,-0.001016 -0.007648,-1.8427e-4 -2.4397e-4,4.8613e-4 5.3872e-4,7.2844e-4 0.002353,7.2844e-4 0.003093,0 0.008254,0.001166 0.008254,0.001865 0,2.5612e-4 8.6409e-4,4.6567e-4 0.00192,4.6567e-4 0.002549,0 0.008642,0.002815 0.0121636,0.00562 0.001559,0.001241 0.00354,0.003697 0.004404,0.005457 0.005025,0.0102414 0.005896,0.0126956 0.005994,0.0168947 8.911e-5,0.003829 -2.0427e-4,0.004757 -0.002368,0.007489 -0.003152,0.003979 -0.0127255,0.0101352 -0.019271,0.0123916 -0.002791,9.62e-4 -0.007384,0.002056 -0.0102083,0.002431 -0.003293,4.3764e-4 -0.005134,9.6637e-4 -0.005134,0.001474 0,0.001796 0.0132959,-9.8411e-4 0.0203381,-0.004253 0.002479,-0.001151 0.004963,-0.002476 0.00552,-0.002945 0.001544,-0.001301 0.002114,-0.001054 0.003282,0.00142 7.1979e-4,0.001525 8.731e-4,0.003395 4.6573e-4,0.005682 -6.977e-4,0.003916 -0.001649,0.005448 -0.003385,0.005448 -6.7138e-4,0 -0.001221,3.4014e-4 -0.001221,7.5586e-4 0,0.0016 -0.009496,0.006936 -0.0101411,0.005699 -6.7123e-4,-0.001288 -0.010151,-0.007649 -0.0107621,-0.007222 -3.7402e-4,2.6157e-4 -3.641e-4,0.001525 2.2e-5,0.002807 3.8613e-4,0.001282 9.4276e-4,0.003708 0.001237,0.00539 l 5.3487e-4,0.003059 -0.003154,9.454e-4 c -0.001735,5.1998e-4 -0.003764,0.001158 -0.004509,0.001417 -7.4566e-4,2.5945e-4 -0.002677,6.4507e-4 -0.004292,8.5692e-4 -0.002751,3.6087e-4 -0.00297,2.7572e-4 -0.003481,-0.001349 -7.6584e-4,-0.002438 -0.005523,-0.006114 -0.00956,-0.007387 -0.003494,-0.001102 -0.005125,-9.2018e-4 -0.003625,4.0337e-4 4.6296e-4,4.0839e-4 0.001318,0.002934 0.001901,0.005612 8.6719e-4,0.003986 8.624e-4,0.004954 -2.642e-5,0.005338 -0.003207,0.001386 -0.0356047,0.001282 -0.0380721,-1.2299e-4 -6.8674e-4,-3.909e-4 -0.002687,-1.4505e-4 -0.00625,7.6812e-4 -0.004621,0.001184 -0.006767,0.001344 -0.0181566,0.001354 -0.0171022,1.509e-5 -0.0259949,-0.001551 -0.0355245,-0.006257 -0.001434,-7.0829e-4 -0.003234,-0.00155 -0.003998,-0.001871 -0.001239,-5.1902e-4 -0.001044,-9.4071e-4 0.001775,-0.003856 0.009861,-0.010197 0.0232908,-0.0184727 0.0343682,-0.0211789 0.001578,-3.856e-4 0.003035,-0.001047 0.003237,-0.001471 3.5953e-4,-7.5425e-4 -1.0594e-4,-7.2022e-4 -0.004912,3.595e-4 -0.001003,2.2541e-4 -0.001645,-5.5938e-4 -0.00277,-0.003389 -0.002738,-0.006887 -0.003413,-0.0121232 -0.002366,-0.0183528 0.001341,-0.007979 0.003464,-0.0126642 0.005848,-0.012905 0.001014,-1.0239e-4 0.001844,9.429e-5 0.001844,4.3707e-4 0,3.4283e-4 5.625e-4,6.2331e-4 0.00125,6.2331e-4 6.875e-4,0 0.00125,-2.2162e-4 0.00125,-4.9243e-4 0,-6.6177e-4 -0.002911,-0.002469 -0.004302,-0.002671 -0.003657,-5.306e-4 -0.019463,-0.005961 -0.0251348,-0.008636 -0.007968,-0.003757 -0.0159876,-0.009465 -0.0201249,-0.0143225 -0.002095,-0.00246 -0.003707,-0.004838 -0.003582,-0.005284 1.2485e-4,-4.465e-4 0.003597,-0.001719 0.007716,-0.002828 0.007305,-0.001967 0.007805,-0.002018 0.0204167,-0.0021 0.00711,-4.662e-5 0.0171835,8.573e-5 0.0223847,2.9365e-4 0.008011,3.2028e-4 0.0103042,2.0414e-4 0.015,-7.595e-4 0.003619,-7.4271e-4 0.008813,-0.001205 0.0149624,-0.001333 0.005181,-1.0752e-4 0.009677,-3.757e-4 0.009992,-5.9598e-4 0.001143,-7.9913e-4 0.0204708,3.9918e-4 0.0241308,0.001496 z m -0.0727083,0.007589 c -0.008708,2.5414e-4 -0.0185294,4.7157e-4 -0.0218246,4.8322e-4 -0.003295,1.166e-5 -0.006198,2.5519e-4 -0.006451,5.4126e-4 -2.5283e-4,2.8607e-4 0.001748,0.002534 0.004447,0.004995 0.006702,0.006113 0.0205409,0.0141283 0.0288064,0.0166851 0.004938,0.001528 0.006323,0.001206 0.005737,-0.001334 -2.8075e-4,-0.001217 8.0774e-4,-0.005492 0.002962,-0.0116323 0.003728,-0.0106273 0.003678,-0.0104397 0.002781,-0.0102989 -3.4375e-4,5.419e-5 -0.00775,3.0606e-4 -0.0164583,5.6019e-4 z m 0.01375,0.002442 c 0,0.001722 -0.00291,0.0112372 -0.004099,0.0134001 -4.957e-4,9.0228e-4 -9.0127e-4,0.002418 -9.0127e-4,0.003369 0,0.003379 -0.003487,0.002797 -0.0131589,-0.002198 -0.003533,-0.001825 -0.009049,-0.005188 -0.0122578,-0.007474 -0.009099,-0.006483 -0.009497,-0.007034 -0.005208,-0.007201 0.00149,-5.828e-5 0.004771,-3.3007e-4 0.007292,-6.0449e-4 0.002521,-2.7442e-4 0.009927,-5.3164e-4 0.0164583,-5.7162e-4 l 0.011875,-7.284e-5 0,0.001352 z m 0.0214966,0.006078 c -7.5456e-4,0.0148681 0.002393,0.0204395 0.0127281,0.0225285 0.004649,9.398e-4 0.008476,0.001166 0.0128586,7.5892e-4 0.00376,-3.4901e-4 0.00375,-3.4523e-4 0.00375,-0.001361 0,-7.3158e-4 -5.433e-4,-8.7098e-4 -0.002389,-6.1287e-4 l -0.002389,3.3409e-4 -4.023e-4,-0.005378 c -6.5347e-4,-0.008736 -0.003474,-0.0108098 -0.0179453,-0.0131891 l -0.004375,-7.1935e-4 0,-0.002856 c 0,-0.004016 -0.00163,-0.003576 -0.001837,4.9516e-4 z m 0.011238,0.00541 c 0.003648,8.3461e-4 0.005989,0.001816 0.007907,0.003316 0.002902,0.002268 0.003096,0.003468 5.1859e-4,0.003205 -8.6733e-4,-8.869e-5 -0.005233,-1.8566e-4 -0.009702,-2.1544e-4 -0.009083,-6.067e-5 -0.008172,4.7721e-4 -0.008498,-0.005014 -1.4019e-4,-0.002357 -3.309e-5,-0.002477 0.002223,-0.002477 0.001303,0 0.004702,5.3345e-4 0.007552,0.001185 z m 0.005703,0.007958 c 0.002715,3.8811e-4 0.00274,4.1637e-4 7.2917e-4,8.1608e-4 -0.002689,5.3432e-4 -0.007826,6.2966e-4 -0.009515,1.7646e-4 -0.004263,-0.001144 0.002434,-0.0019 0.008786,-9.9254e-4 z m -0.0101903,0.001719 c 0.00159,7.7868e-4 0.003246,8.9196e-4 0.008935,6.1113e-4 l 0.006984,-3.4463e-4 0,0.001973 c 0,0.001085 -3.8115e-4,0.002674 -8.47e-4,0.003531 -7.738e-4,0.001423 -0.001116,0.001523 -0.003958,0.001153 -0.005648,-7.3485e-4 -0.0109297,-0.002678 -0.0126885,-0.004668 -0.002741,-0.003101 -0.002081,-0.004047 0.001574,-0.002256 z m 0.0512795,0.003421 c -8.3352e-4,0.003107 0.002665,0.005255 0.004498,0.002762 8.6215e-4,-0.001172 4.8014e-4,-0.002187 -0.001402,-0.003724 -0.001888,-0.001542 -0.002473,-0.00136 -0.003096,9.6252e-4 z m 0.003613,0.001566 c -4.1622e-4,8.732e-4 -0.001861,6.2273e-4 -0.002158,-3.7407e-4 -1.855e-4,-6.2284e-4 1.4846e-4,-7.9085e-4 0.001077,-5.4172e-4 7.4016e-4,1.986e-4 0.001227,6.1072e-4 0.001081,9.1579e-4 z m 0.003736,-0.003226 c -0.002187,6.1714e-4 -8.8806e-4,0.004276 0.001518,0.004276 0.002053,0 0.003258,-0.001704 0.002369,-0.003351 -6.8856e-4,-0.001275 -0.001751,-0.001528 -0.003887,-9.2524e-4 z m 0.002934,0.002054 c -5.1583e-4,0.001081 -0.00231,0.001261 -0.00231,2.315e-4 0,-5.0746e-4 5.9375e-4,-9.2267e-4 0.001319,-9.2267e-4 7.257e-4,0 0.001171,3.1142e-4 9.8959e-4,6.9202e-4 z m 0.004358,-4.4313e-4 c 0,4.722e-4 5.3216e-4,0.001068 0.001183,0.001325 0.001965,7.7436e-4 0.005463,0.005589 0.005474,0.007534 1.233e-5,0.002243 -0.001836,0.005453 -0.003879,0.006735 -8.3991e-4,5.2728e-4 -0.002994,0.001149 -0.004787,0.001382 -0.002829,3.6731e-4 -0.003189,2.9552e-4 -0.002729,-5.437e-4 6.8467e-4,-0.001248 -0.001605,-0.004604 -0.003793,-0.005559 -0.006375,-0.002784 -0.008011,-0.003177 -0.0145938,-0.003503 -0.004882,-2.4185e-4 -0.006875,-1.4762e-4 -0.006875,3.2494e-4 0,7.479e-4 0.006549,0.001599 0.008426,0.001095 6.6857e-4,-1.7943e-4 0.002046,2.1492e-4 0.003061,8.7628e-4 0.001625,0.001059 0.00184,0.001774 0.001798,0.005988 -2.642e-5,0.002632 -3.1385e-4,0.005833 -6.3875e-4,0.007114 -5.5895e-4,0.002204 -8.201e-4,0.002375 -0.004858,0.003179 -0.004752,9.4598e-4 -0.007609,0.002942 -0.004212,0.002942 0.001058,0 0.00228,-2.2109e-4 0.002715,-4.9137e-4 4.3542e-4,-2.7023e-4 0.002938,-9.4814e-4 0.005562,-0.001506 0.004679,-9.9558e-4 0.0113223,-0.00468 0.012584,-0.00698 8.0031e-4,-0.001458 0.004855,-0.001129 0.007541,6.13e-4 0.005234,0.003394 0.007111,0.009879 0.003854,0.0133178 -0.002002,0.002114 -0.002137,0.003357 -3.3643e-4,0.003102 0.001798,-2.5461e-4 0.003646,-0.004198 0.003639,-0.007764 -6.66e-6,-0.003393 -0.002065,-0.006876 -0.005475,-0.009264 -0.001594,-0.001117 -0.002055,-0.001775 -0.001359,-0.001945 5.7844e-4,-1.4091e-4 0.002225,-0.001448 0.003659,-0.002906 0.003485,-0.003542 0.003618,-0.007409 3.8814e-4,-0.0113261 -0.002459,-0.002982 -0.006348,-0.005273 -0.006348,-0.003739 z m -0.009711,0.0123082 c 0.003436,0.002334 0.003695,0.003576 0.001464,0.007011 -0.001482,0.002282 -0.005546,0.005136 -0.006643,0.004665 -2.8987e-4,-1.2441e-4 -4.106e-4,-0.003268 -2.6827e-4,-0.006985 2.935e-4,-0.007665 6.3477e-4,-0.007959 0.005447,-0.004691 z m 0.001536,-0.006297 c 2.9901e-4,0.002521 0.002512,0.003272 0.003982,0.001351 0.001196,-0.001562 -2.2769e-4,-0.003532 -0.002553,-0.003532 -0.00144,0 -0.00165,3.1993e-4 -0.001429,0.00218 z m 0.003175,4.419e-4 c 0,4.8077e-4 -3.75e-4,8.7413e-4 -8.3334e-4,8.7413e-4 -4.5946e-4,4.9e-7 -8.3446e-4,-3.9287e-4 -8.3446e-4,-8.7364e-4 0,-4.8077e-4 3.75e-4,-8.7412e-4 8.3333e-4,-8.7412e-4 4.5834e-4,0 8.3334e-4,3.9335e-4 8.3334e-4,8.7412e-4 z m -0.0838963,-0.001065 c -0.003003,2.9353e-4 -0.005137,0.001683 -0.003907,0.002543 4.3606e-4,3.0489e-4 0.00305,7.1934e-4 0.005808,9.2098e-4 0.00382,2.7925e-4 0.005648,1.377e-4 0.007672,-5.9412e-4 0.002617,-9.4644e-4 0.003303,-0.001748 0.001984,-0.002318 -0.001087,-4.6993e-4 -0.008684,-8.3287e-4 -0.0115567,-5.5204e-4 z m 0.007646,0.001648 c 0,7.0607e-4 -0.005031,0.001112 -0.006954,5.6125e-4 -0.001215,-3.4802e-4 -0.001181,-4.5355e-4 2.8767e-4,-8.8782e-4 0.002171,-6.4219e-4 0.006667,-4.2197e-4 0.006667,3.2657e-4 z m -0.0179175,0.010589 c -0.004656,5.0734e-4 -0.005833,8.3531e-4 -0.005833,0.001624 0,5.4791e-4 0.001337,9.4907e-4 0.003958,0.001188 0.002177,1.9825e-4 0.005803,6.4446e-4 0.008058,9.9166e-4 0.004705,7.2448e-4 0.0222289,2.1131e-4 0.0262488,-7.6864e-4 0.002278,-5.5537e-4 0.003594,-0.002137 0.001943,-0.002335 -0.003088,-3.7132e-4 -0.006636,-5.0547e-4 -0.0185417,-7.0099e-4 -0.007563,-1.2418e-4 -0.0146875,-1.236e-4 -0.0158333,0 z m 0.0294692,0.001919 c 5.9665e-4,4.1725e-4 -2.838e-4,6.2663e-4 -0.002844,6.7646e-4 -0.00204,3.962e-5 -0.005583,1.7785e-4 -0.007875,3.0699e-4 -0.005303,2.9883e-4 -0.0203867,-0.001028 -0.0182256,-0.001604 0.002362,-6.2867e-4 0.0279427,-8.054e-5 0.0289448,6.2022e-4 z m -0.0219692,0.00979 c 0,9.3415e-4 9.7408e-4,0.00141 0.004457,0.002176 0.005141,0.001131 0.007913,0.001005 0.009189,-4.1888e-4 0.001446,-0.001614 -3.189e-4,-0.002247 -0.007285,-0.002616 -0.006015,-3.1822e-4 -0.006361,-2.7143e-4 -0.006361,8.5888e-4 z m 0.0103485,4.9207e-4 c 7.2499e-4,1.9452e-4 0.001318,5.8788e-4 0.001318,8.7413e-4 0,8.3869e-4 -0.004536,5.9732e-4 -0.006299,-3.352e-4 -0.001533,-8.1078e-4 -0.001479,-8.5659e-4 0.001023,-8.7413e-4 0.001452,-9.9e-6 0.003233,1.4062e-4 0.003958,3.352e-4 z m 0.0740769,0.00154 c 1.2765e-4,0.002002 4.602e-4,0.002477 0.001734,0.002477 8.6671e-4,0 0.001971,-4.3858e-4 0.002455,-9.7453e-4 0.001223,-0.001356 -5.6546e-4,-0.003979 -0.002713,-0.003979 -0.001392,0 -0.001611,3.6737e-4 -0.001476,0.002477 z m 0.003161,0.001192 c -0.00107,7.4796e-4 -0.002154,1.6987e-4 -0.001362,-7.2611e-4 3.0674e-4,-3.4703e-4 9.3946e-4,-4.6603e-4 0.001406,-2.6434e-4 5.6917e-4,2.4598e-4 5.5479e-4,5.7191e-4 -4.366e-5,9.9045e-4 z m -0.0555032,-0.001981 c -0.005586,0.001779 -0.005989,0.002348 -0.009519,0.0134638 -0.001892,0.005958 -0.002168,0.009104 -9.1994e-4,0.0104846 5.9845e-4,6.6195e-4 0.001018,7.0722e-4 0.001757,1.8983e-4 7.3041e-4,-5.1077e-4 7.3809e-4,-0.001148 3.091e-5,-0.002566 -5.1734e-4,-0.001038 -7.3581e-4,-0.00203 -4.855e-4,-0.002205 2.5031e-4,-1.7504e-4 0.003346,-3.292e-4 0.006879,-3.4256e-4 0.006031,-2.279e-5 0.006638,-1.4496e-4 0.009937,-0.002 0.004585,-0.002578 0.006455,-0.006269 0.00585,-0.0115453 -3.8048e-4,-0.003315 -2.7267e-4,-0.003698 9.3674e-4,-0.003334 0.002419,7.2844e-4 0.00595,9.7809e-4 0.00595,4.2063e-4 0,-6.6585e-4 -0.009204,-0.002883 -0.01375,-0.003312 -0.002261,-2.1346e-4 -0.004406,2.681e-5 -0.006667,7.4662e-4 z m 0.009737,0.001418 c 8.4919e-4,4.5688e-4 0.001603,0.001971 0.001907,0.003833 l 5.0327e-4,0.003078 -0.003574,-4.1404e-4 c -0.001966,-2.2774e-4 -0.004244,-6.6043e-4 -0.005064,-9.6154e-4 -8.1954e-4,-3.0111e-4 -0.003163,-3.7197e-4 -0.005208,-1.5752e-4 -0.002045,2.1446e-4 -0.003718,2.6813e-4 -0.003718,1.1935e-4 0,-1.4883e-4 4.1587e-4,-0.001105 9.2416e-4,-0.002124 0.001568,-0.003145 0.010652,-0.005298 0.0142296,-0.003373 z m -0.00432,0.007445 c 7.8807e-4,3.0664e-4 -5.0256e-4,4.9295e-4 -0.003492,5.0414e-4 -0.004769,1.806e-5 -0.00733,-8.581e-4 -0.003812,-0.001303 0.002164,-2.7371e-4 0.005479,8.905e-5 0.007304,7.9913e-4 z m -2.1754e-4,0.001979 c 0.006145,0 0.006904,6.588e-4 0.003763,0.003269 -0.003751,0.003117 -0.010002,0.004272 -0.0148189,0.002737 -0.001938,-6.1746e-4 -0.002126,-9.3034e-4 -0.001661,-0.002768 0.001046,-0.004142 0.001105,-0.004191 0.004457,-0.003692 0.001683,2.5023e-4 0.0054,4.5501e-4 0.00826,4.5501e-4 z m 0.0402837,-0.007632 c -6.022e-4,5.0746e-4 -7.3505e-4,0.001449 -3.4963e-4,0.002477 3.419e-4,9.1212e-4 5.1128e-4,0.002161 3.7641e-4,0.002776 -1.9768e-4,9.0116e-4 2.542e-4,7.6864e-4 0.002331,-6.8363e-4 0.002706,-0.001892 0.003252,-0.003517 0.001576,-0.004688 -0.001325,-9.2681e-4 -0.002744,-8.8386e-4 -0.003934,1.1905e-4 z m 0.003354,0.002268 c -0.00107,7.4796e-4 -0.002154,1.6987e-4 -0.001362,-7.2611e-4 3.0673e-4,-3.4703e-4 9.3945e-4,-4.6602e-4 0.001406,-2.6433e-4 5.6916e-4,2.4598e-4 5.5479e-4,5.7191e-4 -4.367e-5,9.9044e-4 z m 0.004519,-3.9633e-4 c -7.407e-4,5.1795e-4 -0.00123,0.001108 -0.001088,0.001311 1.4231e-4,2.0315e-4 0.001187,0.001416 0.002322,0.002696 l 0.002063,0.002327 7.1276e-4,-0.003131 c 5.497e-4,-0.002415 4.5594e-4,-0.003245 -4.0984e-4,-0.003629 -0.001581,-7.0064e-4 -0.002072,-6.4248e-4 -0.0036,4.264e-4 z m 0.002894,0.001424 c 0,6.5997e-4 -3.75e-4,0.001038 -8.3333e-4,8.3975e-4 -4.5833e-4,-1.9808e-4 -8.3333e-4,-7.3806e-4 -8.3333e-4,-0.0012 0,-4.6189e-4 3.75e-4,-8.3974e-4 8.3333e-4,-8.3974e-4 4.5833e-4,0 8.3333e-4,5.3998e-4 8.3333e-4,0.0012 z m -0.0933988,0.00249 c -0.001182,3.7459e-4 -0.003994,0.001828 -0.00625,0.00323 -0.002256,0.001402 -0.005414,0.003152 -0.007018,0.003888 -0.001604,7.3684e-4 -0.004229,0.002165 -0.005833,0.003174 -0.001604,0.001009 -0.004154,0.002512 -0.005666,0.003341 -0.001512,8.2902e-4 -0.003704,0.002646 -0.004871,0.004038 -0.001167,0.001392 -0.002461,0.002531 -0.002875,0.002531 -4.1479e-4,0 -7.5415e-4,4.9267e-4 -7.5415e-4,0.001095 0,0.003203 0.0228308,0.005768 0.037274,0.004188 0.0101727,-0.001113 0.015226,-0.002274 0.015226,-0.003499 0,-2.2225e-4 -0.001466,-9.8012e-4 -0.003257,-0.001684 -0.004662,-0.001832 -0.0115998,-0.007423 -0.0122584,-0.009878 -2.9818e-4,-0.001111 -3.3967e-4,-0.004086 -9.223e-5,-0.006611 4.8155e-4,-0.004913 3.3347e-4,-0.005069 -0.003625,-0.003814 z m 0.001732,0.00613 c 0,0.004437 0.001147,0.008245 0.002484,0.008245 3.6004e-4,0 8.3874e-4,4.9232e-4 0.001064,0.001094 2.2502e-4,6.0173e-4 0.002425,0.002204 0.004889,0.00356 0.002464,0.001356 0.004587,0.002663 0.004719,0.002903 5.386e-4,9.8678e-4 -0.013915,0.002933 -0.0217382,0.002928 -0.011408,-8.14e-6 -0.0230844,-0.002082 -0.0230844,-0.004099 0,-0.001987 0.008094,-0.008097 0.0154167,-0.0116372 0.001833,-8.8642e-4 0.005725,-0.002952 0.008648,-0.00459 0.002923,-0.001638 0.005829,-0.002979 0.006458,-0.002979 8.7236e-4,0 0.001144,0.001086 0.001144,0.004575 z m 0.070625,-0.077911 c 0.00149,3.0081e-4 0.002708,7.5769e-4 0.002708,0.001015 0,0.00201 -0.005925,0.009384 -0.00754,0.009384 -3.248e-4,0 -6.1727e-4,-0.002645 -6.4994e-4,-0.005879 -5.367e-5,-0.005312 7.717e-5,-0.005839 0.001357,-0.005473 7.7891e-4,2.2308e-4 0.002635,6.5175e-4 0.004125,9.5257e-4 z m 0.19817465,0.004588 c 0.006239,0.002082 0.007039,0.002527 0.007076,0.003934 2.35e-5,8.7232e-4 3.284e-4,0.003384 6.7748e-4,0.005582 5.5521e-4,0.003496 3.9813e-4,0.004353 -0.001254,0.006847 -0.001039,0.001568 -0.002234,0.002851 -0.002656,0.002851 -4.2157e-4,0 -0.001738,-0.002032 -0.002926,-0.004516 -0.005131,-0.0107321 -0.005927,-0.0122196 -0.007799,-0.0145688 -0.001085,-0.001362 -0.001563,-0.002477 -0.001063,-0.002477 5.0038e-4,0 0.004075,0.001056 0.007943,0.002348 z m -0.13834563,0.002003 c 0.002715,0.001448 0.009022,0.007443 0.0103256,0.009813 3.8651e-4,7.0309e-4 0.001682,0.002769 0.002878,0.004592 0.002375,0.003617 0.002508,0.003971 0.001496,0.003971 -3.7394e-4,0 -0.001574,-0.001115 -0.002667,-0.002477 -0.001093,-0.001362 -0.003518,-0.003657 -0.005389,-0.005099 -0.001871,-0.001442 -0.004887,-0.003934 -0.006702,-0.005536 -0.001815,-0.001603 -0.004053,-0.003356 -0.004973,-0.003896 -0.001673,-9.8182e-4 -0.001673,-9.8216e-4 -6.66e-6,-0.001875 0.002137,-0.001146 0.001893,-0.00117 0.005037,5.0687e-4 z m -0.0375981,0.001198 c 0.00193,0.001021 0.001671,0.001268 -0.001606,0.001533 -0.002065,1.6708e-4 -0.002546,-2.564e-5 -0.002766,-0.001109 -3.1515e-4,-0.001552 0.001845,-0.001762 0.004372,-4.2454e-4 z m 0.26422738,0.0205294 c 0.001861,0.003191 0.005417,0.0110086 0.005417,0.01191 0,5.8089e-4 -3.6869e-4,0.001056 -8.193e-4,0.001056 -0.001089,0 -0.005127,-0.005586 -0.005898,-0.008159 -3.3628e-4,-0.001122 -8.8433e-4,-0.002892 -0.001218,-0.003934 -4.775e-4,-0.001491 -3.3747e-4,-0.001894 6.5856e-4,-0.001894 6.9576e-4,0 0.001533,4.5891e-4 0.00186,0.00102 z m 0.0229168,0.0232906 c 0,0.001345 -0.002575,0.005993 -0.00332,0.005993 -6.1497e-4,0 -0.003132,-0.003722 -0.003535,-0.005226 -2.0717e-4,-7.7465e-4 6.3727e-4,-0.001004 0.00623,-0.00169 3.4375e-4,-4.196e-5 6.25e-4,3.7349e-4 6.25e-4,9.2366e-4 z m -0.0847785,0.003807 c 1.982e-4,4.0064e-4 -4.7236e-4,0.002826 -0.00149,0.00539 -0.001991,0.005016 -0.0124072,0.0206876 -0.0137502,0.0206876 -0.002292,0 4.2302e-4,-0.015283 0.00396,-0.0222902 l 0.00228,-0.004516 0.00432,0 c 0.002708,0 0.004454,2.7179e-4 0.00468,7.2843e-4 z m 0.0498409,0.007182 c 2.8704e-4,9.3753e-4 0.001176,0.002754 0.001976,0.004036 0.001654,0.002651 0.004628,0.0108064 0.004628,0.0126909 0,0.001082 -1.514e-4,0.001137 -0.001109,4.0015e-4 -0.00223,-0.001715 -0.005545,-0.008047 -0.006387,-0.0121998 -4.7534e-4,-0.002344 -0.001099,-0.004914 -0.001385,-0.005712 -3.8489e-4,-0.001072 -2.2401e-4,-0.001381 6.1729e-4,-0.001185 6.2582e-4,1.4586e-4 0.001373,0.001032 0.00166,0.00197 z m 0.022833,0.0151302 c 0.001123,0.001775 0.002276,0.004102 0.002562,0.005171 4.9604e-4,0.001849 3.8587e-4,0.001959 -0.00226,0.002246 -0.00153,1.6638e-4 -0.002996,1.3396e-4 -0.003257,-7.205e-5 -5.2515e-4,-4.1321e-4 2.45e-5,-0.0105727 5.7204e-4,-0.0105727 1.8791e-4,0 0.00126,0.001452 0.002383,0.003227 z m 0.039398,0.008781 c 0.001637,0.002401 0.001242,0.002752 -0.002161,0.001923 -0.002127,-5.1858e-4 -0.003445,-4.4036e-4 -0.006802,4.0387e-4 -0.00229,5.7585e-4 -0.004164,0.001389 -0.004164,0.001806 0,9.669e-4 -7.233e-5,9.7364e-4 0.004399,-4.0936e-4 0.002129,-6.5859e-4 0.004448,-0.001001 0.005314,-7.8388e-4 0.002183,5.4614e-4 0.005224,0.003198 0.005246,0.004575 3.092e-5,0.001939 -9.2737e-4,0.003788 -0.001963,0.003788 -5.3713e-4,0 -0.002448,5.2447e-4 -0.004246,0.001165 -0.001798,6.4103e-4 -0.003952,0.001166 -0.004786,0.001166 -8.3414e-4,0 -0.001739,4.0467e-4 -0.00201,8.9926e-4 -6.6925e-4,0.00122 2.4953e-4,0.001746 0.001639,9.3984e-4 6.2356e-4,-3.619e-4 0.002711,-0.001047 0.004639,-0.001523 0.003177,-7.8385e-4 0.003554,-7.7615e-4 0.004025,8.225e-5 2.8584e-4,5.209e-4 -6.9835e-4,0.003451 -0.002187,0.006512 -0.002344,0.004818 -0.002763,0.006585 -0.003126,0.0131675 -3.8744e-4,0.00702 -7.0383e-4,0.008206 -0.004125,0.01547 -0.005225,0.011094 -0.007913,0.0142481 -0.0141347,0.0165821 -0.006919,0.002596 -0.0170264,0.007447 -0.0212377,0.0101929 -0.002688,0.001753 -0.004493,0.002411 -0.007378,0.00269 -0.002101,2.0352e-4 -0.006257,7.2042e-4 -0.009236,0.001149 -0.009481,0.001363 -0.0130461,0.001561 -0.0131431,7.2999e-4 -8.681e-5,-7.4354e-4 -0.00206,-0.005101 -0.003703,-0.00818 -0.001951,-0.003655 -0.005199,-0.001083 -0.007359,0.005828 -0.001244,0.003981 -0.002056,0.004338 -0.006352,0.002795 -0.001298,-4.662e-4 -0.008195,-0.002803 -0.0153283,-0.005193 -0.0111821,-0.003747 -0.0137082,-0.004854 -0.0183333,-0.008039 -0.007017,-0.004832 -0.009557,-0.009104 -0.009474,-0.0159318 7.942e-5,-0.00653 9.5511e-4,-0.009302 0.004412,-0.0139652 0.005882,-0.007935 0.0112606,-0.0117138 0.0234479,-0.0164765 0.002979,-0.001164 0.007104,-0.002945 0.009167,-0.003958 0.00421,-0.002067 0.009945,-0.00377 0.0126931,-0.00377 0.001004,0 0.00559,-6.2458e-4 0.0101915,-0.001388 0.004601,-7.6337e-4 0.0108029,-0.001674 0.0137821,-0.002024 0.002979,-3.4962e-4 0.008165,-0.001059 0.0115247,-0.001577 0.00624,-9.6114e-4 0.008366,-7.4592e-4 0.005766,5.8364e-4 -0.001817,9.2907e-4 -0.001908,0.003576 -1.3887e-4,0.004051 7.2498e-4,1.9455e-4 0.002506,3.6206e-4 0.003958,3.7225e-4 0.002373,1.667e-5 0.002493,9.675e-5 0.001182,7.9269e-4 -0.002462,0.001307 -0.001773,0.002591 0.001627,0.003037 l 0.003085,4.0477e-4 -0.002779,0.001622 c -0.003448,0.002013 -0.002967,0.00316 0.001537,0.003664 0.003607,4.033e-4 0.004018,8.6153e-4 0.0024,0.002673 -8.277e-4,9.2683e-4 -7.3074e-4,0.001337 5.5044e-4,0.002327 0.001703,0.001316 0.001702,0.001317 -0.001004,0.002302 -0.002322,8.4481e-4 -0.002413,0.001817 -2.0833e-4,0.002221 0.002013,3.6806e-4 0.002119,0.001184 3.3503e-4,0.002563 -8.1217e-4,6.2759e-4 -0.001064,0.001327 -6.458e-4,0.001794 3.7721e-4,4.2084e-4 5.7788e-4,0.001224 4.4592e-4,0.001785 -1.3195e-4,5.609e-4 6.708e-5,0.00102 4.4237e-4,0.00102 9.1287e-4,0 0.003073,-0.003469 0.002437,-0.003913 -2.7526e-4,-1.9249e-4 -7.7e-5,-7.0682e-4 4.4065e-4,-0.001143 7.1886e-4,-6.0572e-4 5.7216e-4,-0.001078 -6.2116e-4,-0.002 -0.001529,-0.001181 -0.001527,-0.001225 5.966e-5,-0.002037 0.00243,-0.001243 0.003094,-7.9109e-4 0.004417,0.003006 0.001323,0.003798 0.00207,0.004676 0.003463,0.004073 6.5032e-4,-2.8106e-4 5.6968e-4,-8.5425e-4 -2.7572e-4,-0.00196 -0.002256,-0.00295 -0.003852,-0.008691 -0.004582,-0.0164852 -4.0223e-4,-0.004292 -4.4494e-4,-0.007936 -9.492e-5,-0.008096 3.5001e-4,-1.6026e-4 9.0588e-4,-0.00116 0.001235,-0.002221 9.846e-4,-0.003173 0.005113,-0.007663 0.009427,-0.0102522 0.005488,-0.003294 0.0157109,-0.00264 0.01831,0.001172 z m -0.0784881,0.0180533 c -0.003925,0.001003 -0.005713,0.002067 -0.008902,0.0053 -0.003146,0.003189 -0.003181,0.004419 -1.1134e-4,0.003902 0.002703,-4.554e-4 0.003292,-7.675e-4 0.009639,-0.005114 0.00621,-0.004252 0.005977,-0.005774 -6.258e-4,-0.004088 z m 0.002028,0.001328 c 0,0.001084 -0.003651,0.003665 -0.006745,0.004769 -0.004434,0.001582 -0.004218,4.1754e-4 5.1007e-4,-0.00275 0.003483,-0.002334 0.006235,-0.003225 0.006235,-0.002018 z m 0.0191665,0.0109235 c -0.006705,0.001508 -0.0152359,0.005163 -0.0156566,0.006708 -9.0362e-4,0.003317 0.0162572,7.98e-6 0.0222737,-0.004295 0.002947,-0.002108 0.003087,-0.002526 0.001091,-0.003273 -0.001017,-3.8077e-4 -0.003349,-1.2062e-4 -0.007708,8.6018e-4 z m 0.005834,7.0938e-4 c 0,0.001599 -0.008368,0.004968 -0.0139583,0.005619 -0.004154,4.8374e-4 -0.00463,-2.4095e-4 -0.00125,-0.001903 0.00586,-0.002882 0.0152083,-0.005166 0.0152083,-0.003716 z m -0.060587,0.001686 c -0.005779,0.005229 -0.007581,0.009319 -0.008884,0.0201626 -4.1391e-4,0.003446 -2.995e-4,0.003948 8.6341e-4,0.003788 7.7577e-4,-1.0701e-4 0.001447,-8.8368e-4 0.001592,-0.001844 1.3843e-4,-9.1224e-4 0.002108,-0.003941 0.004376,-0.006731 0.005819,-0.007157 0.008519,-0.0152402 0.005647,-0.0169071 -9.241e-4,-5.3632e-4 -0.001653,-2.26e-4 -0.003595,0.001531 z m 0.003087,0.001574 c 0,0.002783 -0.002683,0.008653 -0.005482,0.0119925 -0.001568,0.001871 -0.002851,0.003686 -0.002851,0.004033 0,3.4672e-4 -3.75e-4,6.3039e-4 -8.3334e-4,6.3039e-4 -0.001101,0 -0.001014,-0.001687 3.6745e-4,-0.007103 8.5145e-4,-0.003339 0.001926,-0.005307 0.004219,-0.007721 0.003344,-0.003525 0.00458,-0.004019 0.00458,-0.001832 z m 0.0120627,0.0102685 c -3.4397e-4,3.892e-4 -7.9652e-4,0.003624 -0.001006,0.007189 -2.9965e-4,0.005108 -9.631e-5,0.006945 9.5918e-4,0.008667 7.367e-4,0.001202 0.001669,0.002185 0.002071,0.002185 0.001151,0 0.00187,-0.002829 0.001006,-0.003958 -4.2934e-4,-5.6099e-4 -7.4604e-4,-0.003839 -7.0381e-4,-0.007284 7.358e-5,-0.005999 -7.9386e-4,-0.008534 -0.002327,-0.0068 z m 0.001012,0.0126515 c -2.0961e-4,5.6089e-4 -3.8111e-4,1.0198e-4 -3.8111e-4,-0.00102 0,-0.001122 1.715e-4,-0.001581 3.8111e-4,-0.00102 2.096e-4,5.609e-4 2.096e-4,0.001479 0,0.00204 z m 0.0477589,0.007161 c -0.002521,9.084e-4 -0.005217,0.001668 -0.005992,0.001689 -7.7503e-4,2.034e-5 -0.001615,2.7012e-4 -0.001867,5.5513e-4 -2.519e-4,2.85e-4 -0.001493,6.9547e-4 -0.002758,9.1215e-4 -0.001265,2.1668e-4 -0.003516,9.6689e-4 -0.005002,0.001667 -0.002241,0.001056 -0.002704,0.001646 -0.002708,0.003458 -3.33e-6,0.001202 1.5152e-4,0.002185 3.4367e-4,0.002185 0.00158,0 0.0117204,-0.002148 0.0150615,-0.00319 0.006634,-0.00207 0.0106826,-0.005632 0.009289,-0.008172 -6.1428e-4,-0.001119 -8.7694e-4,-0.001082 -0.006366,8.9556e-4 z m 0.005,0.001095 c 0,0.001113 -0.005924,0.004379 -0.0101681,0.005607 -0.005724,0.001656 -0.0106652,0.00221 -0.0106652,0.001196 0,-0.001263 0.002648,-0.002523 0.0104386,-0.004966 0.007446,-0.002335 0.0103948,-0.002856 0.0103948,-0.001837 z m 0.0224856,-0.0671147 c -8.33e-6,2.4038e-4 -9.6676e-4,0.001069 -0.002131,0.001841 -0.001164,7.7235e-4 -0.002689,0.002179 -0.00339,0.003126 -7.0041e-4,9.4716e-4 -0.001571,0.001495 -0.001935,0.001218 -8.187e-4,-6.2357e-4 -0.002804,-0.004878 -0.002404,-0.005153 0.001301,-8.9283e-4 0.009885,-0.001792 0.00986,-0.001033 z m -0.21751606,0.006383 c -0.002683,0.006753 -0.007305,0.0114293 -0.0134785,0.0136355 -0.003989,0.001426 -0.004211,0.001406 -0.005822,-5.0033e-4 l -0.001356,-0.001605 0.006225,-0.004659 c 0.003424,-0.002563 0.008355,-0.006624 0.0109579,-0.009025 0.005493,-0.005066 0.006174,-0.004644 0.003473,0.002154 z m -0.0779205,-0.002888 c 0.003363,0.00253 0.003687,0.003908 0.001141,0.004861 -0.001499,5.6105e-4 -0.001999,4.9557e-4 -0.002917,-3.8225e-4 -6.0921e-4,-5.8261e-4 -0.001113,-0.00173 -0.001119,-0.00255 -6.66e-6,-8.2015e-4 -2.3749e-4,-0.002081 -5.1386e-4,-0.002802 -7.0493e-4,-0.001839 6.191e-5,-0.001643 0.003408,8.7412e-4 z m 0.28463954,2.9138e-4 c 0.001774,0.002733 0.002091,0.004837 8.1089e-4,0.00539 -4.5833e-4,1.9809e-4 -8.3746e-4,0.001459 -8.4251e-4,0.002802 -4.99e-6,0.001343 -2.3369e-4,0.003392 -5.081e-4,0.004552 -4.8895e-4,0.002067 -5.569e-4,0.0021 -0.00339,0.001654 -0.003668,-5.7844e-4 -0.004376,-0.001079 -0.002544,-0.001796 7.9826e-4,-3.124e-4 0.001451,-0.001059 0.001451,-0.00166 0,-9.1785e-4 -5.8743e-4,-0.001076 -0.003683,-9.9237e-4 -0.002026,5.484e-5 -0.003954,-8.996e-5 -0.004285,-3.2173e-4 -3.3143e-4,-2.3177e-4 5.814e-4,-0.001268 0.002029,-0.002303 0.001447,-0.001035 0.002501,-0.002156 0.002341,-0.002491 -4.3607e-4,-9.1606e-4 -0.00299,-0.001093 -0.006332,-4.3769e-4 -0.007041,0.00138 -0.010966,0.001957 -0.01882,0.002765 -0.004583,4.7198e-4 -0.0108291,0.001381 -0.0138794,0.00202 -0.00305,6.3917e-4 -0.006463,0.001162 -0.007584,0.001162 -0.001121,0 -0.003202,2.8375e-4 -0.004625,6.3056e-4 -0.001423,3.4681e-4 -0.00326,5.192e-4 -0.004083,3.8309e-4 -0.001235,-2.0423e-4 -0.001115,-3.5754e-4 6.8297e-4,-8.7756e-4 0.001198,-3.4655e-4 0.005886,-0.001858 0.0104167,-0.00336 0.009378,-0.003107 0.0134341,-0.004035 0.030217,-0.006912 0.006589,-0.00113 0.0121824,-0.002196 0.0124306,-0.002369 2.4819e-4,-1.7356e-4 0.002282,-3.1556e-4 0.00452,-3.1556e-4 0.003979,0 0.004104,5.466e-5 0.005676,0.002477 z m -0.3090826,0.00432 c 0.005726,0.004321 0.005328,0.007143 -0.001012,0.007181 -0.001394,8.39e-6 -0.004095,-0.005568 -0.004095,-0.008454 0,-0.001238 2.4391e-4,-0.001394 0.001458,-9.3307e-4 8.0208e-4,3.0421e-4 0.002444,0.001297 0.003648,0.002206 z m 0.30738074,0.013162 c -2.526e-5,0.001439 -0.001461,0.002362 -0.003023,0.001943 -0.001416,-3.8009e-4 -0.001374,-5.0003e-4 5.4089e-4,-0.001529 0.002485,-0.001335 0.002498,-0.001337 0.002482,-4.1387e-4 z m 0.002159,0.002627 c -0.001005,7.031e-4 -0.001485,-4.5545e-4 -8.3423e-4,-0.002017 l 6.7864e-4,-0.00163 3.1748e-4,0.001656 c 1.7462e-4,9.1071e-4 1.0177e-4,0.001807 -1.6189e-4,0.001991 z m 0.001187,0.004532 c 0,0.001312 -1.9236e-4,0.001405 -0.00172,8.3348e-4 -0.001376,-5.1499e-4 -0.001522,-8.1074e-4 -7.3129e-4,-0.001477 0.001492,-0.001257 0.002452,-0.001005 0.002452,6.4389e-4 z m -0.19122222,0.011082 c -9.8338e-4,0.001801 -0.002566,0.003237 -0.004829,0.004384 -0.003104,0.001572 -0.007276,0.002298 -0.007288,0.001268 -6.67e-6,-5.6248e-4 0.0128144,-0.008831 0.0132504,-0.008545 1.8076e-4,1.1836e-4 -3.2963e-4,0.001421 -0.001134,0.002894 z m 0.25031421,0.007039 c 0.001755,0.001098 0.003272,0.004653 0.003509,0.008221 l 2.097e-4,0.003166 -0.007239,1.8727e-4 c -0.006336,1.6392e-4 -0.007239,6.491e-5 -0.007239,-7.9399e-4 0,-0.001716 -0.002425,-0.003492 -0.005027,-0.003681 l -0.002505,-1.8205e-4 0.003141,-0.003067 c 0.004079,-0.003983 0.008863,-0.006088 0.0118425,-0.005212 0.001172,3.4477e-4 0.002661,9.5769e-4 0.003307,0.001362 z m -0.0135915,0.009051 c 3.2936e-4,3.7266e-4 8.3918e-4,0.001487 0.001133,0.002477 4.7888e-4,0.001613 8.3135e-4,0.001791 0.003409,0.001717 0.001581,-4.54e-5 0.004506,-2.8016e-4 0.006501,-5.217e-4 0.002726,-3.3018e-4 0.003809,-2.3738e-4 0.004362,3.7391e-4 8.6604e-4,9.5644e-4 9.7195e-4,0.004531 2.4424e-4,0.008244 l -5.1751e-4,0.00264 -0.005427,2.4166e-4 c -0.004416,1.9662e-4 -0.005717,4.92e-4 -0.006982,0.001585 -0.002222,0.001919 -0.001927,0.003661 9.4468e-4,0.005585 0.00294,0.001969 0.003083,0.002794 8.3334e-4,0.004794 -9.1667e-4,8.1493e-4 -0.001667,0.00185 -0.001667,0.0023 0,0.002109 -0.008487,0.0112633 -0.0149711,0.0161486 -0.006734,0.005074 -0.0204803,0.0105908 -0.0306974,0.0123206 -0.006847,0.001159 -0.008552,7.7547e-4 -0.00679,-0.001528 0.001045,-0.001365 0.001443,-0.00726 5.3267e-4,-0.007896 -0.001207,-8.4439e-4 -0.004978,5.9812e-4 -0.007056,0.002699 -0.001248,0.001262 -0.002727,0.002304 -0.003289,0.002316 -0.001437,3.118e-5 -0.003205,-0.002612 -0.004354,-0.006513 -9.336e-4,-0.003168 -8.7438e-4,-0.003457 0.001219,-0.005956 0.00121,-0.001444 0.001962,-0.002896 0.00167,-0.003226 -2.9173e-4,-3.3009e-4 -0.001961,-6.0017e-4 -0.00371,-6.0017e-4 -0.002903,0 -0.003235,-1.6468e-4 -0.003807,-0.001894 -3.4489e-4,-0.001042 -7.0544e-4,-0.002727 -8.012e-4,-0.003745 -9.578e-5,-0.001018 -7.7845e-4,-0.002496 -0.001517,-0.003284 -0.001621,-0.00173 -0.001159,-0.00215 0.002369,-0.00215 0.003464,0 0.0193573,-0.002224 0.0214257,-0.002998 0.002105,-7.8789e-4 0.002548,-3.6315e-4 0.001871,0.001794 -4.1975e-4,0.001336 -0.001554,0.002188 -0.004454,0.003344 -0.005176,0.002063 -0.007641,0.003662 -0.007641,0.004955 0,0.001111 0.001075,0.001322 0.005625,0.001103 0.00149,-7.165e-5 0.002746,8.69e-5 0.002791,3.5236e-4 4.559e-5,2.6545e-4 2.3133e-4,0.001641 4.1273e-4,0.003057 3.8892e-4,0.003036 0.002441,0.005532 0.00415,0.005047 6.5338e-4,-1.8539e-4 0.00175,-4.9625e-4 0.002438,-6.908e-4 9.0498e-4,-2.5609e-4 0.00125,3.339e-5 0.00125,0.001049 0,0.001342 0.003979,0.006298 0.005057,0.006298 2.8489e-4,0 0.001216,-5.3921e-4 0.002069,-0.001198 0.002003,-0.001548 0.002651,-0.00965 9.054e-4,-0.01132 -9.7266e-4,-9.3021e-4 -8.8645e-4,-0.001332 6.2924e-4,-0.00293 9.6597e-4,-0.001018 0.002694,-0.002936 0.00384,-0.004262 0.001496,-0.00173 0.002436,-0.00229 0.003333,-0.001985 6.875e-4,2.3348e-4 0.003785,4.1611e-4 0.006883,4.0586e-4 0.004992,-1.655e-5 0.005889,-1.9788e-4 0.007886,-0.001595 l 0.002254,-0.001576 -0.004899,-0.003318 -0.004899,-0.003318 0.001478,-0.001789 c 8.1303e-4,-9.839e-4 0.002903,-0.004542 0.004644,-0.007908 0.001741,-0.003365 0.00341,-0.006545 0.003708,-0.007065 0.001024,-0.001787 0.006437,-0.002912 0.007612,-0.001582 z m -0.0262172,0.0342056 c -0.001728,9.296e-4 -0.001835,0.001205 -8.8365e-4,0.002271 0.001961,0.002196 0.0136716,0.001986 0.0147184,-2.6344e-4 4.5422e-4,-9.7616e-4 -0.005824,-0.003093 -0.009126,-0.003078 -0.001508,7.11e-6 -0.003627,4.8894e-4 -0.004708,0.001071 z m 0.008579,6.5017e-4 c 0.003429,9.1176e-4 0.002474,0.001763 -0.00198,0.001763 -0.004186,0 -0.006197,-8.8204e-4 -0.004114,-0.001804 0.001511,-6.6923e-4 0.00347,-6.5578e-4 0.006094,4.178e-5 z m -0.0186958,-0.0216068 c 0,2.878e-4 -8.666e-4,0.00159 -0.001926,0.002894 -0.003099,0.003815 -0.009149,0.006136 -0.0191159,0.007333 -0.003522,4.2273e-4 -0.004212,-4.0181e-4 -0.00125,-0.001493 0.001031,-3.7978e-4 0.002063,-8.7221e-4 0.002292,-0.001094 7.4401e-4,-7.2103e-4 0.009473,-0.004863 0.01375,-0.006524 0.004309,-0.001674 0.00625,-0.00202 0.00625,-0.001116 z m -0.12287727,0.0103553 c -4.8039e-4,0.001338 -0.00352,0.002907 -0.004418,0.00228 -4.368e-4,-3.0546e-4 0.002746,-0.007942 0.003905,-0.00937 6.502e-4,-8.011e-4 0.001102,0.005448 5.1237e-4,0.007091 z m 0.17220597,-0.006186 c -5.099e-4,0.001499 -0.004511,0.005799 -0.005396,0.005799 -0.001437,0 -0.004766,-0.002437 -0.004766,-0.003488 0,-5.2472e-4 7.7977e-4,-0.001539 0.001733,-0.002255 0.001397,-0.001049 0.002405,-0.001253 0.005208,-0.001053 0.00228,1.6275e-4 0.003388,5.0565e-4 0.003221,9.9662e-4 z m -0.10751154,0.005547 c 8.1298e-4,0.002222 0.001487,0.004227 0.001497,0.004456 2.625e-5,5.7343e-4 -0.007414,4.227e-4 -0.00793,-1.6065e-4 -4.6371e-4,-5.2468e-4 7.7433e-4,-0.004782 0.002099,-0.007219 0.001325,-0.002438 0.002714,-0.001501 0.004333,0.002924 z m 0.0798445,-0.001208 c 0.005025,0.002593 0.00528,0.003526 0.001282,0.004694 -0.003396,9.9212e-4 -0.007396,0.00109 -0.009675,2.3717e-4 -0.001799,-6.7311e-4 -0.001367,-0.001666 0.002067,-0.004751 0.002187,-0.001964 0.002833,-0.001983 0.006326,-1.8054e-4 z m -0.0574936,0.00729 c 0.001388,0.002942 7.7491e-4,0.003377 -0.002477,0.001757 -0.001415,-7.0436e-4 -0.003919,-0.001541 -0.005565,-0.001859 -0.004564,-8.8131e-4 -0.002821,-0.001546 0.005615,-0.002139 8.5948e-4,-6.05e-5 0.001712,7.2667e-4 0.002426,0.002241 z m 0.025189,0.001774 c -2.8788e-4,0.001726 -2.5134e-4,0.001706 -0.003837,0.002113 -0.00391,4.4365e-4 -0.004053,-7.6889e-4 -3.0066e-4,-0.002539 0.003233,-0.001525 0.004443,-0.0014 0.004138,4.2682e-4 z m 0.0131361,0.007539 c 0.001131,0.001478 7.8602e-4,0.008056 -4.606e-4,0.00878 -6.2691e-4,3.6384e-4 -0.00146,1.5234e-4 -0.002468,-6.2669e-4 -0.002081,-0.001608 -0.002398,-0.006143 -5.5246e-4,-0.00792 0.001733,-0.001668 0.002351,-0.00171 0.003481,-2.3267e-4 z m -0.0299307,7.5194e-4 c -3.433e-5,2.3237e-4 -6.25e-5,8.1585e-4 -6.25e-5,0.001297 0,4.8077e-4 -5.625e-4,8.7412e-4 -0.00125,8.7412e-4 -0.00126,0 -0.001739,-0.001795 -6.7708e-4,-0.002537 6.8932e-4,-4.8205e-4 0.002077,-2.2627e-4 0.00199,3.6665e-4 z m 0.0132595,0.0133887 c -1.258e-5,0.002743 -7.3164e-4,0.005109 -0.001544,0.005081 -2.9029e-4,-1.014e-5 -0.001572,-6.6102e-4 -0.002849,-0.001446 -0.002237,-0.001376 -0.002274,-0.001491 -0.001042,-0.003158 0.00118,-0.001596 0.00331,-0.002893 0.004821,-0.002935 3.4375e-4,-9.73e-6 6.1988e-4,0.001097 6.1362e-4,0.002459 z"
+         id="path4827"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccsscscccscsccccccccccccccsccscccccccccccccccccscscccccccccccccsccccccsscccssssccscccccccssccsccscccccccccccccccccccccccccssccccsccccccccccccscccccccccsccccccccccccccccccsscccsccccsccscsccccccsccsccccscccscscccsccccccsccccccccccscccccccscsccscccccccccccsssscccscccscssscccccccscccccccccccccsccccccccssccscccccscccccscscccccccccccccscccsccccscccsccccscccccsccccssscccscccscsccccsssssccccscscccscccccccccsccsccccccsscsccssccsccscccccccccsscsccccccccccccccscscccsssccccccsccccccccccccccscccsscccccccccccsccccscccssccccsssccccccsccccsscccccccscccccccscccccccscsssccccccsccccccsccccccccccscccscccccccsscsccscccccccsccccccccccscccccccccccccccsccccssccccccccccscccccsccccccscccccccccsccccsccccsscccscccccccccccsccccsccccccccscccscsccccscsccccccccsccccscccsccccccccsscccccccccccccccccccccccccccccccccccccsscccscssssscsccccccscsccscsscccssscccccscsccscccccssscccccccscccssccscccsccccccsccsccccsccccccccccscccccscccscsccccccscccccccsccscccssccccsccccccccccccscsccccccccccccccccccccccccccccsscsccccccccccsscccccccscscccscccccsccsccccccsscccccccccccccccccccccscccccsccscccccccsscccccsccccscccccccccccccccccccccccccccssccsccccccccccsccsscccccccccscccscccsccsccsscccccsccccccccccccccccscccccccccccccscccsscccccccccccsccccccccccccccccccccccsscccccccccc" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 60.350518,349.36393 c 1.735815,-1.89836 4.080777,-6.1973 4.080777,-7.48115 0,-1.35383 -2.332251,-0.90288 -2.793428,0.54012 -1.679306,5.25447 -4.538748,7.62534 -7.544804,6.25569 -1.05409,-0.48027 -2.105697,-1.36619 -2.336905,-1.96871 -0.447113,-1.16516 0.915334,-4.67102 3.152456,-8.11193 0.747243,-1.14933 1.083352,-2.36401 0.74691,-2.69929 -0.577427,-0.57543 -1.227883,0.0622 -5.142758,5.04156 l -1.620488,2.0611 0.432333,-1.92806 c 0.237782,-1.06044 0.437071,-3.57656 0.442863,-5.59139 0.01353,-4.707 1.737428,-6.51495 6.860001,-7.19449 l 3.825819,-0.50751 1.330963,-4.91697 c 1.302617,-4.81226 1.418895,-4.95724 5.459517,-6.8071 2.270704,-1.03956 4.128553,-2.25966 4.128553,-2.71133 0,-0.45167 -1.391267,-1.77232 -3.091704,-2.93476 -2.864555,-1.95826 -3.05592,-2.31187 -2.604656,-4.81284 0.267876,-1.48461 1.053365,-6.09615 1.745532,-10.24788 l 1.258483,-7.54859 2.695817,1.99026 c 4.473278,3.30253 22.55293,8.21159 24.194993,6.56953 1.204038,-1.20404 -2.232999,-4.32049 -6.734359,-6.10621 -2.182206,-0.86571 -7.264646,-2.12873 -11.2943,-2.80673 -4.029655,-0.678 -7.671807,-1.57236 -8.093672,-1.98746 -0.858045,-0.8443 -2.063411,-27.79218 -1.276709,-28.54287 0.275706,-0.26308 2.930646,-1.20173 5.899865,-2.08588 5.732845,-1.70707 20.681236,-8.69807 22.943966,-10.73034 0.742305,-0.66669 1.349645,-1.72876 1.349645,-2.36014 0,-1.90396 -14.329166,-0.40689 -29.261574,3.05716 -0.81942,0.19009 -1.377998,-1.16191 -2.123862,-5.14065 -1.267095,-6.75922 -3.942222,-15.07249 -5.320938,-16.53545 -1.978144,-2.09901 -2.001248,-0.14708 -0.05588,4.72025 3.402927,8.51414 3.886878,13.71018 3.937761,42.27862 0.04697,26.37097 0.02931,26.67579 -1.989092,34.31954 -1.120066,4.24175 -2.236421,9.32483 -2.480789,11.29576 -0.244367,1.97092 -1.014128,5.00762 -1.710578,6.74823 -0.998445,2.49536 -1.664458,3.16472 -3.148895,3.16472 -2.126805,0 -5.71242,1.67254 -7.055834,3.29126 -0.492649,0.59361 -1.165243,2.95205 -1.494654,5.241 -0.514197,3.57295 -0.892129,4.26482 -2.671443,4.89058 -2.986432,1.05027 -5.413416,-1.84645 -4.946084,-5.90339 0.233056,-2.02315 0.03341,-2.89209 -0.66447,-2.89209 -1.35399,0 -2.153002,4.73926 -1.214968,7.20648 0.735697,1.93503 0.681354,1.98438 -1.718165,1.56039 -1.36284,-0.24082 -3.465321,-1.4867 -4.672182,-2.76863 -1.954295,-2.07587 -2.138917,-2.70006 -1.688002,-5.70697 0.333765,-2.22571 0.220878,-3.37618 -0.331281,-3.37618 -1.324486,0 -2.489847,3.98224 -1.97245,6.7402 0.586268,3.12508 -1.21012,3.51124 -2.559278,0.55016 -1.08972,-2.39168 -1.173194,-9.54319 -0.143017,-12.25276 1.184329,-3.11502 5.193988,-5.22426 9.017307,-4.74347 3.21223,0.40395 3.214108,0.40268 3.631511,-2.46443 0.229691,-1.57773 0.640684,-5.38472 0.913317,-8.45999 0.272634,-3.07526 0.856873,-5.59138 1.29831,-5.59138 0.441435,0 3.202208,0.71463 6.135051,1.58807 5.587337,1.66398 9.931478,1.74568 10.439668,0.19634 0.447879,-1.36547 -3.213081,-3.45865 -10.169802,-5.81467 -4.799697,-1.6255 -6.17792,-2.41247 -6.077955,-3.47051 0.07111,-0.75258 0.722197,-4.85368 1.446871,-9.11354 1.596287,-9.38349 2.299083,-7.71193 -11.659412,-27.73117 l -9.679324,-13.88207 6.046847,-0.40405 c 4.62954,-0.30935 6.629255,-0.81877 8.531648,-2.17339 2.539975,-1.80862 3.246185,-3.80724 1.520766,-4.30386 -8.286002,-2.38494 -20.406199,-6.93158 -22.15081,-8.3094 -2.968243,-2.3442 -3.46374,-3.96478 -6.2049438,-20.29411 -1.2809325,-7.6305 -2.6436985,-14.91479 -3.0283689,-16.18731 -0.6780819,-2.24316 -1.8125841,-10.45414 -2.7847064,-20.15437 -0.4629777,-4.61978 1.2664763,-13.63925 2.796611,-14.58493 0.3363023,-0.20785 1.7457521,1.75025 3.1321104,4.35133 3.6374707,6.82459 8.4472057,11.8204 14.0227007,14.56521 6.046962,2.9769 13.147807,4.35754 17.558935,3.41402 3.679541,-0.78703 4.731382,-2.22818 2.210282,-3.02834 -0.916814,-0.29099 -5.881404,-3.33313 -11.032421,-6.76031 -10.019428,-6.66635 -20.886608,-16.68434 -21.7258498,-20.02814 -0.3668366,-1.4616 0.1888177,-3.44097 1.9970888,-7.11409 1.377934,-2.79898 2.811483,-5.27827 3.185664,-5.50952 0.374181,-0.23126 2.108779,0.87005 3.854662,2.44735 6.36042,5.74626 23.328421,12.15286 24.432392,9.22493 0.157491,-0.4177 -1.472849,-1.66847 -3.622976,-2.77951 -4.359476,-2.25268 -14.085967,-9.49305 -17.401201,-12.95341 l -2.157365,-2.2518 1.240861,-6.00017 c 0.682474,-3.3001 1.349697,-6.10901 1.482718,-6.24203 0.13302,-0.13302 2.688834,1.01361 5.679586,2.54806 4.684729,2.40358 6.491829,2.87427 13.049785,3.39902 4.703713,0.37638 9.961043,1.38903 13.760111,2.65044 11.05669,3.67115 17.11565,3.49069 23.158521,-0.68978 1.781076,-1.23215 4.089023,-1.72452 10.025935,-2.13889 4.241741,-0.29606 8.558793,-0.64311 9.593454,-0.77123 1.673961,-0.20728 2.084284,0.31929 3.724829,4.78003 3.00129,8.16076 4.75559,11.25035 9.13742,16.09243 l 4.1509,4.58688 -5.44376,5.04009 c -2.99406,2.77204 -7.33205,6.29346 -9.639975,7.82537 -5.733084,3.8054 -5.651457,5.38835 0.24606,4.77194 8.385885,-0.8765 12.006845,-2.57915 17.653875,-8.30121 l 5.17153,-5.24026 3.52593,2.02096 c 1.93927,1.11153 6.39986,4.24062 9.91243,6.95354 l 6.3865,4.93257 -3.95939,4.57039 c -2.17767,2.51371 -4.27073,4.7628 -4.65124,4.99797 -0.38052,0.23517 -0.69185,0.92768 -0.69185,1.53891 0,3.14302 10.03734,-0.59336 12.72508,-4.73688 l 1.54231,-2.37769 5.78434,4.66089 c 8.94095,7.20441 12.69047,12.00505 18.14467,23.23126 5.37143,11.05583 9.81892,23.52925 9.46328,26.54068 -0.196,1.65954 -1.17008,2.30746 -6.70731,4.46143 -3.5629,1.38596 -6.67631,2.71824 -6.9187,2.96061 -1.2347,1.23471 2.41931,1.89109 8.07677,1.45085 l 6.24844,-0.48622 0.4913,2.9738 c 0.27021,1.6356 0.49511,6.01051 0.49978,9.72204 0.005,3.97901 0.32497,6.74822 0.77971,6.74822 0.44937,0 0.76366,2.49439 0.75309,5.977 l -0.0181,5.977 -4.56683,-8.73792 c -5.81308,-11.12247 -8.91527,-14.90677 -14.31321,-17.4604 -6.91157,-3.2697 -11.80157,-3.9359 -17.91944,-2.44133 -11.40884,2.78715 -19.2803,8.46352 -25.58948,18.4534 -1.79698,2.8453 -3.55979,5.17329 -3.91735,5.17329 -0.35757,0 -0.87873,0.72025 -1.15813,1.60057 -0.2794,0.88031 -0.59431,1.48765 -0.69981,1.34964 -0.43107,-0.56391 1.01332,-45.88612 1.51343,-47.4885 0.40356,-1.29309 0.23277,-1.73526 -0.67028,-1.73526 -1.70509,0 -1.92088,2.2199 -2.36151,24.29361 -0.42819,21.45 -0.96174,24.70885 -5.61901,34.31955 -1.54164,3.1813 -4.1432,10.43799 -5.78124,16.12597 -4.355984,15.12581 -3.670387,14.22681 -11.383007,14.92626 -3.570953,0.32385 -6.659357,0.75554 -6.863131,0.95931 -0.884627,0.88462 2.630343,3.41843 6.90362,4.97655 2.549333,0.92953 4.842619,2.23069 5.096183,2.89147 0.560049,1.45947 -1.74705,14.22217 -3.766867,20.838 -0.879406,2.88046 -2.150941,5.28756 -3.175931,6.01227 -4.502463,3.1834 -17.870015,11.07051 -18.201363,10.73916 -0.206103,-0.2061 0.90416,-1.68444 2.467252,-3.28519 2.720473,-2.78602 3.618216,-4.77348 2.156191,-4.77348 -1.00623,0 -3.289333,2.21541 -6.557001,6.36261 -2.769815,3.51534 -3.045531,3.66332 -6.825346,3.66332 l -3.938931,0 1.586675,-1.73526 0,0 z M 60.168613,280.1803 c 0.773817,-1.25206 -3.341027,-3.33477 -7.349543,-3.71994 -4.343098,-0.41731 -4.869833,0.42857 -1.78022,2.85886 2.138946,1.6825 8.265011,2.26028 9.129763,0.86108 z m 45.125837,-7.93894 c -0.0217,-4.61192 -0.5242,-4.83459 -10.568459,-4.68342 -9.027999,0.13588 -14.851888,1.30439 -15.439461,3.09781 -0.447813,1.36681 4.394058,2.40577 14.836957,3.18366 5.09009,0.37918 9.688523,0.73868 10.218743,0.79892 0.59799,0.0679 0.95955,-0.84219 0.95222,-2.39697 z M 54.598166,257.98873 c 6.402178,-2.53811 2.439686,-4.06398 -10.553653,-4.06398 -9.879568,0 -10.462249,0.0842 -10.462249,1.51272 0,1.12629 0.837319,1.73949 3.277709,2.40038 8.604188,2.33015 12.164786,2.36043 17.738193,0.15088 l 0,0 z M 37.848777,219.64455 c 1.470985,-0.61462 2.674519,-1.48225 2.674519,-1.92806 0,-1.00125 -0.166081,-1.00248 -2.749289,-0.0204 -1.991552,0.75718 -2.060418,0.70074 -1.646667,-1.34965 0.237494,-1.17693 0.666768,-2.74722 0.953943,-3.48952 0.446641,-1.1545 0.05208,-1.34965 -2.728888,-1.34965 -2.983532,0 -3.215963,-0.14277 -2.824923,-1.73526 0.234355,-0.95439 0.663741,-3.55727 0.954191,-5.78419 0.488261,-3.74356 0.408417,-4.04893 -1.058632,-4.04893 -0.872696,0 -2.144448,-0.55773 -2.826116,-1.2394 -1.138377,-1.13838 -1.111436,-1.45627 0.330525,-3.90021 0.863456,-1.46344 1.569921,-3.21533 1.569921,-3.89309 0,-1.09402 -0.165155,-1.08282 -1.471981,0.0998 -2.01618,1.82462 -3.324513,5.23896 -3.021794,7.88594 0.202685,1.77228 0.679917,2.25277 2.437373,2.45403 2.159756,0.24732 2.179593,0.29698 1.694444,4.24174 -0.269993,2.19531 -0.673631,4.94588 -0.896973,6.11235 -0.379669,1.98296 -0.232717,2.12088 2.259757,2.12088 l 2.665833,0 -0.391179,3.47051 c -0.438059,3.88645 -0.08369,4.09103 4.075936,2.35303 l 0,0 z m 129.607083,-4.63898 c 2.06158,-1.35079 2.01762,-3.50499 -0.1174,-5.75307 -0.89508,-0.9425 -1.81596,-0.58386 -6.50221,2.53228 -3.21066,2.13495 -5.24486,3.9775 -4.93848,4.47323 0.75039,1.21415 9.18921,0.29971 11.55809,-1.25244 z m -96.378115,-6.73043 c 0.31222,-0.50519 0.170164,-1.05102 -0.315682,-1.21297 -0.485845,-0.16195 -1.107211,-1.48771 -1.380813,-2.94614 -0.273602,-1.45842 -0.719312,-2.78879 -0.990468,-2.95637 -0.271156,-0.16759 -1.78689,0.14012 -3.368298,0.68378 -3.489786,1.19973 -4.044769,0.6897 -4.780205,-4.393 -0.588691,-4.06854 -1.390827,-4.88354 -4.486811,-4.5588 -2.120033,0.22238 -2.121334,0.21944 -2.121334,-4.80306 0,-2.787 0.373465,-5.25639 0.838424,-5.54375 0.551938,-0.34111 0.578164,-0.77843 0.07675,-1.27984 -0.50141,-0.50141 -1.973761,-0.0513 -4.30894,1.31716 -2.03453,1.19232 -3.547268,1.69447 -3.547268,1.17751 0,-1.75461 3.899687,-12.48635 6.175573,-16.99485 2.560879,-5.07307 3.19852,-8.52929 1.065025,-5.77277 -5.037549,6.50861 -11.648901,26.60729 -8.752326,26.60729 0.441073,0 2.176331,-0.70116 3.856129,-1.55813 3.373594,-1.72108 3.480461,-1.55827 2.288364,3.48619 -1.078572,4.56407 -0.47075,5.65966 3.292437,5.93454 l 3.22086,0.23527 0.792418,4.62735 c 0.859741,5.02049 0.49821,4.79586 6.570938,4.0826 1.668203,-0.19594 1.960637,0.11135 2.169735,2.28002 0.178573,1.85207 0.619743,2.50648 1.689742,2.50648 0.79644,0 1.703527,-0.41333 2.015748,-0.91851 l 0,0 z m 64.377825,-2.42106 c 1.86945,-0.98842 3.51719,-2.40758 3.66161,-3.1537 0.28832,-1.48939 -2.6671,-5.07512 -4.18299,-5.07512 -1.52518,0 -9.81795,8.23938 -9.23772,9.17823 0.89542,1.44882 6.19905,0.93285 9.7591,-0.94941 l 0,0 z m -44.043181,-6.87917 c -0.02861,-2.33888 -1.316367,-3.06388 -4.489698,-2.52775 -2.960636,0.5002 -3.181214,0.40749 -3.670727,-1.5429 -0.286448,-1.1413 -0.320328,-4.46649 -0.07527,-7.3893 0.491055,-5.85726 0.156613,-6.22082 -3.342601,-3.63374 -1.250134,0.92426 -2.489793,1.46365 -2.754803,1.19864 -0.265011,-0.26501 0.07777,-2.1242 0.76174,-4.13154 0.683946,-2.00733 1.243555,-4.35634 1.243555,-5.22003 0,-1.36284 -0.138211,-1.42111 -1.046021,-0.44103 -0.97397,1.0515 -3.581333,9.3502 -3.581333,11.39863 0,1.23814 1.93347,1.14966 4.560196,-0.20867 l 2.169921,-1.12211 -0.374762,5.23778 c -0.237715,3.32231 -0.03309,5.87623 0.559571,6.98359 0.824463,1.54054 1.326338,1.68705 4.267963,1.24592 2.03373,-0.30498 3.528412,-0.18476 3.833146,0.30831 0.690278,1.1169 1.953469,1.01541 1.939124,-0.1558 l 0,0 z m 61.718241,-2.98947 c 3.81604,-2.14473 5.17739,-4.94833 3.37164,-6.94366 -0.71796,-0.79335 -1.6383,-1.44245 -2.04517,-1.44245 -0.40688,0 -2.86922,1.80715 -5.47186,4.01589 -2.60265,2.20873 -4.89556,4.13639 -5.09536,4.28367 -0.1998,0.14729 0.14725,0.59066 0.77123,0.98527 1.89833,1.20055 5.39445,0.82956 8.46952,-0.89872 z M 93.50201,142.16071 c 6.257595,-3.33554 7.46536,-4.70691 6.80266,-7.72416 -0.62943,-2.86577 -1.504578,-2.94173 -5.172929,-0.44902 -3.79322,2.57756 -9.040509,4.57026 -16.239963,6.16726 -4.054983,0.89948 -5.977,1.68093 -5.977,2.4301 0,1.83562 3.141645,2.60363 9.640322,2.35667 5.241806,-0.1992 6.888327,-0.61746 10.94691,-2.78085 z"
+         id="path4848"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 104.69173,333.91341 c -1.65665,-1.76343 -1.67762,-1.96196 -0.54591,-5.16956 1.31219,-3.71915 0.98345,-4.7911 -0.89366,-2.91398 -0.68539,0.68538 -1.41538,3.00732 -1.62222,5.15986 -0.20683,2.15255 -0.62516,3.91372 -0.92963,3.91372 -1.735923,0 -3.49192,-3.50964 -3.49192,-6.97917 0,-3.2098 0.377898,-4.13037 2.69929,-6.57551 1.48461,-1.56376 4.67615,-3.75587 7.09232,-4.87136 4.20873,-1.94308 4.76283,-2.00636 13.20735,-1.50831 4.84788,0.28592 10.94942,1.11894 13.55898,1.85115 2.60957,0.7322 4.94349,1.13246 5.18649,0.88946 0.88364,-0.88364 -0.51936,-1.89639 -3.96272,-2.86047 -1.94749,-0.54526 -3.37687,-1.36732 -3.20118,-1.84105 0.17459,-0.47074 0.79463,-0.71944 1.37787,-0.55267 2.90427,0.83048 8.82593,-0.89729 7.94737,-2.31882 -0.32355,-0.52352 -1.85498,-0.71258 -3.90253,-0.48179 -1.85351,0.20891 -3.37002,0.0754 -3.37002,-0.29664 0,-1.09726 -2.04433,-0.77347 -3.09279,0.48985 -0.64969,0.78283 -1.26453,0.92024 -1.86982,0.41789 -0.49602,-0.41165 -1.6206,-0.5605 -2.49909,-0.33077 -1.26048,0.32963 -1.77203,-0.0837 -2.42623,-1.96034 -0.92308,-2.64793 -2.05759,-2.97373 -4.05636,-1.16487 -1.2307,1.11377 -1.38394,1.0764 -1.87034,-0.45612 -0.36212,-1.14093 -0.97989,-1.55158 -1.95183,-1.29741 -1.03863,0.27161 -1.63157,-0.22922 -2.19921,-1.85756 -0.837,-2.40102 -1.64675,-2.68675 -4.01787,-1.41777 -1.33574,0.71487 -1.47059,0.59992 -1.13088,-0.96403 0.21214,-0.97663 1.64835,-8.19614 3.19158,-16.04336 3.06071,-15.5635 3.02388,-15.46377 9.77948,-26.48024 5.65215,-9.21704 10.42376,-14.06175 17.27922,-17.54392 4.59861,-2.33582 6.00609,-2.66547 12.39618,-2.9033 6.53694,-0.2433 7.59834,-0.0776 11.39219,1.77856 2.30712,1.12877 5.59579,3.65116 7.332,5.6236 3.04306,3.45709 13.10222,22.69128 13.10222,25.05282 0,0.7342 -1.34705,1.5199 -3.66332,2.13671 -4.46951,1.19022 -7.13384,2.75648 -7.13384,4.19369 0,0.61735 1.72821,1.64122 4.04894,2.39877 7.1255,2.32598 6.71971,1.46197 5.1138,10.88858 -1.15135,6.75838 -1.84696,8.87094 -3.75621,11.40769 -1.28875,1.71231 -4.68094,6.64738 -7.53818,10.96682 -3.41649,5.16486 -6.24983,8.53894 -8.27615,9.85561 -4.94359,3.21229 -18.31913,7.17162 -26.23304,7.76534 -3.81338,0.28608 -10.14364,1.31513 -14.06725,2.28677 -7.82126,1.93684 -8.2688,1.73545 -5.97983,-2.69094 0.79928,-1.54564 0.89716,-2.39035 0.31841,-2.74804 -1.19156,-0.73643 -2.09268,0.40773 -3.72918,4.73496 -1.21432,3.21093 -1.77528,3.8269 -3.66183,4.0209 -1.55011,0.15941 -2.75192,-0.32876 -3.95065,-1.60475 l 0,0 z m 66.09533,-31.23312 c 1.83485,-1.93008 3.36339,-4.73432 4.51911,-8.29068 2.28409,-7.02857 2.24804,-7.30216 -0.96221,-7.30216 -2.43016,0 -2.86337,0.34943 -4.54335,3.66471 -2.99958,5.91939 -5.88537,13.44279 -5.43552,14.17066 0.9329,1.50947 3.81029,0.50469 6.42197,-2.24253 z m -36.86675,-4.10314 c 2.06257,-2.06258 5.01942,-8.68618 5.57747,-12.49403 1.00688,-6.87049 -4.80072,-3.04713 -7.88234,5.18924 -2.85331,7.62616 -1.69321,11.30286 2.30487,7.30479 z m -10.45086,-20.16599 c 6.56876,-6.41577 6.39278,-11.32095 -0.22506,-6.27328 -3.13062,2.38785 -5.59161,6.16443 -5.59563,8.58696 -0.004,2.63331 1.27738,2.12382 5.82069,-2.31368 l 0,0 z m 40.78158,-11.28819 c 1.39112,-2.25089 -8.61043,-3.93735 -15.6311,-2.63571 -5.23046,0.96974 -3.83683,2.12113 3.14391,2.59745 10.84043,0.73967 12.05139,0.74338 12.48719,0.0383 z M 148.10929,253.7883 c 4.24174,-1.94498 8.3196,-3.74021 9.0619,-3.98941 2.75236,-0.92399 1.24528,-2.04395 -2.75045,-2.04395 -8.56613,0 -16.94398,2.53078 -21.15755,6.39127 -5.61979,5.14889 3.30576,4.93371 14.8461,-0.35791 l 0,0 z"
+         id="path4850"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 103.31145,312.62904 c -2.30319,-0.8128 -3.13777,-1.34836 -3.472291,-2.22822 -0.388294,-1.02129 -0.315047,-3.60478 0.15009,-5.29379 0.225821,-0.82001 1.279301,-4.86522 2.341061,-8.98934 3.38303,-13.14044 3.65754,-13.94714 7.97964,-23.44958 2.74188,-6.02823 3.04683,-6.57977 3.12364,-5.64965 0.0468,0.56692 -0.0936,1.67123 -0.31215,2.45403 -0.21849,0.7828 -0.47885,2.09813 -0.57858,2.92295 -0.0997,0.82483 -0.65666,3.40155 -1.23763,5.72606 -0.58097,2.32451 -1.55644,7.09016 -2.16771,10.59033 -0.61127,3.50018 -1.53967,8.06456 -2.0631,10.14307 -1.25861,4.99788 -1.23283,7.35431 0.0804,7.35004 0.25717,-8.2e-4 1.31215,-0.6757 2.3444,-1.49968 1.03225,-0.82399 1.97006,-1.49817 2.08402,-1.49817 0.38549,0 0.53821,0.85469 0.53821,3.01207 0,1.84347 0.0748,2.18951 0.52558,2.43075 0.65365,0.34982 1.30158,0.13191 2.27108,-0.76381 0.54824,-0.50652 0.83308,-0.61299 1.05263,-0.39344 0.41362,0.41362 1.03892,3.21276 0.80298,3.59452 -0.31766,0.51398 -1.80324,0.80912 -5.01273,0.99589 -2.16797,0.12616 -3.34554,0.32683 -4.07882,0.69508 -1.34,0.67294 -2.11641,0.64645 -4.37073,-0.14911 l 0,0 z"
+         id="path4852"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 119.9044,310.22629 c 0.69689,-0.94183 1.475,-1.78346 1.64885,-1.78346 0.25772,0 0.50897,1.06046 0.35187,1.48516 -0.1959,0.52955 -1.12272,1.02133 -1.92484,1.02133 l -0.61088,0 0.535,-0.72303 z"
+         id="path4854"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 160.90549,357.60411 c -1.8739,-0.27292 -2.0627,-0.86148 -1.48298,-4.62299 0.15526,-1.00741 0.28385,-2.57739 0.28575,-3.48883 0.004,-1.98379 -0.0779,-2.08894 -2.02101,-2.58952 -2.80029,-0.72142 -3.25396,-1.37713 -2.49464,-3.60561 0.62145,-1.82384 1.06909,-2.12116 5.86875,-3.89792 7.50916,-2.77977 8.71003,-3.26045 10.98689,-4.39783 l 2.22035,-1.10914 3.41968,3.51922 3.41968,3.51923 1.24698,-1.29381 c 1.87733,-1.94784 1.90615,-2.03113 1.99967,-5.77937 0.0493,-1.97406 -0.007,-3.71951 -0.14621,-4.5175 -0.20657,-1.18626 -0.1941,-1.34398 0.14208,-1.79593 0.35983,-0.48373 6.3591,-4.40747 7.41871,-4.8521 0.45852,-0.19239 0.70106,-0.14877 1.72323,0.30995 1.00135,0.44938 1.53189,0.54897 3.35255,0.62932 2.28196,0.1007 5.26236,-0.18489 6.85006,-0.65639 1.44129,-0.42801 2.82572,-1.77035 2.55458,-2.47692 -0.3162,-0.824 -4.86782,-3.28567 -6.4676,-3.49789 -1.08832,-0.14437 -1.13665,-0.30793 -0.53903,-1.8241 0.46207,-1.17228 0.39075,-1.50122 -0.49392,-2.27797 -0.88284,-0.77514 -2.79791,-1.34266 -5.39262,-1.59806 -1.16648,-0.11482 -2.20763,-0.2884 -2.31368,-0.38574 -0.10819,-0.0993 -0.19845,-1.276 -0.20568,-2.68134 -0.0117,-2.27358 -0.05,-2.5415 -0.4158,-2.9073 -1.09073,-1.09073 -3.18378,0.58718 -5.60205,4.49091 -1.97222,3.18368 -3.03399,4.02078 -5.10384,4.02386 -0.85444,10e-4 -0.88322,-0.13474 -0.3373,-1.59384 0.89368,-2.38858 2.70696,-11.60279 2.99537,-15.22106 0.0737,-0.92436 0.244,-1.83115 0.37849,-2.01507 0.22786,-0.31162 0.32161,-0.29395 1.37557,0.25925 1.5162,0.79582 2.71803,1.14508 4.79686,1.39402 1.84395,0.22081 3.94071,0.70357 4.20604,0.9684 0.24076,0.2403 0.50532,1.54322 0.51171,2.52012 0.003,0.47719 0.096,1.19299 0.20646,1.59065 0.18154,0.65366 0.26345,0.72302 0.85386,0.72302 0.41952,0 1.50121,-0.43086 3.02474,-1.20483 2.22122,-1.12841 2.44526,-1.20162 3.53142,-1.154 1.40093,0.0614 4.72058,0.83362 6.51971,1.51658 1.47478,0.55985 2.44868,1.28011 2.44868,1.81097 0,0.20035 -0.56908,0.84592 -1.30144,1.47638 -3.02054,2.60025 -3.97854,3.89545 -3.86696,5.22807 0.0819,0.97876 0.59227,1.19098 2.85473,1.18713 2.45689,-0.004 4.50407,-0.28624 5.75993,-0.79363 1.76953,-0.71492 2.10203,-0.0831 1.55804,2.96067 -0.80189,4.48682 -2.71598,9.26608 -5.79479,14.46898 -3.19882,5.40569 -5.97029,8.62991 -10.52152,12.24036 -4.94073,3.91943 -10.23948,7.15152 -12.99563,7.92695 -0.72802,0.20483 -1.86581,0.76045 -2.7582,1.34691 -2.09109,1.37424 -2.36213,1.35325 -4.31496,-0.33426 -1.88861,-1.63201 -2.59076,-2.01299 -3.70997,-2.01299 -1.33336,0 -2.93633,0.98772 -3.56984,2.19968 -0.30266,0.57899 -0.60079,2.7263 -0.78177,5.63073 -0.15071,2.41863 0.26321,2.12165 -3.55345,2.5495 -2.76323,0.30976 -4.6563,0.33821 -6.32568,0.0951 z m 32.53377,-20.74884 c 1.00357,-1.27584 1.44894,-4.96899 0.89791,-7.44576 -0.39669,-1.78307 -0.94124,-2.64203 -1.90826,-3.01008 -0.71817,-0.27334 -0.73795,-0.26824 -1.38197,0.35596 -0.82907,0.80357 -1.46548,2.27553 -1.5933,3.68516 -0.21733,2.39676 1.83218,6.92325 3.13472,6.92325 0.25757,0 0.62239,-0.21804 0.8509,-0.50853 z"
+         id="path4856"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 186.0298,294.39203 c -1.36971,-0.40078 -2.18848,-0.80927 -2.65474,-1.32448 -0.32083,-0.35452 -0.32301,-0.49869 -0.0383,-2.53977 0.32335,-2.31829 0.64995,-3.52466 0.95365,-3.52247 0.10376,7.5e-4 0.54446,0.89848 0.97933,1.99495 0.43487,1.09647 1.19967,2.67953 1.69956,3.51789 1.29836,2.1775 1.14482,2.48375 -0.93947,1.87388 l 0,0 z"
+         id="path4858"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ac9393;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 56.022422,124.23792 c -8.120048,-2.60606 -11.423929,-4.5754 -14.016764,-8.35497 -2.285057,-3.33091 -5.169142,-10.34109 -5.169142,-12.56433 0,-1.77208 -1.393391,-2.0285 -2.028553,-0.3733 -0.700047,1.8243 2.494648,10.20446 5.467811,14.34289 1.501801,2.0904 2.730548,4.00601 2.730548,4.25692 0,0.25091 -1.822021,0.21709 -4.048935,-0.0751 -5.545595,-0.72776 -12.498879,-3.94534 -15.217652,-7.04185 -2.028738,-2.31061 -2.212923,-2.95327 -1.813332,-6.32719 l 0.444766,-3.75535 -3.017934,-0.48259 c -2.605401,-0.41662 -3.171184,-0.88018 -4.139059,-3.3913 -0.61662,-1.599796 -1.225778,-3.130718 -1.353685,-3.40205 -0.127907,-0.271325 1.066372,-1.296107 2.653953,-2.277291 3.571476,-2.207318 7.98246,-6.032127 7.98246,-6.921697 0,-0.364875 -3.369259,-0.762735 -7.487242,-0.884141 L 9.5224211,86.765818 8.4516858,83.295302 C 7.1191318,78.976167 7.0575801,63.549128 8.340911,55.531174 8.8501019,52.349868 9.5039857,41.070691 9.7939862,30.466337 10.282522,12.602209 10.45292,10.888224 12.113325,7.1367575 c 0.985636,-2.2269144 2.106672,-4.0489353 2.491192,-4.0489353 2.184898,0 7.929032,4.0408053 13.035806,9.1702518 5.644383,5.669444 11.526654,15.021141 14.606285,23.22123 1.881916,5.010951 4.863401,7.205907 4.452227,3.27771 -0.202896,-1.93839 0.142964,-2.246659 4.019745,-3.582836 5.878392,-2.026055 19.448233,-2.146289 25.696409,-0.227681 4.366747,1.340884 4.474223,1.439387 3.987658,3.654706 -0.867916,3.951596 0.946446,2.524223 3.572869,-2.810806 2.857484,-5.804365 10.770577,-14.687719 17.771164,-19.950151 2.55914,-1.923743 4.96996,-3.497715 5.35738,-3.497715 1.22094,0 5.8769,7.992229 7.20982,12.376094 1.78205,5.86102 2.46064,20.361213 1.17674,25.144592 -0.69065,2.573146 -0.95806,8.43163 -0.85713,18.778796 0.081,8.306214 -0.17569,15.522106 -0.57343,16.118232 -0.60247,0.90299 -1.50134,0.925641 -5.50162,0.138628 -2.62982,-0.517384 -5.31887,-1.146905 -5.97566,-1.398942 -0.96971,-0.372116 -1.09357,-0.05746 -0.65901,1.673992 0.79097,3.151499 3.29912,6.178799 6.70525,8.093151 1.65902,0.93242 3.0164,1.833612 3.0164,2.002642 0,0.169037 -0.71904,2.229143 -1.59787,4.578011 -1.76075,4.706013 -1.78206,4.714543 -8.81368,3.528053 -2.120873,-0.35787 -4.139256,-0.38376 -4.485297,-0.0575 -0.346034,0.32623 1.141514,2.41102 3.305667,4.63288 4.44796,4.56655 4.4862,4.29385 -1.382029,9.85653 -3.392391,3.21575 -4.978409,3.75642 -10.112158,3.44724 -3.926851,-0.23651 -4.22085,-0.77001 -2.016771,-3.65971 2.797259,-3.66738 5.635038,-10.05895 6.285899,-14.15781 0.795241,-5.008042 -1.223126,-3.821326 -2.856019,1.67923 -0.71188,2.39803 -2.208205,5.91948 -3.325179,7.82544 -2.582626,4.40692 -9.348331,11.12825 -12.575052,12.49258 -3.85437,1.6297 -10.647061,1.17937 -18.050509,-1.19671 l 0,1e-5 z m 22.695725,-7.83223 c 2.677598,-0.74355 4.401263,-2.50908 3.413711,-3.49664 -0.218642,-0.21864 -1.692106,0.14338 -3.274364,0.80449 -1.582259,0.66111 -3.766033,1.20202 -4.852832,1.20202 -2.942437,0 -8.236076,-2.83065 -9.41572,-5.03483 -0.971464,-1.8152 -0.839825,-2.12808 2.134259,-5.07273 3.390062,-3.35651 6.245134,-8.633181 6.919418,-12.788307 0.615273,-3.791484 -1.040111,-3.196268 -3.083578,1.108738 -1.690358,3.561104 -1.856923,3.679094 -5.969508,4.228646 -4.604266,0.615261 -9.745946,0.108049 -10.449812,-1.030828 -0.243688,-0.394297 -0.582238,-2.115796 -0.752332,-3.825558 -0.381518,-3.834966 -1.074791,-5.133857 -1.972897,-3.696338 -0.964591,1.543924 0.07908,9.105246 1.704516,12.349047 1.499095,2.99167 4.821582,6.0499 6.572675,6.0499 2.408275,0 0.870203,4.28337 -2.08723,5.81272 -3.311591,1.71249 -6.205723,1.36814 -10.294447,-1.22485 -2.040806,-1.29424 -3.872129,-2.19159 -4.069605,-1.99412 -0.846208,0.84621 1.593065,3.68994 4.388339,5.11599 4.895276,2.49738 10.882757,1.69435 13.828139,-1.85462 0.874103,-1.05323 1.276607,-0.96569 3.557005,0.77366 4.257514,3.24736 8.445639,4.03388 13.704263,2.57361 l 0,0 z m -0.579521,-8.49836 c 0.373137,-0.60375 0.752851,-0.60375 1.356599,0 0.936433,0.93643 8.244961,1.16712 8.237318,0.26 -0.0077,-0.88388 -4.555569,-3.27771 -6.227432,-3.27771 -0.813974,0 -1.479952,0.41647 -1.479952,0.92547 0,0.71981 -0.20566,0.71981 -0.925471,0 -1.085033,-1.08503 -6.015561,-1.25661 -6.015561,-0.20933 0,1.08138 2.281585,3.13999 3.480089,3.13999 0.580929,0 1.289414,-0.37729 1.57441,-0.83842 z m -31.661788,-1.86087 c 0,-1.03497 -0.600185,-1.62737 -1.824207,-1.80055 -2.223344,-0.31457 -3.563121,0.86942 -2.909937,2.57159 0.727783,1.89657 4.734144,1.24407 4.734144,-0.77104 z m 5.756156,0.80501 c 1.312691,-1.58169 0.330631,-2.73307 -2.331155,-2.73307 -1.721139,0 -2.268162,0.3565 -2.268162,1.47818 0,2.31626 3.031911,3.1435 4.599317,1.25489 z m 29.578124,-3.61975 c 1.716887,-0.9037 2.80838,-2.12352 2.829588,-3.16226 0.0062,-0.318128 -1.387288,-0.578417 -3.0973,-0.578417 -3.394567,0 -4.702942,1.491737 -3.052547,3.480337 1.143472,1.3778 1.19028,1.38147 3.320259,0.26034 z M 48.01929,101.41911 c 0,-1.12079 -0.597591,-1.610885 -2.186019,-1.792771 -1.20231,-0.137679 -2.724519,-0.04365 -3.382688,0.208887 -1.048648,0.402404 -1.021717,0.652514 0.217714,2.022074 1.846837,2.04074 5.350993,1.75378 5.350993,-0.43819 z m 30.317044,-21.594324 -0.315127,-2.69929 4.510791,0 c 5.146713,0 8.006226,-1.222453 10.897744,-4.658827 1.676228,-1.99208 2.019933,-3.169607 2.019933,-6.920245 l 0,-4.519694 2.69929,0.438034 c 2.149605,0.348833 2.699295,0.184898 2.699295,-0.80502 0,-2.09431 -3.485082,-2.278578 -11.572919,-0.6119 -13.057724,2.690833 -15.272472,4.641843 -14.438795,12.71939 0.420238,4.071714 2.346333,9.756842 3.305572,9.756842 0.280139,0 0.367536,-1.21468 0.194216,-2.69929 l 0,0 z M 49.006345,73.593289 C 49.269518,67.085717 47.16588,62.189131 43.105302,59.857577 38.882961,57.433139 21.412001,56.464914 21.412001,58.655353 c 0,0.351362 1.271887,0.746553 2.826415,0.878202 2.749417,0.23284 2.862304,0.367071 4.143802,4.927222 2.495742,8.880984 3.932654,10.11888 12.595711,10.851176 4.740194,0.400694 5.873043,0.731054 5.534265,1.613894 -0.54224,1.413056 0.222939,2.683528 1.384965,2.299539 0.532897,-0.176095 0.980441,-2.448584 1.109186,-5.632097 l 0,0 z M 65.309879,62.249643 c 1.348609,-3.547111 1.778422,-13.556203 0.859979,-20.026389 -1.046497,-7.372285 -1.784168,-9.151163 -3.20545,-7.729881 -2.184023,2.184023 -1.653691,29.521285 0.572701,29.521285 0.605941,0 1.403688,-0.794257 1.77277,-1.765015 z M 52.737248,52.733995 c 1.168627,-2.796918 0.956636,-7.224029 -0.455317,-9.508617 -0.558569,-0.903782 -0.883604,-0.917986 -1.890185,-0.0826 -0.850798,0.706099 -1.215617,2.350321 -1.215617,5.478718 0,7.353709 1.488583,9.072773 3.561119,4.112497 z m 24.16922,0.546636 c 1.395563,-2.607634 -0.543528,-9.317843 -2.692637,-9.317843 -0.86227,0 -1.129704,1.058914 -1.129704,4.473109 0,5.642619 2.023033,8.20677 3.822341,4.844734 z M 110.51724,47.20348 c 2.24214,-10.060183 0.27339,-29.426227 -3.12401,-30.72993 -2.10381,-0.807309 -8.370104,4.849535 -15.896874,14.350771 -4.188288,5.286982 -7.615068,10.232467 -7.615068,10.989968 0,1.195303 0.738757,1.377654 5.591387,1.380156 6.716729,0.0035 8.763893,1.053182 14.093885,7.226885 2.73914,3.17274 3.96915,4.097878 4.67235,3.514271 0.52496,-0.435676 1.5502,-3.465131 2.27833,-6.732121 l 0,0 z M 24.274232,43.138335 c 3.72795,-0.877622 8.860401,-1.837942 11.405446,-2.134042 4.57389,-0.532145 4.626171,-0.565967 4.524986,-2.927347 -0.137353,-3.205395 -4.784403,-10.293091 -11.001351,-16.779295 -4.911662,-5.124386 -10.454967,-9.726345 -11.7159,-9.726345 -0.893494,0 -1.35071,4.953187 -1.833135,19.859063 -0.368922,11.398834 -0.267887,13.303645 0.705646,13.303645 0.624919,0 4.186357,-0.718055 7.914308,-1.595679 z"
+         id="path4860"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#99ff55;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 81.637193,75.576301 c -0.449904,-0.05364 -1.596969,-0.297556 -2.549032,-0.542028 -2.330008,-0.598304 -2.851628,-1.372359 -2.685217,-3.984713 0.129339,-2.030401 1.273771,-4.769047 2.457679,-5.88127 0.72546,-0.681535 3.375242,-1.785605 3.534065,-1.472519 0.05542,0.109257 0.02166,1.18026 -0.07503,2.380006 -0.122983,1.526012 -0.05817,2.631904 0.215725,3.681038 0.659481,2.526063 1.127188,4.740798 1.13725,5.385222 0.01,0.639209 -0.107092,0.664186 -2.035443,0.434264 z"
+         id="path4862"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#99ff55;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="M 87.085475,74.383932 C 86.921391,74.118437 86.356044,66.675973 86.299024,64.030756 l -0.02645,-1.227013 1.908686,-0.483223 c 1.049778,-0.265772 2.338141,-0.449824 2.86303,-0.409004 0.826682,0.06429 1.038983,0.238354 1.58708,1.301231 0.544759,1.056402 0.617653,1.530321 0.524251,3.408369 -0.15155,3.047231 -1.465501,5.541434 -3.816355,7.244383 -1.136401,0.823205 -1.949796,1.010308 -2.253792,0.518433 z"
+         id="path4864"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#99ff55;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 35.804401,72.763903 c -1.151817,-0.465813 -3.406005,-2.992778 -4.218437,-4.728905 -0.954114,-2.038895 -1.811459,-4.992895 -2.058061,-7.091093 -0.233232,-1.984446 0.0594,-2.139978 3.590015,-1.908061 3.401601,0.223443 3.665145,0.442228 3.665145,3.042677 0,1.025826 0.08062,3.909306 0.179155,6.407733 0.191993,4.868111 0.202868,4.827932 -1.157817,4.277649 l 0,0 z"
+         id="path4866"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#99ff55;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 41.038131,71.870003 c 0.108925,-1.087269 0.205855,-3.387918 0.2154,-5.112552 0.0163,-2.944417 -0.02784,-3.210549 -0.72359,-4.362712 -0.834604,-1.382113 -0.931303,-1.908687 -0.350509,-1.908687 0.608886,0 3.095432,1.54719 3.836479,2.38715 1.087512,1.232672 2.768808,4.965808 3.275482,7.272856 l 0.47473,2.161594 -0.605299,0.490141 c -0.867224,0.702235 -2.331184,1.045797 -4.46371,1.047544 l -1.85703,0.0015 0.198047,-1.976854 z"
+         id="path4868"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#112b00;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 84.434053,70.6099 c -0.784677,-1.846858 -0.948936,-4.713664 -0.32418,-5.657891 0.117514,-0.177605 0.160805,-0.171148 0.329144,0.04909 0.33894,0.443442 0.491696,1.583916 0.490907,3.665093 -8.71e-4,2.299001 -0.129949,2.804959 -0.495871,1.943705 z"
+         id="path4870"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#112b00;fill-opacity:1;stroke:#c8b7b7;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 39.003543,70.948582 c -0.687444,-2.150038 -0.848879,-6.576552 -0.284983,-7.814169 0.226129,-0.496299 0.397588,-0.412622 0.803647,0.392202 0.320259,0.634768 0.340688,0.80313 0.338371,2.788741 -0.0024,2.036396 -0.185219,3.606443 -0.539004,4.628326 l -0.166151,0.479916 -0.15188,-0.475016 z"
+         id="path4872"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 33.481268,177.03628 c -4.804139,-0.47014 -10.032435,-2.67242 -14.653289,-6.17229 -1.597481,-1.20994 -4.246588,-3.88721 -5.616884,-5.6766 -3.174408,-4.14527 -6.915535,-11.49615 -6.915535,-13.58822 0,-0.63331 0.4757729,-1.73989 0.7480667,-1.73989 0.08786,0 1.0102711,1.14961 2.0498031,2.55468 4.6757122,6.3199 13.8557042,13.91005 26.6051122,21.9975 2.361405,1.49793 2.756859,1.8388 2.399783,2.06856 -0.79747,0.51311 -2.707062,0.74318 -4.617057,0.55626 z"
+         id="path4876"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 35.216526,146.25823 c -8.872988,-3.83793 -11.001003,-5.01938 -15.122973,-8.39607 -1.721993,-1.41064 -3.772058,-3.81316 -3.772058,-4.42055 0,-0.17703 0.356881,-0.77335 0.79307,-1.32517 l 0.793069,-1.00331 1.472406,1.44182 c 0.809824,0.79301 3.019799,2.73336 4.911056,4.31191 1.891257,1.57854 4.147092,3.46467 5.012967,4.19139 0.865875,0.72672 2.745617,2.10348 4.177205,3.05947 1.431588,0.956 2.666631,1.83638 2.74454,1.95641 0.373285,0.57509 0.03664,0.6365 -1.009282,0.1841 z"
+         id="path4878"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 79.263945,143.48263 c -1.091457,-0.0706 -2.17353,-0.24919 -2.478985,-0.40924 l -0.542066,-0.28402 0.55092,-0.21727 c 0.303006,-0.1195 2.71864,-0.79299 5.368077,-1.49664 5.550645,-1.47416 7.031782,-2.02772 11.667794,-4.36072 1.855762,-0.93388 3.555883,-1.69877 3.778044,-1.69976 0.222163,-9.9e-4 0.566581,0.17793 0.765374,0.39759 0.353603,0.39073 0.353206,0.41467 -0.01832,1.10415 -0.639421,1.18664 -5.630983,4.45063 -8.918861,5.83205 -2.228836,0.93646 -6.265412,1.38641 -10.171976,1.13386 l -4e-6,0 z"
+         id="path4880"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 99.138663,164.33077 c -0.168604,-0.27281 0.825402,-1.18714 4.522587,-4.16009 3.41626,-2.74705 7.73291,-6.52174 10.95063,-9.57577 0.98491,-0.93482 1.90063,-1.69966 2.03492,-1.69966 0.29538,0 1.98258,1.04171 2.58513,1.59613 0.2386,0.21953 0.43382,0.54873 0.43382,0.73155 0,0.61685 -1.75737,3.84867 -2.72512,5.01154 -3.03659,3.64884 -7.87331,6.16747 -14.95095,7.78543 -2.378478,0.54372 -2.686356,0.57729 -2.851017,0.31087 z"
+         id="path4882"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 136.40766,175.93635 c 1.23451,-1.72426 7.90176,-8.72449 8.30949,-8.72449 0.18978,0 0.23191,0.26624 0.16666,1.0531 -0.17867,2.15456 -2.20184,5.17831 -4.38825,6.55852 -0.88258,0.55714 -3.63909,1.64309 -4.17073,1.64309 -0.2471,0 -0.23324,-0.0888 0.0828,-0.53022 z"
+         id="path4884"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 128.00962,206.2345 c -0.38197,-0.1692 0.16261,-0.82704 1.93171,-2.33342 1.87216,-1.59414 4.57204,-3.47116 5.23063,-3.63645 0.88596,-0.22237 1.62163,0.53534 1.93573,1.99373 0.11677,0.54214 0.0548,0.70623 -0.442,1.1703 -0.71785,0.67058 -2.56677,1.58876 -4.46752,2.21859 -1.4194,0.47033 -3.7233,0.79335 -4.18855,0.58725 z"
+         id="path4886"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 147.81549,195.50726 c 0,-0.75234 6.77375,-6.36797 7.29366,-6.04664 0.10014,0.0619 0.24096,0.42639 0.31292,0.81 0.1019,0.54318 0.0188,0.92642 -0.3755,1.73242 -0.96243,1.96713 -3.44663,3.52521 -5.90053,3.70079 -1.10129,0.0788 -1.33055,0.0449 -1.33055,-0.19657 z"
+         id="path4888"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 22.394898,240.48207 c -1.908784,-0.17979 -3.625365,-0.39476 -3.814626,-0.47773 -0.712307,-0.31226 -2.180154,-2.94456 -4.14378,-7.4311 -1.188738,-2.71605 -1.30555,-3.0849 -0.976964,-3.0849 0.136908,0 1.422507,0.55802 2.856888,1.24005 1.434381,0.68203 4.51675,1.89872 6.849708,2.70375 9.579798,3.30568 11.857596,4.19459 11.857596,4.6274 0,0.31522 -2.917735,1.91696 -4.380265,2.40461 -1.459746,0.48673 -3.230451,0.49057 -8.248557,0.0179 z"
+         id="path4890"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 45.242461,257.7349 c -4.039182,-0.52681 -8.127963,-1.41282 -8.376615,-1.81514 -0.192842,-0.31203 2.101204,-0.44102 7.812204,-0.43927 5.952007,0.002 7.651208,0.10804 8.20485,0.51287 0.294463,0.21532 0.239057,0.29299 -0.522416,0.73236 -1.96466,1.13362 -3.97671,1.41889 -7.118023,1.00918 z"
+         id="path4892"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 67.56904,253.73375 c -0.15569,-0.27529 -0.270252,-1.42818 -0.313512,-3.15503 l -0.06817,-2.72121 2.282994,-0.81305 c 5.799199,-2.0653 11.790233,-3.3469 19.038656,-4.07274 2.47972,-0.24831 5.611747,-0.15859 5.940515,0.17017 0.143166,0.14317 -0.07641,0.3824 -0.738248,0.80429 -2.489544,1.58701 -12.486823,6.25722 -17.065624,7.97218 -2.957797,1.10783 -7.242939,2.2492 -8.444311,2.2492 -0.212827,0 -0.497361,-0.19521 -0.6323,-0.43381 z"
+         id="path4894"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 98.939056,272.53847 c -7.379787,-0.26863 -14.997165,-1.18457 -15.701603,-1.888 -0.240835,-0.24049 -0.188243,-0.31381 0.401981,-0.56042 1.384263,-0.57839 5.964464,-0.96431 11.539896,-0.97234 4.64775,-0.007 5.42669,0.0358 6.31097,0.34412 0.88431,0.30835 1.03513,0.43964 1.22216,1.06392 0.11736,0.39169 0.18397,0.97088 0.14805,1.28709 -0.0643,0.56626 -0.0857,0.57639 -1.41497,0.67134 -0.74231,0.053 -1.870223,0.0774 -2.506484,0.0543 z"
+         id="path4896"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d=""
+         id="path4898"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 55.350854,279.52164 c -1.146804,-0.30934 -2.90739,-1.08088 -3.45657,-1.51477 -0.366332,-0.28942 -0.340837,-0.30496 0.509908,-0.31079 1.39721,-0.01 4.985075,1.2229 4.985075,1.71242 0,0.18511 -0.481155,0.40958 -0.835196,0.38963 -0.123882,-0.007 -0.665329,-0.1314 -1.203217,-0.27649 l 0,0 z"
+         id="path4900"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 90.648378,294.56597 c -3.601202,-0.66428 -6.570887,-1.52569 -13.97689,-4.05426 -2.47965,-0.84661 -3.596448,-1.4746 -3.345235,-1.88107 0.06324,-0.10231 0.385922,-0.13795 0.717082,-0.0792 0.33116,0.0588 2.380748,0.41009 4.554641,0.78074 5.687856,0.96976 11.512208,2.87714 13.553315,4.43848 1.450641,1.10967 1.127731,1.28054 -1.502913,0.7953 z"
+         id="path4902"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 48.771553,301.68896 c -2.960218,-0.86579 -8.018876,-2.61402 -8.952509,-3.09393 -0.530983,-0.27293 -0.746389,-0.635 -0.746389,-1.25459 0,-0.53488 0.739256,-0.48367 4.145339,0.28716 2.984234,0.67537 5.032311,1.44736 7.719517,2.90974 1.81245,0.98635 2.444665,1.56543 2.009541,1.84065 -0.482857,0.30542 -1.154013,0.19467 -4.175499,-0.68903 l 0,0 z"
+         id="path4904"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 63.112596,314.9498 c -0.156761,-0.27109 0.765778,-3.92065 1.067276,-4.22215 0.272013,-0.27201 0.39813,-0.27173 1.334057,0.003 1.298677,0.38126 4.316318,1.88877 4.296598,2.14644 -0.02049,0.26774 -1.822559,1.14464 -3.552821,1.72882 -1.394951,0.47098 -2.971896,0.64338 -3.14511,0.34385 z"
+         id="path4906"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 95.572854,308.14476 c -1.761129,-0.46541 -3.916426,-1.28747 -6.118627,-2.33373 -1.398986,-0.66466 -1.606869,-0.82066 -1.312871,-0.98519 0.20763,-0.11619 2.350915,-0.20438 5.284294,-0.21744 l 4.934986,-0.022 -0.02476,1.37089 c -0.02786,1.54277 -0.371522,2.46534 -0.941079,2.52636 -0.211094,0.0226 -1.030969,-0.12991 -1.821944,-0.33894 z"
+         id="path4908"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 131.49383,297.44523 c -0.57044,-1.48656 2.71267,-8.91112 5.02431,-11.36217 0.77911,-0.8261 1.07998,-0.75717 1.07526,0.24636 -0.0131,2.79395 -2.26272,8.10195 -4.42551,10.44221 -0.9105,0.98522 -1.46834,1.20968 -1.67406,0.6736 z"
+         id="path4910"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.19280644;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 119.41114,279.54226 c -0.16756,-0.43665 0.58168,-1.72486 1.90574,-3.27665 1.21527,-1.42428 3.39676,-3.39582 3.75746,-3.39582 0.82983,0 -1.21145,3.71221 -2.93154,5.33121 -0.80738,0.75992 -2.06754,1.60982 -2.38693,1.60982 -0.13292,0 -0.28805,-0.12085 -0.34473,-0.26856 z"
+         id="path4912"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.04820161;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 156.8778,265.93113 c -0.45641,-0.0767 -0.55415,-0.14425 -0.28946,-0.20017 0.29737,-0.0628 2.14657,-0.0482 2.25971,0.0179 0.0931,0.0544 0.092,0.058 -0.0305,0.10454 -0.38864,0.14777 -1.30425,0.18445 -1.93978,0.0777 z"
+         id="path4914"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.04820161;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 134.31343,256.41619 c -0.65899,-0.15851 -0.65243,-0.49378 0.0226,-1.15387 0.87284,-0.85353 3.39945,-2.57035 4.86987,-3.30903 0.80338,-0.4036 1.90707,-0.8259 2.9403,-1.12505 1.86495,-0.53996 6.52428,-1.32545 8.50758,-1.43424 1.05941,-0.0581 1.58583,0.11719 1.58583,0.5281 0,0.26912 -0.32466,0.56174 -0.62323,0.56174 -0.30582,0 -1.91046,0.77615 -3.73395,1.80607 -1.69573,0.95777 -2.45529,1.32436 -4.14954,2.00269 -2.5927,1.03805 -5.4106,1.83201 -7.43361,2.09445 -0.57984,0.0752 -1.72444,0.092 -1.98584,0.0291 l 0,0 z"
+         id="path4916"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.04820161;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 182.56324,279.04507 c -1.3635,-0.31137 -3.71672,-0.90676 -4.68255,-1.18472 -2.10998,-0.60726 -3.19842,-1.20168 -3.19842,-1.74674 0,-0.20099 0.38581,-0.56331 0.82357,-0.77343 0.93015,-0.44644 3.17127,-1.10231 5.03293,-1.47288 1.44106,-0.28685 2.59647,-0.40325 2.81979,-0.28407 0.21333,0.11384 0.33372,0.47757 0.46706,1.41113 0.10741,0.75192 0.1227,3.3107 0.0225,3.75973 -0.0761,0.34083 -0.17061,0.50726 -0.28579,0.50312 -0.0458,-0.002 -0.49537,-0.0971 -0.99907,-0.21214 z"
+         id="path4918"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 166.97046,303.6489 c -0.27203,-0.27204 -0.2696,-0.34368 0.0546,-1.61121 0.48223,-1.88553 3.14315,-7.94902 4.60514,-10.49385 1.13101,-1.96871 2.4864,-3.03597 2.89233,-2.27748 0.49577,0.92635 -0.59817,5.32578 -2.03095,8.16778 -1.12817,2.23778 -3.07664,4.84689 -4.40199,5.89452 -0.76187,0.60223 -0.82037,0.61897 -1.11911,0.32024 l 0,0 z"
+         id="path4920"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 168.80283,319.95162 c -0.5515,-0.34085 0.2751,-2.4157 2.29446,-5.75936 1.74711,-2.89288 4.47208,-6.85516 5.74332,-8.35116 0.38179,-0.4493 0.93145,-1.21632 1.22147,-1.70449 0.29002,-0.48817 0.66184,-1.00933 0.82627,-1.15814 0.2948,-0.26679 0.30164,-0.2669 0.49115,-0.008 0.27804,0.38024 0.23774,1.2467 -0.14619,3.14286 -0.68082,3.36244 -1.83091,6.49556 -3.10245,8.45181 -1.32544,2.03919 -2.98973,3.48582 -5.40196,4.69551 -1.4802,0.74229 -1.70953,0.82453 -1.92607,0.6907 z"
+         id="path4922"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 186.08167,312.28986 c -0.30274,-0.10742 -0.37457,-0.21615 -0.37311,-0.56475 0.002,-0.58642 0.91955,-2.20134 1.7926,-3.1566 1.22752,-1.3431 1.7503,-1.27744 1.7503,0.21982 0,0.82547 -0.31545,2.55267 -0.54431,2.9803 -0.23598,0.44093 -1.9133,0.77393 -2.62548,0.52123 z"
+         id="path4924"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 195.34292,300.11902 c -0.52686,-0.52685 -0.10607,-1.34502 0.77695,-1.51067 0.97999,-0.18385 1.84862,0.40146 1.59312,1.07347 -0.14956,0.3934 -0.2997,0.45795 -1.33835,0.57546 -0.65316,0.0739 -0.84531,0.0482 -1.03172,-0.13826 z"
+         id="path4926"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 207.8766,309.72582 c -0.93568,-0.16763 -1.01442,-0.28897 -0.6604,-1.01764 0.54646,-1.12478 1.61157,-2.07321 3.28973,-2.92934 0.81306,-0.4148 1.1586,-0.36103 1.86511,0.2902 0.65301,0.60192 1.81514,2.01225 2.08988,2.53621 0.1521,0.29009 0.12332,0.32861 -0.42343,0.56691 -1.06868,0.46577 -4.78653,0.79988 -6.16089,0.55366 l 0,0 z"
+         id="path4928"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 195.93306,322.12689 c -0.95218,-0.19943 -1.82027,-0.7024 -1.97586,-1.14484 -0.12441,-0.35374 -0.0863,-0.42773 0.47663,-0.92569 1.3323,-1.1785 3.21363,-1.6532 5.43086,-1.37033 1.99862,0.25498 3.18233,0.79569 3.82752,1.74838 0.26743,0.39489 0.30572,0.55677 0.20167,0.85263 -0.22187,0.63089 -1.38678,0.86274 -4.62182,0.91991 -1.49968,0.0265 -3.00223,-0.01 -3.339,-0.0801 z"
+         id="path4930"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 180.02602,338.10032 c -0.94168,-0.68216 -3.03058,-3.43978 -3.38371,-4.46697 -0.31353,-0.91201 0.0426,-1.41839 2.0432,-2.90496 2.33041,-1.73165 3.04456,-2.01082 3.71051,-1.45047 1.5087,1.26949 1.0769,6.66625 -0.7018,8.77115 -0.47435,0.56135 -0.94411,0.57578 -1.6682,0.0513 z"
+         id="path4932"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 191.86817,334.57254 c -0.37969,-0.53744 -0.92935,-2.15335 -1.03951,-3.05598 -0.10859,-0.88984 0.0558,-1.63909 0.50641,-2.30771 0.57625,-0.8551 1.00771,-0.65046 1.4032,0.66556 0.30476,1.01414 0.29506,3.72483 -0.0161,4.50254 -0.26617,0.66521 -0.48654,0.71568 -0.85399,0.19559 z"
+         id="path4934"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 154.93519,358.52362 c -3.15947,-0.20145 -5.59176,-0.72178 -7.32518,-1.56703 -1.23891,-0.60412 -1.77535,-1.17557 -2.55123,-2.71777 -0.48879,-0.97156 -0.54281,-1.17549 -0.49466,-1.86728 0.11166,-1.60435 1.60864,-3.88355 3.79308,-5.77511 1.16541,-1.00915 4.61457,-3.52898 4.70572,-3.43783 0.0335,0.0335 0.11899,0.51908 0.18999,1.07908 0.15349,1.21062 0.28181,1.57809 0.82861,2.37283 0.65656,0.95428 1.69922,1.56496 3.01386,1.76519 0.38658,0.0589 0.53293,0.16448 0.66293,0.47834 0.18861,0.45535 0.20784,2.75 0.0591,7.05488 l -0.0954,2.76078 -0.56137,-0.02 c -0.30876,-0.011 -1.31022,-0.0677 -2.22547,-0.12609 l 0,0 z"
+         id="path4936"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 172.83982,355.22725 c -0.53507,-0.84566 -0.68081,-3.70414 -0.23315,-4.57265 0.52017,-1.00916 2.15641,-2.21 3.01131,-2.21 1.16346,0 3.71942,2.42102 3.49595,3.31138 -0.18343,0.73084 -4.99371,3.77802 -5.96397,3.77802 -0.0638,0 -0.20339,-0.13804 -0.31014,-0.30675 z"
+         id="path4938"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 81.516312,107.56697 c -0.310624,-0.0999 -0.611951,-0.32245 -0.611951,-0.45201 0,-0.29679 0.414409,-0.55231 0.889787,-0.54863 0.565222,0.004 1.297631,0.48751 1.184799,0.78154 -0.09946,0.25918 -0.944375,0.38575 -1.462635,0.2191 l 0,0 z"
+         id="path4940"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 76.578492,107.27617 c -0.324,-0.34942 -0.178253,-0.89312 0.306628,-1.14387 0.413864,-0.21401 0.883542,-0.0394 0.883542,0.32856 0,0.33818 -0.599359,1.00207 -0.904677,1.00207 -0.06177,0 -0.190246,-0.084 -0.285493,-0.18676 z"
+         id="path4942"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 80.15294,102.45095 c -0.429184,-0.45685 0.02214,-1.19037 0.732808,-1.191 0.231016,-2e-4 0.309917,0.033 0.397987,0.1674 0.161837,0.24699 0.06692,0.54849 -0.282774,0.89818 -0.353612,0.35361 -0.59948,0.38998 -0.848021,0.12542 l 0,0 z"
+         id="path4944"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 50.024542,106.29036 c -0.194566,-0.13221 -0.238586,-0.20514 -0.238586,-0.39528 0,-0.66057 1.322972,-0.74173 1.615764,-0.0991 0.07087,0.15555 0.05671,0.19637 -0.134449,0.38753 -0.179772,0.17978 -0.276366,0.21806 -0.608905,0.24133 -0.331736,0.0232 -0.433571,0.002 -0.633824,-0.13446 z"
+         id="path4946"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 43.938339,106.82038 c -0.165532,-0.16553 -0.253376,-0.55123 -0.182126,-0.79967 0.16441,-0.57326 0.890401,-0.86525 1.317002,-0.52969 0.472951,0.37203 -0.02752,1.30773 -0.751385,1.40482 -0.197774,0.0265 -0.302016,0.006 -0.383491,-0.0755 z"
+         id="path4948"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 45.131644,101.96828 c -0.371635,-0.29288 -0.661464,-1.01604 -0.490007,-1.22263 0.18619,-0.22434 0.907606,-0.0718 1.209281,0.25576 0.340435,0.36961 0.313276,0.77532 -0.06744,1.00744 -0.291031,0.17744 -0.382412,0.17176 -0.651835,-0.0406 z"
+         id="path4950"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 11.634401,94.331252 c -0.06279,-0.06978 -0.203618,-0.2971 -0.312953,-0.50515 -0.264528,-0.503363 -1.6123658,-4.595658 -1.5592306,-4.734126 0.1349711,-0.351729 1.0590376,-0.443273 4.4726666,-0.443091 3.533719,1.88e-4 6.132487,0.129544 6.96902,0.346889 0.217859,0.0566 0.245499,0.08526 0.200243,0.207599 -0.09152,0.247397 -0.836599,0.932551 -1.588104,1.460372 -2.445534,1.717628 -6.347914,3.617866 -7.718726,3.758583 -0.283354,0.02909 -0.370162,0.01201 -0.462916,-0.09108 l 0,0 z"
+         id="path4952"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 19.357493,109.13239 c -0.145637,-0.13157 -0.41776,-0.46133 -0.604718,-0.7328 -0.993915,-1.44318 -1.103412,-2.46795 -0.304998,-2.85445 0.570646,-0.27625 1.591096,-0.0242 1.81537,0.44846 0.139199,0.29334 0.140596,0.9842 0.0038,1.89582 -0.163073,1.08702 -0.310567,1.4822 -0.553205,1.4822 -0.05032,0 -0.210647,-0.10766 -0.356284,-0.23923 z"
+         id="path4954"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 104.58892,109.27596 c -0.85567,-0.268 -1.92024,-1.05473 -3.44998,-2.54957 -1.09743,-1.0724 -1.616159,-1.7025 -1.524148,-1.85137 0.07022,-0.11363 0.416438,-0.0829 1.438698,0.12775 0.53139,0.10949 1.42922,0.23251 2.01093,0.27554 1.63747,0.12112 2.44398,0.33509 3.23027,0.857 0.81472,0.54078 0.92267,0.93235 0.50105,1.81746 -0.55363,1.16224 -1.29722,1.60809 -2.20682,1.32319 z"
+         id="path4956"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.06816737;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 110.62534,92.472235 c -0.92172,-0.302081 -1.81219,-0.823785 -2.94585,-1.725899 -1.79331,-1.427032 -3.66639,-3.584921 -3.66639,-4.223883 0,-0.306928 0.19041,-0.360572 1.2611,-0.355286 1.01951,0.005 1.8794,0.133746 3.37428,0.505075 2.18087,0.541731 4.3063,1.400415 4.90537,1.981793 0.25433,0.24682 0.27535,0.29516 0.27535,0.633284 0,0.495447 -0.17283,1.453019 -0.3456,1.914791 -0.2052,0.548437 -0.61813,1.038371 -1.0412,1.235354 -0.44294,0.206238 -1.24694,0.221623 -1.81706,0.03477 z"
+         id="path4958"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 50.9805,51.331905 c -0.557065,-0.61594 -0.577761,-3.26146 -0.03566,-4.55888 0.296988,-0.710792 0.458673,-0.7448 0.719181,-0.151266 0.322993,0.735897 0.314537,3.122106 -0.01452,4.098251 -0.282419,0.837786 -0.382175,0.929028 -0.668995,0.611895 z"
+         id="path4962"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 63.990016,59.387688 c -0.389131,-1.510562 -0.719585,-7.736807 -0.743954,-14.017213 -0.01709,-4.403635 0.07156,-6.203231 0.305561,-6.203231 0.374399,0 1.088947,4.702261 1.381836,9.093506 0.129844,1.946732 0.117399,3.058011 -0.07329,6.544068 -0.126331,2.309522 -0.273216,4.37901 -0.326411,4.598862 -0.141912,0.586523 -0.390413,0.579214 -0.543743,-0.01599 l 0,0 z"
+         id="path4964"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#483e37;fill-opacity:1;stroke:#241f1c;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 75.122328,52.153128 c -0.114462,-0.131222 -0.278975,-0.375633 -0.365584,-0.543135 -0.216998,-0.419675 -0.481119,-3.159776 -0.364496,-3.781431 0.09406,-0.501375 0.09879,-0.504614 0.373771,-0.255932 0.650227,0.588038 1.19954,2.186689 1.202218,3.498783 0.0024,1.19032 -0.353811,1.645867 -0.845909,1.081715 z"
+         id="path4966"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#ff8080;fill-opacity:1;stroke:#ff5555;stroke-width:0.38561288;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 58.208206,104.09384 c -1.424487,-1.06698 -3.237351,-3.15607 -3.237351,-3.73062 0,-0.669217 2.182497,-0.871839 8.088373,-0.750917 l 5.581889,0.114288 -1.405791,1.555139 c -1.593813,1.76314 -4.311663,3.2586 -6.410268,3.52717 -1.077068,0.13783 -1.708559,-0.0347 -2.616852,-0.71506 z"
+         id="path4970"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#e9afaf;fill-opacity:1;stroke:#e9afaf;stroke-width:0.38561288;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 105.10053,48.345143 c -1.16648,-1.374998 -2.72821,-2.950717 -3.47052,-3.501598 -0.7423,-0.550881 -1.647482,-1.298335 -2.01151,-1.661007 -0.847173,-0.844019 -3.664972,-1.386795 -8.88205,-1.710899 -2.279936,-0.141638 -4.14469,-0.36694 -4.143897,-0.500671 0.0034,-0.566645 1.93649,-3.323965 6.472834,-9.232523 6.399707,-8.335574 11.480883,-13.003291 13.367153,-12.279461 2.23575,0.85794 4.13458,12.422272 3.31342,20.179572 -0.44729,4.225417 -1.79336,10.794056 -2.26668,11.061093 -0.14183,0.08002 -1.21227,-0.979509 -2.37875,-2.354506 z"
+         id="path4974"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#e9afaf;fill-opacity:1;stroke:#e9afaf;stroke-width:0.38561288;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 17.687439,32.533546 c 0.259531,-10.904916 0.921993,-17.448983 1.766377,-17.448983 0.577524,0 5.907803,4.969388 9.037861,8.425945 4.651935,5.137182 8.607954,10.682769 9.296081,13.03134 0.327927,1.119213 -0.685939,2.06389 -2.221495,2.069891 -0.674134,0.0026 -2.78743,0.437688 -4.696214,0.966785 -3.949203,1.094683 -10.924155,2.498941 -12.41224,2.498941 l -0.997509,0 0.227139,-9.543919 z"
+         id="path4976"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#241c1c;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 159.25084,215.02306 c 0.53732,-0.6483 3.09618,-2.27058 4.86191,-3.0824 1.3551,-0.62302 1.48208,-0.63641 2.11319,-0.22289 0.84935,0.55651 0.86008,1.3819 0.0251,1.92901 -1.14412,0.74965 -3.80377,1.55748 -5.62503,1.70851 -1.66766,0.1383 -1.74889,0.11867 -1.37516,-0.33223 z"
+         id="path4980"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /><path
+         style="fill:#241c1c;fill-opacity:1;stroke:#241c1c;stroke-width:0.27266949;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 173.85047,231.54746 -1.36334,-0.17911 2.04502,-0.73931 c 2.16788,-0.78374 5.36468,-1.71312 6.61223,-1.92234 0.56413,-0.0946 0.74984,-0.0151 0.74984,0.3211 0,0.66906 -0.74924,1.60931 -1.65605,2.07824 -0.91271,0.47198 -4.34806,0.70938 -6.3877,0.44142 z"
+         id="path4982"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.12376613,0.37190269)" /></g></g></svg>
\ No newline at end of file
diff --git a/src/svg-tests/panda.svg b/src/svg-tests/panda.svg
new file mode 100644 (file)
index 0000000..246c9c3
--- /dev/null
@@ -0,0 +1,136 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg4441"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="337.45306"
+   height="310.85562"
+   xml:space="preserve"
+   sodipodi:docname="drawing1.svg"><metadata
+     id="metadata4447"><rdf:RDF><cc:Work
+         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
+     id="defs4445" /><sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1280"
+     inkscape:window-height="996"
+     id="namedview4443"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:zoom="1.2966372"
+     inkscape:cx="245.20049"
+     inkscape:cy="289.02587"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="g4451" /><g
+     id="g4449"
+     inkscape:groupmode="layer"
+     inkscape:label="16061202"
+     transform="matrix(1.25,0,0,-1.25,-126.39488,738.1999)"><g
+       id="g4451"
+       transform="matrix(0,-576,823.68,0,-647.36541,633.52678)"><path
+         style="fill:#000000"
+         d="m 0.42162024,0.90896495 c -0.008932,4.9831e-4 -0.014889,0.001188 -0.0218712,0.00253 -0.0122547,0.002357 -0.0285763,0.004999 -0.0379975,0.00615 -0.008505,0.00104 -0.0188627,9.9236e-4 -0.0317979,-1.4557e-4 -0.0226374,-0.001991 -0.0544536,-0.001154 -0.0683333,0.001799 -0.002979,6.3374e-4 -0.006694,0.001336 -0.008256,0.001561 -0.003777,5.4324e-4 -0.0201836,0.005434 -0.0258121,0.007694 -0.005429,0.00218 -0.0188097,0.0112497 -0.025099,0.017012 -0.002521,0.00231 -0.004971,0.00451 -0.005444,0.00489 -4.7342e-4,3.8001e-4 -0.001768,0.001609 -0.002877,0.002731 -0.001109,0.001122 -0.002222,0.002171 -0.002475,0.002331 -0.001182,7.5035e-4 -0.004917,0.005165 -0.005915,0.006993 -6.1265e-4,0.001122 -0.001828,0.002729 -0.002701,0.003572 -8.7268e-4,8.4272e-4 -0.002076,0.003072 -0.002675,0.004953 -5.9841e-4,0.001882 -0.001472,0.004208 -0.001942,0.005169 -0.003368,0.006893 -0.003231,0.0193772 3.1309e-4,0.028666 0.003063,0.00803 0.004623,0.012569 0.004358,0.012687 -1.2472e-4,5.53e-5 -0.003414,9.662e-4 -0.00731,0.00202 -0.0107133,0.00291 -0.019083,0.00572 -0.0224186,0.00754 -0.001649,8.975e-4 -0.004165,0.0021 -0.005591,0.00268 l -0.002593,0.00105 -0.003497,-0.00237 c -0.006657,-0.00452 -0.0177312,-0.00783 -0.0288161,-0.00863 -0.006658,-4.771e-4 -0.018618,0.00116 -0.0194021,0.00265 -2.6302e-4,5.009e-4 -7.4268e-4,0.00104 -0.001066,0.0012 -0.002901,0.00144 -0.00435,0.013959 -0.002436,0.021045 0.001642,0.00608 0.009308,0.014653 0.0180673,0.020215 l 0.002113,0.00134 -0.00546,0.00827 c -0.005713,0.00866 -0.00691,0.011119 -0.009831,0.02022 -0.001488,0.00464 -0.001838,0.008 -0.002151,0.020688 -3.3266e-4,0.013472 -1.8395e-4,0.015894 0.001342,0.021853 0.002434,0.00951 0.003974,0.014635 0.004898,0.016317 4.4019e-4,8.013e-4 0.001064,0.0028 0.001385,0.00445 l 5.8491e-4,0.00299 -0.004612,0.00184 c -0.00731,0.00293 -0.0142159,0.00823 -0.0182345,0.013995 l -0.003472,0.00499 2.3872e-4,0.00612 c 2.0566e-4,0.00527 5.3362e-4,0.0065 0.002368,0.00886 0.004724,0.00607 0.013927,0.010542 0.0249998,0.012149 0.008909,0.00129 0.0248964,-2.094e-4 0.0317467,-0.00298 0.001836,-7.437e-4 0.003081,-9.276e-4 0.00375,-5.539e-4 5.5092e-4,3.076e-4 0.002314,0.0013 0.003918,0.00221 0.001604,9.066e-4 0.004003,0.00213 0.005331,0.00271 0.002904,0.00128 0.0155763,0.00355 0.0227854,0.00409 0.00286,2.126e-4 0.006357,6.687e-4 0.007771,0.00101 0.003841,9.364e-4 0.004778,-4.26e-5 0.002871,-0.003 -0.001712,-0.00266 -0.001378,-0.00333 0.001181,-0.00237 0.001603,5.998e-4 0.0215219,0.00351 0.0240779,0.00352 7.1156e-4,0 0.001006,-5.64e-4 8.3334e-4,-0.0016 -2.3462e-4,-0.0014 -8.59e-6,-0.00158 0.001815,-0.00145 0.005718,4.25e-4 0.0085,8.493e-4 0.0106065,0.00162 0.002285,8.335e-4 0.00606,0.00116 0.00606,5.202e-4 0,-1.814e-4 -4.0102e-4,-8.537e-4 -8.9116e-4,-0.00149 -6.4779e-4,-8.464e-4 -6.2184e-4,-0.00139 9.504e-5,-0.00199 8.3062e-4,-6.999e-4 0.001267,-5.8e-4 0.002766,7.6e-4 0.002331,0.00208 0.006803,0.00488 0.009572,0.00598 0.001214,4.827e-4 0.00552,0.00239 0.009569,0.00424 0.007222,0.0033 0.0211843,0.0085 0.0238085,0.00886 0.009205,0.00127 0.0151836,0.00221 0.0175808,0.00276 0.003708,8.608e-4 0.00331,7.965e-4 0.0116667,0.00189 0.003896,5.081e-4 0.0104583,0.00138 0.0145833,0.00194 0.005395,7.281e-4 0.009137,8.972e-4 0.0133333,6.022e-4 0.009913,-6.968e-4 0.0114666,-0.0011 0.0366667,-0.0095 0.004125,-0.00138 0.00988,-0.00291 0.0127885,-0.00341 0.002909,-5.028e-4 0.005731,-0.00117 0.006271,-0.00148 5.4045e-4,-3.137e-4 0.002661,-7.138e-4 0.004711,-8.89e-4 0.002051,-1.754e-4 0.006729,-6.013e-4 0.0103955,-9.467e-4 0.003667,-3.453e-4 0.0169792,-7.547e-4 0.0295833,-9.098e-4 0.0126042,-1.55e-4 0.0232917,-2.934e-4 0.02375,-3.075e-4 0.002741,-8.44e-5 0.008783,7.093e-4 0.0114902,0.00151 0.004858,0.00144 0.0108971,6.888e-4 0.0155932,-0.00193 0.006704,-0.00374 0.0141718,-0.00926 0.0141718,-0.010486 0,-8.453e-4 6.3273e-4,-0.00123 0.002227,-0.00137 0.001625,-1.345e-4 0.002263,-5.388e-4 0.002361,-0.0015 1.4032e-4,-0.00138 -0.001676,-0.00183 -0.002331,-5.827e-4 -2.5491e-4,4.862e-4 -6.6125e-4,5.346e-4 -0.001222,1.457e-4 -5.0108e-4,-3.477e-4 -6.685e-4,-0.00252 -4.1507e-4,-0.00538 3.6113e-4,-0.00407 6.6573e-4,-0.00484 0.002033,-0.00515 0.002025,-4.495e-4 0.001646,-0.00214 -5.742e-4,-0.00256 -0.001443,-2.752e-4 -0.001702,-9.118e-4 -0.001962,-0.00483 -3.0123e-4,-0.00454 2.2446e-4,-0.00533 0.002531,-0.00377 6.0566e-4,4.082e-4 0.002106,7.36e-4 0.003333,7.284e-4 0.002027,-1.28e-5 0.002117,-1.029e-4 9.8034e-4,-9.813e-4 -6.8857e-4,-5.32e-4 -0.002252,-0.00114 -0.003474,-0.00136 -0.003125,-5.485e-4 -0.003425,-0.00115 -0.002904,-0.0058 5.1221e-4,-0.00457 0.001201,-0.00555 0.00313,-0.00443 9.4322e-4,5.475e-4 0.001579,5.756e-4 0.002388,1.057e-4 8.0475e-4,-4.67e-4 0.001365,-4.574e-4 0.002069,3.56e-5 5.3145e-4,3.717e-4 0.001206,5.078e-4 0.0015,3.025e-4 4.9115e-4,-3.435e-4 -0.003066,-0.00165 -0.006548,-0.0024 -0.001562,-3.381e-4 -0.002057,-0.00268 -5.6605e-4,-0.00268 5.5822e-4,0 8.1546e-4,-0.00132 6.8709e-4,-0.00352 -1.7746e-4,-0.00304 3.975e-5,-0.00364 0.001608,-0.0044 0.002593,-0.00127 0.002241,-0.00199 -9.7415e-4,-0.00199 -0.001771,0 -0.00367,-5.309e-4 -0.005208,-0.00146 -0.004576,-0.00275 -0.006678,-0.00226 -0.0190879,0.00445 -0.008499,0.0046 -0.0122279,0.00577 -0.0201054,0.00634 -0.003895,2.81e-4 -0.007552,3.844e-4 -0.008128,2.298e-4 -5.7605e-4,-1.545e-4 -0.005029,-1.75e-5 -0.009896,3.053e-4 -0.0112136,7.43e-4 -0.0181756,-3.401e-4 -0.0256024,-0.00398 -0.002676,-0.00131 -0.005319,-0.00239 -0.005873,-0.00239 -5.7764e-4,0 -8.11e-4,-4.345e-4 -5.4776e-4,-0.00102 0.001371,-0.00305 0.003397,-0.00646 0.005918,-0.00996 0.005062,-0.00703 0.00951,-0.017266 0.0113265,-0.026065 9.2183e-4,-0.00447 0.002066,-0.00998 0.002542,-0.012264 0.001014,-0.00485 9.1781e-4,-0.015334 -1.8576e-4,-0.020331 -4.2472e-4,-0.00192 -9.8566e-4,-0.00444 -0.001247,-0.0056 l -4.7433e-4,-0.00211 0.006969,-0.00158 c 0.006543,-0.00148 0.0203812,-0.0027 0.0303027,-0.00266 0.001833,6.4e-6 0.004915,-1.2e-4 0.006849,-2.809e-4 0.003407,-2.834e-4 0.003671,-1.806e-4 0.008542,0.00332 0.002764,0.00199 0.005026,0.00379 0.005026,0.004 0,8.68e-4 0.006489,0.00337 0.009649,0.00373 0.002585,2.886e-4 0.003664,1.557e-4 0.004508,-5.55e-4 7.232e-4,-6.094e-4 0.00186,-8.244e-4 0.003268,-6.181e-4 0.001187,1.739e-4 0.002666,8.8e-5 0.003285,-1.909e-4 8.9274e-4,-4.018e-4 7.5831e-4,-6.874e-4 -6.477e-4,-0.00138 -0.001506,-7.375e-4 -0.001645,-0.00111 -9.1821e-4,-0.00244 4.7408e-4,-8.65e-4 8.593e-4,-0.00272 8.593e-4,-0.00411 0,-0.00139 2.283e-4,-0.00295 5.0733e-4,-0.00346 4.5924e-4,-8.369e-4 0.003756,-0.00216 0.006993,-0.00281 6.875e-4,-1.382e-4 -5.1421e-4,-4.382e-4 -0.00267,-6.667e-4 -0.003768,-3.994e-4 -0.00389,-4.723e-4 -0.003125,-0.00188 4.3749e-4,-8.047e-4 7.9545e-4,-0.00236 7.9545e-4,-0.00346 0,-0.00135 3.8932e-4,-0.002 0.001194,-0.002 6.5662e-4,0 0.00144,-5.434e-4 0.001742,-0.00121 3.2246e-4,-7.105e-4 0.001021,-0.00108 0.001696,-8.996e-4 6.3141e-4,1.695e-4 0.00137,5.71e-5 0.001641,-2.492e-4 2.8333e-4,-3.206e-4 -9.8551e-4,-5.573e-4 -0.002987,-5.573e-4 -0.003202,0 -0.00344,-1.047e-4 -0.002977,-0.00131 2.7637e-4,-7.212e-4 5.0761e-4,-0.00229 5.1387e-4,-0.0035 9.91e-6,-0.00191 2.6e-4,-0.00219 0.001998,-0.00219 0.001285,0 0.00214,-4.113e-4 0.002422,-0.00117 3.6201e-4,-9.681e-4 2.558e-5,-0.00117 -0.001986,-0.00117 -0.002672,0 -0.002837,-3.887e-4 -0.001545,-0.00364 6.1254e-4,-0.00154 0.001332,-0.00219 0.002446,-0.00219 0.002456,0 0.003022,-0.00127 9.8558e-4,-0.00222 -0.001395,-6.477e-4 -0.001809,-0.00142 -0.001809,-0.00337 0,-0.00317 -0.003449,-0.00841 -0.007453,-0.011317 -0.003225,-0.00234 -0.008726,-0.00377 -0.0166185,-0.00431 -0.002468,-1.695e-4 -0.004709,-4.628e-4 -0.004979,-6.518e-4 -2.7026e-4,-1.89e-4 -5.0065e-4,-0.00151 -5.1199e-4,-0.00293 -1.134e-5,-0.00142 -3.0186e-4,-0.00259 -6.4561e-4,-0.00259 -3.4375e-4,0 -6.25e-4,-3.025e-4 -6.25e-4,-6.699e-4 0,-3.675e-4 -0.0013,-0.00204 -0.00289,-0.00371 -0.004032,-0.00425 -0.00625,-0.00483 -0.017527,-0.00457 -0.005042,1.16e-4 -0.009729,3.585e-4 -0.0104167,5.387e-4 -6.875e-4,1.801e-4 -0.007468,4.469e-4 -0.0150685,5.928e-4 l -0.0138185,2.653e-4 -0.002372,-0.00424 c -0.001305,-0.00233 -0.003722,-0.00555 -0.005373,-0.00715 -0.001651,-0.001603 -0.003636,-0.003615 -0.004412,-0.004471 -7.7591e-4,-8.5665e-4 -0.004515,-0.003275 -0.008309,-0.005374 -0.003794,-0.002099 -0.00821,-0.004665 -0.009814,-0.005703 l -0.002916,-0.001887 0.002916,-4.9802e-4 c 0.001604,-2.7389e-4 0.005107,-7.4324e-4 0.007786,-0.001043 0.002678,-2.997e-4 0.005191,-6.8368e-4 0.005583,-8.5332e-4 6.2228e-4,-2.6894e-4 0.0112808,-0.002312 0.015069,-0.002888 7.4545e-4,-1.1346e-4 0.003745,-8.5769e-4 0.006667,-0.001654 0.002921,-7.9615e-4 0.006811,-0.001769 0.008645,-0.002163 0.001833,-3.9348e-4 0.003708,-9.056e-4 0.004167,-0.001138 4.5833e-4,-2.3246e-4 0.002608,-7.2541e-4 0.004777,-0.001095 0.005226,-8.9144e-4 0.007162,-2.7145e-4 0.0152198,0.004875 0.006735,0.004302 0.00808,0.004802 0.0131695,0.004895 0.004908,9.004e-5 0.009691,-0.002148 0.009023,-0.004221 -8.709e-5,-2.7046e-4 3.2212e-4,-3.6883e-4 9.0936e-4,-2.1859e-4 5.8725e-4,1.5029e-4 9.7396e-4,5.6818e-4 8.5938e-4,9.2879e-4 -2.4818e-4,7.81e-4 0.001989,8.8642e-4 0.002662,1.254e-4 8.1588e-4,-9.2313e-4 -4.8673e-4,-0.002384 -0.002126,-0.002384 -0.001737,0 -0.002034,-6.1294e-4 -7.3693e-4,-0.00152 4.6231e-4,-3.2331e-4 9.3106e-4,-0.001652 0.001042,-0.002953 1.2717e-4,-0.001496 5.5304e-4,-0.002272 0.001158,-0.002111 0.001497,3.9697e-4 0.00222,-9.4364e-4 0.001043,-0.001935 -5.8774e-4,-4.9522e-4 -0.001197,-0.002946 -0.001368,-0.005505 -2.6662e-4,-0.003987 -1.327e-4,-0.004565 9.8764e-4,-0.004264 0.001638,4.3957e-4 0.001774,-0.001273 1.5307e-4,-0.001933 -0.001501,-6.1195e-4 -0.003054,-0.007036 -0.002117,-0.008759 3.9556e-4,-7.2756e-4 0.001318,-0.001323 0.002051,-0.001323 0.001895,0 0.001165,-0.001916 -8.7819e-4,-0.002305 -0.001326,-2.528e-4 -0.001718,-9.063e-4 -0.001937,-0.003231 -1.5131e-4,-0.001603 -5.7164e-4,-0.004028 -9.3408e-4,-0.00539 -5.7792e-4,-0.002172 -4.7324e-4,-0.002477 8.5092e-4,-0.002477 0.002406,0 0.002668,-0.001035 5.1321e-4,-0.002022 -0.00109,-4.9936e-4 -0.002416,-0.001921 -0.002946,-0.00316 -8.6286e-4,-0.002014 -0.006792,-0.007431 -0.006792,-0.006205 0,2.7256e-4 -7.5e-4,2.098e-5 -0.001667,-5.592e-4 -0.002302,-0.001457 -0.00211,-0.002483 2.0834e-4,-0.00111 l 0.001875,0.00111 -0.001587,-0.001311 c -8.7311e-4,-7.2116e-4 -0.001974,-0.001311 -0.002446,-0.001311 -4.7234e-4,0 -0.001633,-4.9954e-4 -0.002579,-0.00111 -0.003691,-0.002381 -0.0138509,-0.006118 -0.0196726,-0.007236 -0.006718,-0.00129 -0.008756,-0.001396 -0.0174644,-9.0991e-4 z m 0.0156881,0.001929 c 0.003368,3.768e-4 0.008089,0.001872 0.0109786,0.003478 6.875e-4,3.8193e-4 0.002375,0.001075 0.00375,0.001541 0.002955,0.001001 0.0155332,0.009537 0.0171404,0.0116323 6.1454e-4,8.0128e-4 0.001241,0.002045 0.001391,0.002763 2.1885e-4,0.001045 -1.0753e-4,0.001291 -0.001629,0.001228 -0.001046,-4.312e-5 -0.002278,-9.91e-6 -0.002736,7.389e-5 -0.001823,3.3357e-4 -0.003519,-4.021e-5 -0.005225,-0.001151 -0.001855,-0.001209 -0.003525,-0.001528 -0.003525,-6.7331e-4 0,7.8146e-4 0.002663,0.002161 0.005833,0.003021 0.001604,4.3526e-4 0.003187,0.001068 0.003518,0.001407 4.1986e-4,4.3001e-4 0.001048,4.2069e-4 0.002083,-3.088e-5 0.00135,-5.8934e-4 0.001572,-2.2635e-4 0.002488,0.004079 0.001459,0.006852 0.001414,0.007163 -0.001099,0.007604 -0.001519,2.6667e-4 -0.0034,-6.585e-5 -0.006235,-0.001102 -0.004361,-0.001595 -0.005756,-0.001816 -0.005756,-9.1329e-4 0,0.001011 0.006975,0.003104 0.0105334,0.003161 l 0.00345,5.537e-5 5.0099e-4,0.002914 c 0.001352,0.007864 5.3331e-4,0.008867 -0.005979,0.007325 -0.004514,-0.001069 -0.006698,-6.6032e-4 -0.00332,6.2103e-4 0.001044,3.9616e-4 0.003773,0.001018 0.006065,0.001382 l 0.004167,6.6206e-4 2.4998e-4,0.003651 c 1.4903e-4,0.002177 -1.4191e-4,0.003981 -7.2035e-4,0.004469 -0.001061,8.9435e-4 -0.003793,6.3572e-4 -0.007655,-7.2471e-4 -0.001991,-7.0152e-4 -0.002292,-6.9347e-4 -0.002292,6.125e-5 0,0.001114 0.002232,0.001938 0.006562,0.002422 0.003809,4.2593e-4 0.00427,0.001305 0.002523,0.00481 -0.001026,0.002059 -0.003087,0.00236 -0.006585,9.6107e-4 -0.002516,-0.001005 -0.003332,-0.00107 -0.003332,-2.6328e-4 0,3.3525e-4 0.001918,0.001231 0.004262,0.00199 l 0.004262,0.001381 -0.002554,9.2349e-4 c -0.003184,0.001151 -0.00785,0.001186 -0.0108028,8.135e-5 -0.001238,-4.6311e-4 -0.003905,-0.002037 -0.005927,-0.003496 -0.002022,-0.00146 -0.004031,-0.002654 -0.004464,-0.002654 -4.3305e-4,0 -5.3993e-4,-4.5094e-4 -2.375e-4,-0.001002 3.0243e-4,-5.5117e-4 3.0663e-4,-8.32e-4 9.33e-6,-6.2407e-4 -2.9729e-4,2.0787e-4 -0.00186,-1.4027e-4 -0.003473,-7.7366e-4 -0.002629,-0.001033 -0.003417,-0.001082 -0.007629,-4.7494e-4 -0.002583,3.722e-4 -0.005745,0.001053 -0.007027,0.001514 -0.006984,0.002507 -0.0289899,0.007193 -0.0414189,0.00882 -0.0118511,0.001551 -0.01302,0.001362 -0.0184539,-0.002986 -0.0281986,-0.0225628 -0.043863,-0.0332054 -0.0623361,-0.0423522 -0.004208,-0.002083 -0.00886,-0.004488 -0.0103383,-0.005343 -0.001478,-8.5548e-4 -0.00461,-0.002441 -0.006959,-0.003523 -0.004864,-0.00224 -0.0119123,-0.006631 -0.0119123,-0.007421 0,-0.001634 0.0370692,-0.001396 0.0481794,3.0903e-4 0.005703,8.7535e-4 0.007051,9.2616e-4 0.007616,2.8706e-4 6.3955e-4,-7.2366e-4 0.005326,-6.1107e-4 0.0120052,2.8852e-4 0.001872,2.521e-4 0.023098,-0.001853 0.0267831,-0.002657 0.001375,-2.9976e-4 0.0055,-9.68e-4 0.009167,-0.001485 0.007243,-0.001021 0.009313,-0.001373 0.01875,-0.003185 0.0121709,-0.002337 0.0274565,-0.003188 0.0373547,-0.00208 z m 0.003479,0.0577348 c 0,4.8076e-4 5.5074e-4,8.7412e-4 0.001224,8.7412e-4 7.4549e-4,0 0.001036,-3.4167e-4 7.4418e-4,-8.7412e-4 -2.6383e-4,-4.8077e-4 -8.1455e-4,-8.7413e-4 -0.001224,-8.7413e-4 -4.0929e-4,0 -7.4418e-4,3.9336e-4 -7.4418e-4,8.7413e-4 z M 0.27495323,0.92062164 c 0.001604,6.768e-4 0.003854,0.001833 0.005,0.00257 0.006273,0.004033 0.007806,0.004936 0.008386,0.004936 5.2346e-4,0 0.0105656,0.005035 0.0137191,0.006878 4.7025e-4,2.7488e-4 0.00197,9.8491e-4 0.003333,0.001578 0.001363,5.9289e-4 0.002853,0.001359 0.003312,0.001702 0.001304,9.7553e-4 0.008177,0.00474 0.009754,0.005343 0.002694,0.001029 0.0127661,0.007523 0.0206623,0.0133214 0.004354,0.003197 0.009323,0.006816 0.0110417,0.008041 0.001719,0.001225 0.003125,0.002479 0.003125,0.002787 0,3.0816e-4 3.0953e-4,5.6026e-4 6.8783e-4,5.6026e-4 3.7831e-4,0 0.002722,0.00177 0.005208,0.003934 0.005704,0.004964 0.0169199,0.0129662 0.0181721,0.0129662 0.00124,0 0.0134317,0.006915 0.0134317,0.007618 0,2.972e-4 5.1119e-4,5.4039e-4 0.001136,5.4039e-4 0.002505,0 0.0155307,0.0115603 0.0155307,0.0137835 0,4.302e-4 0.001081,0.00242 0.002401,0.00443 0.003365,0.00511 0.004265,0.00723 0.004265,0.010079 0,0.00169 4.0695e-4,0.00258 0.001282,0.00282 0.00201,5.393e-4 0.002248,-9.033e-4 8.4672e-4,-0.00513 -0.001666,-0.00502 -0.001737,-0.00478 0.001413,-0.00489 0.00149,-5.25e-5 0.005333,-2.248e-4 0.008542,-3.835e-4 0.0293471,-0.00145 0.0329878,-0.00155 0.0355996,-9.44e-4 0.004273,9.876e-4 0.007166,0.00403 0.008498,0.00892 6.3494e-4,0.00233 0.001018,0.00434 8.5126e-4,0.00447 -5.6768e-4,4.135e-4 -0.0174261,2.41e-5 -0.024948,-5.771e-4 -0.004125,-3.298e-4 -0.0148125,-5.381e-4 -0.02375,-4.629e-4 -0.0337663,2.838e-4 -0.0427307,8.12e-5 -0.0498458,-0.00113 -0.008837,-0.0015 -0.0131909,-0.00309 -0.020563,-0.0075 -0.003362,-0.00201 -0.00652,-0.00366 -0.007019,-0.00366 -4.9822e-4,0 -9.0584e-4,-2.3e-4 -9.0584e-4,-5.111e-4 0,-9.864e-4 -0.007991,-0.00283 -0.0154167,-0.00355 -0.004125,-4.008e-4 -0.008625,-9.6e-4 -0.01,-0.00124 -0.004171,-8.571e-4 -0.0186681,-0.00173 -0.027429,-0.00164 -0.008281,7.88e-5 -0.0182523,0.00104 -0.0221543,0.00213 -0.001146,3.211e-4 -0.004109,0.00105 -0.006584,0.00162 -0.005423,0.00125 -0.0109396,0.00334 -0.0129977,0.00493 -8.3053e-4,6.418e-4 -0.001921,0.00117 -0.002423,0.00117 -5.0188e-4,4e-7 -0.002038,6.726e-4 -0.003413,0.00149 -0.003193,0.00191 -0.010953,0.00667 -0.0129133,0.00792 -0.002018,0.00129 -0.003397,0.00152 -0.0115121,0.00196 l -0.006925,3.742e-4 6.1408e-4,-0.00223 c 6.6895e-4,-0.00243 6.583e-4,-0.00423 -2.792e-5,-0.00471 -2.406e-4,-1.683e-4 -0.002042,-2.57e-5 -0.004003,3.164e-4 -0.005416,9.453e-4 -0.0107651,0.00177 -0.0137739,0.00211 -0.002297,2.642e-4 -0.002708,1.355e-4 -0.002708,-8.473e-4 0,-0.00122 0.001356,-0.00317 0.003162,-0.00454 5.9338e-4,-4.503e-4 9.3042e-4,-0.00112 7.4899e-4,-0.00148 -3.6394e-4,-7.29e-4 -0.001833,-7.723e-4 -0.006828,-2.013e-4 l -0.003333,3.811e-4 -0.003054,-0.00683 c -0.002849,-0.00637 -0.004686,-0.0122584 -0.004677,-0.0149891 2.5e-6,-6.4102e-4 -7.291e-5,-0.003826 -1.6669e-4,-0.007077 -9.801e-5,-0.003399 2.1615e-4,-0.006417 7.3903e-4,-0.0071 5.0022e-4,-6.5362e-4 9.095e-4,-0.001879 9.095e-4,-0.002722 0,-8.4341e-4 3.8279e-4,-0.002034 8.5065e-4,-0.002645 4.6785e-4,-6.1137e-4 0.00122,-0.002475 0.001672,-0.004142 4.5201e-4,-0.001667 0.001904,-0.004231 0.003227,-0.005697 0.001323,-0.001467 0.002683,-0.003323 0.003023,-0.004124 3.4019e-4,-8.0128e-4 0.002218,-0.002934 0.004174,-0.004739 0.001955,-0.001805 0.003998,-0.00386 0.004538,-0.004566 5.4063e-4,-7.0641e-4 0.003578,-0.003343 0.006749,-0.00586 0.003171,-0.002517 0.005766,-0.004794 0.005766,-0.005061 0,-2.6672e-4 0.001895,-0.001529 0.004212,-0.002804 0.002316,-0.001276 0.005148,-0.003172 0.006292,-0.004213 0.001144,-0.001042 0.00253,-0.001895 0.00308,-0.001895 5.4959e-4,0 0.002312,-7.8688e-4 0.003916,-0.001747 0.001604,-9.6002e-4 0.003498,-0.001746 0.004208,-0.001747 7.1042e-4,0 0.001648,-2.3205e-4 0.002083,-5.1404e-4 0.001525,-9.8747e-4 0.0171542,-0.005347 0.0220104,-0.006139 0.002697,-4.3986e-4 0.005368,-0.001001 0.005936,-0.001246 0.003695,-0.001597 0.009724,-0.001684 0.013262,-1.9114e-4 z m -0.005417,0.0850122 c -2.8326e-4,3.205e-4 -1.179e-4,5.828e-4 3.6749e-4,5.828e-4 4.8538e-4,0 8.8251e-4,-2.623e-4 8.8251e-4,-5.828e-4 0,-3.205e-4 -1.6536e-4,-5.827e-4 -3.6748e-4,-5.827e-4 -2.0212e-4,0 -5.9925e-4,2.622e-4 -8.8252e-4,5.827e-4 z m 0.042917,0.00317 c 0.003896,4.629e-4 0.0109979,0.00127 0.0157823,0.00179 0.008374,9.109e-4 0.0115681,0.0016 0.0126345,0.00274 2.7505e-4,2.939e-4 0.001149,6.009e-4 0.001942,6.823e-4 7.9313e-4,8.14e-5 0.003756,0.00159 0.006583,0.00336 0.005635,0.00352 0.0106651,0.00591 0.0138912,0.00659 0.001146,2.427e-4 0.003208,7.746e-4 0.004583,0.00118 0.005714,0.00169 0.0121218,0.00206 0.0345951,0.00201 0.0125977,-3.21e-5 0.0262799,-6.21e-5 0.0304049,-6.69e-5 0.004125,-5.8e-6 0.008813,1.751e-4 0.0104167,3.999e-4 0.001604,2.248e-4 0.007792,4.989e-4 0.01375,6.092e-4 0.005958,1.103e-4 0.0143958,3.543e-4 0.01875,5.421e-4 0.004354,1.879e-4 0.009166,3.226e-4 0.0106931,2.993e-4 0.001588,-2.44e-5 0.002563,1.988e-4 0.002279,5.209e-4 -2.7378e-4,3.098e-4 8.2056e-4,8.966e-4 0.002432,0.0013 0.001611,4.075e-4 0.00293,0.00106 0.00293,0.00145 0,3.896e-4 2.9662e-4,7.959e-4 6.5917e-4,9.027e-4 0.001566,4.613e-4 0.006007,0.00702 0.006007,0.00887 l 0,0.00199 -0.002906,-6.237e-4 c -0.001598,-3.431e-4 -0.003645,-0.0011 -0.004548,-0.00169 -0.0019,-0.00124 -0.00339,-0.00139 -0.003353,-3.415e-4 3.234e-5,8.992e-4 0.00278,0.00229 0.00664,0.00335 0.001604,4.431e-4 0.003138,0.00103 0.003409,0.0013 6.0152e-4,6.11e-4 -0.001426,0.00628 -0.002519,0.00705 -4.946e-4,3.458e-4 -0.002198,8.7e-5 -0.004579,-6.957e-4 -0.004487,-0.00148 -0.004643,-0.00149 -0.004643,-4.211e-4 0,4.539e-4 0.001125,0.00117 0.0025,0.0016 0.001375,4.256e-4 0.0025,9.839e-4 0.0025,0.00124 0,2.568e-4 0.001242,3.04e-4 0.002759,1.049e-4 l 0.002759,-3.62e-4 -6.0554e-4,0.0034 c -3.3306e-4,0.00187 -6.372e-4,0.00388 -6.7587e-4,0.00448 -5.667e-5,8.733e-4 -4.9588e-4,0.00101 -0.002268,6.974e-4 -0.001208,-2.121e-4 -0.0034,-0.00103 -0.00487,-0.00181 -0.003079,-0.00164 -0.003766,-0.00175 -0.003766,-5.954e-4 0,9.194e-4 0.009029,0.00458 0.0103913,0.00421 0.001013,-2.732e-4 6.6446e-4,0.00605 -3.7516e-4,0.00681 -8.7993e-4,6.444e-4 -0.004168,-6.12e-4 -0.006102,-0.00233 -0.001505,-0.00134 -0.003914,-0.00186 -0.003914,-8.519e-4 0,0.00101 0.006812,0.0054 0.007925,0.0051 0.001618,-4.342e-4 0.001849,5.232e-4 0.001093,0.00454 -0.001279,0.0068 -0.002029,0.00742 -0.005685,0.0047 -0.001076,-8.012e-4 -0.001639,-0.00146 -0.00125,-0.00146 3.8896e-4,0 -1.7354e-4,-6.556e-4 -0.00125,-0.00146 -0.001947,-0.00145 -0.004167,-0.00194 -0.004167,-9.236e-4 0,5.69e-4 0.002308,0.00264 0.006042,0.00542 0.00126,9.394e-4 0.002292,0.00183 0.002292,0.00197 0,7.824e-4 -0.004334,0.00127 -0.006892,7.775e-4 -0.003268,-6.31e-4 -0.005046,-0.00165 -0.008415,-0.00481 -0.001305,-0.00123 -0.003669,-0.00314 -0.005254,-0.00424 -0.002395,-0.00167 -0.003331,-0.00197 -0.005536,-0.00172 -0.001459,1.604e-4 -0.008203,4.475e-4 -0.0149854,6.381e-4 -0.0174555,4.904e-4 -0.02407,0.00185 -0.0489177,0.010065 -0.0100219,0.00331 -0.0206729,0.00583 -0.0279167,0.00659 -0.0112639,0.00118 -0.0195259,0.00172 -0.0258333,0.00168 -0.003667,-2.62e-5 -0.009854,2.517e-4 -0.01375,6.172e-4 -0.005435,5.099e-4 -0.008441,4.993e-4 -0.0129167,-4.6e-5 -0.003208,-3.908e-4 -0.008777,-7.719e-4 -0.0123745,-8.47e-4 -0.006012,-1.254e-4 -0.006703,-2.682e-4 -0.008542,-0.00177 -0.0011,-8.954e-4 -0.001974,-0.00205 -0.001942,-0.00256 6.542e-5,-0.00104 0.001458,-0.00353 0.00155,-0.00278 8.34e-5,6.861e-4 0.004225,-0.00285 0.004225,-0.00361 0,-3.448e-4 -0.001107,-0.0012 -0.002459,-0.0019 -0.003186,-0.00165 -0.003631,-0.00257 -0.002449,-0.00508 8.7949e-4,-0.00186 7.9516e-4,-0.00216 -9.0301e-4,-0.00312 -0.00103,-5.834e-4 -0.002623,-0.00106 -0.00354,-0.00106 -0.001472,0 -0.0016,-2.553e-4 -0.001096,-0.00218 3.1397e-4,-0.0012 0.001106,-0.00295 0.001759,-0.00388 6.537e-4,-9.306e-4 0.001189,-0.00177 0.001189,-0.00187 0,-9.6e-5 -0.001639,-6.816e-4 -0.003642,-0.0013 -0.004835,-0.0015 -0.005215,-0.00211 -0.002633,-0.00426 0.003358,-0.00279 0.002568,-0.00314 -0.006726,-0.00297 -0.009049,1.686e-4 -0.0114773,-3.103e-4 -0.009299,-0.00183 7.1693e-4,-5.014e-4 0.002121,-0.00184 0.00312,-0.00297 9.9894e-4,-0.00113 0.002161,-0.00206 0.002582,-0.00206 0.001285,0 8.5325e-4,-0.00144 -7.0463e-4,-0.00235 -8.085e-4,-4.718e-4 -0.002402,-0.00117 -0.003542,-0.00154 -0.008241,-0.00271 -0.0117931,-0.00361 -0.0156543,-0.00397 l -0.004416,-4.143e-4 0.001437,-0.00154 c 7.9015e-4,-8.492e-4 0.001946,-0.00181 0.00257,-0.00213 9.5463e-4,-4.968e-4 9.5343e-4,-7.613e-4 -7.5e-6,-0.00168 -8.7672e-4,-8.385e-4 -0.002719,-0.00119 -0.007962,-0.00151 -0.003752,-2.307e-4 -0.007007,-5.49e-4 -0.007233,-7.072e-4 -2.2636e-4,-1.583e-4 2.6694e-4,-9.179e-4 0.001096,-0.00169 0.002367,-0.0022 0.0046,-0.00618 0.003906,-0.00697 -4.5544e-4,-5.153e-4 -0.002447,-6.153e-4 -0.007177,-3.602e-4 -0.003601,1.942e-4 -0.006547,1.627e-4 -0.006547,-6.98e-5 0,-9.727e-4 0.010072,-0.00674 0.018285,-0.010474 0.005424,-0.00246 0.0123745,-0.00426 0.0208996,-0.00539 0.002441,-3.238e-4 0.004623,-7.179e-4 0.004849,-8.759e-4 9.393e-4,-6.568e-4 0.0260304,-2.325e-4 0.032633,5.519e-4 z m -0.12,0.00881 c 0,1.802e-4 -6.1351e-4,0.00164 -0.001363,0.00324 -0.001994,0.00426 -0.001379,0.00447 0.00949,0.00318 0.004926,-5.865e-4 0.009481,-0.00121 0.0101214,-0.00138 9.0488e-4,-2.426e-4 0.001039,6.67e-5 5.9877e-4,0.00139 -0.001175,0.00352 -0.001542,0.00665 -7.8132e-4,0.00665 4.3035e-4,0 0.00151,-3.85e-4 0.0024,-8.556e-4 8.8969e-4,-4.705e-4 0.003364,-8.639e-4 0.005497,-8.741e-4 0.002134,-9.9e-6 0.008675,-6.741e-4 0.0145357,-0.00148 0.0110095,-0.0015 0.0138527,-0.00172 0.0147432,-0.00109 6.5104e-4,4.553e-4 -0.002001,0.00413 -0.004327,0.00599 -0.003456,0.00277 -0.002529,0.0034 0.005544,0.00376 0.00401,1.809e-4 0.007744,3.826e-4 0.008297,4.483e-4 0.001066,1.266e-4 9.8676e-4,2.589e-4 -0.002031,0.00338 -0.002271,0.00235 -0.002089,0.00323 6.7897e-4,0.00329 0.003536,7.79e-5 0.0111658,9.577e-4 0.0115973,0.00134 2.2917e-4,2.016e-4 0.002606,0.00115 0.005282,0.00212 0.002676,9.615e-4 0.005009,0.00191 0.005186,0.0021 1.7624e-4,1.955e-4 -0.001372,0.00188 -0.00344,0.00374 -0.00532,0.00479 -0.004977,0.00519 0.004651,0.0054 0.0101526,2.22e-4 0.0104147,2.878e-4 0.00865,0.00217 -0.00112,0.0012 -0.001212,0.00178 -4.6357e-4,0.00292 5.1352e-4,7.881e-4 0.001421,0.00143 0.002016,0.00143 5.9535e-4,0 0.001874,3.878e-4 0.002842,8.62e-4 0.001573,7.705e-4 0.001657,0.00106 7.8566e-4,0.00277 -5.3582e-4,0.00105 -0.001432,0.00248 -0.001991,0.00318 -0.001459,0.00183 -0.001313,0.0033 2.8589e-4,0.00287 7.1654e-4,-1.923e-4 0.002415,5.24e-5 0.003774,5.441e-4 0.002382,8.613e-4 0.002451,10e-4 0.001912,0.00384 -5.2461e-4,0.00277 -4.1013e-4,0.00303 0.001851,0.00429 l 0.00241,0.00135 -0.001819,0.00136 c -0.003579,0.00268 -0.004116,0.0059 -0.001358,0.00814 0.001015,8.236e-4 9.2316e-4,0.00131 -6.9671e-4,0.00364 l -0.001867,0.00269 0.001559,0.0042 c 0.002534,0.00683 0.001872,0.015642 -0.002249,0.029899 -9.2641e-4,0.0032 -0.001991,0.0069 -0.002366,0.00821 -3.75e-4,0.00131 -0.001642,0.00364 -0.002817,0.00519 -0.001174,0.00154 -0.002135,0.00324 -0.002135,0.00377 0,0.0015 -0.004968,0.00586 -0.006683,0.00586 -0.002164,0 -0.002868,0.00205 -0.00125,0.00364 0.001296,0.00127 0.001213,0.0014 -0.002554,0.0037 -0.003878,0.00237 -0.003888,0.00239 -0.002479,0.00389 0.001368,0.00146 0.001351,0.00154 -5.1754e-4,0.00239 -0.001063,4.811e-4 -0.002949,0.00105 -0.004191,0.00126 -0.003743,6.434e-4 -0.004182,0.00156 -0.001883,0.00392 0.003002,0.00309 0.003357,0.00276 -0.005651,0.00531 -0.003415,9.69e-4 -0.003814,0.00157 -0.001814,0.00273 0.001125,6.528e-4 0.004522,0.00471 0.004522,0.0054 0,3.886e-4 -0.009261,0.00158 -0.0141667,0.00182 l -0.004583,2.248e-4 0,0.00221 c 0,0.00246 -0.001691,0.00342 -0.007083,0.00402 -0.004824,5.35e-4 -0.0125,0.00218 -0.0125,0.00267 0,2.555e-4 9.4675e-4,0.00144 0.002104,0.00263 0.001157,0.00119 0.00197,0.00245 0.001806,0.00279 -1.6381e-4,3.436e-4 -0.00232,8.282e-4 -0.004791,0.00108 -0.005236,5.269e-4 -0.006507,0.00116 -0.004965,0.00245 0.001808,0.00152 2.9347e-4,0.00171 -0.00573,6.891e-4 -0.00316,-5.335e-4 -0.006453,-9.699e-4 -0.007317,-9.699e-4 -8.6369e-4,0 -0.002435,-4.237e-4 -0.003493,-9.416e-4 -0.001414,-6.928e-4 -0.002168,-7.698e-4 -0.002852,-2.913e-4 -6.8414e-4,4.783e-4 -6.6559e-4,8.349e-4 7.025e-5,0.00135 0.001098,7.679e-4 0.001371,0.0028 3.75e-4,0.00279 -0.002439,-2.16e-5 -0.0174416,-0.00249 -0.0213545,-0.00351 -0.002641,-6.911e-4 -0.004981,-0.00113 -0.005199,-9.786e-4 -2.1851e-4,1.527e-4 4.4059e-4,0.00148 0.001465,0.00296 0.001024,0.00147 0.001697,0.00279 0.001496,0.00293 C 0.17758027,1.213758 0.16407613,1.212593 0.15841193,1.2116 0.15185393,1.21045 0.14658033,1.2086 0.14213513,1.20589 L 0.13889813,1.20392 0.14203013,1.20191 0.14516213,1.1999 0.1442141,1.19673 C 0.14369267,1.19499 0.1427471,1.19277 0.1421131,1.19181 0.1391241,1.18728 0.1374231,1.18375 0.1355011,1.178115 0.1311481,1.165339 0.1300071,1.163034 0.1257661,1.158447 c -0.001445,-0.00156 -0.002472,-0.00172 -0.001944,-2.914e-4 3.817e-4,0.00103 -0.002331,0.00128 -0.0166915,0.00154 l -0.003241,5.9e-5 -0.001559,-0.00379 c -0.002202,-0.00535 -0.004701,-0.013212 -0.006575,-0.020688 -0.001387,-0.00553 -0.001551,-0.00832 -0.001198,-0.020396 3.0972e-4,-0.0106 7.9038e-4,-0.015256 0.001985,-0.019231 0.002288,-0.00761 0.004595,-0.013056 0.006924,-0.016344 0.001125,-0.00159 0.002893,-0.00438 0.003929,-0.00621 0.001067,-0.00188 0.002784,-0.00373 0.003959,-0.00427 0.001891,-8.666e-4 0.002204,-8.693e-4 0.003528,-3.09e-5 7.9941e-4,5.06e-4 0.001926,9.199e-4 0.002504,9.199e-4 5.7794e-4,0 0.001673,5.23e-4 0.002434,0.00116 0.001018,8.552e-4 0.001714,0.00101 0.002634,5.827e-4 9.0849e-4,-4.21e-4 9.8481e-4,-6.997e-4 2.7937e-4,-0.00102 -7.192e-4,-3.266e-4 -6.5594e-4,-7.417e-4 2.4421e-4,-0.0016 6.6816e-4,-6.39e-4 0.00148,-0.00112 0.001804,-0.00106 6.8034e-4,1.14e-4 0.0109961,-0.00861 0.0110019,-0.0093 2.5e-6,-2.541e-4 0.001475,-0.00183 0.003272,-0.0035 0.005219,-0.00485 0.008696,-0.013529 0.007894,-0.019711 l -4.0697e-4,-0.00314 0.003581,-0.00171 c 0.008137,-0.00389 0.0105008,-0.00486 0.0156641,-0.00642 0.002979,-9.041e-4 0.006917,-0.00211 0.00875,-0.00268 0.00307,-9.559e-4 0.0158475,-0.00391 0.0172917,-0.004 3.4375e-4,-2.09e-5 6.25e-4,1.087e-4 6.25e-4,2.889e-4 z m -0.0191667,0.044491 c -0.008317,0.00126 -0.0243242,0.00708 -0.0273587,0.00995 -9.0426e-4,8.553e-4 -0.002598,0.00367 -0.003765,0.00625 -0.001688,0.00374 -0.002038,0.00548 -0.001717,0.00856 4.6474e-4,0.00445 5.3119e-4,0.00458 0.004744,0.00977 0.003419,0.00421 0.007647,0.0069 0.010827,0.0069 0.003795,0 0.012675,-0.00255 0.021605,-0.00619 8.8223e-4,-3.602e-4 0.002611,-0.00131 0.003843,-0.0021 0.001231,-7.947e-4 0.002875,-0.0016 0.003653,-0.00179 7.777e-4,-1.906e-4 0.003618,-0.00229 0.006312,-0.00466 0.008465,-0.00745 0.0105791,-0.015019 0.005848,-0.02094 -0.002285,-0.00286 -0.005066,-0.00439 -0.009472,-0.00522 -0.004392,-8.278e-4 -0.0109514,-0.00106 -0.0145189,-5.252e-4 z m 0.0180354,0.00326 c 0.001167,5.346e-4 0.003072,0.00242 0.004234,0.0042 0.001792,0.00274 0.002035,0.00375 0.0016,0.00666 -0.001258,0.00842 -0.0127235,0.017489 -0.0289883,0.02294 -0.0127558,0.00428 -0.0158527,0.00347 -0.0226557,-0.00592 -0.00272,-0.00375 -0.003611,-0.00825 -0.002271,-0.011454 0.003154,-0.00756 0.003911,-0.00876 0.0065,-0.010352 0.003115,-0.00191 0.0105319,-0.00451 0.0189586,-0.00664 0.006213,-0.00157 0.00917,-0.00183 0.0100036,-8.899e-4 7.8433e-4,8.874e-4 0.002917,6.948e-4 0.002917,-2.636e-4 0,-7.327e-4 5.085e-4,-7.392e-4 0.00379,-4.83e-5 0.002085,4.387e-4 0.004745,0.00123 0.005912,0.00177 z m -0.018243,0.015409 c -0.006158,0.00273 -0.007962,0.00624 -0.004802,0.00935 0.003319,0.00326 0.009356,0.00252 0.0141842,-0.00175 0.003836,-0.00339 0.003188,-0.00642 -0.001749,-0.00818 -0.001756,-6.265e-4 -0.003322,-0.00114 -0.00348,-0.00114 -1.5769e-4,0 -0.002027,7.718e-4 -0.004154,0.00171 z m 0.004371,0.00207 c 0.001327,0.00244 -0.002018,0.00612 -0.005564,0.00612 -0.001592,0 -0.001933,-3.082e-4 -0.001933,-0.00175 0,-9.615e-4 3.8677e-4,-0.00175 8.5948e-4,-0.00175 4.7273e-4,0 0.001092,-4.589e-4 0.001377,-0.00102 6.6289e-4,-0.00131 0.002809,-0.00306 0.003747,-0.00306 3.9864e-4,0 0.00108,6.534e-4 0.001514,0.00145 z m 0.005003,0.00197 c 0,0.00139 -0.001961,0.00316 -0.003707,0.00334 -0.001318,1.352e-4 -0.001327,6.25e-5 -1.1527e-4,-8.74e-4 7.2709e-4,-5.619e-4 0.001322,-0.00155 0.001322,-0.00219 0,-6.425e-4 2.3981e-4,-0.00134 5.329e-4,-0.00154 8.3606e-4,-5.847e-4 0.001967,1.438e-4 0.001967,0.00127 z m 0.0562234,-0.00998 c 0.002143,0.00385 0.00298,0.00815 0.002763,0.014215 -2.1223e-4,0.00593 -3.9638e-4,0.00662 -0.001804,0.00681 -8.6232e-4,1.156e-4 -0.002362,-6.62e-5 -0.003333,-4.039e-4 -9.7101e-4,-3.378e-4 -0.003265,-0.00107 -0.005099,-0.00163 -0.001833,-5.584e-4 -0.003615,-0.00112 -0.003958,-0.00124 -3.4375e-4,-1.237e-4 -6.25e-4,1.262e-4 -6.25e-4,5.555e-4 0,7.402e-4 0.001679,0.00142 0.006878,0.00277 0.001262,3.287e-4 0.00396,0.00113 0.005996,0.00178 0.002036,6.485e-4 0.004097,0.00118 0.004581,0.00118 4.8348e-4,0 8.7905e-4,2.902e-4 8.7905e-4,6.451e-4 0,3.547e-4 5.9799e-4,4.846e-4 0.001329,2.885e-4 0.002057,-5.52e-4 0.00785,0.00157 0.0121199,0.00445 0.0034,0.00229 0.004171,0.0033 0.006397,0.00837 0.001392,0.00317 0.002785,0.00717 0.003096,0.00887 l 5.643e-4,0.0031 -0.002786,-1.871e-4 c -0.00245,-1.646e-4 -0.003192,-6.599e-4 -0.006152,-0.00411 -0.004172,-0.00486 -0.004205,-0.00488 -0.008527,-0.00533 l -0.003543,-3.75e-4 0,0.00255 c 0,0.00141 -7.9045e-4,0.00567 -0.001757,0.00948 -9.661e-4,0.00381 -0.00181,0.00728 -0.001875,0.00772 -1.7004e-4,0.00114 0.004985,0.00142 0.007667,4.172e-4 0.001218,-4.562e-4 0.002871,-9.729e-4 0.003673,-0.00115 8.0209e-4,-1.754e-4 0.001458,-8.426e-4 0.001458,-0.00148 0,-0.00195 0.002693,-0.00528 0.004272,-0.00528 8.0473e-4,0 0.001695,-2.623e-4 0.001978,-5.828e-4 7.7905e-4,-8.815e-4 0.001907,-7.062e-4 0.00375,5.828e-4 0.002,0.0014 0.002132,0.00397 3.8194e-4,0.00748 -0.0041,0.00823 -0.008974,0.011412 -0.0232986,0.0152 -0.00275,7.272e-4 -0.00575,0.00156 -0.006667,0.00185 -0.003429,0.00108 -0.0170961,0.00402 -0.0186577,0.00402 -0.002529,0 -0.004259,6.277e-4 -0.004259,0.00155 0,0.00117 0.005397,5.261e-4 0.0129167,-0.00154 0.003976,-0.00109 0.008798,-0.00192 0.009271,-0.00159 2.8214e-4,1.973e-4 -5.8422e-4,0.00135 -0.001925,0.00257 -0.004067,0.00369 -0.00766,0.00795 -0.0124071,0.014724 -0.002486,0.00355 -0.004521,0.00657 -0.004521,0.00673 0,1.542e-4 5.4931e-4,2.803e-4 0.001221,2.803e-4 0.001298,0 0.003398,-0.00221 0.002619,-0.00275 -2.5423e-4,-1.777e-4 6.558e-5,-0.00101 7.1069e-4,-0.00184 6.451e-4,-8.364e-4 0.002346,-0.0032 0.00378,-0.00525 0.003432,-0.00491 0.0109027,-0.013026 0.0115648,-0.012561 2.8702e-4,2.016e-4 5.2185e-4,0.00395 5.2185e-4,0.00833 0,0.00669 1.9987e-4,0.00796 0.00125,0.00796 7.7245e-4,0 0.001161,-4.453e-4 0.001016,-0.00117 -5.0038e-4,-0.00249 -3.5462e-4,-0.014152 1.9897e-4,-0.015914 9.7676e-4,-0.00311 0.001845,-0.0021 0.002382,0.00277 5.4751e-4,0.00496 0.004454,0.01409 0.006195,0.014472 0.001486,3.259e-4 0.001289,-0.00104 -5.3503e-4,-0.00369 -0.002032,-0.00296 -0.004479,-0.011379 -0.003831,-0.013184 2.7515e-4,-7.666e-4 1.4289e-4,-0.00205 -2.9392e-4,-0.00286 -7.6275e-4,-0.0014 -5.7583e-4,-0.00152 0.004722,-0.00284 0.003034,-7.609e-4 0.007224,-0.00143 0.009311,-0.00149 0.004306,-1.158e-4 0.006484,-7.924e-4 0.0112878,-0.0035 0.005285,-0.00299 0.007703,-0.00594 0.0100368,-0.012262 0.001981,-0.00537 0.002457,-0.00887 0.001697,-0.012487 -1.6863e-4,-8.013e-4 -3.5447e-4,-0.00203 -4.1297e-4,-0.00272 -2.0671e-4,-0.00246 -0.003873,-0.00465 -0.009183,-0.00547 -0.004249,-6.591e-4 -0.005004,-9.769e-4 -0.005373,-0.00226 -0.001029,-0.00358 -0.009893,-0.00937 -0.0157224,-0.010261 -0.00128,-1.966e-4 -0.002328,-5.907e-4 -0.002328,-8.757e-4 0,-2.849e-4 0.001571,-0.00212 0.00349,-0.00408 0.004066,-0.00414 0.0115877,-0.00914 0.0154681,-0.010273 0.002763,-8.076e-4 0.003393,-0.00158 0.001839,-0.00225 -0.001868,-8.074e-4 -0.0126532,0.00595 -0.0189149,0.01185 -0.003012,0.00284 -0.004982,0.00419 -0.005909,0.00406 -0.001372,-1.977e-4 -0.001503,-0.00216 -1.8508e-4,-0.00278 3.4195e-4,-1.602e-4 8.5256e-4,-9.469e-4 0.001135,-0.00175 7.255e-4,-0.00206 0.009558,-0.011701 0.0132853,-0.014501 0.003226,-0.00242 0.003892,-0.00356 0.002083,-0.00356 -0.001306,0 -0.007901,0.00619 -0.0123758,0.011618 -0.001866,0.00226 -0.003776,0.00412 -0.004244,0.00412 -4.6776e-4,0 -6.4431e-4,-3.757e-4 -3.9235e-4,-8.348e-4 7.1526e-4,-0.0013 -0.001067,-0.011946 -0.002364,-0.014117 -0.001178,-0.00197 -0.003604,-0.00286 -0.002526,-9.285e-4 z m 0.0380462,0.040724 c 0.001824,0.00136 0.001977,0.00194 0.001935,0.0074 -5.217e-5,0.00685 -0.001994,0.013002 -0.005131,0.016248 -0.002434,0.00252 -0.009932,0.00665 -0.0130722,0.0072 -0.003087,5.419e-4 -0.002652,-3.629e-4 0.001056,-0.0022 0.002694,-0.00133 0.003661,-0.00245 0.006232,-0.00721 0.001674,-0.0031 0.003043,-0.00601 0.003043,-0.00647 0,-4.822e-4 4.062e-4,-6.662e-4 9.5108e-4,-4.307e-4 6.8536e-4,2.962e-4 8.2112e-4,-3.861e-4 4.8591e-4,-0.00244 -8.3035e-4,-0.00509 -0.003197,-0.013329 -0.003994,-0.013896 -0.001658,-0.00118 -6.2543e-4,-0.00138 0.002868,-5.468e-4 0.002005,4.776e-4 0.004536,0.00153 0.005625,0.00234 z m -0.0205641,0.0045 c 0.001629,0.00172 0.002961,0.00334 0.002961,0.0036 0,8.264e-4 -0.006014,0.00869 -0.006992,0.00915 -5.0857e-4,2.355e-4 -0.001949,4.322e-4 -0.0032,4.371e-4 -0.002223,8.7e-6 -0.002265,-5.54e-5 -0.001831,-0.00276 2.4471e-4,-0.00152 8.0633e-4,-0.00434 0.001248,-0.00626 4.4172e-4,-0.00192 9.0144e-4,-0.00402 0.001022,-0.00466 6.7048e-4,-0.00358 0.003093,-0.0034 0.006792,4.974e-4 z m -0.10827496,0.00532 c -0.006506,0.0013 -0.007857,0.00201 -0.008812,0.00462 -4.7729e-4,0.00131 -0.002024,0.00442 -0.003437,0.00692 -0.002225,0.00394 -0.002494,0.00499 -0.002014,0.00785 3.5434e-4,0.00211 0.001416,0.00426 0.002935,0.00594 0.001309,0.00145 0.003939,0.00474 0.005844,0.0073 0.004257,0.00573 0.004655,0.00615 0.008803,0.00933 0.003969,0.00304 0.008662,0.00458 0.012378,0.00406 0.005427,-7.634e-4 0.0102505,-0.00233 0.014162,-0.00462 0.005942,-0.00346 0.006636,-0.00474 0.006506,-0.012032 -1.0974e-4,-0.00617 -2.4293e-4,-0.00663 -0.005208,-0.018016 -0.002576,-0.00591 -0.005152,-0.00806 -0.0120049,-0.010055 -0.006918,-0.00201 -0.0134446,-0.00246 -0.0191528,-0.00132 z m 0.0163679,0.00215 c 0.008893,0.00246 0.0107831,0.00443 0.0150129,0.015627 0.002664,0.00705 0.003197,0.00931 0.003077,0.013036 -1.9943e-4,0.00617 -0.002876,0.00897 -0.0111382,0.011674 -0.008511,0.00278 -0.0118893,0.00256 -0.0174001,-0.00113 -0.004531,-0.00304 -0.006819,-0.00551 -0.0131626,-0.014217 -0.004042,-0.00555 -0.004854,-0.00716 -0.004854,-0.00964 0,-0.00164 3.287e-4,-0.00323 7.3043e-4,-0.00353 4.0172e-4,-3.045e-4 0.001555,-0.00213 0.002563,-0.00405 0.003631,-0.00693 0.003911,-0.00717 0.009509,-0.00842 0.006896,-0.00153 0.007909,-0.00149 0.0156623,6.563e-4 z m -0.001104,0.00855 c -0.001915,0.0012 -0.00263,0.00223 -0.002961,0.00428 -3.7733e-4,0.00234 -1.5179e-4,0.0029 0.001677,0.00418 0.004464,0.00312 0.008656,0.00242 0.0106408,-0.00179 0.002647,-0.00561 -0.003756,-0.010176 -0.009357,-0.00668 z m 0.005805,0.00105 c 0.001673,0.00117 0.001826,0.00492 2.551e-4,0.00625 -0.002783,0.00235 -0.007688,-1.5e-4 -0.006305,-0.00321 8.5142e-4,-0.00188 0.002903,-0.004 0.003873,-0.004 4.3836e-4,0 0.001418,4.342e-4 0.002177,9.65e-4 z M 0.11745297,1.0216774 c 0.0100114,0.00162 0.0161048,0.00359 0.0214208,0.00693 0.005466,0.00344 0.00643,0.00515 0.005859,0.010415 -5.2077e-4,0.00481 -0.003574,0.012001 -0.005289,0.012461 -6.3682e-4,1.709e-4 -0.001158,5.964e-4 -0.001158,9.455e-4 0,3.491e-4 -8.8059e-4,0.00157 -0.001957,0.00271 -0.001076,0.00114 -0.003293,0.00351 -0.004925,0.00528 -0.001632,0.00176 -0.004876,0.00448 -0.007209,0.00603 l -0.004241,0.00282 -0.003657,-0.0015 c -0.005761,-0.00236 -0.0165515,-0.010836 -0.0203544,-0.015986 -0.004117,-0.00558 -0.004344,-0.00634 -0.00452,-0.015281 -1.3808e-4,-0.00704 -6.784e-5,-0.00736 0.002301,-0.010298 0.002058,-0.00256 0.003104,-0.00321 0.006628,-0.00416 0.005181,-0.00139 0.01008,-0.0015 0.017101,-3.635e-4 z m 0.0217325,0.026837 c 4e-5,6.789e-4 2.3745e-4,8.17e-4 5.0347e-4,3.521e-4 2.4072e-4,-4.207e-4 2.1112e-4,-9.233e-4 -6.575e-5,-0.00112 -2.7691e-4,-1.936e-4 -4.7387e-4,1.506e-4 -4.3769e-4,7.649e-4 z m 0.27916991,0.037976 c 5.3939e-4,0.0012 0.001158,0.0063 0.001375,0.01133 8.9249e-4,0.020676 -0.00623,0.043079 -0.0180469,0.056768 -8.592e-4,9.953e-4 -0.001707,0.00231 -0.001885,0.00291 -3.7907e-4,0.0013 -0.002824,0.00119 -0.00508,-2.207e-4 -8.1642e-4,-5.106e-4 -0.003254,-0.00111 -0.005417,-0.00134 -0.002163,-2.254e-4 -0.006107,-8.329e-4 -0.008765,-0.00135 -0.00369,-7.18e-4 -0.008712,-9.412e-4 -0.02125,-9.445e-4 -0.00903,0 -0.0186677,-2.571e-4 -0.0214177,-5.659e-4 -0.00275,-3.089e-4 -0.008188,-8.298e-4 -0.0120833,-0.00116 -0.020262,-0.0017 -0.0261595,-0.0024 -0.0296754,-0.00348 -0.003348,-0.00104 -0.003779,-0.00137 -0.003284,-0.00251 0.003433,-0.00792 0.007008,-0.021979 0.007667,-0.03016 2.4513e-4,-0.00304 4.6973e-4,-0.0058 4.9909e-4,-0.00612 2.942e-5,-3.206e-4 -5.9692e-4,-0.00214 -0.001392,-0.00404 -0.001438,-0.00343 -0.001208,-0.00771 3.7736e-4,-0.00703 4.257e-4,1.839e-4 0.001578,3.32e-5 0.002562,-3.346e-4 0.001988,-7.441e-4 0.0162859,-0.00114 0.0182468,-5.059e-4 6.875e-4,2.225e-4 0.005,1.716e-4 0.009583,-1.132e-4 0.004583,-2.848e-4 0.0135833,-5.297e-4 0.02,-5.443e-4 0.01134,-2.56e-5 0.014266,-3.197e-4 0.0295833,-0.00297 0.002062,-3.571e-4 0.004594,-6.174e-4 0.005625,-5.786e-4 0.001031,3.91e-5 0.001875,-1.887e-4 0.001875,-5.056e-4 0,-3.169e-4 6.5923e-4,-5.762e-4 0.001465,-5.762e-4 8.0572e-4,0 0.003226,-6.556e-4 0.005378,-0.00146 0.002152,-8.013e-4 0.004515,-0.00146 0.005251,-0.00146 8.0887e-4,0 0.001099,-2.694e-4 7.348e-4,-6.818e-4 -4.0447e-4,-4.591e-4 -1.4757e-4,-5.606e-4 7.8484e-4,-3.103e-4 7.6268e-4,2.046e-4 0.001387,1.181e-4 0.001387,-1.924e-4 0,-3.104e-4 6.5625e-4,-5.768e-4 0.001458,-5.919e-4 8.0209e-4,-1.52e-5 0.003521,-7.895e-4 0.006042,-0.00172 0.00615,-0.00227 0.007211,-0.00222 0.008402,4.37e-4 z m -0.0221524,0.057838 c -2.8327e-4,3.205e-4 -1.179e-4,5.828e-4 3.6748e-4,5.828e-4 4.8539e-4,0 8.8252e-4,-2.623e-4 8.8252e-4,-5.828e-4 0,-3.205e-4 -1.6537e-4,-5.827e-4 -3.6748e-4,-5.827e-4 -2.0212e-4,0 -5.9925e-4,2.622e-4 -8.8252e-4,5.827e-4 z m -0.0983333,0.0063 c 0.001375,5.71e-5 0.004188,3.529e-4 0.00625,6.571e-4 0.002062,3.043e-4 0.007125,8.603e-4 0.01125,0.00124 0.0222729,0.00203 0.0248508,0.00216 0.0475,0.00253 0.0154308,2.487e-4 0.0226876,0.00109 0.0270833,0.00313 0.001146,5.327e-4 0.002458,9.836e-4 0.002917,10e-4 0.001887,7.63e-5 0.005053,0.00111 0.005911,0.00193 6.2577e-4,5.985e-4 0.001098,6.735e-4 0.001485,2.359e-4 6.6484e-4,-7.522e-4 0.004368,6.543e-4 0.008854,0.00336 0.001604,9.686e-4 0.003479,0.00177 0.004167,0.00177 6.875e-4,5.8e-6 0.00275,3.785e-4 0.004583,8.287e-4 0.002589,6.357e-4 0.00687,7.55e-4 0.0191667,5.34e-4 0.008708,-1.565e-4 0.0177375,-5.115e-4 0.0200648,-7.889e-4 0.003445,-4.108e-4 0.011915,-0.00331 0.0136852,-0.00469 2.2917e-4,-1.782e-4 0.001823,-9.215e-4 0.003542,-0.00165 0.001719,-7.305e-4 0.003125,-0.00151 0.003125,-0.00174 0,-2.267e-4 0.002028,-0.00127 0.004506,-0.00232 0.003965,-0.00168 0.004716,-0.00182 0.00625,-0.00115 0.00217,9.477e-4 0.002242,0.00204 1.6439e-4,0.0025 -0.001778,3.945e-4 -0.009254,0.00578 -0.009254,0.00666 0,3.153e-4 3.75e-4,7.354e-4 8.3333e-4,9.335e-4 4.5833e-4,1.98e-4 8.3333e-4,5.42e-5 8.3333e-4,-3.194e-4 0,-3.737e-4 4.81e-4,-5.504e-4 0.001069,-3.926e-4 0.00125,3.355e-4 0.005261,-0.00176 0.004452,-0.00232 -3.0174e-4,-2.11e-4 -9.9236e-4,-7.34e-5 -0.001535,3.059e-4 -0.0012,8.39e-4 -0.002319,8.945e-4 -0.002319,1.151e-4 0,-0.00115 0.006175,-0.00344 0.00842,-0.00312 0.002075,2.91e-4 0.002166,4.646e-4 0.002069,0.00396 -1.1124e-4,0.00405 -0.001064,0.00526 -0.004489,0.00574 -0.003131,4.379e-4 -0.006834,0.00257 -0.006834,0.00394 0,0.00161 0.002062,0.00138 0.003192,-3.501e-4 0.002235,-0.00343 0.005981,-0.00218 0.005963,0.00198 -1.692e-5,0.00401 -6.598e-4,0.00504 -0.003589,0.00579 -0.003249,8.273e-4 -0.00758,0.00447 -0.006865,0.00577 4.5017e-4,8.204e-4 6.5494e-4,7.992e-4 0.001712,-1.774e-4 6.6031e-4,-6.101e-4 0.001212,-0.00141 0.001227,-0.00177 1.459e-5,-3.632e-4 8.1424e-4,-8.045e-4 0.001777,-9.806e-4 9.639e-4,-1.762e-4 0.001503,-5.996e-4 0.001201,-9.421e-4 -3.0234e-4,-3.42e-4 -3.7074e-4,-6.219e-4 -1.52e-4,-6.219e-4 2.1872e-4,0 0.001052,-1.757e-4 0.001853,-3.904e-4 9.3915e-4,-2.521e-4 0.001257,-1.664e-4 8.9629e-4,2.416e-4 -3.0721e-4,3.475e-4 -1.5249e-4,7.266e-4 3.4382e-4,8.423e-4 5.2905e-4,1.234e-4 9.1334e-4,0.00189 9.2889e-4,0.00428 3.625e-5,0.00555 1.3477e-4,0.00534 -0.002562,0.00571 -0.003102,4.339e-4 -0.007227,0.00289 -0.006409,0.00381 4.2856e-4,4.849e-4 0.001135,2.366e-4 0.002317,-8.141e-4 0.001057,-9.393e-4 0.00219,-0.00138 0.002992,-0.00117 7.1026e-4,1.905e-4 0.001587,1.22e-5 0.001948,-3.968e-4 0.0015,-0.0017 0.00246,6.106e-4 0.00222,0.00533 l -2.4415e-4,0.00481 -0.004116,0.00109 c -0.002264,6e-4 -0.004644,0.00146 -0.005288,0.00191 -0.001833,0.00128 2.0893e-4,0.00169 0.002361,4.693e-4 0.002127,-0.0012 0.005793,-0.00101 0.005793,3.095e-4 0,4.68e-4 -0.002362,0.00251 -0.00525,0.00454 -0.00377,0.00265 -0.006236,0.00388 -0.00875,0.00435 -0.001925,3.625e-4 -0.0035,8.821e-4 -0.0035,0.00116 0,2.724e-4 -0.00131,6.672e-4 -0.002911,8.773e-4 -0.002242,2.941e-4 -0.004109,-5.9e-6 -0.008125,-0.0013 -0.004952,-0.0016 -0.005529,-0.00166 -0.0114641,-0.00115 -0.003437,2.913e-4 -0.0145,5.362e-4 -0.0245833,5.442e-4 -0.0145636,1.16e-5 -0.0200166,2.432e-4 -0.0265196,0.00113 -0.004502,6.119e-4 -0.008926,0.00111 -0.00983,0.00111 -0.001864,0 -0.0139707,0.00259 -0.0179433,0.00384 -0.001444,4.538e-4 -0.003057,8.25e-4 -0.003584,8.25e-4 -5.2721e-4,0 -0.004971,0.00142 -0.009874,0.00316 -0.0148818,0.00527 -0.0183022,0.0062 -0.0259912,0.00707 -0.006784,7.674e-4 -0.008269,7.429e-4 -0.0181349,-2.995e-4 -0.0112621,-0.00119 -0.0133652,-0.00149 -0.0235393,-0.00338 -0.003437,-6.373e-4 -0.00925,-0.00162 -0.0129167,-0.00218 -0.003945,-6.061e-4 -0.0100686,-0.00221 -0.015,-0.00392 -0.009796,-0.00341 -0.0267143,-0.01111 -0.0279479,-0.012722 -4.7341e-4,-6.186e-4 -0.001275,-0.00113 -0.001781,-0.00113 -5.0626e-4,0 -0.001419,-4.589e-4 -0.002028,-0.00102 -0.00124,-0.00114 -0.001478,-0.00194 -5.3505e-4,-0.0018 0.001293,1.977e-4 0.005208,-8.27e-4 0.005208,-0.00136 0,-3.072e-4 -9.7909e-4,-0.00146 -0.002176,-0.00255 -0.002701,-0.00248 -0.002167,-0.00359 0.001924,-0.00403 0.001743,-1.854e-4 0.005183,-7.777e-4 0.007645,-0.00132 0.002462,-5.386e-4 0.005219,-9.401e-4 0.006126,-8.924e-4 0.00144,7.59e-5 0.001582,-1.663e-4 0.001116,-0.0019 -4.9517e-4,-0.00185 -3.3037e-4,-0.00205 0.002268,-0.00281 0.001541,-4.503e-4 0.003777,-8.187e-4 0.004968,-8.187e-4 0.004904,0 0.0113505,-8.489e-4 0.0117324,-0.00154 2.247e-4,-4.096e-4 -0.001026,-0.00247 -0.002779,-0.00459 -0.002534,-0.00305 -0.002902,-0.00384 -0.001797,-0.00381 7.6433e-4,1.92e-5 0.002748,-3.814e-4 0.004409,-8.909e-4 0.001661,-5.094e-4 0.003201,-7.992e-4 0.003423,-6.439e-4 2.2207e-4,1.553e-4 8.7209e-4,-1.123e-4 0.001444,-5.946e-4 8.5273e-4,-7.185e-4 6.4251e-4,-0.00135 -0.001164,-0.00351 l -0.002204,-0.00263 0.004616,-0.00153 c 0.002539,-8.406e-4 0.004616,-0.00164 0.004616,-0.00178 0,-1.387e-4 -5.1605e-4,-9.603e-4 -0.001147,-0.00183 -0.001093,-0.0015 -9.9308e-4,-0.00167 0.00212,-0.00373 0.001797,-0.00119 0.003438,-0.00217 0.003647,-0.00219 6.3087e-4,-4.49e-5 5.7661e-4,-2.53e-4 -4.9387e-4,-0.0019 -9.377e-4,-0.00144 -7.9289e-4,-0.00177 0.001649,-0.00371 0.002486,-0.00198 0.003365,-0.0031 0.005809,-0.00742 l 9.2737e-4,-0.00164 0.002286,0.00109 c 0.001257,6.012e-4 0.003411,0.00114 0.004786,0.0012 z m -0.17111503,0.011624 c 5.1292e-4,8.814e-4 0.001442,0.00243 0.002065,0.00344 6.2309e-4,0.00101 0.001138,0.00219 0.001144,0.00262 5.83e-6,4.324e-4 7.3133e-4,0.00239 0.001612,0.00436 8.807e-4,0.00196 0.002186,0.00555 0.002901,0.00797 7.1486e-4,0.00242 0.002554,0.00658 0.004088,0.00925 0.001533,0.00267 0.003033,0.00593 0.003333,0.00726 5.1074e-4,0.00226 3.4357e-4,0.00254 -0.002648,0.00443 -0.003755,0.00237 -0.0104749,0.00467 -0.0165442,0.00567 -0.005448,8.9e-4 -0.0179444,0.00102 -0.0223364,2.299e-4 -0.005705,-0.00102 -0.012348,-0.00372 -0.0160903,-0.00654 -0.005508,-0.00414 -0.006587,-0.00603 -0.007264,-0.012703 l -5.9799e-4,-0.0059 0.003066,-0.00446 c 0.002035,-0.00296 0.004927,-0.00584 0.008602,-0.00856 0.008742,-0.00648 0.0157988,-0.00848 0.0304263,-0.0086 0.007227,-6.28e-5 0.00732,-4.55e-5 0.008242,0.00154 z M 0.5041199,1.0883843 c 0,3.206e-4 5.8463e-4,5.828e-4 0.001299,5.828e-4 7.1455e-4,0 0.001067,-2.622e-4 7.8415e-4,-5.828e-4 -2.8327e-4,-3.205e-4 -8.679e-4,-5.827e-4 -0.001299,-5.827e-4 -4.3129e-4,0 -7.8415e-4,2.622e-4 -7.8415e-4,5.827e-4 z m -0.003333,0.069241 c 0,7.044e-4 0.001581,0.00152 0.002159,0.00112 2.0975e-4,-1.466e-4 -1.902e-4,-5.983e-4 -8.8877e-4,-0.001 -7.92e-4,-4.596e-4 -0.00127,-5.039e-4 -0.00127,-1.174e-4 z m -0.001129,0.00357 c 8.5038e-4,5.789e-4 0.001834,9.368e-4 0.002185,7.954e-4 9.8607e-4,-3.97e-4 -5e-6,-0.00117 -0.001963,-0.00152 -0.001719,-3.143e-4 -0.001725,-2.941e-4 -2.2132e-4,7.292e-4 z m 0.004463,0.011691 c 0,3.206e-4 3.9713e-4,5.828e-4 8.8251e-4,5.828e-4 4.8539e-4,0 6.5075e-4,-2.622e-4 3.6749e-4,-5.828e-4 -2.8327e-4,-3.205e-4 -6.804e-4,-5.827e-4 -8.8252e-4,-5.827e-4 -2.0212e-4,0 -3.6748e-4,2.622e-4 -3.6748e-4,5.827e-4 z m -0.0025,0.011432 c 0,3.206e-4 5.5057e-4,0.00109 0.001224,0.00171 6.7291e-4,6.222e-4 0.001223,8.69e-4 0.001223,5.485e-4 0,-3.205e-4 -5.5058e-4,-0.00109 -0.001223,-0.00171 -6.7293e-4,-6.222e-4 -0.001224,-8.69e-4 -0.001224,-5.485e-4 z m -9.1557e-4,0.019777 c 0.002933,8.901e-4 0.003984,7.915e-4 0.003033,-2.843e-4 -3.0212e-4,-3.419e-4 -0.001746,-6.113e-4 -0.003208,-5.988e-4 l -0.002659,2.28e-5 0.002834,8.602e-4 z m -0.0157521,0.013081 c 0,3.206e-4 5.8463e-4,5.828e-4 0.001299,5.828e-4 7.1455e-4,0 0.001067,-2.622e-4 7.8415e-4,-5.828e-4 -2.8326e-4,-3.205e-4 -8.679e-4,-5.827e-4 -0.001299,-5.827e-4 -4.3128e-4,0 -7.8415e-4,2.622e-4 -7.8415e-4,5.827e-4 z m 0.006667,5.828e-4 c 0,3.205e-4 3.75e-4,5.827e-4 8.3333e-4,5.827e-4 4.5833e-4,0 8.3333e-4,-2.622e-4 8.3333e-4,-5.827e-4 0,-3.205e-4 -3.75e-4,-5.828e-4 -8.3333e-4,-5.828e-4 -4.5833e-4,0 -8.3333e-4,2.623e-4 -8.3333e-4,5.828e-4 z m -0.009323,0.00856 c 6.0156e-4,1.684e-4 0.00132,1.477e-4 0.001597,-4.6e-5 2.7691e-4,-1.937e-4 -2.1528e-4,-3.314e-4 -0.001094,-3.062e-4 -9.7079e-4,2.8e-5 -0.001168,1.661e-4 -5.0347e-4,3.521e-4 z"
+         id="path4490"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="cccccccccsccccccccccccccccccccccsccccccccccccccccccccscccccccccccccccccccscccccccsccccccccccsccsccccccscccccccccccsccccccsccscsscccsccscscscscccssscccsccccsscccccccccccccccsccccccccscccsccsccccsccccccccccccscsccccsccsccccsccscccscccccsccccccccccscccccsccsscssccsccccccsscsssscscccccccccccssccccccccccccsccsccccccscscsccccssccscccsccccssscccccccccccsccccsssccccccccscsccscccscccscccscscsccccccccscccccscccsccscccccscccccccccccssccccccccccsccccccccccccccccsccccccccccccccscssccccccccsccscscccccsccccccccccccccccccccccscccccsccccccccccccccccccccscccccccccccccccccscccccccscccssscscccccsccccsccccsccsscccccccccsccccsscccscssccccssccccssccccccccccccccccsccccccccscsccccccccccscccccccscscccccccccccccccccccccccccsccccccccccccccsccccccsccccccccccccccccccscccccccccccccccscccsscsccscsccssssscccccccccccscccscccscscccscccsccccccccsccccccccccccccsscscccscscscccccccsccsccccccscccccccccsccccccccccccccccccccccccccccsscssccccccccccsscssscscsccccccsscsssssssccccc" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 131.77268,304.31324 c -1.98971,-1.03604 -4.47702,-3.01543 -5.52736,-4.39863 -1.82603,-2.4047 -1.94873,-3.2754 -2.79969,-19.8675 -0.48949,-9.54392 -0.87584,-22.9054 -0.85857,-29.69219 0.0173,-6.78679 -0.24016,-17.91019 -0.57206,-24.71868 -0.56902,-11.67271 -0.74367,-12.67871 -3.06072,-17.63014 -1.3515,-2.88808 -3.79522,-6.86142 -5.4305,-8.82963 -5.82103,-7.0062 -6.9751,-9.57279 -8.63047,-19.1936 -0.85778,-4.98531 -1.76685,-13.92293 -2.02016,-19.86137 -0.41304,-9.68313 -0.27953,-11.47353 1.29397,-17.35258 0.96499,-3.60548 2.44589,-7.94362 3.29089,-9.64032 2.36709,-4.75297 10.54049,-15.81013 11.68678,-15.81013 0.23947,0 0.4354,2.08231 0.4354,4.62736 0,5.24214 0.35417,5.46009 5.01297,3.0849 1.66398,-0.84835 3.27783,-1.54245 3.58633,-1.54245 0.30849,0 0.78486,1.6485 1.05859,3.66332 0.95315,7.01567 1.99697,8.11549 5.2636,5.54595 l 1.90911,-1.50169 0.51386,3.04153 c 0.66958,3.96322 5.4109,13.83216 6.92438,14.41294 0.69629,0.26719 2.29234,-0.52705 3.90566,-1.94356 1.50051,-1.31747 3.06318,-2.39539 3.47259,-2.39539 0.41248,0 0.74439,2.58988 0.74439,5.80839 0,4.5623 0.25931,5.90791 1.20868,6.27222 0.66477,0.25509 1.60181,0.0707 2.08231,-0.40982 1.48991,-1.48991 2.78776,-0.97478 4.11393,1.63285 0.7011,1.37857 1.35083,2.5978 1.44384,2.70941 0.093,0.11162 1.42594,-0.3222 2.96206,-0.96403 3.84548,-1.60675 4.58573,-1.48216 6.00326,1.01038 1.07681,1.89342 1.59599,2.12518 4.10468,1.8323 2.32224,-0.2711 3.27918,0.0549 4.99948,1.70302 l 2.12754,2.03831 2.91346,-2.31533 c 2.97319,-2.3628 4.41556,-2.3371 6.37756,0.11364 1.68333,2.10265 2.58525,17.54571 1.7495,29.95556 -1.5465,22.96334 -2.50524,27.13788 -10.2769,44.74796 -7.20404,16.32386 -8.12741,20.14155 -9.31496,38.51298 l -0.42356,6.55242 5.41161,5.04885 c 4.29467,4.00676 5.50738,5.63897 5.8756,7.90805 0.25519,1.57257 0.2167,2.85922 -0.0855,2.85922 -0.30224,0 -2.03189,-1.21469 -3.84366,-2.69929 -1.81177,-1.48461 -3.6922,-2.69929 -4.17873,-2.69929 -1.86891,0 -0.75114,2.28976 2.29581,4.703 2.87761,2.27909 3.03416,2.57303 1.6443,3.08718 -3.02291,1.11824 -8.68084,1.66298 -8.68084,0.83578 0,-1.11365 -4.99751,-6.31229 -6.06806,-6.31229 -1.41561,0 -1.00767,1.54533 1.05509,3.99678 2.60044,3.09044 2.43727,3.71744 -0.96403,3.70437 -2.66768,-0.0103 -3.05665,-0.30948 -5.01274,-3.85613 -1.16636,-2.11476 -2.64133,-3.84502 -3.27771,-3.84502 -1.49105,0 -1.49714,-0.0315 0.78184,4.04604 l 1.93891,3.46908 -2.42092,0.48418 c -4.13482,0.82696 -6.08302,0.60713 -5.60724,-0.63272 0.55316,-1.44154 -2.02501,-5.82413 -3.42619,-5.82413 -1.05768,0 -1.04206,0.26035 0.30604,5.09957 0.34896,1.25265 0.0385,1.74025 -1.34362,2.11034 -3.94651,1.05674 -5.19048,0.59275 -6.78371,-2.53022 -2.82812,-5.54359 -5.19774,-5.2111 -2.49585,0.3502 l 1.67789,3.4536 -1.72524,-0.0359 c -0.94888,-0.0197 -3.35317,-0.88359 -5.34287,-1.91964 l 0,3e-5 z"
+         id="path4515"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 259.17205,299.77645 c 0,-1.99084 0.88462,-3.44168 1.86833,-3.06419 1.2233,0.46942 2.48083,-1.02053 3.16625,-3.75143 0.8111,-3.23171 -0.93452,-2.66382 -5.10191,1.65977 -2.54155,2.63682 -3.88419,3.53205 -4.44948,2.96676 -1.02732,-1.02732 -0.29495,-2.42236 4.95705,-9.44238 6.40076,-8.5555 6.69012,-9.58594 7.09251,-25.25683 0.19331,-7.52865 0.12652,-14.88754 -0.14842,-16.3531 -0.27494,-1.46556 -1.70183,-4.45073 -3.17088,-6.63373 -1.46905,-2.18299 -2.671,-4.33441 -2.671,-4.78092 0,-0.44651 -1.01063,-2.95085 -2.24584,-5.56519 -3.42967,-7.2589 -3.82226,-9.55707 -4.68243,-27.40995 -1.00033,-20.76186 -3.50543,-41.16182 -5.51596,-44.91853 -0.62567,-1.16908 -0.27457,-1.58706 2.18611,-2.60253 1.61231,-0.66538 4.0485,-2.05263 5.41374,-3.08278 1.66954,-1.25976 3.06224,-1.72744 4.25366,-1.42842 1.31235,0.32938 2.34526,-0.1544 3.98593,-1.86689 1.71413,-1.78917 2.68022,-2.21835 4.27532,-1.89933 1.81745,0.36349 2.22909,0.0389 3.48622,-2.74892 1.39576,-3.09523 1.46403,-3.13579 3.27783,-1.94734 2.39729,1.57077 5.1329,1.16876 5.50968,-0.80966 0.16156,-0.84835 0.58646,-2.31313 0.94421,-3.25506 l 0.65046,-1.71261 4.02396,1.86432 c 2.21317,1.02538 4.2738,1.70992 4.57917,1.52119 0.30536,-0.18872 0.80582,-2.51283 1.11212,-5.16468 0.78044,-6.75662 1.4846,-8.29206 3.80282,-8.29206 1.47772,0 2.04531,-0.49907 2.41204,-2.12087 1.35539,-5.99397 2.57675,-10.41787 2.99038,-10.8315 0.25466,-0.25465 1.46027,0.1261 2.67914,0.8461 3.01948,1.78365 3.79033,1.65376 4.3911,-0.7399 l 0.51427,-2.04901 2.2499,2.62743 c 3.81388,4.45384 11.35591,16.14393 14.11091,21.87179 2.96687,6.16839 8.21988,26.47799 9.59084,37.08089 1.28264,9.91987 0.37128,14.35927 -5.65891,27.56556 -9.44654,20.68819 -10.92377,27.61082 -11.89341,55.73499 -0.60241,17.4726 -0.55268,18.70939 0.91605,22.78479 l 1.55303,4.30931 -2.00206,4.17417 c -2.01101,4.19283 -8.62273,11.45822 -9.56753,10.51342 -0.27808,-0.27808 -0.0651,-1.56901 0.47325,-2.86873 0.53837,-1.29972 0.7817,-2.56028 0.54073,-2.80125 -0.84122,-0.84122 -2.22173,0.68292 -3.66205,4.04306 -1.40422,3.27592 -1.56245,3.38555 -4.88606,3.38555 -5.86264,0 -7.43236,-1.62785 -4.59403,-4.76417 0.70435,-0.7783 1.06637,-1.62937 0.80448,-1.89126 -0.94483,-0.94483 -2.6393,0.39856 -3.9279,3.11409 -1.28538,2.70873 -1.41338,2.77011 -5.77714,2.77011 -2.45444,0 -4.67902,-0.2164 -4.94351,-0.48088 -0.26448,-0.26449 0.71883,-1.54302 2.18514,-2.8412 2.91042,-2.57669 3.32798,-3.61895 1.44986,-3.61895 -1.15871,0 -3.76679,2.35061 -6.68136,6.02177 -1.56032,1.96537 -6.03866,2.32699 -7.46933,0.60313 -0.71469,-0.86115 -0.5528,-1.33224 0.77818,-2.26449 1.05662,-0.74009 1.50404,-1.63727 1.20505,-2.41642 -0.71865,-1.87278 -3.46679,-0.0976 -4.8042,3.10323 -1.2941,3.09721 -3.09543,4.20749 -6.82632,4.20749 -1.8598,0 -2.74999,-0.35406 -2.74999,-1.09376 z"
+         id="path4517"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 43.499873,286.42199 c -2.999729,-0.26825 -3.232568,-0.46248 -3.729441,-3.11104 -0.638523,-3.40362 -2.466656,-7.11997 -3.502431,-7.11997 -1.051616,0 -0.941927,1.03512 0.488531,4.61018 1.510171,3.7743 1.004708,5.5919 -1.415823,5.09119 -0.963706,-0.19934 -3.407406,-0.5772 -5.430442,-0.83966 -2.023037,-0.26246 -3.491517,-0.77935 -3.263289,-1.14863 0.594245,-0.96151 -2.761461,-7.57211 -4.105628,-8.08791 -1.744489,-0.66942 -1.89969,0.0228 -0.578088,2.57854 1.515574,2.9308 1.590683,6.27978 0.140841,6.27978 -3.26295,0 -13.7613441,-11.40722 -17.5756483,-19.09714 l -2.3954758,-4.82945 0.4556158,-9.82383 c 0.3604821,-7.7726 1.0925436,-12.40038 3.5060046,-22.16345 6.1396827,-24.83661 6.9035507,-34.19344 4.8049107,-58.85667 -0.574882,-6.75603 -0.773644,-14.28184 -0.464362,-17.58234 0.480697,-5.12975 0.675578,-5.6593 1.755221,-4.76945 0.667968,0.55054 5.98838,7.36393 11.823135,15.14086 12.940727,17.24823 20.312258,25.34662 36.46885,40.06482 6.841272,6.2322 12.861453,11.85595 13.378181,12.49722 2.212787,2.74611 0.0062,14.13145 -6.362432,32.82743 -2.319567,6.80946 -4.217395,13.10459 -4.217395,13.98918 0,0.88458 -0.433815,1.56014 -0.964032,1.50122 -0.530218,-0.0589 -1.046917,0.23994 -1.148219,0.66411 -0.101303,0.42418 0.358395,0.77386 1.02155,0.77707 0.663156,0.003 1.50552,0.52379 1.87192,1.15684 0.366399,0.63305 2.596352,3.20983 4.955449,5.72618 3.603018,3.84318 4.280594,5.01539 4.235061,7.32664 -0.02981,1.51331 -0.302249,3.38049 -0.605411,4.14929 -0.462955,1.17402 -0.760971,0.95794 -1.861381,-1.34965 -1.459028,-3.05961 -3.384744,-3.82929 -2.532545,-1.01221 0.976742,3.22877 0.816347,3.9564 -1.08614,4.92728 -2.304949,1.17627 -3.581288,0.33777 -4.271865,-2.80641 -0.563444,-2.56534 -2.301455,-4.35255 -3.051908,-3.13829 -0.269465,0.43601 -0.126837,1.4712 0.316953,2.30043 0.44379,0.82923 0.806891,2.24274 0.806891,3.14115 0,1.48251 -0.367018,1.61191 -3.971715,1.40034 l -3.971715,-0.23311 -1.053531,-3.62539 c -1.533941,-5.27858 -2.937054,-5.73074 -2.274058,-0.73282 0.314579,2.37141 0.230852,3.9726 -0.207728,3.9726 -0.404092,0 -1.196911,0.11051 -1.761822,0.24559 -0.56491,0.13508 -2.466875,0.11685 -4.226589,-0.0405 l 0,-3e-5 z"
+         id="path4519"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 112.80294,283.13979 c -5.36988,-2.43719 -5.64287,-3.80932 -4.38053,-22.01852 0.58693,-8.46654 1.08171,-15.41318 1.0995,-15.43697 0.0178,-0.0238 2.25977,0.28961 4.98219,0.69647 l 4.94984,0.73974 0.43319,7.01579 c 0.23826,3.85868 0.64678,12.30832 0.90784,18.77697 l 0.47465,11.7612 -2.57998,-0.0169 c -1.41898,-0.009 -4.068,-0.6923 -5.8867,-1.51774 l 0,0 z"
+         id="path4521"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 128.44929,49.476837 c -2.55224,-1.070937 -7.14913,-6.351851 -8.8146,-10.126215 -0.86024,-1.949511 -2.11679,-5.927839 -2.79233,-8.84073 -1.94798,-8.399547 -0.24774,-13.832196 5.19861,-16.610719 2.78315,-1.419854 4.22246,-1.594793 11.04376,-1.342287 7.06579,0.261556 8.34854,0.546675 12.93659,2.875451 5.34922,2.715118 15.59592,11.530414 17.46739,15.027295 1.03933,1.942006 0.95654,2.201306 -1.54613,4.842325 -4.58761,4.841215 -17.0771,12.481277 -22.48979,13.757431 -5.36494,1.264897 -8.68382,1.390808 -11.0035,0.417449 z m 16.37248,-2.805857 c -0.25628,-0.256271 -0.92146,-0.283671 -1.47819,-0.06089 -0.61523,0.246195 -0.43248,0.428942 0.46595,0.465949 0.813,0.03349 1.26851,-0.148791 1.01224,-0.405063 l 0,2e-6 z"
+         id="path4523"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 290.02108,45.849221 c -3.1813,-1.048767 -10.21768,-3.092384 -15.63639,-4.54137 -5.41871,-1.448986 -10.92579,-3.189692 -12.23794,-3.868235 l -2.38574,-1.233714 0.32241,-6.74364 c 0.25468,-5.326828 0.7607,-7.639454 2.40852,-11.00747 2.61606,-5.347042 8.85299,-11.3078312 15.16622,-14.4947391 4.83106,-2.4387101 4.87986,-2.4458075 11.07963,-1.6114482 7.45505,1.0032937 11.07506,3.1769024 14.85183,8.9176893 3.36743,5.118567 4.47773,9.937704 3.96891,17.226618 -0.46533,6.665848 -2.41762,12.496792 -5.5663,16.624916 -2.55108,3.344638 -3.81074,3.421599 -11.97115,0.731393 z"
+         id="path4525"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 242.20509,75.013421 c -12.4986,-3.298829 -13.96916,-4.375642 -17.05055,-12.485203 -1.43678,-3.781295 -1.45244,-4.221537 -0.29214,-8.212823 1.22183,-4.202946 1.24579,-4.226363 7.0134,-6.854748 8.26289,-3.765521 10.7376,-3.594616 20.43919,1.41154 8.44663,4.35858 14.24786,8.887203 15.45632,12.065695 1.6575,4.359558 -3.03567,13.465864 -7.82803,15.188969 -4.19145,1.507044 -8.93878,1.209053 -17.73819,-1.11343 z m 1.25386,-5.784384 c 1.98643,-1.70866 2.05104,-1.960883 1.09407,-4.271216 -1.28346,-3.098551 -3.34176,-4.213411 -6.63747,-3.595134 -4.87136,0.913874 -6.98104,6.047097 -3.58306,8.718209 2.05476,1.615213 6.76998,1.175096 9.12646,-0.851859 l 0,0 z"
+         id="path4527"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 165.62817,86.446784 c -1.60868,-0.874641 -3.58005,-2.667628 -4.38084,-3.984414 -3.40463,-5.598465 0.38581,-20.483691 7.17211,-28.16521 2.17176,-2.458253 10.68105,-5.118762 14.86379,-4.647306 4.12733,0.46521 11.49136,4.080059 13.49133,6.622614 2.08179,2.646565 1.86762,4.20109 -1.54932,11.245619 -7.28304,15.01503 -20.8439,23.687829 -29.59707,18.928697 z m 20.14457,-9.039243 c 5.18282,-4.382521 3.83592,-10.989968 -2.24025,-10.989968 -2.45609,0 -3.3319,0.498415 -5.66466,3.223723 -3.20533,3.744712 -3.25604,4.050119 -1.22539,7.380632 2.00955,3.295899 5.51355,3.443889 9.1303,0.385613 z"
+         id="path4529"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000080;fill-opacity:1;stroke:#000000;stroke-width:0.09640322;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 179.43865,74.041831 c -0.49555,-0.154869 -1.16952,-0.541403 -1.41287,-0.810299 -0.24784,-0.273858 -0.15488,-0.563158 0.36772,-1.144412 0.53228,-0.592024 1.23826,-1.087151 2.44302,-1.713359 0.81575,-0.424007 0.9511,-0.53145 1.1247,-0.89278 0.27062,-0.563295 0.75734,-0.749066 1.9326,-0.737637 1.01474,0.0099 1.45757,0.180096 1.55002,0.595836 0.0322,0.144846 0.0792,0.339563 0.1045,0.432706 0.0675,0.248797 -0.15294,1.218341 -0.3775,1.660365 -0.29156,0.573926 -1.2913,1.563721 -2.00004,1.980155 -1.199,0.704487 -2.68829,0.955657 -3.73215,0.629425 z"
+         id="path4531"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000080;fill-opacity:1;stroke:#000000;stroke-width:0.09640322;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 180.92318,77.549627 c -0.65589,-0.110411 -1.10263,-0.559327 -0.99266,-0.997491 0.0864,-0.344199 0.52308,-0.523505 1.56266,-0.64163 0.98596,-0.112032 1.68248,-0.405829 2.49509,-1.052438 0.33424,-0.265965 0.6341,-0.483573 0.66634,-0.483573 0.0323,0 0.0586,0.159829 0.0586,0.355176 0,1.413575 -2.24074,3.080769 -3.79007,2.819956 z"
+         id="path4533"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000080;fill-opacity:1;stroke:#000000;stroke-width:0.09640322;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 237.83142,68.817058 c -1.5343,-0.230436 -2.19566,-0.49791 -2.76474,-1.118152 -0.41736,-0.454882 -0.80218,-1.11207 -0.80218,-1.369962 0,-0.394766 1.26506,-1.408755 2.57852,-2.066783 1.21701,-0.6097 1.64928,-0.732423 2.57906,-0.732192 0.76797,1.92e-4 0.93189,0.0327 1.42717,0.283001 0.86291,0.436098 1.49263,1.240333 1.65003,2.107311 0.16369,0.901565 -0.54074,2.061147 -1.5038,2.475442 -0.84557,0.363755 -2.27768,0.554459 -3.16406,0.421335 z"
+         id="path4535"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#800080;fill-opacity:1;stroke:#000000;stroke-width:0.38561288;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 219.37862,131.54035 c -2.40868,-1.41454 -4.53342,-3.32027 -4.53342,-4.06613 0,-0.32876 0.30873,-0.76298 0.68607,-0.96493 0.93038,-0.49792 14.6487,-2.46023 15.12807,-2.16396 0.71015,0.4389 0.40716,2.5135 -0.49951,3.42016 -0.89418,0.89419 -6.76915,4.21585 -8.1808,4.62536 -0.47551,0.13795 -1.47258,-0.18816 -2.60041,-0.8505 z"
+         id="path4537"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0.13633475;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 216.48319,146.76249 c -0.74984,-0.0583 -1.56164,-0.1673 -1.80401,-0.24224 -1.19024,-0.36802 -2.52363,-1.81878 -3.46459,-3.76955 -0.81701,-1.6938 -1.32779,-3.7492 -0.9317,-3.7492 0.0766,0 0.37006,0.15274 0.65215,0.33942 0.60245,0.39868 1.25454,0.60358 3.64548,1.14549 4.08728,0.92639 10.44365,1.92346 12.26219,1.92346 1.15858,0 1.42038,-0.12528 1.15595,-0.55313 -0.15401,-0.24921 0.0969,-0.53755 0.46786,-0.53755 0.3987,0 5.10527,-1.60465 7.79232,-2.65671 3.80984,-1.49165 4.69047,-2.05414 6.21513,-3.96983 1.19577,-1.50246 1.89137,-2.23522 2.12185,-2.23522 0.2638,0 0.21973,0.83912 -0.0904,1.72154 -0.89173,2.53714 -5.34358,7.88651 -7.70895,9.26313 -3.3044,1.92312 -7.87026,3.00548 -14.04186,3.32869 -2.87685,0.15065 -4.25008,0.14884 -6.2714,-0.008 l 0,-1e-5 z"
+         id="path4541"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 119.36589,245.56081 c -0.31221,-0.75574 -1.86948,-1.42177 -4.01041,-1.71522 -5.24652,-0.71911 -15.943178,-5.30615 -20.636149,-8.84937 C 90.256765,231.62694 84.52483,225.38669 80.111105,219.0925 78.600604,216.93846 70.565565,208.92912 62.255463,201.29399 42.520772,183.1622 37.112454,177.20956 25.818907,161.19025 c -3.289453,-4.66592 -6.950468,-9.52464 -8.135592,-10.79716 -3.454429,-3.70918 -6.164228,-8.16754 -6.164228,-10.14183 0,-2.56277 5.425001,-17.96712 8.889243,-25.2411 3.501119,-7.35142 9.763775,-14.29062 20.911372,-23.170374 C 62.69724,74.811239 79.812194,71.40902 105.60863,79.060027 l 5.01297,1.486804 -0.26724,3.881291 c -0.14699,2.134711 -0.0709,3.881292 0.16905,3.881292 0.23997,0 1.85018,-0.736956 3.57826,-1.637681 1.72809,-0.900725 3.26239,-1.508065 3.40958,-1.349645 0.1472,0.15842 -0.33309,3.4115 -1.0673,7.229068 -0.83703,4.352249 -1.05645,7.124477 -0.58828,7.432885 0.41065,0.270519 2.02828,0.319949 3.59474,0.109839 l 2.8481,-0.382008 -0.59462,5.565068 c -0.5746,5.37756 -0.74715,5.73765 -5.12134,10.68732 -11.80313,13.35597 -15.41419,22.10636 -16.11752,39.05618 -0.33377,8.04353 -0.0921,12.00834 1.2223,20.05187 2.42935,14.86678 3.18559,16.9088 9.2074,24.86204 6.23667,8.23702 7.60121,11.73429 8.65513,22.18273 0.82119,8.14133 0.68462,25.54621 -0.18397,23.44373 z M 100.59566,140.75277 c 0.26216,-0.42418 0.12959,-0.77123 -0.29458,-0.77123 -0.424176,0 -0.985713,0.34705 -1.247869,0.77123 -0.262155,0.42417 -0.129589,0.77122 0.294586,0.77122 0.424174,0 0.985713,-0.34705 1.247863,-0.77122 z"
+         id="path4543"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 184.42733,247.24159 c -1.40009,-0.35865 -2.71026,-0.81673 -2.91148,-1.01795 -0.37862,-0.37862 2.08352,-6.75241 3.64499,-9.43584 2.64157,-4.53963 5.57233,-13.4653 7.22289,-21.99736 1.53707,-7.94544 1.97464,-13.39519 2.48885,-30.99759 0.34314,-11.7465 0.86094,-21.59432 1.15067,-21.88404 0.28972,-0.28972 3.32279,-0.0727 6.74015,0.48227 7.54147,1.22471 19.51986,0.20469 32.99768,-2.80992 4.77641,-1.06835 9.0492,-1.71698 9.49508,-1.44141 0.44589,0.27557 1.11854,1.31071 1.49478,2.3003 1.43226,3.76713 4.54334,30.60915 5.00328,43.16762 0.49655,13.55832 2.03334,24.18979 3.92581,27.15857 0.59887,0.93947 1.08885,1.88999 1.08885,2.11226 0,0.84214 -12.6892,6.73733 -19.12416,8.88476 -12.52806,4.18079 -20.84156,5.51338 -36.40409,5.83529 -7.84723,0.16232 -15.41321,0.002 -16.8133,-0.35696 z m 59.23071,-15.48418 c 0,-0.42418 -0.32657,-0.77123 -0.72571,-0.77123 -0.39914,0 -0.9402,0.34705 -1.20235,0.77123 -0.26216,0.42417 0.0644,0.77122 0.72571,0.77122 0.66129,0 1.20235,-0.34705 1.20235,-0.77122 z"
+         id="path4545"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /><path
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.77122575;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 179.32747,160.92651 c -0.78886,-0.78887 -2.27229,-1.1449 -4.19255,-1.00626 -2.72456,0.19672 -3.05649,0.002 -3.99064,-2.34262 -0.56039,-1.40646 -1.11144,-2.68071 -1.22455,-2.83167 -0.1131,-0.15097 -1.83298,0.34699 -3.82194,1.10658 -3.52445,1.34601 -3.64248,1.34318 -4.6479,-0.11112 -2.17673,-3.14855 -2.76605,-3.51221 -4.9237,-3.03831 l -2.15157,0.47256 -0.3066,-5.42607 c -0.16863,-2.98435 -0.66059,-5.78007 -1.09324,-6.21272 -0.5347,-0.5347 -1.99431,-0.0207 -4.55741,1.60471 -3.61411,2.29201 -3.81633,2.33211 -4.86719,0.9653 -1.9805,-2.57595 -3.8463,-7.5256 -4.38957,-11.6448 -0.29371,-2.22692 -0.8943,-4.04894 -1.33464,-4.04894 -0.44035,0 -1.92208,0.6931 -3.29274,1.54021 l -2.49211,1.54021 -0.40792,-5.08187 c -0.48053,-5.98644 -1.37797,-7.31886 -3.87108,-5.74734 -3.98969,2.51487 -5.88097,3.4553 -6.23564,3.10062 -0.40092,-0.40092 2.86416,-21.45329 3.81143,-24.575113 0.55011,-1.812967 0.48992,-1.83807 -3.49016,-1.455635 l -4.04992,0.389146 0.50131,-2.400495 c 0.27573,-1.320276 0.70696,-4.7431 0.95829,-7.606275 0.50259,-5.725439 0.41879,-5.814864 -4.20638,-4.488385 -1.37576,0.394565 -2.50139,0.422217 -2.50139,0.06145 0,-0.360767 1.08082,-3.720295 2.40181,-7.465616 2.75884,-7.821937 5.84189,-14.179813 9.67696,-19.955845 l 2.68147,-4.038582 5.26424,-0.08013 c 2.89533,-0.04408 7.37054,-0.735686 9.94491,-1.53692 5.18315,-1.613178 15.99771,-8.468983 20.11877,-12.754143 1.46178,-1.51998 3.2838,-2.763601 4.04894,-2.763601 1.7872,0 1.75389,-0.48007 -0.30279,-4.363211 -2.17635,-4.109087 -1.7198,-4.675783 6.67097,-8.280419 13.3719,-5.744509 18.8955,-6.791887 37.99509,-7.204579 18.53236,-0.400435 21.17816,-0.134161 37.52034,3.776036 l 9.9253,2.374828 -0.47778,3.485797 c -0.26278,1.917189 -0.47778,4.999091 -0.47778,6.848673 0,2.587869 -0.28837,3.362875 -1.25127,3.362875 -1.05064,0 -1.08983,0.194532 -0.2444,1.213206 1.78202,2.147208 6.26775,3.940774 17.3058,6.919515 5.93843,1.602554 12.28883,3.546574 14.11198,4.320043 1.82316,0.773469 5.38737,1.943356 7.92047,2.599747 l 4.60563,1.19344 1.83968,-2.138753 c 1.81804,-2.113602 1.85871,-2.121528 3.45827,-0.673945 3.56279,3.22428 7.73095,15.405752 7.7687,22.704064 0.0106,2.054417 -0.24026,2.491658 -1.21509,2.117582 -0.67567,-0.259278 -2.03203,-0.67309 -3.01413,-0.919582 l -1.78564,-0.448168 2.2429,8.629648 c 2.69934,10.385806 2.74423,11.045741 0.70735,10.399261 -2.51969,-0.799718 -3.1896,0.198905 -2.01665,3.006177 0.58376,1.397129 1.30733,4.328504 1.60793,6.514159 0.45907,3.33776 0.35156,3.97393 -0.67154,3.97393 -0.80007,0 -1.51802,1.19104 -2.092,3.47051 -0.48063,1.90878 -1.02345,3.47052 -1.20623,3.47052 -0.1828,0 -1.39616,-0.55011 -2.69636,-1.22247 -3.02392,-1.56373 -3.4964,-1.05178 -5.22251,5.6587 -1.743,6.77622 -1.97266,7.13215 -4.60188,7.13215 -2.10179,0 -2.16718,0.13553 -3.0386,6.29757 -0.48983,3.46366 -1.04879,6.45576 -1.24215,6.64912 -0.19336,0.19335 -1.90138,-0.55671 -3.79562,-1.66681 l -3.44407,-2.01836 -1.74122,3.85273 c -0.95766,2.119 -1.87011,3.85272 -2.02765,3.85272 -0.15754,0 -1.32054,-0.53476 -2.58446,-1.18836 -2.75674,-1.42556 -3.47375,-1.07384 -4.93364,2.42018 -0.92718,2.21905 -1.41458,2.59362 -2.89233,2.22273 -1.31708,-0.33057 -2.34519,0.14677 -3.97086,1.84359 -1.77776,1.8556 -2.65275,2.21541 -4.61544,1.89799 -2.02386,-0.32732 -2.6998,-0.015 -4.11356,1.90021 -5.10368,6.91418 -39.27531,13.86692 -52.66193,10.71487 -4.36148,-1.02696 -5.33002,-1.03631 -7.63399,-0.0737 -2.16481,0.90451 -3.11415,0.93064 -5.2856,0.14544 -2.33098,-0.8429 -2.99976,-0.7638 -5.60427,0.66283 -2.69772,1.47769 -3.06465,1.51274 -4.17826,0.39914 l 0,0 z m 50.27998,-12.85521 c 11.43692,-2.69643 15.23152,-6.70779 18.21927,-19.26003 0.70511,-2.96234 1.53058,-5.6272 1.83438,-5.9219 0.91355,-0.88618 11.93046,0.68047 16.78599,2.38705 5.39161,1.89501 4.97508,1.85304 4.97508,0.50123 0,-1.38143 -4.98294,-3.28764 -11.954,-4.57297 -4.68718,-0.86422 -5.10692,-1.06962 -3.18528,-1.5587 1.21732,-0.30983 4.95689,-0.4972 8.31017,-0.41637 5.55954,0.13399 7.68325,-0.24533 6.72703,-1.20154 -0.19753,-0.19754 -3.71518,-0.59506 -7.81699,-0.88339 -4.10181,-0.28833 -7.28217,-0.80846 -7.06748,-1.15585 0.70729,-1.14441 15.56717,-9.2417 18.3909,-10.02137 1.93354,-0.53388 2.76546,-1.20391 2.76546,-2.22734 0,-1.38866 -0.21633,-1.36809 -4.2161,0.40079 -5.13469,2.27081 -11.98841,6.0428 -16.46839,9.06349 -1.83255,1.23563 -3.49063,2.08787 -3.68462,1.89388 -0.19399,-0.19399 0.54954,-3.20888 1.6523,-6.69974 1.10277,-3.49086 1.80628,-6.86496 1.56335,-7.49801 -0.87752,-2.286792 -2.20187,-0.46695 -3.56427,4.89782 -2.08231,8.19961 -7.49672,21.48479 -10.25222,25.1556 -1.49834,1.99603 -4.06595,4.05547 -6.67633,5.35496 -6.03692,3.00527 -8.52299,3.35548 -10.78979,1.51993 l -1.86314,-1.50868 2.41105,-2.41105 c 1.32609,-1.32608 3.14957,-2.41105 4.05218,-2.41105 2.60521,0 5.32425,-8.26868 3.15908,-9.60683 -0.39437,-0.24374 -3.95165,0.0814 -7.90507,0.72261 -3.95342,0.64116 -8.48947,1.16715 -10.08013,1.16886 -2.75052,0.003 -2.89151,0.1258 -2.88029,2.50958 0.0147,3.13014 0.25139,3.45281 5.11419,6.9736 3.59133,2.60022 5.44616,4.88407 4.62969,5.70054 -0.62755,0.62755 -11.8249,-2.31294 -15.68086,-4.11789 -4.25564,-1.99201 -8.72811,-7.45193 -8.72811,-10.65509 0,-0.90288 -0.3156,-1.9713 -0.70133,-2.37427 -0.38574,-0.40296 -1.82206,-3.42231 -3.19184,-6.70966 -1.46011,-3.50415 -2.94637,-5.977 -3.59238,-5.977 -1.20607,0 -0.86834,1.82466 1.02783,5.55309 1.77024,3.48081 1.37049,4.33164 -2.2933,4.88106 -3.20671,0.48088 -13.51013,-0.49081 -17.38111,-1.63916 -1.38659,-0.41134 -1.75215,-0.27969 -1.4872,0.53558 0.43228,1.33017 4.79166,2.675 11.42359,3.52407 l 5.01296,0.64181 -5.39858,3.37208 c -7.41473,4.63141 -11.50319,8.58192 -8.88159,8.58192 0.4173,0 3.454,-1.94138 6.74822,-4.31418 7.21484,-5.19677 14.8714,-9.24657 14.8294,-7.84373 -0.016,0.53632 -1.60352,2.18982 -3.5277,3.67443 -5.12759,3.95622 -11.86762,11.42727 -11.86762,13.15479 0,2.33058 1.34511,1.77584 3.37918,-1.3936 2.82184,-4.39692 11.2313,-11.76119 13.43043,-11.76119 0.41875,0 0.98428,0.88814 1.25673,1.97365 0.65097,2.5937 6.04967,8.40308 8.91011,9.58792 1.70061,0.70441 2.56093,1.84612 3.48299,4.62219 1.20263,3.62076 2.7234,5.56255 5.01695,6.40587 2.3003,0.84581 11.28889,0.49932 16.02721,-0.61781 l 0,0 z M 179.06712,88.442494 c 7.93329,-3.586707 13.81541,-10.018356 18.84138,-20.601629 4.568,-9.618902 3.53545,-12.898104 -5.73172,-18.20297 -3.51731,-2.013438 -4.7988,-2.314965 -9.72918,-2.289224 -6.43242,0.03359 -13.14075,2.13157 -15.71199,4.913823 -2.26243,2.448093 -6.73157,11.004639 -8.31444,15.918669 -1.53754,4.773287 -1.19703,12.434163 0.71718,16.135854 3.06453,5.92613 11.90027,7.755231 19.92877,4.125477 z m 85.24679,-12.305461 c 5.67893,-5.678937 7.80063,-13.452541 4.92568,-18.047051 -2.12413,-3.394607 -5.13166,-5.653498 -14.524,-10.908669 -10.33125,-5.780498 -12.5426,-6.062568 -22.22922,-2.835464 -6.99925,2.331798 -7.56923,2.679577 -8.68404,5.298583 -3.04776,7.160056 -1.48591,16.733596 3.55181,21.771319 2.14079,2.140788 4.26397,3.254217 8.60873,4.514558 3.17191,0.920118 6.63474,1.972119 7.69517,2.337782 1.06044,0.365663 5.48535,0.69224 9.83313,0.725728 l 7.90507,0.06089 2.91767,-2.917672 z"
+         id="path4547"
+         inkscape:connector-curvature="0"
+         transform="matrix(0,9.7125097e-4,0.00138889,0,0.07459524,0.908704)" /></g></g></svg>
\ No newline at end of file
index 997eb64..dd45aa8 100644 (file)
@@ -12,7 +12,7 @@ using namespace IPDF;
 
 static double g_totalerror = 0;
 
-bool NotEqual(double a, double b, double threshold=1e-1)
+bool NotEqual(double a, double b, double threshold=1e-4)
 {
        double error = fabs(a-b);
        g_totalerror += error;
@@ -116,7 +116,18 @@ int main(int argc, char ** argv)
                {
                        failures++;
                        Warn("a /= b = %f should be %f, a before op was %f", Double(a), da, Double(abeforeop));
+               }
+               if (NotEqual(Double(a*0.0 + 1.0), da*0.0 + 1.0))
+               {
+                       failures++;
+                       Warn("a * 0 = %f should be %f, a before op was %f", Double(a), da, Double(abeforeop));
                }               
+
+               if (NotEqual(Double(a=b), da=db))
+               {
+                       failures++;
+                       Warn("a = b = %f should be %f, a before op was %f", Double(a), da, Double(abeforeop));
+               }
                
                if (failures > old_failures)
                {
index b8e1019..1f855a2 100644 (file)
@@ -28,13 +28,23 @@ View::View(Document & document, Screen & screen, const Rect & bounds, const Colo
 
        screen.SetView(this); // oh dear...
 
+       
+
        // Create ObjectRenderers - new's match delete's in View::~View
        //TODO: Don't forget to put new renderers here or things will be segfaultastic
-       m_object_renderers[RECT_FILLED] = new RectFilledRenderer();
-       m_object_renderers[RECT_OUTLINE] = new RectOutlineRenderer();
-       m_object_renderers[CIRCLE_FILLED] = new CircleFilledRenderer();
-       m_object_renderers[BEZIER] = new BezierRenderer();
-       m_object_renderers[PATH] = new PathRenderer();
+       if (screen.Valid())
+       {
+               m_object_renderers[RECT_FILLED] = new RectFilledRenderer();
+               m_object_renderers[RECT_OUTLINE] = new RectOutlineRenderer();
+               m_object_renderers[CIRCLE_FILLED] = new CircleFilledRenderer();
+               m_object_renderers[BEZIER] = new BezierRenderer();
+               m_object_renderers[PATH] = new PathRenderer();
+       }
+       else
+       {
+               for (int i = RECT_FILLED; i <= PATH; ++i)
+                       m_object_renderers[i] = new FakeRenderer();
+       }
 
        // To add rendering for a new type of object;
        // 1. Add enum to ObjectType in ipdf.h
@@ -69,14 +79,19 @@ View::~View()
  */
 void View::Translate(Real x, Real y)
 {
+       if (!m_use_gpu_transform)
+               m_buffer_dirty = true;
+       m_bounds_dirty = true;
+       #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+       m_document.TranslateObjects(-x, -y);
+       #endif
        x *= m_bounds.w;
        y *= m_bounds.h;
        m_bounds.x += x;
        m_bounds.y += y;
        //Debug("View Bounds => %s", m_bounds.Str().c_str());
-       if (!m_use_gpu_transform)
-               m_buffer_dirty = true;
-       m_bounds_dirty = true;
+
+       
 }
 
 /**
@@ -101,8 +116,18 @@ void View::SetBounds(const Rect & bounds)
  */
 void View::ScaleAroundPoint(Real x, Real y, Real scale_amount)
 {
+       
+       // (x0, y0, w, h) -> (x*w - (x*w - x0)*s, y*h - (y*h - y0)*s, w*s, h*s)
        // x and y are coordinates in the window
        // Convert to local coords.
+       if (!m_use_gpu_transform)
+               m_buffer_dirty = true;
+       m_bounds_dirty = true;
+       
+       
+       #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+       m_document.ScaleObjectsAboutPoint(x, y, scale_amount);
+       #endif
        x *= m_bounds.w;
        y *= m_bounds.h;
        x += m_bounds.x;
@@ -119,9 +144,8 @@ void View::ScaleAroundPoint(Real x, Real y, Real scale_amount)
        m_bounds.w *= scale_amount;
        m_bounds.h *= scale_amount;
        //Debug("Scale at {%s, %s} by %s View Bounds => %s", x.Str().c_str(), y.Str().c_str(), scale_amount.Str().c_str(), m_bounds.Str().c_str());
-       if (!m_use_gpu_transform)
-               m_buffer_dirty = true;
-       m_bounds_dirty = true;
+       
+       
 }
 
 /**
@@ -132,6 +156,9 @@ void View::ScaleAroundPoint(Real x, Real y, Real scale_amount)
  */
 Rect View::TransformToViewCoords(const Rect& inp) const
 {
+       #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+               return inp;
+       #endif
        Rect out;
        out.x = (inp.x - m_bounds.x) / m_bounds.w;
        out.y = (inp.y - m_bounds.y) / m_bounds.h;
@@ -149,6 +176,7 @@ Rect View::TransformToViewCoords(const Rect& inp) const
  */
 void View::Render(int width, int height)
 {
+       if (!m_screen.Valid()) return;
        glPushDebugGroup(GL_DEBUG_SOURCE_APPLICATION,42,-1, "Beginning View::Render()");
        // View dimensions have changed (ie: Window was resized)
        int prev_width = m_cached_display.GetWidth();
@@ -371,8 +399,13 @@ void View::RenderRange(int width, int height, unsigned first_obj, unsigned last_
 
        if (m_use_gpu_transform)
        {
+               #ifdef TRANSFORM_OBJECTS_NOT_VIEW
+                               GLfloat glbounds[] = {0.0f, 0.0f, 1.0f, 1.0f,
+                                       0.0f, 0.0f, float(width), float(height)};
+               #else
                GLfloat glbounds[] = {static_cast<GLfloat>(Float(m_bounds.x)), static_cast<GLfloat>(Float(m_bounds.y)), static_cast<GLfloat>(Float(m_bounds.w)), static_cast<GLfloat>(Float(m_bounds.h)),
                                        0.0, 0.0, static_cast<GLfloat>(width), static_cast<GLfloat>(height)};
+               #endif
                m_bounds_ubo.Upload(sizeof(float)*8, glbounds);
        }
        else
index 9044306..6be1ebf 100644 (file)
@@ -10,6 +10,8 @@
 #define USE_GPU_RENDERING true
 #define USE_SHADING !(USE_GPU_RENDERING) && true
 
+#define TRANSFORM_OBJECTS_NOT_VIEW
+
 namespace IPDF
 {
        class Screen;

UCC git Repository :: git.ucc.asn.au