diff --git a/README.md b/README.md
index e8086b065e49686c6e668bf3b1567f0aeb811053..872f998777585c5046792a062a04dfde1c094b41 100644
--- a/README.md
+++ b/README.md
@@ -24,10 +24,17 @@ be found at [https://hexdocs.pm/opencpu](https://hexdocs.pm/opencpu).
 Create an entry in your `config/config.exs` for `:opencpu` with at least an endpoint_url, the rest of the configuration is optional: Set `username` and `password` to use http basic auth for each request.
 
 ```elixir
+# basics
+config :opencpu,
+  endpoint_url: "https://public.opencpu.org/ocpu",
+  verify_ssl: true,
+  timeout: 5
+
+# use http basic auth
 config :opencpu,
   endpoint_url: "https://public.opencpu.org/ocpu",
   username: "username",
-  password: "password,
+  password: "password",
   verify_ssl: true,
   timeout: 5
 
@@ -38,14 +45,14 @@ config :opencpu,
 Execute a request on the OpenCPU server:
 
 ```elixir
-OpenCPU.execute(:animation, "flip.coin")
+OpenCPU.Client.execute(:animation, "flip.coin")
 # %{"freq" => [0.56, 0.44], "nmax" => [50]}
 ```
 
 Prepare and use a delayed calculation to retreive a plot/graphic, supported formats are `:png` and `:svg`:
 
 ```elixir
-delayed_calculation = OpenCPU.prepare("animation", "flip.coin")
+delayed_calculation = OpenCPU.Client.prepare("animation", "flip.coin")
 OpenCPU.DelayedCalculation.graphics(delayed_calculation, 0, :png)
 # Returns the PNG file contents
 ```
diff --git a/lib/exceptions.ex b/lib/exceptions.ex
deleted file mode 100644
index dd2982be13e8f98ca422bb40ee417e4b4b566752..0000000000000000000000000000000000000000
--- a/lib/exceptions.ex
+++ /dev/null
@@ -1,6 +0,0 @@
-defmodule OpenCPU.AccessDenied,               do: defexception [:message]
-defmodule OpenCPU.BadRequest,                 do: defexception [:message]
-defmodule OpenCPU.InternalServerError,        do: defexception [:message]
-defmodule OpenCPU.OpenCPUError,               do: defexception [:message]
-defmodule OpenCPU.ResponseNotAvailableError,  do: defexception [:message]
-defmodule OpenCPU.UnsupportedFormatError,     do: defexception [:message]
diff --git a/lib/opencpu.ex b/lib/opencpu.ex
index aba650651adb7e4560dc0546a58e3d72239de773..300b182584cde23e3e55f23a37c836e53b31b5aa 100644
--- a/lib/opencpu.ex
+++ b/lib/opencpu.ex
@@ -1,142 +1,8 @@
 defmodule OpenCPU do
-  @moduledoc """
-  OpenCPU client to interact with a OpenCPU server, see https://www.opencpu.org/.
-  """
-
-  use HTTPotion.Base
-
-  defmodule Options do
-    defstruct [
-      user: :system,
-      data: %{},
-      format: :json, # useless option now?
-      github_remote: false,
-      convert_na_to_nil: false
-    ]
-  end
-
-  # Hook for HTTPotion
-  def process_url(url) do
-    case endpoint_url = get_env(:endpoint_url) do
-      nil -> raise OpenCPU.OpenCPUError, message: "OpenCPU endpoint is not configured"
-      _   -> endpoint_url <> url
-    end
-  end
-
-  @doc """
-  Execute a request on an OpenCPU server and parse the JSON result.
-  """
-  @spec execute(String.t, String.t, Map) :: Map
-  def execute(package, function, options \\ %{}) do
-    options = Map.merge(%Options{}, options)
-
-    function_url(package, function, options.user, options.github_remote, :json)
-    |> process_query(options.data)
-    |> Map.fetch!(:body)
-    |> Poison.decode!
-    |> maybe_convert_na_to_nil(options.convert_na_to_nil)
-  end
-
-  defp maybe_convert_na_to_nil(data, false), do: data
-  defp maybe_convert_na_to_nil(data, true), do: convert_na_to_nil(data)
-
-  @doc """
-  Return the package description
-  """
-  @spec description(String.t, Map) :: String.t
-  def description(package, options \\ %{}) do
-    options = Map.merge(%Options{}, options)
-
-    response =
-      "#{package_url(package, options.user, options.github_remote)}/info"
-      |> get(request_options(nil))
-
-    case response.status_code in [200, 201] do
-      true  -> response.body
-      false -> raise OpenCPU.OpenCPUError, message:
-        "Error getting description, status code #{response.status_code}: #{response.body}"
-    end
-  end
-
-  @spec prepare(String.t, String.t, Map) :: %OpenCPU.DelayedCalculation{}
-  def prepare(package, function, options \\ %{}) do
-    options = Map.merge(%Options{}, options)
-
-    response =
-      function_url(package, function, options.user, options.github_remote, nil)
-      |> process_query(options.data)
-
-    OpenCPU.DelayedCalculation.new(
-      response.headers.hdrs |> Map.get("location"),
-      response.body |> String.split("\n")
-    )
-  end
-
-  defp process_query(url, data) do
-    response = post(url, request_options(data))
-
-    case response.status_code do
-      code when code in [200, 201] ->
-        response
-      403 ->
-        raise OpenCPU.AccessDenied, message: response.body
-      code when code in 400..499 ->
-        raise OpenCPU.BadRequest, message: response.body
-      code when code in 500..599 ->
-        raise OpenCPU.InternalServerError, message: response.body
-      _ ->
-        raise OpenCPU.OpenCPUError, message:
-          "Invalid status code: #{response.status_code}, #{response.body}"
-    end
-  end
-
-  @doc """
-  Recursively replace all `"NA"` values with `nil`.
-  """
-  def convert_na_to_nil("NA"), do: nil
-  def convert_na_to_nil(data) when is_map(data) do
-    data
-    |> Enum.map(fn {k, v} -> {k, convert_na_to_nil(v)} end)
-    |> Enum.into(%{})
-  end
-  def convert_na_to_nil(data) when is_list(data) do
-    data
-    |> Enum.map(fn v -> convert_na_to_nil(v) end)
-  end
-  def convert_na_to_nil(data), do: data
-
-  defp request_options(data) do
-    options = [
-      verify: get_env(:verify_ssl, true),
-      body: Poison.encode!(data),
-      headers: ["Content-Type": "application/json"]
-    ]
-
-    if get_env(:username) && get_env(:password) do
-      options
-      |> Keyword.put(:basic_auth, {get_env(:username), get_env(:password)})
-    else
-      options
-    end
-  end
-
-  def function_url(package, function, user \\ :system, github_remote \\ false, format \\ nil) do
-    "#{package_url(package, user, github_remote)}/R/#{function}/#{format}"
-  end
-
-  defp package_url(package, :system, false) do
-    "/library/#{package}"
-  end
-
-  defp package_url(package, user, false) do
-    "/user/#{user}/library/#{package}"
-  end
-
-  defp package_url(package, user, true) do
-    "/github/#{user}/#{package}"
-  end
-
-  defp get_env(key, default \\ nil) do
-    Application.get_env(:opencpu, key, default)
-  end
+  defmodule AccessDenied,               do: defexception [:message]
+  defmodule BadRequest,                 do: defexception [:message]
+  defmodule InternalServerError,        do: defexception [:message]
+  defmodule OpenCPUError,               do: defexception [:message]
+  defmodule ResponseNotAvailableError,  do: defexception [:message]
+  defmodule UnsupportedFormatError,     do: defexception [:message]
 end
diff --git a/lib/opencpu/client.ex b/lib/opencpu/client.ex
new file mode 100644
index 0000000000000000000000000000000000000000..d9253e3a54af0211e9a4d693c3e8838c71b26c3b
--- /dev/null
+++ b/lib/opencpu/client.ex
@@ -0,0 +1,147 @@
+defmodule OpenCPU.Client do
+  @moduledoc """
+  OpenCPU client to interact with a OpenCPU server, see https://www.opencpu.org/.
+  """
+
+  defmodule Options do
+    defstruct [
+      user: :system,
+      data: %{},
+      format: :json, # useless option now?
+      github_remote: false,
+      convert_na_to_nil: false
+    ]
+  end
+
+  def process_url(url) do
+    case endpoint_url = get_env(:endpoint_url) do
+      nil -> raise OpenCPU.OpenCPUError, message: "OpenCPU endpoint is not configured"
+      _   -> endpoint_url <> url
+    end
+  end
+
+  @doc """
+  Execute a request on an OpenCPU server and parse the JSON result.
+  """
+  @spec execute(String.t, String.t, Map) :: Map
+  def execute(package, function, options \\ %{}) do
+    options = Map.merge(%Options{}, options)
+
+    function_url(package, function, options.user, options.github_remote, :json)
+    |> process_query(options.data)
+    |> Map.fetch!(:body)
+    |> Poison.decode!
+    |> maybe_convert_na_to_nil(options.convert_na_to_nil)
+  end
+
+  defp maybe_convert_na_to_nil(data, false), do: data
+  defp maybe_convert_na_to_nil(data, true), do: convert_na_to_nil(data)
+
+  @doc """
+  Return the package description
+  """
+  @spec description(String.t, Map) :: String.t
+  def description(package, options \\ %{}) do
+    options = Map.merge(%Options{}, options)
+
+    response =
+      "#{package_url(package, options.user, options.github_remote)}/info"
+      |> process_url
+      |> HTTPotion.get(request_options(nil))
+
+    case response.status_code in [200, 201] do
+      true  -> response.body
+      false -> raise OpenCPU.OpenCPUError, message:
+        "Error getting description, status code #{response.status_code}: #{response.body}"
+    end
+  end
+
+  @doc """
+  Execute a function and return a struct that can be used to get more
+  resources included with the result of the command.
+
+    result = OpenCPU.Client.prepare("my", "picture")
+    png = OpenCPU.DelayedCalculation.graphics(result, 0, :png)
+  """
+  @spec prepare(String.t, String.t, Map) :: %OpenCPU.DelayedCalculation{}
+  def prepare(package, function, options \\ %{}) do
+    options = Map.merge(%Options{}, options)
+
+    response =
+      function_url(package, function, options.user, options.github_remote, nil)
+      |> process_query(options.data)
+
+    OpenCPU.DelayedCalculation.new(
+      response.headers.hdrs |> Map.get("location"),
+      response.body |> String.split("\n")
+    )
+  end
+
+  defp process_query(url, data) do
+    response = HTTPotion.post(process_url(url), request_options(data))
+
+    case response.status_code do
+      code when code in [200, 201] ->
+        response
+      403 ->
+        raise OpenCPU.AccessDenied, message: response.body
+      code when code in 400..499 ->
+        raise OpenCPU.BadRequest, message: response.body
+      code when code in 500..599 ->
+        raise OpenCPU.InternalServerError, message: response.body
+      _ ->
+        raise OpenCPU.OpenCPUError, message:
+          "Invalid status code: #{response.status_code}, #{response.body}"
+    end
+  end
+
+  @doc """
+  Recursively replace all `"NA"` values with `nil`.
+  """
+  def convert_na_to_nil("NA"), do: nil
+  def convert_na_to_nil(data) when is_map(data) do
+    data
+    |> Enum.map(fn {k, v} -> {k, convert_na_to_nil(v)} end)
+    |> Enum.into(%{})
+  end
+  def convert_na_to_nil(data) when is_list(data) do
+    data
+    |> Enum.map(fn v -> convert_na_to_nil(v) end)
+  end
+  def convert_na_to_nil(data), do: data
+
+  defp request_options(data) do
+    options = [
+      verify: get_env(:verify_ssl, true),
+      body: Poison.encode!(data),
+      headers: ["Content-Type": "application/json"]
+    ]
+
+    if get_env(:username) && get_env(:password) do
+      options
+      |> Keyword.put(:basic_auth, {get_env(:username), get_env(:password)})
+    else
+      options
+    end
+  end
+
+  def function_url(package, function, user \\ :system, github_remote \\ false, format \\ nil) do
+    "#{package_url(package, user, github_remote)}/R/#{function}/#{format}"
+  end
+
+  defp package_url(package, :system, false) do
+    "/library/#{package}"
+  end
+
+  defp package_url(package, user, false) do
+    "/user/#{user}/library/#{package}"
+  end
+
+  defp package_url(package, user, true) do
+    "/github/#{user}/#{package}"
+  end
+
+  defp get_env(key, default \\ nil) do
+    Application.get_env(:opencpu, key, default)
+  end
+end
diff --git a/lib/delayed_calculation.ex b/lib/opencpu/delayed_calculation.ex
similarity index 100%
rename from lib/delayed_calculation.ex
rename to lib/opencpu/delayed_calculation.ex
diff --git a/test/fixtures/vcr_cassettes/animation_flip_coin_getters.json b/test/fixtures/vcr_cassettes/animation_flip_coin_getters.json
index e20e3225ca2a93edf6cace688ae0b6402d812d40..62822ef958d4db906f477536dc22f2ba0194213b 100644
--- a/test/fixtures/vcr_cassettes/animation_flip_coin_getters.json
+++ b/test/fixtures/vcr_cassettes/animation_flip_coin_getters.json
@@ -11,29 +11,29 @@
       "url": "https://public.opencpu.org/ocpu/library/animation/R/flip.coin/"
     },
     "response": {
-      "body": "/ocpu/tmp/x016a01d836/R/flip.coin\n/ocpu/tmp/x016a01d836/R/.val\n/ocpu/tmp/x016a01d836/graphics/1\n/ocpu/tmp/x016a01d836/graphics/2\n/ocpu/tmp/x016a01d836/graphics/3\n/ocpu/tmp/x016a01d836/graphics/4\n/ocpu/tmp/x016a01d836/graphics/5\n/ocpu/tmp/x016a01d836/graphics/6\n/ocpu/tmp/x016a01d836/graphics/7\n/ocpu/tmp/x016a01d836/graphics/8\n/ocpu/tmp/x016a01d836/graphics/9\n/ocpu/tmp/x016a01d836/graphics/10\n/ocpu/tmp/x016a01d836/graphics/11\n/ocpu/tmp/x016a01d836/graphics/12\n/ocpu/tmp/x016a01d836/graphics/13\n/ocpu/tmp/x016a01d836/graphics/14\n/ocpu/tmp/x016a01d836/graphics/15\n/ocpu/tmp/x016a01d836/graphics/16\n/ocpu/tmp/x016a01d836/graphics/17\n/ocpu/tmp/x016a01d836/graphics/18\n/ocpu/tmp/x016a01d836/graphics/19\n/ocpu/tmp/x016a01d836/graphics/20\n/ocpu/tmp/x016a01d836/graphics/21\n/ocpu/tmp/x016a01d836/graphics/22\n/ocpu/tmp/x016a01d836/graphics/23\n/ocpu/tmp/x016a01d836/graphics/24\n/ocpu/tmp/x016a01d836/graphics/25\n/ocpu/tmp/x016a01d836/graphics/26\n/ocpu/tmp/x016a01d836/graphics/27\n/ocpu/tmp/x016a01d836/graphics/28\n/ocpu/tmp/x016a01d836/graphics/29\n/ocpu/tmp/x016a01d836/graphics/30\n/ocpu/tmp/x016a01d836/graphics/31\n/ocpu/tmp/x016a01d836/graphics/32\n/ocpu/tmp/x016a01d836/graphics/33\n/ocpu/tmp/x016a01d836/graphics/34\n/ocpu/tmp/x016a01d836/graphics/35\n/ocpu/tmp/x016a01d836/graphics/36\n/ocpu/tmp/x016a01d836/graphics/37\n/ocpu/tmp/x016a01d836/graphics/38\n/ocpu/tmp/x016a01d836/graphics/39\n/ocpu/tmp/x016a01d836/graphics/40\n/ocpu/tmp/x016a01d836/graphics/41\n/ocpu/tmp/x016a01d836/graphics/42\n/ocpu/tmp/x016a01d836/graphics/43\n/ocpu/tmp/x016a01d836/graphics/44\n/ocpu/tmp/x016a01d836/graphics/45\n/ocpu/tmp/x016a01d836/graphics/46\n/ocpu/tmp/x016a01d836/graphics/47\n/ocpu/tmp/x016a01d836/graphics/48\n/ocpu/tmp/x016a01d836/graphics/49\n/ocpu/tmp/x016a01d836/graphics/50\n/ocpu/tmp/x016a01d836/source\n/ocpu/tmp/x016a01d836/console\n/ocpu/tmp/x016a01d836/info\n/ocpu/tmp/x016a01d836/files/DESCRIPTION\n",
+      "body": "/ocpu/tmp/x0f284ca594/R/flip.coin\n/ocpu/tmp/x0f284ca594/R/.val\n/ocpu/tmp/x0f284ca594/graphics/1\n/ocpu/tmp/x0f284ca594/graphics/2\n/ocpu/tmp/x0f284ca594/graphics/3\n/ocpu/tmp/x0f284ca594/graphics/4\n/ocpu/tmp/x0f284ca594/graphics/5\n/ocpu/tmp/x0f284ca594/graphics/6\n/ocpu/tmp/x0f284ca594/graphics/7\n/ocpu/tmp/x0f284ca594/graphics/8\n/ocpu/tmp/x0f284ca594/graphics/9\n/ocpu/tmp/x0f284ca594/graphics/10\n/ocpu/tmp/x0f284ca594/graphics/11\n/ocpu/tmp/x0f284ca594/graphics/12\n/ocpu/tmp/x0f284ca594/graphics/13\n/ocpu/tmp/x0f284ca594/graphics/14\n/ocpu/tmp/x0f284ca594/graphics/15\n/ocpu/tmp/x0f284ca594/graphics/16\n/ocpu/tmp/x0f284ca594/graphics/17\n/ocpu/tmp/x0f284ca594/graphics/18\n/ocpu/tmp/x0f284ca594/graphics/19\n/ocpu/tmp/x0f284ca594/graphics/20\n/ocpu/tmp/x0f284ca594/graphics/21\n/ocpu/tmp/x0f284ca594/graphics/22\n/ocpu/tmp/x0f284ca594/graphics/23\n/ocpu/tmp/x0f284ca594/graphics/24\n/ocpu/tmp/x0f284ca594/graphics/25\n/ocpu/tmp/x0f284ca594/graphics/26\n/ocpu/tmp/x0f284ca594/graphics/27\n/ocpu/tmp/x0f284ca594/graphics/28\n/ocpu/tmp/x0f284ca594/graphics/29\n/ocpu/tmp/x0f284ca594/graphics/30\n/ocpu/tmp/x0f284ca594/graphics/31\n/ocpu/tmp/x0f284ca594/graphics/32\n/ocpu/tmp/x0f284ca594/graphics/33\n/ocpu/tmp/x0f284ca594/graphics/34\n/ocpu/tmp/x0f284ca594/graphics/35\n/ocpu/tmp/x0f284ca594/graphics/36\n/ocpu/tmp/x0f284ca594/graphics/37\n/ocpu/tmp/x0f284ca594/graphics/38\n/ocpu/tmp/x0f284ca594/graphics/39\n/ocpu/tmp/x0f284ca594/graphics/40\n/ocpu/tmp/x0f284ca594/graphics/41\n/ocpu/tmp/x0f284ca594/graphics/42\n/ocpu/tmp/x0f284ca594/graphics/43\n/ocpu/tmp/x0f284ca594/graphics/44\n/ocpu/tmp/x0f284ca594/graphics/45\n/ocpu/tmp/x0f284ca594/graphics/46\n/ocpu/tmp/x0f284ca594/graphics/47\n/ocpu/tmp/x0f284ca594/graphics/48\n/ocpu/tmp/x0f284ca594/graphics/49\n/ocpu/tmp/x0f284ca594/graphics/50\n/ocpu/tmp/x0f284ca594/source\n/ocpu/tmp/x0f284ca594/console\n/ocpu/tmp/x0f284ca594/info\n/ocpu/tmp/x0f284ca594/files/DESCRIPTION\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:16 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:40 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=dce148ab09530ff6ee9c5389a78ee20171499102236; expires=Tue, 03-Jul-18 17:17:16 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d49043b98d7d00baea49afd7e564d1fdc1499110599; expires=Tue, 03-Jul-18 19:36:39 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x016a01d836",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x016a01d836/",
+        "X-ocpu-session": "x0f284ca594",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:16 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:40 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f50fa782bee-AMS"
+        "CF-RAY": "378c4b7f7b7c147f-AMS"
       },
       "status_code": 201,
       "type": "ok"
@@ -46,30 +46,30 @@
       "method": "get",
       "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x016a01d836/R/.val"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val"
     },
     "response": {
-      "body": "Redirect to http://public.opencpu.org/ocpu/tmp/x016a01d836/R/.val/print\n",
+      "body": "Redirect to http://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val/print\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:17 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:40 GMT",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d7774286ef3c98dab7d0df85f82e0bb771499102236; expires=Tue, 03-Jul-18 17:17:16 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=dbb3e74966f073b1d6d87474ef844af661499110600; expires=Tue, 03-Jul-18 19:36:40 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x016a01d836/R/.val/print",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val/print",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:17 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:40 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f53af452b28-AMS"
+        "CF-RAY": "378c4b83f99e2b28-AMS"
       },
       "status_code": 302,
       "type": "ok"
@@ -82,16 +82,16 @@
       "method": "get",
       "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x016a01d836/R/.val/print"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val/print"
     },
     "response": {
-      "body": "$freq\n   1    2 \n0.52 0.48 \n\n$nmax\n[1] 50\n\n",
+      "body": "$freq\n   1    2 \n0.56 0.44 \n\n$nmax\n[1] 50\n\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:17 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:40 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d90901d9e01a1a1f7999c9dafee7b7fee1499102237; expires=Tue, 03-Jul-18 17:17:17 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=df42114f69454ed088aad31189ee82a0c1499110600; expires=Tue, 03-Jul-18 19:36:40 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
@@ -99,13 +99,13 @@
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:17 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:40 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f56ac717229-AMS"
+        "CF-RAY": "378c4b86bb7b0c89-AMS"
       },
       "status_code": 200,
       "type": "ok"
@@ -118,30 +118,30 @@
       "method": "get",
       "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x016a01d836/info"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/info"
     },
     "response": {
-      "body": "Redirect to http://public.opencpu.org/ocpu/tmp/x016a01d836/info/print\n",
+      "body": "Redirect to http://public.opencpu.org/ocpu/tmp/x0f284ca594/info/print\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:18 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:41 GMT",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=dbff21c1d28a32cc35cbb9ce28995260b1499102237; expires=Tue, 03-Jul-18 17:17:17 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=df42114f69454ed088aad31189ee82a0c1499110600; expires=Tue, 03-Jul-18 19:36:40 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x016a01d836/info/print",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/info/print",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:18 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:41 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f599cbb2c84-AMS"
+        "CF-RAY": "378c4b883c3a0c89-AMS"
       },
       "status_code": 302,
       "type": "ok"
@@ -154,16 +154,16 @@
       "method": "get",
       "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x016a01d836/info/print"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/info/print"
     },
     "response": {
       "body": "R version 3.4.1 (2017-06-30)\nPlatform: x86_64-pc-linux-gnu (64-bit)\nRunning under: Ubuntu 16.04.2 LTS\n\nMatrix products: default\nBLAS: /usr/lib/openblas-base/libblas.so.3\nLAPACK: /usr/lib/libopenblasp-r0.2.18.so\n\nlocale:\n [1] LC_CTYPE=en_US.UTF-8    LC_NUMERIC=C            LC_TIME=en_US.UTF-8    \n [4] LC_COLLATE=en_US.UTF-8  LC_MONETARY=en_US.UTF-8 LC_MESSAGES=C          \n [7] LC_PAPER=C              LC_NAME=C               LC_ADDRESS=C           \n[10] LC_TELEPHONE=C          LC_MEASUREMENT=C        LC_IDENTIFICATION=C    \n\nattached base packages:\n[1] stats     graphics  grDevices utils     datasets  methods   base     \n\nother attached packages:\n[1] animation_2.5   opencpu_2.0.3.1\n\nloaded via a namespace (and not attached):\n [1] Rcpp_0.12.11     lattice_0.20-35  mime_0.5         plyr_1.8.4      \n [5] grid_3.4.1       gtable_0.2.0     sys_1.4          jsonlite_1.5    \n [9] unix_1.3         magrittr_1.5     scales_0.4.1     evaluate_0.10.2 \n[13] ggplot2_2.2.1    rlang_0.1.1      stringi_1.1.5    curl_2.7        \n[17] lazyeval_0.2.0   webutils_0.6     tools_3.4.1      stringr_1.2.0   \n[21] munsell_0.4.3    parallel_3.4.1   sendmailR_1.2-1  compiler_3.4.1  \n[25] colorspace_1.3-2 base64enc_0.1-3  openssl_0.9.6    tibble_1.3.3    \n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:18 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:41 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d3fcf2c55555c35e9afd9b035a8bd1e8f1499102238; expires=Tue, 03-Jul-18 17:17:18 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d31e8c2abd099fd108ffc890a5497070a1499110601; expires=Tue, 03-Jul-18 19:36:41 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
@@ -171,13 +171,13 @@
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:18 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:41 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f5bff4f0c89-AMS"
+        "CF-RAY": "378c4b8939cd2bee-AMS"
       },
       "status_code": 200,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/animation_flip_coin_graphics.json b/test/fixtures/vcr_cassettes/animation_flip_coin_graphics.json
index eefed60416eaf0a830460dd8ae14217932380288..843e3e61f1891e1d8d864fe134fb17b9ffe7a203 100644
--- a/test/fixtures/vcr_cassettes/animation_flip_coin_graphics.json
+++ b/test/fixtures/vcr_cassettes/animation_flip_coin_graphics.json
@@ -6,16 +6,16 @@
       "method": "get",
       "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x016a01d836/graphics/50/png"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/graphics/50/png"
     },
     "response": {
-      "body": "‰PNG\r\n\u001a\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0003 \u0000\u0000\u0002X\b\u0002\u0000\u0000\u0000\u0015\u0014\u0015'\u0000\u0000 \u0000IDATxœìÝy\\Mùÿ\u0007ðw+nûªÐB¢Æ\u0016BˆR&)1–AYF*ÑÌ0d\u001fÃÐøò#\u001a†}é\u0016­ÈŒ%ÃØ)\u0014ZµHQiQ÷üþ¨©«’toçÜ{{=\u001fýÑùÜÏ=çÕt‡·ÏùœÏGŽa\u0018\u0002\u0000\u0000\u0000\u0000ñ‘ç:\u0000\u0000\u0000\u0000€¬A\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`\u0001\u0000\u0000\u0000ˆ\u0019\n,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`\u0001\u0000\u0000\u0000ˆ\u0019\n,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`\u0001\u0000\u0000\u0000ˆ\u0019\n,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`\u0001\u0000\u0000\u0000ˆ\u0019\n,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`q ,,ÌÂÂBEEeРA±±±åiiiÎÎÎêêê666\u001f?®ù®-[¶œ={–ˆþý÷ß\u001e=zhiiM™2¥¸¸¸Z7''§æÿqssûØ\u0015\u000f\u001f>\u001c\u0012\u0012҈?$|¦Z?\u0015åâââTUUk}W=?\u0015µž'((ÈÔԔÇãÙÛÛÇÅÅ\u0011>\u0015\u0000\u0000bÄ\u0000»^¾|©¦¦vêÔ©7oÞ,Y²¤sçÎåí½zõÚ°aÃ˗/çϟooo_í]………öööeeeïß¿oÕªÕ\u001fü‘šš:xðà¥K—Vëill|áÂ…ØØØØØØ¤¤¤]±¸¸ØÎή´´´ñbø´}*\u0018†)--íÛ·¯‚‚BÍwÕÿSQó<OŸ>URRŠŒŒ|ùòå̙3\u0007\r\u001aÄàS\u0001\u0000 >(°Ø\u0016\u001a\u001ajkk[þ}qq±œœÜëׯïܹcaa!\u0010\b\u0018†)**º{÷nµwmÙ²%  €a˜ÈÈHKKËòÆèèhsssán%%%͚5{ÿþý'¯È0Œ¿¿HHˆøBø|\u001fû\u001d1\f³qãÆ¯¿þºÖ\u0002«žŸŠZϓ––¦¦¦\u0016\u0013\u0013óöí[??¿Ñ£G—·ãS\u0001\u0000 \u0016¸EÈ6GGÇãǏ—\u001f\u0013\u0013cjjª©©yïÞ½Ž\u001d;úúúvèÐÁÃÃCSS³Ú»\"\"\"\u001c\u001c\u001cˆ(!!¡K—.卝;w~þü¹@ ¨ì–””Ô¢E‹Q£F™™™¹»»§¤¤|ìŠD4hРˆˆˆFþq¡^>ö;JHHؾ}ûÚµkk}W=?\u0015µžÇÐÐpݺu666\u001a\u001a\u001a»wï\u000e\n\n*oǧ\u0002\u0000@,P`±MMMM__Ÿa˜°°0\u000f\u000fM›6ÉÉÉeddœ<y²gϞ\u0011\u0011\u0011­Zµ\u001a7n\\µw=|øÐÌ̌ˆrrrÔÔÔÊ\u001bÕÕÕKKKóóó+»¥§§\u001b\u0018\u0018øúúFDD(++\u001d;öcW$\"33³\u0007\u000f\u001e°ôcCjý\u001d\t\u0004\u0002\u001f\u001fŸ€€\u0000uuõZßUÏOE­ç‰‹‹[½zõµk×\n\n\n¼½½===ËÛñ©\u0000\u0000\u0010\u000bE®\u00034EÙÙÙ>>>III|>ßÚښˆš7o>pà@___\"Z¿~½ªªê«W¯tuuËûçåå\u0015\u0015\u0015•ÿ\rª¥¥•——WÙ®   <m¹ÿþ•ó£\u0003\u0003\u0003ÕÕÕ³²²ôôôj^‘ˆZ·nýâŋ÷ïß+))±õ£ÃGÕü\u001díܹ³U«V®®®¯^½ªÙ¿þŸŠZÏsòäÉ¡C‡ÚØØ\u0010ъ\u0015+444Þ¼y£¡¡O\u0005\u0000€X`\u0004‹mÅÅÅNNN–––ׯ_¯¬uŒŒŒ*;ÈËËËËË+((ÔúövíÚU–Pqqq¦¦¦òòU¿ÄëׯGGG—¯¬¬¬   ¤¤Të\u0015‰¨|\u001c\u000b$A­¿£\u000b\u0017.„‡‡ëêêvèС¬¬LWW7&&¦Ö·×ý©¨õ<eee•·\u0011\u0019†)ŸØNøT\u0000\u0000ˆ\t\n,¶ñùü²²2\u001f\u001fŸäää\u0017/^¼xñ¢¬¬ÌÉÉéþýû‡\u000f\u001f~ûö­¿¿¿––Vå[ÔÔԚ7o^>DaooŸ\u001d\u0016\u0016VXX\u0018\u0010\u00100qâÄò>ǎ\u001dKMM-,,\u001c9räå˗߼yãïïokk«©©Yë\u0015‰(55ÕÔÔ\u0014\u0003\u0015’ ÖßÑÖ­[\u001f=ztçΝèèhyyù;wîtïÞ½ò-õÿTÔz\u001eWW×ÐÐпþúë͛7?ýôSÿþýËg}áS\u0001\u0000 \u001eœN±oŠ~øá‡j¿‚¬¬,†aþþûï®]»ªªª:;;'&&V{×СCoß¾]þý?ÿüÓµkW\u001d\u001d)S¦\u0014\u0015\u0015•7ª¨¨œ<y’a˜€€\u0000CCC55µ\u0011#F¤¦¦Öqŋ\u0017/º»»³öƒC\u001d>ö;*—••UëS„õÿTÔzžÃ‡\u000fwèÐAUUÕÕÕµ|E\u000f\u0006Ÿ\n\u0000\u00001‘c\u0018¦\u0011Ë7\u0010“­[·\u0016\u0017\u0017÷Ýwb<ç²eËÌÍÍ+G;@êàS\u0001\u0000 ±P`I‡¢¢¢¡C‡FEE\tÏ­\u0011EII‰““Sdd¤¢\"\u001etVøT\u0000\u0000H,…å˗s\u0001>MQQ1???77·}ûöb9á±cǬ¬¬¬¬¬Är6à\u0004>\u0015\u0000\u0000\u0012\u000b#X\u0000\u0000\u0000\u0000b†§\b\u0001\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@̤lµ›W¯^]¼x‘ë\u0014\u0012!66633SYY™ë  Aòóó¿üòK®S\u0000\u0000H\u0007yyùáÇ7Òæ`RV`]¸p!,,ÌÎΎë ÜËÈÈÈÊÊjÖ¬\u0019×A@‚¼yó&''‡ë\u0014\u0012áûï¿_¿~=×)\u0000@¢íÝ»×ÊÊÊÌ̬1N.e\u0005\u0016\u0011õïßÚ´i\\§\u0000\u0000‰öã?â\u000f\n\u0000¨Û?ÿüÓx'Ç\u001c,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜¡À\u0002\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`\u0001\u0000\u0000\u0000ˆ\u0019\n,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000Ä\f\u0005\u0016\u0000\u0000\u0000€˜IßfÏ\u0000\u0000Ð`IIIwîÜÉÌÌTSS377ïÞ½»œœ\u001cס\u0000d\u0010F°\u0000\u0000š„ˆˆ\b\u0007\u0007\u0007??¿„„\u0004\u001e÷úõëààà~ýú­[·®°°ët\u0000²\u0006#X\u0000\u00002®¸¸Ø××W]]ýèÑ£:::Â/•••íÙ³çË/¿\f\u000e\u000enß¾=W\t\u0001d\u000fF°\u0000@\u0006©¨¨p\u001dAR\b\u0004‚\t\u0013&899mÞ¼¹ZuED\n\n\nS§Nݽ{÷¤I“’““9I\b “¤o\u0004ëÙ³g!!!\\§\u0000\tbkkkjjÊu\n,òòø×c…ß~ûÍÆÆÆÃãŽ>æææ;vìðôô<þ<¦d\u0001ˆ…ô\u0015Xׯ_\u000f\b\bà:\u0005Hƒ\u0007\u000f¢À‚jòòò¸Ž \u0011rrr¢££…\u001b\u0019†éÛ·opp°……EecçΝûöí{ìØ±¯¿þší”\u0000²\bÿÈ\u0003\u0000Y|>âĉ\n\n\n•-QQQ^^^ׯ_¯ÙyöìÙûöíc1\u001d€,C\u0005\u0000 ³¢¢¢†\u000e\u001d*Ürûöm\u001eÇãñjvÖ××óæ\rÃ0l¥\u0003eÒw‹\u0010\u0000\u0000êéå˗mÚ´\u0011nñóó#\">Ÿ_kÿ–-[¾zõJOOp\u00002\r#X\u0000\u00002ës‡£\u0014\u0014\u0014ÊÊÊ\u001a)\f@“‚\u0002\u000b\u0000@féëëgddÔ¿zzº¾¾~ãå\u0001h:P`\u0001\u0000È,;;»sçÎÕ³snn.ÇÃ\n\u0017\u0000bÿ‘\u0000\u0000dÖ¨Q£öìÙSÏ\u001b…;vìÀ\u001a\r\u0000âÂA••••››Ëþu\u0001\u0000šš–-[öïß÷îݟìùâŋ“'ONš4‰…T\u0000M\u0001\u001b\u0005–››[ù\u000e\f)))}ûö500Ð××wppHKKcáê\u0000\u0000MÙÒ¥K\u000f\u001f>\u001c\u0019\u0019)ܘ’’\"¼ÊhFFƤI“‚‚‚„WÌ\u0002\u0000Q°Q`?¾  €ˆ\u0016,X`aa‘——WPPЫW¯Y³f±pu\u0000€¦LIIéȑ#›6múå—_ŠŠŠjv8sæÌȑ#7nÜhiiÉ~<\u0000YÅê:X7oÞüóÏ?Ë\u0017¸[´h‘‰‰\t›W\u0007\u0000hš444ø|þîÝ»\u001d\u001c\u001cz÷î]~'áíÛ·\u000f\u001f><}ú´••Õɓ'kî\u0003\r\u0000¢`©Àzùòeûöí;uꔐÐ±cG\"ºÿ¾ªª*;W\u0007\u0000hâ\u0014\u0014\u0014¼½½½¼¼nܸqóæÍG\u001eiiiuêÔiΜ9µ®ê\u000e\u0000\"b£À\u001a8pà”)S222Z´hñôéS\u0017\u0017—èèè‘#G.]º”…«\u0003\u0000@999¹Þ½{÷îݛë \u0000²\u0002«|\u0015–÷ïß'%%¥§§\u0013Q‹\u0016-BCCíííY¸:\u0000\u0000\u0000\u0000ËØ›ƒ¥¤¤dfffffFD}úôIMM=uêÔ°aÃ>Öÿýû÷ùùùÕ\u001aóòò”””´´´\u001a7+H\u0015eee®#€ÄÁj™\u0000À-Î6{¾víڔ)Sj–P•NŸ>\u001d\u0012\u0012R­ñîݻÇ\u000fŸ>}z#§\u0003iÒ«W/®#€ÄÑÕÕå:\u0002\u00004irŸ»\u0015(·æÏŸÿÏ?ÿ\\½z•ë  A\u000e\u001e<8~üx®S€dÑÒÒÊÉÉá:\u0005\u0000H4ooïE‹\u0016•ß[\u0013;VGÑ\u0005\u0002ÁÛ·o\u0005\u0002\u0001›\u0017\u0005\u0000\u0000\u0000`\u0019\u001b\u0005VQQѲeË:tèЬY3\r\r\reeessóå˗\u0017\u0017\u0017³pu\u0000\u0000\u0000\u0000–±Q`M›6íÚµk;vìHOO/))ÉÌÌܳgϽ{÷f̘ÁÂÕ\u0001\u0000\u0000\u0000XÆÆ$÷ðððØØXCCÃòCmmí~ýú…„„`%w\u0000\u0000\u0000IlŒ`™ššž9s¦ZãÙ³gŒŒX¸:\u0000\u0000\u0000\u0000ËØ\u0018ÁÚ¹sçðáÃ7lØÐ¹sg55µ¼¼¼ØØØìììððp\u0016®\u000e\u0000\u0000\u0000À26\n,kk뤤¤èèègϞåäähiiùøøØÛÛ+*r¶\n\u0017\u0000\u0000\u0000@ãa©ÄQTT\u001c<x0;×\u0002\u0000\u0000\u0000à\u0016v“\u0000\u0000\u0000\u0000\u00103\u0014X\u0000\u0000\u0000\u0000b†\u0002\u000b\u0000\u0000\u0000@ÌP`\u0001\u0000\u0000\u0000ˆ\u0019\n,\u0000\u0000\u0000\u00001C\u0005\u0000\u0000\u0000 f(°\u0000\u0000\u0000\u0000ÄLú–útrrÚ¼y3×)@‚|ñÅ\u0017\\G\u0000‰Ó¡C\u0007®#\u0000@“&}\u0005Ö¹sç–/_Îu\n ‰‰‰Æ}úPz:×A@‚\b¬­¹Ž\u0000\u0000M\u001an\u0011\u0002\u0000\u0000\u0000ˆ™ô`\u0001\u0000@\u001dJKKÿþûïÈÈÈääd@````gg7xðà\u0016-Zp\u001d\r \tA\u0005\u0000 ;Nœ8±aÃ\u0006;;»¡C‡¶k×NAA!99922r͚5“&Mš>}ºœœ\u001c×\u0019\u0001š\u0004\u0014X\u0000\u0000²€a\u0018??¿‚‚‚3gΨ««W¶\u001b\u001a\u001aöîÝÛÏÏoýúõcǎݻw/†²8SXHçÎQT\u0014%%‘@@­[“½=¹¸š\u001a×É@ü0\u0007\u000b\u0000@\u0016¬X±BSSsûöíÂÕU%eeåŋ\u0017\u001d;vêÔ©\fð\u001f\u000fè?ÈÁ\u001e=¢©Si÷nÚ¿ŸfÍ¢´4rv¦ß~#€ë| f(°\u0000\u0000¤Þ͛7\u001f<xàïï/ÜÈ0ŒM\\\\\\eË×_Ý®]»ýû÷³\u001e°i+-¥©S)>ž.^¤E‹Èʊ´´HM:u¢ùóéÒ%\u0012\bhôhz÷Žë  N(°\u0000\u0000¤ÞªU«~ýõWᖨ¨(//¯ëׯWëùÓO?\u0005\u0006\u0006b\u0010‹U\u000b\u0016PϞôË/Ô¼y-¯**’Ÿ\u001fMžLžž„ß‹\fA\u0005\u0000 Ýrss߿߮];áÆÛ·oóx<\u001eW­³ŠŠŠµµõ͛7Y\fØ´EGS^\u001e͜YÕ\u0012\u0016F\u0016\u0016¤¢Bƒ\u0006QllEãȑdnN\u0018\\”!(°\u0000\u0000¤Û¿ÿþÛ·oßj~~~[¶lÑÒÒªÙàÀ111¬D\u0003¢µké矫\u000eÓÓiÒ$\n\b —/É֖Ǝ­ziáB\n\fÄ –Ì@\u0005\u0000 ÝÒÓÓ\r\r\rëß¿uëÖ/_¾l¼<P%#ƒx<\u0012þíÄÄP·näêJêêäïO\u000f\u001fRNNÅKªªdeE·os’\u0014Ä\u000e\u0005\u0016\u0000€tkѢŻϙ\u001f]PPPóÖ!4Š\u001b7¨_¿\u000fZ\u001c\u001déøñŠïcbÈԔ45«^\u001d0€nÜ`/\u001e4&\u0014X\u0000\u0000Ò­mÛ¶ñññõïÿôéÓj\u0013¶ ±ddÁ\u0007-jj¤¯O\fCaaäáA›6‘ðÒ¯††„ÁEY…F\u0001\u0000¤[·nÝnÞ¼É0L=WiÿóÏ?wíÚÕØ©€ˆHUµê\u000e`¥ìlòñ¡¤$âó©Ú®äùùXtTf`\u0004\u000b\u0000@ºÉËË\u000f\u00192äСCõé|ëÖ-UUU==½ÆN\u0005DDmÛÒãÇ\u001f´\u0014\u0017““\u0013YZÒõëÕ«+\"zü˜0¸(+0‚\u0005\u0000 õ\u0016,Xàää4pàÀÖ­[\u000b·§¤¤\b\u001f¾{÷nþüù»wïf7]\u0013fmMóæ\u0011ÃTÝ\u0007ä󩬌||(9¹¢ÅȈ\u0014\u0014*¾?s¦j†\u0016H9é+°,--\u0007\f\u0018Àu\n êêê4k\u0016ååq\u001d\u0004$ˆâ¥K\\G`•ªªêöíÛǍ\u001bwàÀ\u0001ccãZû¼yóf„\t~~~˜€Å\u001eyyrr¢C‡Èݽ¢åÖ-º{—Ú¶­ê“•EººDDýEíÚQm;\u001d4’¾\u0002+'''11‘ë\u0014 AJJJèÞ=zýšë  A\u0004Mog·®]»\u0006\u0005\u0005¹»»Oœ8ÑËËKYY¹ò%@\u0010\u001a\u001a\u001a\u0010\u0010°jÕ*GGG\u000eC6E~~4d\bÙڒ‘\u0011\u0011Ѻu´n]-ÝrrhÑ\":vŒåtÐx¤¯ÀJOO¿zõ*×)@‚\u0014\u0015\u0015Ñ_Qz:×A@‚\bjÎni\u0002:uêtñâÅmÛ¶999ikk›šš*))%''¿xñbðàÁ§OŸÖÐÐà:cÓ£ªJAA4~<íÛ÷ÑùU\u0019\u0019äáA?ÿLŸ³ž\u0019H8é+°\u0000\u0000àc”••çΝ;wîܬ¬¬ää䒒\u0012ccãV­Zq«iëܙvï¦o¾¡‘#ÉחTTª^*.¦}ûh×.Ú¼¹–9ï ÍP`\u0001\u0000È ===<*(A:t ‹\u0017i÷n\u001a1‚”•Éؘ\u0014\u0015)1‘òòhøpºp¡ö} Aš¡À\u0002\u0000\u0000h|ŠŠäãC>>”ŸO))$\u0010PëÖÄéMÛçϟ'%%\u0015\u0014\u0014´iÓÆÒÒRII‰Ã0²\u0007\u0005\u0016\u0000\u0000\u0000‹TUÉ‚Ãë\u0017\u0015\u0015mÙ²%44ÔÌÌÌÌÌLIIé̙3·oßîØ±£¿¿¿‰‰\t‡Ùd\t\n,\u0000\u0000€¦âÑ£GÞÞޞžž—.]RTü \u0006ˆ‰‰™2eÊäɓ===¹Š'KP`\u0001\u0000\u00004\t±±±>>>\u0007\u000f\u001e¬u˜ÊÆÆæÜ¹s3fÌxûöíܹsُ'c°U\u000e\u0000\u0000€ì+**òññ9pà@\u001d7\u0001•””‚‚‚¢££¯\\¹Âf6™„\u0002\u000b\u0000\u0000@ömݺõ›o¾©V]1\fccc\u0013\u0017\u0017WÙ\"//¿eË\u0016Ö\u0003Ê\u001a\u0014X\u0000\u0000\u0000²/44´Ú䪨¨(//¯ëׯWëÙºuk33³û÷ﳘN\u0006¡À\u0002\u0000\u0000q‰‰‰¦¦¦Õfµß¾}›Çãñx¼šý‡\r\u001bvöìY¶ÒÉ&Lr\u0007\u0000\u0000qIII57ùöóó#\">Ÿ_³¿™™Ydd$\u001bÉd\u0017F°\u0000\u0000\u0000d\\qqq³fÍêß¿yóæEEE—§)@\u0005\u0000\u0000 ã\f\r\rÓÒÒêß?%%\u0005[XŠ\b\u0005\u0016\u0000\u0000€Œ³°°¸}ûvýû_¸paÀ€\u0001—§)¾9XÚÚÚ={öä:\u0005H\u0010eeeêڕZ·æ:\bH\u0010999®#\u0000H\u0010\u0005\u0005…®]»^¾|ÙÖÖö“‹‹‹ÏŸ?¿dÉ\u0012\u0016‚É0é+°ŒŒŒêóù€¦ƒÇ㑛\u001b\u0015\u0014p\u001d\u0004$ˆBmóv\u0001š²%K–Lœ8ñܹsÊÊÊu÷ܰaÔ)S>Ù\rê&}\u0005ÖÝ»w·mÛÆu\n îîîê?ÿLéé\\\u0007\u0001\tRjmÍu\u0004\u0000ÉÒ¦M\u001booo__ߝ;w*((T¶§¤¤\bwãóù·oß>rä\bë\u0001e\ræ`\u0001\u0000\u00004\t\u0013'NìÝ»÷W_}•œœ\\óÕâââÕ«W‡„„ìÙ³G^\u001e偨¤o\u0004\u000b\u0000\u0000\u0000\u001afúôé=zô˜:uª‘‘‘‹‹K‡\u000e\u001d”••ÓÒÒ.\\¸\u0010\u0015\u0015åééyôèQLa\u0014\u000b\u0014X\u0000\u00002‹a˜[·nýûï¿éééêêêmÛ¶uttTUUå:\u0017p©OŸ>çϟ={öìå˗KJJ\f\f\fìíí—-[¦¤¤Äu:ف\u0002\u000b\u0000@\u0006\t\u0004‚íÛ·wïÞ½ÿþýû÷/((ˆÝ´i“……ŲeËZ¶lÉuFà’¥¥¥¥¥%×)d\u0019\n,\u0000\u0000Y“ŸŸ?eʔN:?^EE¥²}øðá?þøcTTÔȑ#ׯ_ß¿\u000eC\u0002È6\u0014X\u0000\u00002¥¬¬ÌÝÝ}Ú´innnµvptt´²²\u001a=zôƍ\u001b»wïÎr<€&\u0002\t\u0000\u0000Ȕ_ýuȐ!ÂÕ\u0015Ã0666qqq•-:::\u0007\u000e\u001c˜9sfII\t\u0017\u0019\u0001d\u001f\n,\u0000\u0000ّ““súôé\u00193fT¶DEEyyy]¿~½ZÏV­ZMœ8ñ÷ßg7 @S\u0002\u000b\u0000@v„‡‡»»»\u000b/btûöm\u001eÇãñjvöôôäcÉ{€Æ\u0002\u000b\u0000@vüõ×__~ù¥p‹ŸŸß–-[´´´jvnÑ¢…‚‚Baa![é\u0000š\u0010\u0014X\u0000\u0000²#--­M›6õïodd”––Öxy\u0000š,\u0014X\u0000\u0000²C^^^ \u0010Ô¿YY™ð¶t\u0000 .(°\u0000\u0000dG›6m\u0012\u0013\u0013ëß?%%ÅÐаñò\u00004Y(°\u0000\u0000d‡££ãéÓ§ëÙùíÛ·\n\n\n͚5kÔH\u0000M\u0013\n,\u0000\u0000ÙáâârìØ±z®n\u0015\u0018\u0018èîîÞØ‘\u0000š&é[ÉÝÉÉióæÍ\\§\u0000\tb``@gÏÒû÷\\\u0007\u0001\t¢<g\u000e×\u0011¸¡ªª:yòä5kÖ,_¾\\¸=%%¥ZÏ'Ožœ9s&**нp\u0000M‰ô\u0015XçΝ«ö\u0007\u00074q‰‰‰ÆC†Pz:×A@‚”X[s\u001d3¾¾¾“&Múã?¼¼¼>Ö'11qʔ)ûöíkð\f÷ÂÂÂsçÎ]»víå˗***ÆÆÆÎÎÎVVV\rM\r kp‹\u0010\u0000@¦ÈÉÉíÞ½ûƍ\u001b¾¾¾™™™Õ^\u0015\b\u0004û÷ï÷ððعs§™™Y\u0003Î_ZZº~ýzGGÇG\u001e\r\u001f>|åʕ³gÏîܹs`` ƒƒÃÕ«WÅñC\u0000H=é\u001bÁ\u0002\u0000€º)))mß¾ýܹs\u0013&LÐÐÐèׯŸ¡¡áÛ·oãââbbb†\u000e\u001dzîÜ9\u0015\u0015•\u0006œ977×ÃÃÃÙÙù¯¿þRT¬ú\u001bÄÒÒrذa©©©Ó§O\u001f2dÈ̙3Å÷Ó\u0000H%\u0014X\u0000\u0000²ÉÉÉÉÉÉ)55õÖ­[\u0019\u0019\u0019jjj\u001e\u001e\u001e\u0001\u0001\u0001Â\u001bé|–ÒÒR\u000f\u000fï¾ûnðàÁµvhݺuhh¨··÷¾}û&Mš$Bv\u0000©‡\u0002\u000b\u0000@–µnݺuëÖb9ÕÆ\u001b]\\\\„«+†aúöí\u001b\u001c\u001claaQÞ¢  \u0010\u0014\u0014ôå—_:88ˆëº\u0000Ò\bs°\u0000\u0000àÓÞ½{Ççó§OŸ^Ù\u0012\u0015\u0015åååuýúõj=•••W®\\¹fÍ\u001av\u0003\u0002H\u0016\u0014X\u0000\u0000ðigϞ\u001d>|¸ðS‡·oßæñx<\u001e¯fg;;»»w•±\u0018\u0010@² À\u0002\u0000€O‹‰‰±··\u0017nñóóÛ²e‹––V­ý¿øâ‹„„\u00046’\u0001H$n\n¬˜˜˜ââbN.\r\u0000\u0000\rðòåËÏÚµ°U«Viii—\u0007@ÂqS`\r\u001b6,++‹“K\u0003\u0000@\u0003´hÑ¢¨¨¨þý\u000b\u000b\u000b[´hÑxy\u0000$\u001c\u001b\u0005–ªªªâ‡²³³MLL„×P\u0001\u0000\u0000Ifbb\u0012\u001f\u001f_ÿþñññ¦¦¦\u0016\u0007@Ò±Q`ݸq£wïÞ£FzòäIzzzzzº––ÖíÛ·Ó±·\t\u0000€”pvv>yòd=;\u0017\u0015\u0015egg·lÙ²Q#\u0001H26\n,KKË¿ÿþ»_¿~...ÿü󏮮®¼¼¼¶¶¶®®.\u000bW\u0007\u0000\u0000ÑuïÞ=..îå˗õé\u001c\u0018\u0018èááÑØ‘\u0000$\u0019K7é\u0014\u0014\u0014æÍ›çæææíí}ðàÁ’’\u0012v®\u000b\u0000\u0000b!''·jÕª\u00193f\u001c?~\\x-ø”””j=ãâ⢢¢Ø\r\b YXänff\u0016\u0015\u00155`À\u0000\u0017\u0017\u0017L~\u0004\u0000.¶¶¶ƒ\u0006\rš6mÚû÷ï?Ö'..ÎÓÓsϞ=˜e\u000bM\u001cÛO\u0011ÊËËO›6íСCEEE§Nbùê\u0000\u0000 Š9sæØÚÚ~ùå—W®\\©öRQQÑÆ\u001b¿ýöÛ\u0003\u0007\u000e`z;\u0000gÿ¸víڔ)Sòóó?Öá̙3¡¡¡5ß5hРo¾ù¦‘Ӂ4ÑÖÖ¦õëéÝ;®ƒ€\u0004Q\n\u000eæ:‚Ìš2eŠ££ãš5k~üñÇΝ;·jÕª¨¨èɓ'YYY\u001e\u001e\u001e‘‘‘\u0018»\u0002 \"9†a¸ÎP»üüüÌÌÌj«W¯NMMý¬G…Aæýý÷ß­F\"¬¬\u0006BzëèüóÏ?\\§qeeeOž<ÉÈÈPVV633Ã3ƒ u¼½½\u0017-ZdffÖ\u0018'gõß\u0019\u0002 ??_UUUx‚äǨªªªªªVkÔÐÐxüøñ³gÏ\u001a' H¥ÒÒRJL$¬ú\u0001B\u0018mm®#È>\u0005\u0005\u0005KKKKKK®ƒ\u0000H\"6æ`\u0015\u0015\u0015-[¶¬C‡\u000e͚5ÓÐÐPVV677_¾|9vË\u0001\u0000\u0000\u0000™ÄF5mÚ´k×®íØ±#==½¤¤$33sϞ=÷îݛ1c\u0006\u000bW\u0007\u0000\u0000\u0000`\u0019\u001b·\bÃÃÃccc+w\tÕÖÖîׯ_HHˆ‰‰\t\u000bW\u0007\u0000\u0000\u0000`\u0019\u001b#X¦¦¦gΜ©ÖxöìY###\u0016®\u000e\u0000\u0000\u0000À26F°vîÜ9|øð\r\u001b6tîÜYMM-///666;;;<<œ…«\u0003\u0000\u0000\u0000°Œ\u0002ËÚÚ:)))::úÙ³g999ZZZ>>>öööX+\u0005\u0000\u0000š”ØØØˆˆˆ„„„7oÞèëë÷ìÙÓÕÕU\u001b\u000f½Ê\"–J\u001cEEÅÁƒ\u0007³s-\u0000\u0000\u0000IsÿþýE‹\u0016ikk\u001a5ÊÕÕUSS3##ãêÕ«£G¶¶¶^ºt©šš\u001a×\u0019Aœ0†\u0004\u0000\u0000иNœ8±e˖   ssóÊFCCC++«\u00193f\u001c;vÌÅÅeß¾}ØbH– À\u0002\u0000\u0000hD\u0017/^ܵkןþÙ¼yóZ;Œ\u00193¦S§N\u0013&LˆˆˆÐÔÔd9\u001e4\u0012¶7{\u0006\u0000\u0000h:Þ½{·xñ␐\u0010áêŠa\u0018\u001b\u001b›¸¸¸Ê\u0016KKË¥K—~ÿý÷\\d„F\u0002\u000b\u0000\u0000 ±lß¾}Ú´iÂãRQQQ^^^ׯ_¯ÖsȐ!™™™Ø\u000bNf À\u0002\u0000\u0000h,ááácǎ\u0015n¹}û6Çãñx5;Ož<ùøñãlEƒÆ…9X\u0000\u0000\u0000¢´´TQQ±Z-åççGD|>¿fÿAƒ\u0006íß¿_<×~õŠöï§s稰ÊÊHNŽ:u¢±cÉήªOA\u00019C\u000f\u001ePf&é萹9¹¸ŽŽx\u00024y(°\u0000\u0000\u0000\u001aEfff˖-ëß_[[;''GÔ«2\fmÜH¡¡4}:\u001d8@\u001a\u001a\u0015·nÑîÝ´n\u001d\u0005\u0006’Ž\u000e­]KýEǓ½=éêRN\u000e=x@\u001e\u001edlL«V‘¨1š<é+°Œ[·nÍu\n <\u001eÜÜ(7—ë  A\u0014’’¸Ž\u0000@-Z´(ËĆÞ\u0000\u0000 \u0000IDAT,,¬ÿò\u0011/‘.)\u0010§'™™Ñ¥K$/4\u000bHNŽzö¤ž=éáC\u001a=š\u0004\u0002Z¸V¯&9¹ª>¶¶ôí·té\u0012\u001aE\u001b7RŸ>\"%iò¤¯ÀRRRRWWç:\u0005H\u0010yyyÒÐøà\t\u0000\u0014X\u001ca\u0018&;;[EE¥E‹\u0016\\gព–VVVVýû'$$\u0018\u001b\u001b‹tÉ%K¨{wš7ï£\u001d\f\rIAÊÊÈÖ¶ö?6íì(,ŒF¢\u001d;ÈÂB¤0M›ô\u0015X\t\t\tW¯^å:\u0005HÅ‹\u0017k‡„Pz:×A@‚”Y[s\u001d¡i)((\b\n\nŠˆˆ\u0010\b\u0004:::………¹¹¹–––Ó§OïÙ³'×é¸Ôºuëçϟ·mÛ¶>Ož<9tèІ_ìÁ\u0003Š‹£5kªZÂÂèÇ\u001f)9™z÷¦À@²´¤9shÃ\u0006RV¦…\u000biß¾Z:\u0010‘ž\u001eíÝKS¦Ðŋ\u001f\fƒÁçÀ8\u0000\u0000\u0010ɹsç\u0006\u000f\u001e¬­­}òäɋ\u0017/\u001e;v,\"\"âʕ+sçÎ\r\b\bðöö.**â:#g|}}×­[WŸž………Ǐ\u001fwuumøÅÖ­£U«ª\u000eÓÓiÒ$\n\b —/É֖Ǝ¥û÷I  \u0003ÉÆ†\n\n蟪w¨Ô¶-98бc\r\u000fÓä¡À\u0002\u0000€†;xðàÖ­[Ϟ=;eʔjËuéÒåÀ\u0003ÎÎÎnnnïÞ½ã*aÃ\u0014\u0015\u0015%&&¾zõJÄó\f\u001a4('''22²Z{JJŠÅ‡7à¾ÿþû9sæ4üÖji)%&R§NU-11Ô­\u001b¹º’º:ùûÓÇ\u0014\u001cLÞÞ\u0015¯Ž\u001dK¿ÿ^½ƒð\u0014{\u001f\u001f:r¤a@\u001ao\u0011\u0002\u0000€„ø÷߃ƒƒOž<©¬¬ü±>cƌQTTôõõÝ·o\u001f›Ù\u001a&77wóæÍ‘‘‘***\u0006\u0006\u0006yyy\u0019\u0019\u0019mÚ´™9s¦­­mÃιcÇ\u000eWWW%%%;á%\u0012„0\f³|ùreeeww÷†GON¦öí?hqt¤~ý*¾‰!SSº{—Ö®­h±¶¦3g¨rÙ­ò\u000eÂ\u001bõ´jEŸ3\fªÁ\b\u0016\u0000\u00004Ð…\u000bwîÜ)\\]ÕÜ\u0004†ˆ¾úê«æÍ›_ºt‰õ€Ÿ‡Ï绸¸|ñÅ\u0017QQQ§OŸÞ½{÷±cÇþþûïÕ«WïÚµkÒ¤I\u0005\u0005\u0005\r8­ººzxxø†\r\u001b\u0016.\\Xs\u0015†»wï\u000e\u001b6ŒÇã\u0005\u0004\u0004ˆ”þÕ«êKX©©‘¾>1\f……‘‡\u0007mÚDee¤¤Tñªž\u001eåäTïPmÚ{óæTR\"Rª&\f#X\u0000\u0000Ð\u00107nÜ077722ªl‰ŠŠÚ¿ÍM`ˆÈßßÞ¼y\u001f\u001b‘\u0004;wŒŒŒŒ¬¹Æº™™Ù®]»Nž<éææ\u0016\u001e\u001e®ªªú¹'×ÒÒ:yòdhhèøñã\u0015\u0015\u0015ÍÍÍ555ÓÓÓ\u001f=zdjjúÛo¿uìØQÔ\u001f@[›j®¡•M>>””D|>Y[Óo¿}ð’®nõ\u000eՔ–’‚‚¨Áš*\u0014X\u0000\u0000Ð\u0010§N\u001a5j”pK\u001d›À\u0018\u001b\u001bçä䔔”Ôq3‘CW¯^\r\u000b\u000b\u000b\r\r­c\u0019*777yyy\u001f\u001fŸƒ\u0007\u000f6ì*#GŽ\u001c9rdnnnbbbnnn˖-ÍÌ̔*‡”DÔ¦\r%$|ÐR\\LNNäìLGVÔI**ôæMÅÒ£÷îQûöÕ;TSR‚\u0002«Áp‹\u0010\u0000\u0000\u001aâɓ';w\u0016nñóóÛ²e‹––V­ýÛ¶m›ššÊJ´ÏÃ0ÌO?ý´cÇ\u000eáêªÖ{®®®\u001a\u001a\u001aQQQ¢\\NSS³[·nvvv\u0016\u0016\u0016b«®ˆ¨Y3ÒÕ%á½¢ù|*+#\u001f\u001fJN¦\u0017/èÅ\u000brt¤?ÿ¬xõèQjÞ¼z‡²²ª·ß½ûÁ”yøL(°\u0000\u0000 !òòòÔÔÔêß_CC#W\"w\\¸zõª•••Ðæ0QQQ^^^µÞë\\¼xñÖ­[YL÷9üühùòªÃ[·èî]jÛ¶êËٙ‚‚ˆaèÁ\u0003*,¤ôôê\u001d„o2nØ@S§²þ3È\u000e\u0014X\u0000\u0000Ð\u0010zzz™™™õïÿ¹\u001bó±&\"\"bäȑÂ-uÜë422*¿×ÉVºÏѧ\u000fñx\u0014\u0012Rq¸n\u001d1Ì\u0007_––ääD¿þJÓ§Ó¯¿ÖÒAW·â½§O“œ\u001cõîÍՏ\"\u0003P`\u0001\u0000@CtïÞ=&&¦þý_¼xa ‘[\bÇÇÇñÅ\u0017Â-ußë411yùò%+Ñ>ßæÍtø0íÜùÑ\u000e“'S@\u0000õï_}M\u0007a—.ÑÚµ\u0014\u0018Ø\u0018\u0001›\u000e\u0014X\u0000\u0000Ð\u0010#FŒ8tèP=;_¹rÅÊÊJ^\"÷]ÉÏÏÿ¬\u0007\u0003ÕÕÕß¾}ÛxyD¢¬L¡¡ôø1¹ºÒŋ\u001fÌ©JM¥5kÈÃþü³âáÁšeb^\u001eùûӆ\rÄçÓç?,\tÂð\u0014!\u0000\u00004„‰‰‰®®î¥K—>¹ø‚@ X¾|ùÎ:†U8¥¯¯Ÿ‘‘ajjZÏþééé’y¯³‚¢\"­_Oññ´s'­\\I\fCòò$\u0010®.\u001eM\u0017/’‚\u0002Y[Óŋ\u0015«º÷ìIzzôú5=x@YY4c\u0006­\\Yû>Ðð9P`\u0001\u0000@\u0003­]»vĈ\u0011‡\u000f\u001f\u0016^\r+%%¥Z·…\u000b\u0017º¹¹™˜˜°›®¾zöìyåʕz\u0016X\f䥥ééé5r(‘µo_µh{­\u0006\r¢Aƒèõkzôˆ22¨kWòñ¡V­ØÊ'û$q´\u0016\u0000\u0000¤‚žžÞŽ\u001d;Ǝ\u001d[ë\u0003wDôîÝ;___\u0005\u0005…9s氜­þ¾úê«ú/muá…޽{ËÉÌ\u0000¶6ÙÚÒèÑdg‡êJ¼¤o\u0004KYYùc\u0013\u000f¡i’——'\r\r*.æ:\b@SÔ©S§ÐÐÐyóæ)((Lž<yÀ€\u0001<\u001ea˜øøøðððcǎ}÷Ýw_ý5×1ëbddÔºuëÈÈÈÁƒ\u0007×ݳ´´tÕªU\r^h\u0014š\u0014é+°úõë·xñb®S€\u0004ÑÕÕ¥ßdžY LyÙ2®#4!\u0006\u0006\u0006‡\u000e\u001dzðàÁ±cÇ6oÞ\\PP //ollìâârá…\u0016-Zp\u001dðÓ~ùå\u001777·víÚµk×®²±Ú½N†aæÌ™3yòdCCCÖ\u0003‚ô‘¾\u0002+::z͚5\\§\u0000\t’˜˜h<n\u001c¥§s\u001d\u0004$HIÍ]Õ ‘uîܹÚÂîRD[[{÷îÝ\u0013'N\\³f½½}Í\u000eoÞ¼™1cFçΝ§bíM¨\u001fÌÁ\u0002\u0000\u0000 \u000e\u001d:„‡‡\u0007\u0007\u0007\u001e=úĉ\u0013YYYDTTTtçΝ\u0015+V¸¸¸L˜0aÑ¢E\\Ç\u0004©!}#X\u0000\u0000\u0000AWW7888!!áøñã\u0007\u000f\u001eÌÊÊâñxmÛ¶uqqù駟Ĺo 4\u0001(°\u0000\u0000\u0000ª˜™™ýðÃ\u000f\\§\u0000©‡\u0002\u000b\u0000\u0000à³EGG\u001f=zôÑ£G\fÃÈËË«¨¨¸¸¸¸»»kjjr\u001d\r$\u0002\n,\u0000\u0000€Ï\u0010\u001f\u001f?sæL\u000b\u000b‹©S§öèÑ£|M¬ìììððpWW×I“&}ûí·\\g\u0004îa’;\u0000\u0000@}ÅÄÄ|óÍ7›7oÞ´iSϞ=+W\u001cÕÑÑñôô¼téÒóçÏ¿ýö[†a¸Í\tœC\u0005\u0000\u0000P/III\u000b\u0016,\b\u000f\u000fïØ±c­\u001d\u0014\u0015\u0015×­[צM›Ÿþ™ål ip‹\u0010\u0000€3\u0002à…\u000báááñññïÞ½SSSëÚµë¨Q£zöìÉu4¨Å÷ß¿eË\u0016\u001d\u001dÊ\u0016†aúöí\u001b\u001c\u001claaQÙ¸xñbWW×§OŸš››s\u0011\u0013$\u0002F°\u0000\u0000¸qùòe{{ûÈÈÈɓ'Ÿ8q\"::úСC\u000e\u000e\u000eÃ‡\u000fOHHà: |àñãÇòòòÝ»w¯l‰ŠŠòòòª¹\u000f£œœÜŠ\u0015+Ö¯_Ïn@,\u0018Á\u0002\u0000à@ppðÑ£G\u001d;¦¯¯_Ù¨¢¢âèèèèèøèѣɓ'¯]»vÀ€\u0001\u001c†\u0004a|>ܸqÂ-·oßæñx<\u001e¯fç^½z͛7O \u0010ÈËc £‰Â/\u001e\u0000€mgΜ\t\u000f\u000f\u000f\u000b\u000b\u0013®®„}ñÅ\u0017\u0011\u0011\u0011‹\u0016-zòä\tËÙàcîÝ»×»woá\u0016??¿-[¶hiiÕÚßÄÄ$##ƒ•h ‰P`\u0001\u0000°êÝ»w+W®Ü»w¯¢bÕ=\u0004†alllâââ*[455wïÞ={öl.2B-²³³…g_}’žž^ù~;Ð4¡À\u0002\u0000`ÕΝ;½¼¼TUU+[>6•ÇÜܼcǎ—.]b7 ÔNKK+''§þý?· k\u0012²³ééSÊÌä:\u0007\u001b0\u0007\u000b\u0000€U§N:vì˜pK\u001dSy&Nœ¸ÿ~;;;¶ÒÁGYXXÜ»wÏÀÀ žý“’’êßYÆ={F\u001b6Н;dhHºº”“C©©Ô±#-X@:q\u001d®± À\u0002\u0000`Õû÷ïÕÕՅ[üüüˆˆÏç×ìlmm½páB–’AÜÜܶmÛæääTŸÎ\u001f?622RPPhìT’Žaè—_诿hÙ2\n\füॻwiÉ\u001227§_~!Yü\u000f%}\u0005–½½ýŠ\u0015+¸N\u0001\u0012D__Ÿ\u000e\u001f¦’\u0012®ƒ€\u0004Q^¶Œë\bµ+,,lÑ¢EýûËËËcMp\tÑ£GÔÔԄ„\u000433³Ov^¶lُ?þÈB*I7s&\u0019\u0018ÐéÓôߒ÷Uºu£ÐP\n\f$\u000f\u000f:xdîqKé+°¢££×¬YÃu\n ‰‰‰ÆãÆQz:×A@‚”X[s\u001d¡v͛7/..æ:\u00054Ðúõë½½½ÿüóOá*9%%¥Z·]»véëë\u000b¯˜ÕDmßNêê´ti]}fÌ âbZ¹’–/g)\u0015[¤¯À\u0002\u0000^rrrïß¿/++«çÍ£äädÌã‘\u001c:uúî»ïFŒ\u0018±ÿ~===\"¢;wh÷nºs‡ääH^žJK·•”œSP8\u0012\u001dÍqVÎåæÒ¾}$üˆFX\u0018ýø#%'SïÞ\u0014\u0018H––\u0015íó瓳3={FíÚq’´‘Èڈ\u001c\u0000€„ëÓ§Ïßÿ]ÏÎ'NœpuumÔ<ðYÜÜÜV®\\9bĈßÖ®Írw§µkÉݝ¢£Ë¢¢.,Y⢪šÜ­Û±Þ½•ÜÜ(9™ë°œ\n\t¡iÓ¨r-’ôtš4‰\u0002\u0002èåK²µ¥±c?è<>íÞÍ~ÆF…\u0011,\u0000\u0000V͘1ãÛo¿µ··ÿdÏÂÂÂC‡\u000eEEE5~(ø\f666—øüý\u0003\u0007zkj¾mÑB\u0018†\u0011\b\u0004666ÿ÷ÿW1Cëþ}\u001a7Ž~ÿ:wæ:/GΞ¥½{«\u000ecb¨[7*ÿׂ¿?ýü3åäPå\u001a­\u000e\u000e´v-\u0007!\u001b\u0013\n,\u0000\u0000VµmÛ¶OŸ>›7ož3gŽp{Í©<³fÍZ°`A­Ë7\u0000—\u0018FiêÔ)AASì숨öýpºt¡Ã‡iÜ8Šˆ ,õ.ãòó?øÁ\u001d\u001d©_¿ŠïcbÈԔ45«^URb5\u001b+p‹\u0010\u0000€m˗/¿|ùòÖ­[?Ö¡´´töìÙFFFcƌa3\u0018ÔË¡CdmMÿ-N&//OaadaA**4h\u0010ÅÆVt32¢E‹hÕ*ÎrJ\u001455Ò×'†¡°0òð M›ª?W('G²õÀ,\n,\u0000\u0000¶ÉËË\u001f<x0))iĈ\u00117oÞ\u0014~©¬¬ìôéӎŽŽVVVËeî¹*\u0019±};ùùU\u001dÖ1»È͍þý—òóÙÏ(‰²³iôhZµŠø|rs«þª@PËR\u000eÒ\f·\b\u0001\u00008   °nÝºØØØÍ›7ϝ;W[[[KK++++//oàÀGŽ\u001ciÙ²%×\u0019¡6IIdhHB;\u001d}bv‘›\u001b;G£Fq\u0010•[æætï\u001euíZqX\\LNNäìLGÖ²¬hF\u0006ik³\u001c°±¡À\u0002\u0000àŒ¥¥å¶mۈ¨   ;;[__¿yóæ\\‡‚:ÅÅQ·n\u001f´Ô=»ÈʊbbšPuë\u00168AwïRr2\r\u001fN..äæFNNÄçSY\u0019ùøT=\\idTUi…„Ðȑ\\En$(°\u0000\u0000¸§¢¢¢¢¢Âu\n¨\u0007áÑ©rjj¤¦F\fCáá4s&mÛöÁ­.\u001d\u001dzýšåŒÜxþœæÍ#mmš8‘\u0016-\"\u0015\u0015rt$WWºv~þ™Ú´¡»w©mÛªþYY¤«[ñ͉\u0013$s›š£À\u0002\u0000\u0000¨7]]zú´zcv6ùøPR\u0012ñùTm\u0017ÌLÒ×g-\u001dgbbè»ïª/K±u+M›F'OÒܹäíM[·ÒŒ\u0019ÕßXTD\u0013&P@@ՊY²\u0002“Ü\u0001\u0000\u0000êí‹/èöí\u000fZÊg\u0017YZÒõëÕ«+\"ú÷_êԉµtÜxþœ\u0016, “'«/úeaA«V‘«+¥§Óñãtù28Qý..4s&ÙØ°™—\u001d(°\u0000\u0000\u0000êÍАrs?¸ë'<»èÅ\u000bzñ‚ÊÊ*^b\u0018úóO\u001a<˜“¤ì™;—vì \u001dŠCáE+ôõiÏ\u001eZ¼˜<=iüxúå\u0017zû–^¿¦\u000b\u0017hútš>6o¦\u0011#8MßXdmD\u000e\u0000\u0000 q͛G?ÿL\u0001\u0001\u0015‡·n}tvÑÁƒäèHB;CË \u001b7¨eKú⋊ÃòE+\u000e\u001e¤\u0001\u0003hýz\u001a;–îß'>ŸîÝ#>Ÿ\u0014\u0014¨{wê֍:u\"OOêݛÓè\u000b#X\u0000\u0000\u0000ŸÃ͍RS)<¼âpÝ:b˜\u000f¾Ê««ÇiÛ6úá\u0007\u000e“²áøqš8±ê°rÑ\nuuò÷§‡\u000f)'‡ˆ¨kWZº”¢£ÉؘNœ U«d»º\"\u0014X\u0000\u0000\u0000Ÿm×.\n\f¤ààv¸|™<=iï^’ù‡CïÜù`\u0006•£#\u001d?^ñ}ÍE+š7'yy\u0012\bXMÈ\u0011é»Ehii9`À\u0000®S€\u0004QWW§Y³(/ë  A\u0014eî‘o,<\u001e…‡ÓâÅäìL³g“£#•/`&\u0010еkôûïT\\L'OVMK’aÅÅÔ¬YÕa݋V\u0010‘¶6eg“ž\u001eË1Ù'}\u0005VNNNbb\"×)@‚”””н{Me¥\u0019¨\u001fAÓø'2pIY™Ö¯§\u0017/($„þ÷?zÿ¾blÆÚšæÌ¡ž=¹ÎÇ\u0016yy*+û`qö:\u0016­ ¢·oI]Í€\\‘¾\u0002+==ýêÕ«\\§\u0000\tRTTDýEéé\\\u0007\u0001\t\"¨ùÇ:@c05¥%KhÉ\u0012®spÇԔž>%\u000b‹ŠÃº·Äa\u0018*(ø`ÄKva\u000e\u0016\u0000\u0000\u00004Ô°a\u001f¬nUÇ¢\u0015DôÏ?deÅ~FN À\u0002\u0000\u0000€†\u001a6ŒN¢·o+\u000e+\u0017­¨ü*аÜêÕµ,æ.£P`\u0001\u0000\u0000@C))ђ%ôí·Ä0D\u001f_´‚ˆ‚‚ÈÒ²jÅ,Y‡\u0002\u000b\u0000\u0000\u0000DàâBÝ»“\u000f•”|´ÏŽ\u001dtö,­YÃb,Ž¡À\u0002\u0000\u0000\u0000Ñ|ÿ=Ùۓƒ\u0003…‡Sié\u0007/ýû/\u001cI\u001fӑ#²·£s\u001dšÐ\n\u0000\u0000\u0000eâD\u001a:”6o¦€\u0000RV&}}zó†^¿¦.]è矛ΝÁJ(°\u0000\u0000\u0000@\u001ctthÅ\n\"¢’\u0012ÊÌ$mmâñ¸ÎÄ\u0019nn\u0011\u0016\u0017\u0017sr]\u0000\u0000\u0000htÊÊÔ¦MS®®ˆ\u0002+++kæÌ™\u0003\u0006\føá‡\u001f222¬¬¬š7oÞ«W¯øøx\u0016®\u000e\u0000\u0000\u0000À26\n,ooï'OžÌš5+++«{÷îîîî¯_¿¶³³›={6\u000bW\u0007\u0000\u0000\u0000`\u0019\u001bs°¢¢¢\u001e=zdllÜ­[·àà`\u001f\u001f\u001f--­ï¾û΢re}\u0000\u0000\u0000\u0000\u0019ÂÆ\b–ŽŽNff&\u0011uèÐáСCÚÚÚDôöí[\u0015\u0015\u0015\u0016®\u000e\u0000\u0000\u0000À2‘\n¬9sæüõ×_eÂÛ\fÕfùòå\u0003\u0006\f\u00180`\u0000Ã0ãÆ#¢ÀÀ@GGGoooQ®\u000e\u0000\u0000\u0000 ™DºE¨¥¥5{ö쌌ŒQ£F\u00193fàÀŠµ­!æéé9`À€«W¯ÊÉɕ·(++oݺuĈ\u0011¢\\\u001d\u0000\u0000\u0000@tÆ\rkÖ¬Y—.]æÌ™S~ŸMt\"\u0015X+V¬X±bųgÏø|þòå˟<y2|øð1cÆ\f\u001a4HIII¸gûöíÛ·o_yèí흚š\u001a\u0011\u00111lذ<///++«Zã›7oTUUÛµk'Jl1ŠŠŠdbÒğ\u0007†j*ÿ9\u0007\u0000ðIÎÎÎ͚5ëܹ³ššš¸Î)†IîÚÚÚFFFfff\u000f\u001e<¸zõêƒ\u0007\u000f<==·lÙ2räÈ:ÞuíÚµ)S¦äçç×ÑáøñãÕ\u001aoÞ¼9hРѣG‹\u001e\u001bd†ºº:͚EïÞq\u001d\u0004$ˆbp0×\u0011\u0000@j̚5«ü›øøxccc†aBCCóóó'Ož¬¬¬ÜÀ“2\"øõ×_íììTTTœœœ6oÞüìÙ³òö‹\u0017/\u001a\u0018\u0018ˆr揙7o^¿~ýÄö_\u0014dBbb\"c`À\u0010á\u000b_•_ÖÖ֍ñG\u0010\u0000È\u0012//¯øøøÊÃ\u0015+V4kÖ,++ë×_µ²²êÙ³§OƒO.Ò\bVllìœ9s¾üòËjCj½zõ\n\f\f¬Ù_ \u0010äç竪ªÊËc“i\u0000\u0000ryy\u0014\u0012BþIåwcääH_ŸF¢Q£šÔ®Æ2cÓ¦M111:::Û¶m\u000b\r\rÕÐÐèÙ³çï¿ÿÞ°³‰Tèlß¾===ýúõëDÄçó7lØP¾\u0007ŽŠŠŠðýÁ¢¢¢e˖uèСY³f\u001a\u001a\u001aÊÊÊæææË—/dž9\u0000\u0000 ­BBÈɉ”•)8˜.^¤‹\u0017éÂ\u0005Z»–\u0012\u0012ÈΎ®\\á:\u001f|¶²²2MMÍ{÷î\t\u0004‚®]»***–””4øl\"\u0015X>>>üñ‡¦¦&\u0011µmÛ6,,lúôé5»M›6íÚµk;vìHOO/))ÉÌÌܳgϽ{÷f̘!ÊÕ\u0001\u0000\u0000¸áïO—/Ó¥KäåE::Uí¦¦´h\u0011……ÑêÕtø0wù !ÜÝ݇\f\u00192f̘¹sç&''\u000f\u001b6ÌÁÁ¡Ág\u0013i\fóĉ\u0013wïÞ-¦¯[·nû÷ïïÚµë®]»ªu\u000b\u000f\u000f544,?ÔÖÖîׯ_HHˆ‰‰‰(W\u0007\u0000\u0000àÀ\u001fPn.mßþÑ\u000eºº\u0014\u0016FnndbB66,&\u0003‘üßÿý\u001fŸÏ/--\u001d3fLrrò„\t\u0013|}}\u001b|6‘F°Z¶l)¼’BZZšŽp!ÿ\u001fSSÓ3gÎTk<{ö¬‘‘‘(W\u0007\u0000\u0000`Û«W´g\u000fmÜXÕ\u0012\u0016F\u0016\u0016¤¢Bƒ\u0006QllE£²2íÝK?ü@\u0002\u0001'1¡\u0001\u0014\u0015\u0015nj\u00193~üxEEŶmÛ~ÿý÷êêê\r?›(QV¯^íêêêááabb’’’\u0012\u0012\u0012²aƚÝvîÜ9|øð\r\u001b6”¯0‘——\u0017\u001b\u001b›\u001d\u001e\u001e.ÊÕ\u0001\u0000\u0000ضm\u001b͟_5‡==&M¢ƒ\u0007iÀ\u0000Z¿žÆŽ¥û÷+^jْììèôiruå*,|–¨¨(ÿׯ_\u000b7ÆÅÅ5ìl\"\u0015XãǏïÞ½û‘#Gž>}Ú²eËÈÈÈnݺÕìfmm””\u0014\u001d\u001dýìÙ³œœ\u001c---\u001f\u001f\u001f{{ûZ—}\u0007\u0000\u0000\\\u0017.Ð\u000f?T\u001dÆÄP·n\u0015%”¿?ýü3å䐖VÅ«ãÆÑæÍ(°¤ÅÔ©SÝÝÝ'Nœ(–úDÔStìØÑßßÿӗQT\u001c<x°ˆ×\u0002\u0000\u0000à\u0012М\u001c5kVÕâèH•«3ÆÄ©)ijV½Ú©\u0013Ådzš\u0010Dðþýûe˖µhÑB,g\u0013i\u000eVTTT¿~ý,>$–X\u0000\u0000\u0000\u0012§  ú®\\jj¤¯O\fCaaäáA›6‘ð6MrrÄ0,g„\u0006ûî»ï6mÚTZZ*–³‰4‚%ÞÁ4\u0000\u0000\u0000‰¦¢RË®\\ÙÙäãCIIÄ瓵õ\u0007/•x”àóùwîÜY³f¡¡aå~¦ÜÌÁ\u0012ï`\u001a\u0000\u0000€D““#€JJ¨rºâbrr\"gg:z”\u0014\u0014ª÷‹£¶mYÎ\b\r¶sçN1žM¤\u0002«|0ÍÏÏ\u000f#X\u0000\u0000Ð$ØÙÑÙ³äæVqÈçSY\u0019ùøPrrE‹‘QU¥uô(\u0018ÁAHh\u0010ñNs\u0012©0\u0012ï`\u001a\u0000\u0000€¤›1ƒÆ#\u0017—Š*êÖ-º{÷ƒaª¬,ÒÕ%\"zõŠÎŸ§Å‹¹É\tŸ£yóæ»víZ¹re͗¸¹E(ÞÁ4\u0000\u0000Yðï¿tì\u0018ݼI%%¤ @­[“«+\u0018A˜M!\u001bZ¶¤±ciÑ\"úõW\"¢uëhݺZº••Ñ”)´fM-÷\rAòðùü®]»öèÑCŒç\u0014©À*\u001fL+++ËÌÌ400ÃT>\u0000hʒ“iÎ\u001cÒÒ¢I“hŊŠi:ϞQX\u001898Ðüù4v,×\u0011A\u001cfÌ ï¾£\u0005\u000bè×_k¯ŸÞ¼¡o¾¡1chÀ\u0000ÖÃAC8;;\u0013Q«V­ˆ¨¬¬,++KWWWÄéO\"½ùå˗“'O¾r劂‚Âýû÷Ǐ\u001fàÀò­\t\u001b½½ýŠ\u0015+\u001aõ\u0012 ]ôõõéða\u0012aÏs=Ê˖±}É[·hÖ,\n\f$+«\u000fÚÛµ£ùóÉחæÍ£»wéçŸÙ\u000e\u0006á·ß((ˆììhöl\u001a6ŒTT*Ú33éða:xV­\"GGN#ÂgËÈȘ={vhh¨²²rIIɈ\u0011#\u0002\u0003\u0003õõõ\u001bv6‘\n¬\u0005\u000b\u0016´oß>,,¬]»vÆÆÆC†\fñññ‰ŠŠ\u0012土\u0014\u001d\u001d½f͚F½\u0004H—ÄÄDãqã(=ë  AJª=-ߨÒÒhÖ,:q‚\f\fjïÀãÑï¿Ó‚\u0005´e\u000b͚Åj6h$¾¾ôõ×´k\u0017\u001cI¥¥TVFrr¤¡AÇÓŋ\u001f,F\nRÂ××W[[;--MOOïÕ«Wßÿ½¯¯ohhh\u0003OLj@[[;''‡a˜–-[2\fóúõk\u001e'Ê\t?iÞ¼yý*×Ì\u0005 \"¢ÄÄDÆÀ€!Â\u0017¾*¿¬­­\u001bõÏ¢êÜݙë׫\u000eù|¦cG†Çcìí™GªÚKK™Aƒ˜¤$V³\u0001ÀGxyyÅÇÇW\u001eª©©½~ýºò0;;[]]½Á'\u0017i%÷6mÚ\\¾|¹òðΝ;m±à\u0007\u000045OžPY\u0019õî]qX¾ûo@\u0000½|I¶¶\u001fÌ»RP ¥KiÃ\u0006Nb~Tq1Ý¿OçÏӕ+ôò%×i º\u001b7n̘1cÀ€\u0001\u000e\u000e\u000e\u000e\u000e\u000evvv\u0013&Lˆˆˆà:—\f200¸uëVåáíÛ·\r\r\r\u001b|6‘n\u0011nÞ¼yôèу\u0006\rzûö­§§gDDÄÞ½{E9!\u0000€ô\t\r%w÷ªÃºwÿµ³£Ÿ~â d­\u001e?¦Õ«))‰ºu#\u0003\u0003*,¤ØXÊÊ¢I“ÈÓ\u0013¿q.//ïÛo¿•——Ÿ?¾ð\u0003n\t\t\tÛ·oß´iӎ\u001d;LLL8L(cÖ¬Y3zôè‘#Gš˜˜$&&†††þñÇ\u001f\r>›H\u0005–ÝãǏO:Õ­[7\u0003\u0003ƒò\u0005±D9!\u0000€ô¹{—&O®:¬{÷_9924¤ìlÒÑa5dM\u0001\u0001\u0014\u0019Ik×R·n\u001f´\u0017\u0016Җ-4x0íÝKFF\u001c…\u0003ÊÎÎþꫯ–,Y2dȐj/™™™­_¿þáÇîîîAAA]ºtá$¡ì\u00193fL\u001e=ÂÃÃÓÓÓ»uë¶dÉ\u001233³\u0006ŸMÔ\u0015Øutt¾ùæ\u001b\u0011O\u0002\u0000 Ų²HO¯êPMÔԈa(<œfΤmÛªïFײ%efr\\`ùûSI\tED|‰\"-ZÐ÷ߓ³3\u001dKǎQëÖ\\äkê\u0004\u0002Áĉ\u0013×®]Û¿ÿõéԩӑ#GƎ\u001d{êÔ)mmm6ãɪ’’’3gÎtîÜyÞ¼y|>?44töìÙÍ\u001aú¼‚H\u0005–MÍÆ˜˜\u0018QÎ\t\u0000 e44è͛\u000f\n¦:vÿ%úàŽ!'ÂÃ)5•víª«O—.´};}ó\r;WK\u0011&\u0004\u0002Á…\u000b\u0017\"\"\"\u0012\u0012\u0012Þ¾}«¯¯ß£G‘#GvìØ‘ëhՅ„„ØÚå`d7\u0000\u0000 \u0000IDATÚV«®\u0018†éÛ·opppåŽ.mÚ´ù駟V¯^ýÛo¿q\u0011SÖøøø<xð ((ˆˆÚ¶m\u001b\u0010\u0010ðèÑ£]uÿŸR\u0007Q¦ß_ûÏÕ«W\u001c9bggwäÈ\u0011QNøIxŠ\u0010jÂS„øªùÅêS„\u000b\u00172ÑÑU‡EEL\u001eÌO?1¥¥µ÷·µeÊÊØ‰V‹÷ï™~ý˜Üܪ–=óÈ0ÌòåÌþý,\u0007l$\u0017.\\°µµýñÇ\u001fcbbòóó\u0019†ÉÈÈàóù_ýµ‡‡Ç˗/¹\u000eø\u0001\u0003\u0006”‡¬\u0014\u0019\u0019éééID±±±Õ:\u000f\u001c80//Åt²£ÚS„ªªª\t\t\t•‡‰‰‰\u001a\u001a\u001a\r>¹8G°\u001c\u001d\u001d\u001d\u001c\u001c¾þúk‘þ¶\u0004\u0000.nntø0ÙÙU\u001cÖ½ûï“'dlÌå˜Pt4Ùۓ†FÅaù3\u0007\u000fҀ\u0001´~=\u001dK÷ïWuž7ÆŽ%\u000f\u000fN’ŠQ``àùóçCCCuËw\t$\"\"}}ý\u0011#FŒ\u00181âÚµk#GŽ\f\n\nêÚµ+‡!+=þÜÈÈH¥rñR\"\"º}û6Çãñx5û»¹¹?~äȑl\u0005”Y-[¶ÌÊʪ\\/=--MG„[ù¢ÎÁ\u0012–œœüìÙ31ž\u0010\u0000@\nôíKþþ”šZ1]©ŽÝ‰hÅ\nš7ƒ•Ξ¥Ñ£«\u000eë~æQCƒä䨠€>üË^º\u001c?~üêիǏ\u001f—ÿH]Û·oßãǏ\u001e=úĉ\u0013’ð¨V\\\\\\·jO\u001e\u0010ùùù\u0011\u0011ŸÏ¯Ù¿k×®7oÞD%ºÕ«W»ººzxx˜˜˜¤¤¤„„„l\u0010aQ\u0015‘þ\u0015e#ÄÚÚÚÚÚÚËËK”\u0013\u0002\u0000H\u001f99Z»–¼¼èý{\"¢uëˆa>øª¬®\u000e\u001c 55êՋð””DÂ\u001bš9:Òñã\u0015ß×|摈LM)%…½x▛›»qãÆ;w\nWW\fÃØØØÄÅÅU¶´jÕêÿûßüùó¹ÈX]nn®fµßBttt^¿~ÝxyšŽñãÇ_¹rEOOïéÓ§êêꑑ‘¢<Æ'Ò\bÖÿþ÷?áCMMM\tœ*\b\u0000Ðèzõ¢I“hÌ\u0018Ú·ÔÕkï³w/\u001d>L\rÞvC\\ŠŠ¨yóªÃO>óؼ9\u0015\u0015±œQŒ6oÞ<þüæB?rTTÔþýû¯_¿^­gŸ>}äää\u001e>|Ø©S'v3V§««ûüùóú÷ÏÈÈhð~yPnذa͚5ëҥ˜9süýýÅrNñ?E\b\u0000Ð\u0014M˜@zz4d\bùøÐ¸q\u001fÜS»qƒÖ®¥6mˆÏ'%%î\"\u0012\u0011‘¡!¥¥}P\u0005ÖýÌcj*µjÅf@ñ:þü…\u000b…[ê˜Ì4qâÄ\u0013'Np^`uêÔiûöíõïóæÍ^Ü\u000e‹J?ggçf͚uîÜYMMM\\ç\u0014©ÀjÓ¦MAA\u0001Ã0µ¾š››+ÊÉ\u0001\u0000¤Œ“\u0013ÙÚҎ\u001dôÕWTZJZZ”—GEEÔ¥\u000b­\\I\\ÿµ]¡_?ºpþ{ϊ‹ÉɉœéèÑZ–n/+£´´\u000fVù’*%%%<\u001eOYYY¸±ŽÉLýû÷ß±c\u0007Ká>®U«V¹¹¹¯_¿®ÏêV\u0002àìÙ³?þø#\u000bÁdجF؂]¤\u0002ËßßÿСC«W¯n×®]bb¢¿¿ÿ°aðî(\u00004]<\u001e͝Ksç\u0012\u0011åæ\u0012G\u001fþíνaÃhÔ(š>½âV`ÝÏ<†…ÑàÁÜä\u0014‡ÌÌÌϺw¦©©ùæÍ›ÆËSóçÏ_µjÕÆ\u001b?Ùsß¾}å£/,¤‚Ï\"Rµzõꘘ˜Ö­[\u0013‘¡¡aHHˆµµõÜò?Y\u0000\u0000š¸Ï™§Ì\u001emm²·§à`òô$ªó™Çü|Ú°þü“›œâ ¦¦ööíÛú÷/..V–Œ‚xذa\u0007\u000e\u001càóù_}õ•p{ʇ\u000f\u001c<|øp×®]§OŸf7\u001dԋH\u0005–œœÜ³gÏZÿ·‘BBB‚@ \u0010GªºX[[c\f„ikkÓúõôî\u001d×A@‚(\u0005\u0007s\u001dA‚ýô\u0013¹º’¹9ÙÚÒºu´n]-}JJhòdò÷—Ð2±~444^½zUÿþ\u001f?\u0016eï9ñÚ¹sçèÑ£_½zåíí]k‡‹\u0017/.Y²äàÁƒµÎ'ƒ†a\u0018&>>>55ÕÐÐÐÜÜücK{ԇH\u0005֒%K¾úê«iÓ¦™™™={ö,((ˆ…ÛÀqqq§Nj쫀\u0014\u00196l˜ê–-”•Åu\u0010 ¥œo¥,ɔ•éÐ!rw§Q£Èǧ–©WOŸÒŒ\u00194u*\r\u001dÊE>q277¯ÿƒ|>ßÅÅ¥±#Õ\u0013Ç\u000b\u000f\u000f_ºt©““ÓŒ\u00193œœœÊ\u000b©ÒÒÒ¿ÿþû÷ßWRRŠˆˆø¬\u0005\u001d n±±±ãǏOMM511INN6008räHåÆDŸK¤\u0002kÚ´iVVV‡\u000f\u001fŽŒŒÔÓÓ;|ø°£££('¬üü|,g\nÂJKK)1‘ÒÓ¹\u000e\u0002\u0012„iR{ßÞ¿OÁÁôï¿Ä0$/OeeÔ¡\u0003yxƒÃGߢ£C§NÑo¿ÑÀ4l\u0018Ùڒ\u0001\u0015\u0015Ñ£Gtò$åæÒo¿Q—.,þ\feÞ¼y¿üòKHHÈ'{æææž={vÑ¢E,¤ª'%%¥_~ù%99ùÀ\u0003Û¶m+)))++SRRêÝ»÷¢E‹$dÝyY2uêT\u0017\u0017—•+W*))•––._¾ÜËËëʕ+\r;›ÜǞ\u0001¬¿²²²ÌÌL\u0003\u0003\u0003¹j«§4‚ùóçÿóÏ?W¯^mì\u000b\u0014ILL4îÓ\u0007\u0005\u0016\bëem}ãÆ\rö®\u0017\u001fO;vPL\fÉɑ¼<\t\u0004¤¥E£GÓøñ¤(Î\r3ª{÷ŽæÌ¡7ohÞ<êÛ·j\u0007ž‡\u000fiûvzöŒ~ÿþ›ÅQ»ÂB:žnÞ¤ÔTRU%33\u001a:”ÌÍ\u001b13ë|}}\u001d\u001c\u001cƍ\u001bWG\u001f†a<<<¾ùæ\u001bgggւ\u0001ç¼½½\u0017-ZTy_XSS3>>¾r?¥ÜÜ\\ccãϚÆ÷\u0006ïbÈ0LZZÚàÁƒ[´h¡ªªúüùó>}ú\bï’Ø\u0018°Ù3Ԅ͞ñUó‹½Ížß¿gþŸ½;«9ûÿ\u0000þºEû.\u0015iS\b‘±&Y\u0012!Ê\u0012Q–\"Ù##»Ä\u0010\u0013YǾ/a¬Ý²/Yæ7FaDS“±•öEEI)Ýûû£¾u[E÷~>÷êý|ô‡ÏùœîyÕw\u001e_oçs>çx{óíìø·oW8Ý99™ÿë¯|KKþãÇ¢\u001a:;›ß·/ŸË­±CD\u0004ߢòùÍ\rOAA­­í™3gjêðùóç©S§úûû3™ŠˆƒJ‡=\u001f?~ǎ\u001d<\u001e¯äòðáΎŽßýáõ:*gÁ‚\u0005&&&ïÞ½STTÔ××\u001f4h‡‡‡°þÖ$„\u0010qWXˆQ£Ðº5._†µu…ÅL͚añbœ?E‹píšð‡æó1i\u0012|}1|x}:u©SpwGÃޕPVV688øÚµk“&Mzùò¥à­âââ+W®\f\u00180 OŸ>‹\u0016-ªü/_båJØØÀÚ\u001aýû£_?̟‡\u000f™‹N˜%//ïååÕ±cÇ\u0011#FtéÒeòäɟ>}\u001a÷?ßúiõš»¾~ýúëׯK–ÝIIIyyyÕçXDB\b‘0óæaÌ\u0018LœXc\u0007\u001d\u001d„„`È\u0010\u0018\u001aâ{—ÊVïôiüô\u0013¬­Ë[‚ƒ±x1\u0012\u0012н;víBÛ¶\u0000`hˆE‹°n\u001d6l\u0010æè’FNNîàÁƒááá«V­ŠoÖ¬™ŠŠJZZZVVVŸ>}Ο?ß´Òfª\u0005\u0005X¸\u0010qqðô„Oéþû<\u001e\u001e>Ä®]ظ\u0011»w—\u001f1I~\u0014666Â\\J^Ÿ¹µŽ\u001d;^¼x‘ÏçkkkóùüÛ·o·oß¾>\u001føUôˆTE\bé«ê\u0017\u0013\bÃÃù\u0013&ThárùmÚð\u0015\u0014øýúUx0\u0017\u0013÷·\u0017òè}úðsrÊ/SRøÊÊüK—ø\u001f>ðW¬à›™UèÜ»7ÿãG!\u0007diii¯_¿þXÓï$'‡ocÃ?uªÆïÿóO~Ϟü7oD\u00140¦Ò#Báª×#ÂíÛ·»¹¹\u00193&''gòäÉcǎ¥\u0019,BHC±i\u0013|}Ë/SS1q\"6mBJ\n¬¬àäT~ËÔ\u0014êꈊ\u0012ÚÐññhÖ\f‚‡¦……ÁÜ\u001cC‡BE\u0005>>ˆŽFvvùÝaÃpó¦ÐF—|ZZZ-[¶T\u0014</²Lɳ×E‹PË#¡^½pø0&MÂǏ¢\u000bI˜$''wòäIÓê|÷gÖë\u0011aß¾}ÿûï¿K—.™››ëèè¬[·®Y³fõù@B\b‘\fEEHKƒ‰IyKY‰\u0003ÀÇ\u0007~~ÈΆºzéÝÑ£qñ\"Ì̄3zL\f:uªÐbcƒ²Ùý°0\u0018\u001aVØ ´S'<~ŒŠ{‚“ê;‡öíak[ÞRí³×6m0s&6nÄêÕl%%BÄår;vìØ¹sg!~f½\n¬Ž\u001d;ž8q‚öU'„48‰‰hÙ²BKí%޹9Ν\u0013Ú肥[\tee(+ƒÏGH\bfÏÆîÝ\u0010Ü7GS\u0013™™B\u001bý[\u0015\u0017ãþ}üõ\u0017RR  \u0000\u0003\u0003\f\u001e\fCCÖòÔnçN„„”_–LLž:…Þ½±q#œœðÏ?¥·œae…¥K!'ÇJR\"D%Ûs4oÞ\\ˆŸY¯\u0002ËÉÉi÷îÝ[·n\u0015“Û\b!„!Ùٕϐ©½ÄÑÐ\u0010f‰Ó¤\tªî·œ™\t\u000f\u000fÄǃËE×®\u0015n¥§£Ò\"nfðù8t\bû÷£O\u001fôë\u0007;;äåáÍ\u001b,^ŒOŸàç\u0007qÛ*óí[èè@E¥¼¥–‰I\u000e\u0007ƒ\u0007ãΝ\u001f`¿{ҩҔ°€§OŸ~ßgÖ«ÀºuëÖÓ§O\u0003\u0003\u0003µµµ¥ÿ÷~òóçÏëó™„\u0010\"\u0001š6EÕCîj/q´µ…6z»vØ»·BËçϰµÅàÁ8{¶š£ož<aa[öOŸàæ†öíqç\u000eäåËÛ{öÄøñxñ\u0002sæ`Â\u0004LšÄt°ZDG£K—\n-µOLv¨o+°23qí\u001a^½BN\u000eš6EçÎè×\u000f4IÁ¶#\"8½´^\u0005֞={„•ƒ\u0010B$Ióæˆ­ÐR{‰ó÷ßB[€\u0005@W\u0017YYxÿ¾ü/{.\u0017ÅÅðð@BBi‹ž^i\f>\u001fW®`þ|¡^\u0017<\u001e\\]1n\u001c\u001c\u001d«ïк5.]ÂĉPR¨QŒf«EV\u0016*\u001d²TûÄdµuvM\u0012\u0013áピ\u001488 _?()!=\u001d÷ïÃ×\u0017£FaÞ<*³Xdee•˜˜Xr°ãɓ'\u001d\u001c\u001c”””êù™ßù\u0016¡’’Òû÷ïK\u0016Ø?yò¤E‹\u0016õ_oO\b!\u0012CZ\u001aÆÆxö¬¼E°Ä‰‹C\\\u001cŠ‹Ëïž9\u0003\u0007\u0007a\u0006˜;\u0017ë֕_>y‚gÏ`dTþUö\u0016áéÓèß¿Â\u001c\u0012\u0003öîÅO?•WWÁÁ05…¢\"¬­\u0011\u0013SÚ(#ƒ#G°y3ÒÒ\u0018ÍV\u000b\r\rdeUnÌ̄£#Ö¬\u0001—\u000b{û\n·Þ½«ënXü\u0001''xxàÚ5̚…¾}Ñ¥\u000b†\fÁêÕø¿ÿƒ’\u0012ì쐞.œŸ‚|»¼¼¼²?Ϛ5ë]Ýëæš}g%Š(„\u0010\"I\u0016/†Oùe-%Îǐ‘ÁÿÎ;\u0013Ž\u0011#\u0010\u001b‹+WJ/ýýÁçWø*ù‹ÿÅ\u000bì܉ª{”‹ÔçÏ8v\fÞÞ¥—µl`!/\u000f__¬_Ïh¼Z´m‹J\u000bnJ&&Û¶ExxåǾ\u0000ž>-}©°vOŸÂ×\u0017—/£Ú}\u001c\u001b5Â̙ðóƒ“\u0013>}úÞèDìÔk\u001f,B\bi¸Ú¶ÅO?aãÆÒ˚JœŒ\fxy‰d#õDZe\u000bNœ¨±Ãƒ\u0007psÃÑ£¨÷Îosû6\u0006\u000f.àUû\u001e]\u0003\u0007âáCðxŒ&¬‰‘\u0011\u0012\u0012*ìnUËÄ$Ÿ«WñՍ¿‹Š0g\u000eNœ(ñ³Úù¼\u001e=0g\u000e–-\u0013î\u000fDX$ÊcÞECGGgÀ€\u0001l§ bDNN\u000e}úT3±O\u001a0©œ\u001c&†Yµ\nS§båJøúV³î\n@L\f¦NÅÖ­ÐÕ\u0015þèJJ¸t\t‹\u0017ãÔ)xzÂÚº´¦)9Ñeï^|üˆ\u0010\u0016Nt¹\u001fƒ\u0006•_Ö¾N\u001c@ûöxõ\n­[3—°\u0016Ó§WØB¶lb²LFFé¯ôüyôîýõg¯GŽ`Ì\u0018”½ÿ_˾\u000f£GãÀ\u0001$$@OO˜?\u0011©›ˆˆ\beee\u0000_¾|‰ŒŒ,{4×µêÌeÝ|%ô(u¤®®ÞªU+‘\u000eA$‹ŒŒ\f:vDn.ÛAˆ\u0018‘ºw‰a8\u001c\u001c<ˆíÛÑ·/fÌÀС¥³\u0014|>ž<Á‘#xý\u001a\u0015þz\u0016.YYl݊ׯqü86nDq18\u001cðxèÔ\t3f G\u000fQ[»””\n\u0005eíëÄ\u0001´hädq)°œáà€{÷з/\u0000øûÃß¿šn±±Ø²\u0005W¯~ý\u0003Ϟř3嗵oH;y2Ο‡—W}\nòš4i2f̘’?ËÉÉM™2¥ìÖw/‚úÎ\u0002K\u0014Qê(&&毿þ\u0012é\u0010D²Ìš5KmÇ\u000e¤¦²\u001d„ˆ‘/\"þ—^\u0005sçbüxœ:…‰\u0013ñéSi•cf†1cJÿ’\u00165cc¬ZÅÄ@uÔ¸1\n\u000b+´Ô²\u0005€ÂB1zNJ\nǏcÄ\bx{W^Ò^æÉ\u0013̙ƒÃ‡+ì˜U-\u001e\u000fEE\u0015fìjŸÏ³±ÁôéT`1O\u0014¥Ëw\u0016X´ª\u0010BÊ5i‚9s0g\u000eÛ9ă¾>bcQöRyí\u001bX\u0000xó\u0006\u0006\u0006L\u0006ü\nuu\\¹\u0002OO\u0004\u0006bÞ<XX@êë•ÿù\u0007{÷\">\u001eçÏ£.Gý{\u0007-­\n-_ÝsŸV;ü($o\r\u0016!„\u0010±fk‹#Gʷ߬e.\u0000EEHL\u0014É\u001aµúPTÄ¡CˆŒÄÑ£å\u000bÏù|´i\u0003ggX[×õsªNæ¡Öù<\u001e¯¼˜#\u0012Ž\n,B\b!BÕ¥\u000b\u0016,@zzéäM-ëÄ\u0001\u001c<Xãf¤¬ëØ\u0011›6Õë\u0013ÔÕ+ïDZû|^BB&ƈ$ J™\u0010BˆPq8ðõÅܹàóš7°\u0000ðö-\u0002\u00031s&‹aEN[\u001b‰‰å—µoH{å\nlm™ÏHD\n,B\b!ÂÖ¿?ÌÍ1~…ê¡’øx¸¸`ÿ~ÈÊ2˜ŒqS¦`óæòËZ6¤ýò\u0005\u0018>œ•˜Dè¨À\"„\u0010\"\u0002K—ÂØ\u0018vvˆŒ¬|‹ÇÑ#pvƾ}uÚ\t]¢ÙÙáåK„‡—^Ö2Ÿçç\u0007\u0017\u0017¨ª²•”\b\u0017­Á\"„\u0010\"\u001ažž°µÅš5HJB\u001eÐÕE~>^¾Dt4\u001c\u001cpë\u0016Ó'$²åÐ!\f\u001fŽÝ»an^cŸ}ûðò%V®d0\u0016\u0011-*°\b!„ˆL›6\b\fD~>ž=Cj*ddààP¾ƒC\u0003Ñ´)Ξń\t°·Çìٕ\u001f‰&&bùr¨©áȑÊ[°\u0012IF\u0005\u0016!„\u0010\u0011“—‡…\u0005Û!X¥«‹›7qð \u0006\f€‘\u0011Úµƒª*ÒÒðð!8\u001c,]\n++¶#\u0012!£\u0002‹\u0010B\b\u0011½F0}:¦OǛ7xñ\u0002¹¹hß\u001esçBCƒídD$¨À\"„\u0010B\u0018Ô²%Z¶d;„h]ºtéäɓIIIÒÒÒ\u0000ŠŠŠ:tè0eÊ\u0014QŸV,V¨À\"„\u0010BˆpÄÆÆzxxtéÒeíÚµ-\u0005êÈ¿ÿþ{˖-\u001c\u000eg×®]ÊÊÊ,&d\f\u0015X„\u0010B\b\u0011‚ÈÈÈ\u00193f\u001c:tÈ´Ê{\f]ºt\t\f\f¼zõêСCƒ‚‚š4iÂJB&QE\b!„úÊÌ̜1cÆÙ³guk>YrȐ!ÊÊÊ\u0013&L¸|ù²Ô~êâ\u000fþã\u0011B\b!„\u0001kÖ¬Y¹r¥`uÅçó-,,ž?.ØÍÊʪgϞ'Nœ`< Ó$o\u0006«_¿~«W¯f;\u0005\u0011#ZZZ8}ºš#ëI\u0003&ãëËv\u0004B\u001aÜÜÜgϞmݺµ¬%44ôĉ\u0013áe[Ø\u000bX°`Á!C&NœÈ`@\u0016H^u÷îÝuëÖ±‚ˆ‘·oßê\u001d‹ÔT¶ƒ\u00101Rؐ^V\"„u7nܰ··\u0017l‰ˆˆPPPPPP¨ÚYQQQWW÷íÛ·\u0006\u0006\u0006L\u0005dä\u0015X„\u0010BD‡Çãýý÷ßoÞ¼ÉËËÓÖÖîÖ­›––\u0016Û¡ˆ¸‹‰‰éÙ³§`‹··7\u0000.—[mÿŽ\u001d;>þœ\n,B\b!?¾ÜÜ܀€€\u001b7nôìÙÓÄÄDEEåßÿÝ·o_aaá²eËz÷îÍv@‰—™™yóæÍ·oßæççëèèôìÙÓ¼–Ó\t%Êû÷ïÕÔÔêÞ¿I“&YYY¢Ë#\u000e¨À\"„\u0010‚ÈÈÈéӧϛ7oÕªU\u001c\u0013ñ\u0016.\\˜””´dÉ\u0012.—»aƒ}#É·zýúõŠ\u0015+>|ø0tèÐ\u000e\u001d:())%%%íÚµ+::zþüùŽŽŽl\u0007¬/MMÍwïÞÕ½ZZš±±±èòˆ\u0003*°\b!¤¡{þüù̙3Ϟ=Û¢E‹ªwuuu\u001f?¾}ûö\u00193fìß¿_Èc\u0017\u0017ãþ}ü÷\u001f²² ¥…öíÑ­Û\u000fvæqppðæÍ›·lÙÒ¹sgÁvggç\u000f\u001f>¬ZµêòåË»wt\b´DéСãG\u0006\r\u001aTÇþ\u0011\u0011\u0011\u001e\u001e\u001e\"Ä:Ú¦\u0010B\u001a´¢¢\"\u000f\u000f\u0013'NT[]•™;w®ššÚÑ£G…6ð§Oðóƒ•\u0015®\\‚\u0002ÌÍѨ\u0011Nœ€¥%víBQ‘Ð\u0006bÕ͛7\u000f\u001c8põêÕJÕU\tUUÕ-[¶ôíÛwêÔ©|>ŸùxÂbccsõêU\u001eW—Ι™™¹¹¹:::¢NÅ.*°\b!¤A;xðàèÑ£\r\r\r\u0005\u001b«ÝÁè—_~Ù³gOAA\u0010FÅ AhÑ\u0002÷ïã×_1~<\u0006\u000fÆÄ‰Ø¶\r÷î¡ \u0000C‡â[\u001e9‰§ììl__ߓ'O\n¾LWõwëêêj``pøða62\n‡œœœ­­íɓ'ëÒy͚5^^^¢ŽÄ:*°\b!¤A;sæL¥‡5¡¡¡îîîUw0’——\u001f:tè­[·ê;dZ\u001aƏǁ\u0003puEÕí¼edðóÏX½\u001aŽŽÈË«ïX¬Ú°aÃâŋ\u0005Þ«éw»|ùòýû÷\u0017Jò~~ÞÞÞûöíû÷ß\u0005\u001b\u0013\u0013\u0013+\u001d›\u0013\u0014\u0014”‘‘1tèPfÓ±€¹\u0002+;;[pþ³¸¸ø›\u0016Ä\u0011B\b\u0011ºœœœª›\u0015Õ²ƒÑ!CBCCë;ª‡\u0007¶oG›6¥—ÁÁ05…¢\"¬­\u0011\u0013SÚØ³'\u0016,Àüùõ\u001d‹Uüñ‡ƒƒƒ`KM¿[yyy[[Û»wï2\u0017NØ\u0014\u0015\u0015\u001f?>uêÔ{÷îÕÔgÿþý\u0007\u000e\u001c8pà\u0000“ÁØÂD\u0015\u0013\u0013cffÖ¤I\u0013\u0013\u0013“K—.•4&$$4mڔÑ\t!„Ô$))I__¿R£··÷Ž\u001d;ÔÕÕ«ö744LHH¨×·oC_\u001fe;Á¦¦bâDlڄ”\u0014XYÁÉ©¼§ƒ\u000322Pñ1¥\u0004‰mÕª\u0015§â‚ýZ~·\u0003\u0007\u000e¬¥4‘\b\u0006\u0006\u0006—.]Ú·oßøñãïÞ½[\\\\\\ÒþéÓ§   \u0003\u0007ÆÅÅ\u0005\u0007\u0007ËË˳›“\u0019L¼E8cƌQ£F=yò$,,ÌÅŅËåv¥M–\t!D\f\u0014\u0017\u0017ә»ÒÒÒ_¾|©×ÇŽaɒò˰0˜›£ä‘\u000füü²úcÆ\fœ:\u0005É<\u001e-))©ö÷\u0006*ÑÓÓKLL\u0014]\u001efhhhœ8qâÙ³g¿ÿþûš5kŠŠŠ¤¥¥eee­­­\u000f\u001d:¤§§Çv@æ0Q`=zôèÒ¥K222}úôÙ¹sçŒ\u00193ª=œˆ\u0010B\bÃtuu¿é/õøøøo*\u001aªñæ\r\u0004\u0017娨ÀÒ²ôÏaa04„à~•ÖÖØ¸±^ñGZZºŽoՕ(..þa¶\u0019377ÿaöPýnL<\"ÔÓÓûã?Jþìàà §§·råJ\u0006Æ%„\u0010R;uuõ¬¬¬º¯­¾y󦵵õ÷Çç£QÅØ++CK\u000b|>‚ƒáâ‚mÛ*l‚%#ƒÿ=f’8zzzqqquï\u001f\u001b\u001b[õq-‘\\L\u0014XþþþãÆëÝ»wzz:‡ÃÙ¿ÿÕ«WGŽ\u001cÉÀЄ\u0010Bj7lذ:¾]ÿå˗\u000b\u0017.Ô}3ɺÊ̄£#Ö¬\u0001—‹Š\u0007\u0006K´\u0016-ZÄÇÇ×ý‰êµk×\u0006\f\u0018 ÒH„IL\u0014X#FŒxùòå‚\u0005\u000bJÖµijj>xð`ɒ%‹\u0016-b`tB\b!µ˜3gξ}û222¾ÚsóæÍNNNJJJß?\u0018‡ƒJ\u0005ÇçϰµEÛ¶\b\u000fGÕ幟?Wžñ’(öööuéùþýû\u0007\u000f\u001eX–=-%’¡ÿputtFŒ\u0018Qv)++kee¥¨¨ÈÌè„\u0010Bj¢  °yófggçóçÏ«ªª–µWZ›uá…°°°sçÎÕw¼Ö­\u0011\u0015\u00053³ÒK.\u0017ÅÅðð@Ùˉzz([Š\u0014\u001aо}ë;\"{æÎkcc3hРf͚\t¶W]÷æíí½xñâozဈ9ÖþeðàÁ\u000377·\u001f?ÖÔáüùó{öì©Ôøâŋ\t\u0013&¬–Ì7JˆˆhiiáôiHò\u0006}Dèd|}َ I,,,–.]jgg·aÆ^½zUºûñãÇõë׿yó&00P\b\u0015À¤Iøí7ìÝ[zùä\tž=ƒ‘Qy‡Œ\fhj–þyÏ\u001elÞ\\ß\u0011Ù#//¿sçÎqãÆ={VKK«Ú>|>͚5Mš4±ÿ\u001e\u0012\u0000\u001c±=ü¨¸¸8''§RãòåËcbbž={ÆJ$\"ž\"##[\f\u0018€ôt¶ƒ\u00101ÒÍØøÑ£Gl§0‰‰‰+W®LJJ\u001a2dH«V­TTT’““ÿøãˆˆˆ9sæ8;;s„u\u0006³£#\u0016,ÀW\u001f‡=‹?þÀo¿\tgPö<|øpÞ¼y‹\u0016-ªºøøÍ›7\u000b\u0017.477÷ññ\u0011Ú¯—ÔÙÔ©S—.]jll,Š\u000fgt\u0006‹Çã}üøQII©.ÿ\u0006’––®º\u0015›¬¬laaavv¶h\u0002\u0012‰Äãñðá\u0003è¿\nBê§E‹\u0016‡\u000e\u001dúðáÃ͛7ÿý÷ߒãxÝÝÝúé'!ÿÝ¿o\u001fìí±w/:t¨±Ï½{ؽ\u001b—/\u000bs\\–tïÞýêÕ«¿þúë¦M›,,,LLL\u0014\u0014\u0014’’’þïÿþ¯qãÆ>>>´7ä\u000f‰‰\u0002«  `ýúõ§NŠýò勴´´‘‘Ñøñã—.]*++Ë@\u0000B\b!u¤ªª:zôhюѤ\tNŸÆ„\tpq»{åeìùùز\u0005ý…óçñ£lù­¦¦ö믿\u0016\u0017\u0017?~ü866¶  à§Ÿ~š>}º††\u0006Ûш¨0Q`M›6-55uÿþýfff***¹¹¹ÏŸ?\u000f\b\b˜5kÖÁƒ\u0007\u0019\b@\b!D¼èéáÆ\rì܉>}Э\u001b:u‚š\u001a޽ãGˆŠ‚‡\u0007BBª9\u0007ZÂIKK÷èÑ£G\u001el\u0007!L`¢À\n\t\t‰‰‰){‡BCCÃÒÒ200ÐÀÀ€Ñ\t!„ˆ#YYüü3æÏÇß#&\u0006ññÐÔÄܹå/\u0018V‡Çã=xðàÑ£Giiiòòò-[¶\u001c4h\u0010lKÄ\u0010\u0013\u0005–¡¡áµk×&Ož,Øxýúõ\u0006u&\u0011!„jp8èÚµš\u001d°ªàñx\u0007\u000f\u001e<x𠕕UïÞ½{öìùéÓ§çϟ»¹¹©ªªúùù\u0019\t¾ŠH\bۘ(°\u000e\u001c8ààà\u0010\u0010\u0010`ff¦¬¬œ››\u001b\u0013\u0013“™™\u0019\u0012\u0012ÂÀè„\u0010B$]nnî¤I“ºvíz÷î]99¹²vkkë™3g>~üxÒ¤I%;M°\u0018R\u0014þûï¿   ¨¨¨´´455µ6mÚ\f\u001b6Ì‚í\\äë˜(°;^­’\u0000\u0000 \u0000IDATºví\u001a\u001f\u001f÷îÝ7oÞdgg«««{xxôëׯ‘$ïÏK\b!„\u0019ÅÅÅ...3fÌ\u0018:thµ\u001dºvízõêÕÑ£G+))õéӇáx\"’°páB\u0000ãÆsuuÕÒÒÊÌ̌ŽŽ>~üøŠ\u0015+6lØÐ¹sg¶3’Ú0Tâ4jԈŽX\"„\u0010ò\u001d6mÚ4pà@ÁêŠÏç÷ìÙóȑ#¦¦¦%-JJJ'Ož´³³»uëV½\u000eó\u0011\u000f\u001e=š7oÞöíÛ\u0005wpÐÒÒÒÒÒ²¶¶ŽŸ2eÊ´iӜœœX\fIj÷£½£A\b!äG’““\u0013\u0012\u00122{ö첖ÐÐPww÷ðððJ=544<==·oßÎl@ዋ‹óòòâr¹5폥¯¯ùòåcǎݹs‡ál¤î¨À\"„\u0010\"¾._¾<zôhé²Ó\tˆˆ\b\u0005\u0005\u0005\u0005\u0005…ªœœ®^½Ê`:‘ðôôÜ·oŸàÑ:|>ßÂÂâùóçe-²²²Ë–-+((`##ù:*°\b!„ˆ¯?ÿü³Ò\n\u0013ooï\u001d;vT=ê\u0003@ãÆ›6mš™™ÉT:á{ðàAóæÍÛ·o_ÖRӌššš««ë¡C‡˜\rHꊖ™\u0013B\b\u0011_ÉÉÉ-Z´¨{==½¤¤¤&Mšˆ.’H;wÎÕÕU°¥–\u0019;ggç±cÇΚ5ë\u001b\u0006øò\u0005wïâÆ\r$$  \u0000-ZÀÊ\nC†@E¥žÉI%T`\u0011B\b\u0011_\u001b7.**ª{ÿ¢¢¢Æ\u001b‹.¨=}útÆ\r‚-ÞÞÞ\u0000¸\\nÕΪªªßöˆðÂ\u0005\u0004\u0004 Œ\u001c\t##4nŒäd„†ÂÎ\u000eC‡báÂÊÇ\u0016‘z _%!„\u0010ñ¥§§\u0017\u001b\u001b[÷½Úãââ¾iÆKÜðx<Á\u0005g_¥¤¤”——§¨¨ø•~|>–,AV\u0016®]«0YÕ¤\t:t€§'v\u0003N‚ªêw\u0005'•Ñ\u001a,B\b!âkàÀW®\\©cç¼¼¼ÂÂBeee‘F\u0012+ùùù‚;¯ÖhýzÈÊbÿþê\u001f\u0005JKcÎ\u001cxyaÂ\u0004\u0014\u0017\u000b=dÃ$y3XÆÆÆfµžTE\u001a\u001a%%%L˜€œ\u001c¶ƒ\u00101\"ýì\u0019Û\u0011ˆpôïßõêÕ\u000b\u0017.üú$\r°k×.\u0017\u0017\u0017\u0006R‰Ž––VRR’®®n]:óùü¯Ïxýó\u000fÂÃ!ø18\u0018‹\u0017#!\u0001Ý»c×.´m\u000b\u0000¶¶ˆŒÄîݘ3ç»ó“2’W`\u0015\u0015\u0015Ñ[©D\u0010ÇÇ\u000fxÿží „\u0010ᓑ‘ñòòZ²dÉo¿ý&؞˜˜X©ç‹\u0017/.]ºtûöm\u0006Ó\tŸ\u001d—Ë\u0015Ü÷«\u0016aaa]ºtùz¿5kàï\u000f\u000e§ô25\u0015\u0013'âÔ)ô\u001báä„þ)½5w.úôÁôéäulâ‚/Q¼¼¼,--Ùþ\u0011ñòöí[¾Ž\u000e\u001f /ú*ûêÚµ+ÛÿwE„ÉÓÓsýúõµtxýúuϞ=_½zÅX$\u0011ùøñ£……EAAA¥v]]ݘ˜˜JöööÑÑÑ_ùļ<þÀ\u0015Z‚‚øVV¥þü™Ïáð³²Êï._οuë;’K\"wwwÑý7Ck°\b!„ˆ»mÛ¶}üøq̘1±±±•n\u0015\u0017\u0017\u001f:thÒ¤I‡\u000f\u001f666f%ž\u0010)**Ξ=»äÍAA‰‰‰eç\u0002•8tèP«V­Úµk÷•OŒŒD¥S\u000bmlpþ|éŸÃÂ`h\b5µò»½{£Êž[ä;HÞ#BB\b!\r\r‡ÃY»ví£GæÏŸÿùóç\u001e=zèèè\u0014\u0014\u0014üûï¿QQQÇ\u000f¿y󦼼<Û1…c„\tOŸ>]¶lÙÚµk¥¤ªŸ\u00079~üxPPPPPÐ×?.5\u0015͚UhQV†²2ø|„„`ölìÞ]þô\u0010@óæ¸|¹>ùI\t*°\b!„H†nݺq¹Ü÷ïß?}ú499YWWwÀ€\u0001?äkO\u0001\u0001\u0001›7o\u001e4h¯¯¯•••à­ÿþûoõêÕêêêçϟoT—m«\u0014\u0015‘—W¹13\u0013\u001e\u001eˆ\u0007—‹J'\u001eæå¡\u000eï\u0013¯¢\u0002‹\u0010Bˆ$QSSëׯ\u001fÛ)DîçŸvttܸqãâŋuuu›6múáÇ·oßêëë/X° NkÛK\u0018\u0019áĉ\n-Ÿ?ÃÖ\u0016ƒ\u0007ãìYT}\u0003ñ¿ÿв¥\u0010~€\u0006\n,B\b!D\u001c\u0019\u0018\u0018ìØ±\u0003@zzzFF†ººº¶¶ö7mC\n\u0000&&xù\u0012EEå/\u0006r¹(.†‡\u0007\u0012\u0012J[ôôÊ+­‹\u0017±u«p~€†\n,B\b!D¬iiiiii}ÿ÷\u0019ƒ\u0003\u00070sféå“'xö\fFFå\u001d22 ©\t\u0000ÑÑàñ É[á‹\u000fz‹\u0010B\bù¡Íš…“'ñòe饿?øü\n_%ÕU~><=±~=‹I$4ƒE\b!?¢´4ܹƒ¤$\u0014\u0017CW\u0017}ûÒ´DÃ%#ƒ#G0a\u0002\u000e\u001fFŽ\u001eÊåä`Â\u0004̞6m˜\r÷â\u0002‹\u0010B~,ϞaåJ\u0000°µE›6’BB\u0002æÏÇǏXµ\n=z0ŸˆÇㅅ…]¿~=..®°°P[[ÛÒÒrðàÁ*՞‹GDÁØ\u0018'OÂÍ\rC‡böì\nï\t\u0016\u0017#(\b›7cõj\f\u001cÈ^Ä\u001f\r\u0015X„\u0010ò\u0003Ù·\u000fAAغµò<Äôéxû\u0016^^°°ÀâÅL&ºuëÖêÕ«»ví:lØ0wwwYYٔ””Û·oÛÙÙÙÙÙ-\\¸°1ÊÂ\f##ܾ£G1|8ddв%\u001a7Fb\"’“1p ®^…ª*Û\u0011(T`\u0011BȏâàA„‡ãâET»=’\u0001.\\À…øõW,YÂL\"ÿˆˆˆ   ͒U>\u0000\u0000mmíN:yyyíÝ»×ÞÞþÔ©SêêêÌäi褥1e\n¦LAn.\u0012\u0012PT„fÍPŸåó¤f´È\u0010B~\bÿý‡Ó§±woyu\u0015\u001c\fSS(*ÂÚ\u001a11\u0000Àá`ãF<|ˆ°0\u0006\u0012íÙ³'!!áÔ©S‚ÕU\u0019))©™3g.Y²ÄÙÙ¹¨¨ˆ<¤œ²2Úµƒ¹9UW¢C\u0005\u0016!„ü\u0010|}\u0011\u0010P^]¥¦bâDlڄ”\u0014XYÁÉ©´ÃÁ–-X½ZÔqbccϝ;·mÛ6ŽÀ1,|>ßÂÂâùóçe-ýúõ³··ß²e‹¨ó\u0010Aoß¾ý¿ÿû¿[·nEGG\u0017\u0017\u0017³\u001dçÇD\b\t!Dòåæâý{tìXÞ\u0012\u0016\u0006ss\f\u001d\n\u0000>>ðóCv6JžÄ\u0019\u0018@I\t\t\tÐÓ\u0013]\"??¿uëÖ\tîŠ\u0019\u001a\u001azâĉð*\u0007\tϘ1£wïÞsæÌQPP\u0010]\u001e\u0002   `×®]\u0017.\\000011iܸqJJʳgÏÌÌ̖/_®'Êÿ\u001e\u001a É+°”””ZÒ.þD@£F``\u0000ú¿f\"@pÖ¤Aøë/ôî]¡ÅÆ\u0006––¥\u000e\u000bƒ¡!ÔÔÊïÚÚâÞ=L˜ ¢8EEE/^¼èÞ½»`cDD„‚‚BÕ*JZZÚÞÞþæÍ›Ã‡\u000f\u0017Q\u001e\u0002 &&fêÔ©“&Mº{÷n¥C\fÿüóÏ\t\u0013&L:uâĉlÅûñH^ejjêèèÈv\n\"FTTT0g\u000e>}b;\b\u0011#Ž\u001ca;\u0002³’’ ¯_¡EY\u0019ÊÊàó\u0011\u0012‚Ù³±{7\u0004‹N}}DDˆ.΋\u0017/ªžÁìíí\r€ËåVíß·oߋ\u0017/R%:%ÕՉ\u0013'\f\r\r«Þµ²²ºyóæôéÓsssg͚Åxº\u001f“ä\u0015X\u001f?Þ¾};Û)ˆ\u0018\u0019<x°Ò…HMe;\b\u0011#E]»²8zttô¹sç\u001e=zôéÓ'\u0000úúúC†\fqpp——\u0017ՐRRàñ*7ffÂÃ\u0003ññàrQé\u0017ÂãAJ„kpSSS›5kV÷þººº)))¢ËÓÀ\u0015\u0014\u0014xxxœ<yÒÀÀ ¦>222\u0007\u000e\u001c\u00189rdçΝ-,,˜Œ÷£¢Eî„\u0010\"4iiiÎÎÎk×®íÞ½ûéÓ§oß¾\u001d\u001a\u001aº|ùòÄÄÄþýûÿþûï¢\u001a¸E\u000b¼}[¡åógØÚ¢m[„‡W®®\u0000Äʼnt\u0001–‚‚B~~~Ýûçåå)\nn}I„jçΝ®®®•ª«ª/\u001cHKKïܹsŊ\u0015Œ\u0007ü1QE\b!Â\u0011\u0013\u00133bÄ\bOOÏS§N\r\u00192¤¤bàp8­ZµZ°`ÁíÛ·ïÞ½»XD›|ZZâ?*´p¹(.†‡\u0007\u0012\u0012\u0010\u0017‡¸8\b¾,vý:¬­E’\u0004\u0000`hhø²ìä»:xñ⅑àÙÃD¨‚‚‚&Ož,Ø\u0012\u001a\u001aêîî^õ…\u0003===\u0003\u0003ƒèèh\u0006Óý°¨À\"„\u0010!x÷»ûï¿ÿnY¶´¼\"yyù={öHIImÞ¼YøÃ+( E\u000b\bþ}ùä\tž=ƒ‘QùWvvé­\u0017/ÀçCGGø1þ§Y³fééé\u0005\u0005\u0005uì\u001f\u0012\u00122dÈ\u0010ÑåiÈââ⌌Œ*­j¯é…\u0003\u0000Æ\r»~ý:Sé~dT`\u0011Bˆ\u0010,[¶ÌÏÏOð)LÕG0\u0000üüü®]»\u0016\u001b\u001b+ü\u0004«Wcñb”Õ4þþàó+|•ìöY\\\f//¬Y#ü\u0000\u0015M˜0açΝué\u0019\u0017\u0017—””Ô¾}{QGj˜Þ¾}kll\\©ÑÛÛ{ǎ\u001dÕn obb\u0012\u0017\u0017ÇD²\u001f\u001d\u0015X„\u0010R_\t\t\tÉÉÉÖ\u0002\u000fÝjz\u0004#%%õË/¿üúë¯Â\u000fa`€9s0q\"j™7úò\u0005Ó§ÃÁ¡ÂŽY¢1yòäK—.ýûᅰÚ\u0013\u0013\u0013MMM\u0005\u0012}™5kÖºuëD§Á*((••­{99¹ºO=’ZPE\b!õ\u0015\u0012\u00122nÜ8Á–Z\u001eÁXXXDEEñª¾ôW£GÃÉ\tƒ\u0007ãáÃjîþó\u000fìì`a\u00193„?t\u0015\u001a5:zô¨»»{TTTM}òóó'Nœ8zôè.]º0\u0010©ajÖ¬YrrrÝû'&&6oÞ\\ty\u001a\u000eÉÛ¦\u0010BÄMDDÄÒ¥K\u0005[jÙó\t€±±qRR’H6Î\u001e3\u0006]»Â×\u0017ÉÉè×\u000f††àp€»w¡ªŠíÛ!0{$júúú§OŸvuu\u001d4h§§§à{‚|>ÿúõëk×®ýùçŸG\u001aÅX¤\u0006¨]»v‘‘‘uïûöí¾}ûŠ.OÃA\u0005\u0016!„ÔWzzzÓ¦MëÞ_KK+--MT'“\u0018\u0019áØ1äåáÏ?‘˜\b\u001e\u000fææ˜9\u0013ªª\"\u0019®Vúúú·nÝ:~ü¸ƒƒƒ‚‚‚±±±¬¬lrròëׯ{õê\u0015\u0014\u0014ôM¿7ò\u001d\u001a5jÔºuë\u0007\u000f\u001eôìÙó«?þ|ëÖ­•+W2\u0010ì‡G\u0005\u0016!„Ô—ªªjNNŽŠŠJ\u001dû¿ÿ¾ÚõŤ¨ˆAƒD;DÝHKK»¹¹¹¹¹egg'$$|üøQOO¯E‹\u0016\rî8#öøøø¸ººÞ¸q£qãÆµ÷ܸqãäɓ¿ÚÔ\u0005\u0015X„\u0010R_­ZµŠŽŽnÑ¢E\u001dûÇÆÆêêêŠ4’\u0018RWW\u0017yYIª£¯¯ïææ6sæÌ}ûöI\tìàŸ˜˜(؍Ëå>}úô̙3Œ\u0007ü1Ñ\"wB\b©¯aÆ]¸p¡Ž\u0013\u0013\u0013UTTäääD\u001a‰\u0010A®®®æææ£FªTT•øüù³ŸŸ_``àÑ£G¥Dy†RƒB3X„\u0010R_;wŽ‹‹‹‹‹«ö$ÝJÖ¬Y3oÞ<ч\"¤\u0002OOÏ.]º¸ºº¶lÙrèС&&&222ÉÉÉ·oß¾y󦛛ÛÙ³gé¹­\u0010QE\b!BàïïïááqéÒ%Á=‡ªÎ\u0016„„„äååõë×\u000f\u0005\u0005xõ\niiPQ±144˜ÍK\u001a\"KKËÐÐШ¨¨ëׯ߾};??_WW·wïÞ+V¬‘‘a;ݏ†\n,B\b\u0011‚N:yxxŒ\u001e=:00Pµ†÷õ.\\¸°k×®KëÖaÜ8¤¦¢cGhk#;\u001bÿý‡‚\u0002̜‰‘#AS\bDÄÌÌÌÌÌÌØNñã£\u0002‹\u0010B„ÃÉÉ©I“&ƒ\u0007\u000föðð\u00187nœà.£QQQëׯW—¿Ö­[£õë±~}åý¨Þ¿‡¿?\u000e\u001fƱc •à„H>É+°lmm·oßÎv\n\"Ftttpý:ŠŠØ\u000eBĈÌܹ¬ŒkccÓ³gÏ}ûö988\u0014\u0017\u00177iÒ¤   ;;ÛÔÔtþüù]\u000f\u001c€š\u001a‚‚ªùN55¬_{÷àà€Ë—Qç\u001d\u001f\b!âIò\n¬\u001b7n¬ZµŠí\u0014DŒ¼}ûVÐ ¤¦²\u001d„ˆ‘®]Ù\u001aZAAÁËËËËˋÏç§§§+++—Ne\u001d<\bUU,^\\Û7÷틕+ááÓ§™IK\b\u0011\u0011z\u001b“\u0010BD‚Ãáhkk—VW\u001f?âàA¬YS~;8\u0018¦¦PT„µ5bbÊÛ\u0007\u000e„Š\nþøƒé¸„\u0010¡¢\u0002‹\u0010BDË…³3Ê^ÔJMÅĉش\t))°²‚“S…΋\u0016aß>æ3\u0012B„ˆ\n,B\b\u0011½ë×ao_~\u0019\u0016\u0006ss\f\u001d\n\u0015\u0015øø :\u001aÙÙåw[µB\\\u001cã\u0011\t!Â$yk°\b!Dò$'C_¿üÒÆ\u0006––¥\u000e\u000bƒ¡!ÔÔ*ô×Ð@n.”•™KH\b\u0011*šÁ\"„\u0010Ñãñ x\u0002‰²2´´Àç#8\u0018..ض­òöWrrÈÏg8#!Dˆh\u0006‹\u0010BDOY\u0019\u001f>@p\u0003ÒÌLxx >\u001e\\.ª¾ó˜‘\u0001MM&\u0003\u0012ñ—››{íÚµˆˆˆ’·S[·nmggg``Àv.R=*°\b!Dô,-qç\u000eFŒ(½üü\u0019¶¶\u0018<\u0018gÏBZºrç\u001f!+\u000b:sWÌ¥¤ $\u0004\u001f#-\rªª02°aèÖM\u0014{ñçåå­_¿þ?þ\u00181bİaôµµsss£¢¢\u0016,X\u0000`ýúõ­Zµ\u0012ú ¤ž¨À\"„\u0010Ñ\u001b=\u001a\u000b\u0017–\u0017X\\.Š‹á၄„Ò\u0016=½òJëøq\f\u001fÎBHRGïßcÅ\n¼z…qã°p!´µ‘—‡˜\u0018\u001c;†%K°n\u001d,,„8Zbb¢‹‹Ë̙3׬Y#x\u0018s§N&L˜\u0010\u0019\u0019éîî¾téÒ!C†\bqPRT`\u0011Bˆè™˜@S\u00137nÀÖ\u0016\u0000ž<Á³g02*ïPöL0#\u0003ǏãÎ\u001dvr’¯zó\u0006\u0013'bÙ2\f\u001dZÞ¨ªŠæÍacƒ¤$L›\u0006GGL™\"”ÑrrrœwíÚÕ¡C‡j;tìØñʕ+£FRUUµ,{s‚ˆ\u0001š‚&„\u0010F\u0004\u0004à—_J÷\u0014õ÷\u0007Ÿ_᫤ºÊËÃøñؼ\u0019²²ì†%ÕËÎÆÄ‰8|¸Bu%HW\u0017ÁÁ¸~\u001dÁÁB\u0019pÑ¢EK—.\u0015¬®ø|¾……ÅóçÏËZ”””Nž<¹`Á‚‚‚\u0002¡\fJ„‚\n,B\ba„ª*\u0002\u00031m\u001aΝ«¾CT\u0014†\fÁüùÂ}ÀD„iÉ\u0012øú¢uëÒËj·ãoÔ\b‡\u000fÃß\u001fïß×s´ØØØääd;;»²–ÐÐPww÷ðððJ=555ÝÜÜöïß_Ï\u0011‰\u0010QE\b!L14ĕ+xô\bÖÖøí7<~Œ„\u0004DEá÷ßáä„U«pè\u0010h%ØŠ‹CJJéC^Ôº\u001d¿‚\u0002\u0016,À¶mõ\u001cðܹs®®®‚-\u0011\u0011\u0011\n\n\n¥ç/U4~üøzŽH„ˆÖ`\u0011B\bƒ”•Kç6®^Åï¿#-\rêê01Á¯¿¢eK¶Ã‘Z]¸€\t\u0013Ê/˶ã\u0007àã\u0003??dgC]½ôîðáØ¶\r¾¾õ\u0019ðÁƒ\u0007îîî‚-ÞÞÞ\u0000¸\\nÕÎJJJÅÅÅÅÅÅÒUßK%l \u0002‹\u0010B\u0018§¦\u0006gg8;³ƒ|‹G*üOVûvü\u001aAY\u0019yyPTüî\u0001³³³544êÞ_[[;##CGGç»G$BD\b\t!„:ÈȀ–VùåW·ãoÖ\f))õ\u0019PZZº¸¸¸îý\u000b\n\näääê3\"\u0011\"ɛÁ277wpp`;\u0005\u0011#jjjX¾\u001cyyl\u0007!b¤QuÏP\b©\u0017yyäçCI©¼¥öíøóò*tþvºººqqqÆÆÆuìÿîÝ;µJ‡Z\u0012öH^•ððáC¶S\u00101âêêªrñ\"23Ù\u000eBÄH1mƒN„ÎÈ\b/^ sçÒËÚ·ã\u0007”TaÆëÛ\r\u001a4èÒ¥KóæÍ«K縸8]]Ýú\fG„Kò\n¬¬¬¬¿ÿþ›í\u0014DŒ\u0014\u0016\u0016\"2\u0012©©l\u0007!b„_u:z\u001a2\u0004!!å\u0005VíÛñÇÇC[»žç\u001d\r\u001f>|àÀ3f̐­Ã¾h\u001b7nôðð¨ÏpD¸è\u001fy„\u0010BH\u001d\f\u0018€›7ñáCéeÙvüe_ÙÙå×¯Ç̙õ\u001cPQQÑÃÃcŊ\u0015•Ú\u0013\u0013\u0013MMM\u0005[îÞ½›––fccSÏ\u0011‰\u0010QE\b!„ÔAãÆX¾\u001csæ€Ï\u0007jގ\u001fÀ͛ÈÊBÿþõ\u001fsòäɹ¹¹\u001b6l¨¥Ï_ýµbŊ\u0003\u0007\u000eÔ8\"DT`\u0011B\b!ucg\u0007SS̝‹/_jìsë\u0016Ö¬ð6UßµkWNNΨQ£^¼xQéVnn®¯¯ïÚµk¹\\.-o\u00177’·\u0006‹\u0010B\baÍò娻\u0017\u0003\u0007bõjôéSáVZ\u001aÖ­CR\u0012.]‚ŠŠ°\u0006”’’Z»víÓ§OW¬XñîÝ;sssmmíÜÜÜèè蜜œiÓ¦­ZµŠSi‡\b\"\u0006¨À\"„\u0010B¾Åôé\u0018:\u0014þþXº\u0014††ÐÑAN\u000ebc!/Ù³1x°(Æìԩә3gòóóŸ?ž––¦¢¢âååÕ´iSQŒE„‚\n,B\b!ä\u001bµhß~\u0003Ÿ”\u0014¤¥AQ\u0011úú\u0010ý&Ÿòòò?ýô“¨G!BA\u0005\u0016!„\u0010ò]8\u001c4oŽæÍÙÎAÄ\u0011-r'„\u0010B\b\u00112*°\b!„\u0010B„Œ‰G„ÏŸ?¯éV¥­Ò\b!„\u0010B~\u0000L\u0014Xnnnááá\n\n\nêêê•n%&&2\u0010€\u0010B\b!„IL\u0014X\u000f\u001e<pwwWPPرc\u0007\u0003Ã\u0011B\b!„°‹‰5X\u001c\u000egüøñ†††\fŒE\b!„\u0010Â:†¶i°±±¡C(\t!„\u0010Ò@°¶\u000fVRRRDDİaÃjꐘ˜Xuu|||¼¶¶ö€\u0001\u0003DœŽH\u0012999ô郬,¶ƒ\u00101\"•“Ãv\u0004BHƒÆZõàÁ\u000377·\u001f?ÖÔ!))éï¿ÿ®Ô˜žžÞ¦M›Ö­[‹8\u001d‘$222èØ\u0011¹¹l\u0007!bDêÞ=¶#\u0010B\u001a4Ö\n¬Ñ£G\u001e=º–\u000e=zôèÑ£G¥ÆÔÔԇ\u000f\u001fþõ×_¢ŒF$̬Y³Ôvì@j*ÛAˆ\u0018ùÒµ+Û\u0011\b!\r\u001a£\u001bòx¼œœ\u001c\u001eÇ䠄\u0010B\b!\fc¢À*((ðõõmݺµ¬¬¬ªªªŒŒL«V­V­Zõùóg\u0006F'„\u0010B¾Ó‡\u000fØ»\u0017Ç£X[£̞;w؎E$\u0000\u0013\u0005Ö´iÓ\u001e<x°ÿþÔÔÔÂÂÂôôô£GFFFΚ5‹Ñ\t!„ï±?†\f´4\u000e\u001eÄíÛ¸s\u0007¡¡˜2\u0005\\.\u0006\rÂ˗lç#b‰5X!!!111͚5+¹ÔÐа´´\f\f\f400``tB\b!¤zÑѸ|\u0019±±ÈɁ¶6ºwǐ!PU\u0005\u0000OOÈÊâÞ=4n\\ޟÃA—.èÒ\u0005/^`òdøû£W/¶²\u00131ÇDehhxíڵɓ'\u000b6^¿~]OOÑ\t!„Ê\"\"°t)š5Ãȑ°·‡ª*RSñÿ\u0007\u0007\u0007ôé\u000399hh`õê\u001a¿½uk„„ÀÞ\u001e02b07‘\u0018L\u0014X\u0007\u000e\u001cppp\b\b\b033SVVÎÍ͍‰‰ÉÌÌ\f\t\ta`tB\b!¤‚\u0013'pô(öî­P\u001b5oŽÎ1w.¶nÅÚµˆŒ,¿\u0015\u001cŒÅ‹‘€îݱk\u0017Ú¶\u0005\u0000\r\rìÚ\u0005ooœ?Ït~\"\t˜(°ºví\u001a\u001f\u001f÷îÝ7oÞdgg«««{xxôëׯQ#Ö6‰ „\u0010Ò@]¹‚óçqé\u0012ddª¹ËáàÕ+lÚ\u0004\u0017\u0017\\¹\u0002EE¤¦bâDœ:…Þ½±q#œœðÏ?¥ÍÍ!/èh´oÏäO@$\u0002C%N£FhûuB\b!,ûð\u0001k×âÆòêªÒ씩)\"\"°c\u0007””àãƒÍ›\u0011\u0016\u0006ss\f\u001d\n\u0000>>ðóCv6ÔÕK¿}Ü8p¹T`‘ª\u0018Ý\u0007‹\u0010B\baÓ¶m˜?\u001fJJ¥—%³S›6!%\u0005VVprBf&tuÁá`ôhDE!%\u000566å\u000f\u0001ÃÂ`h\b5µò\u000fìÖ­|B‹\u0010\u0001T`\u0011B\bi0nÜÀȑå—e³S**ðñAt4Þ¼A“&¥wǏGp0”•¡¥\u0005>\u001fÁÁpqÁ¶màpÊ?AS\u0013\u0019\u0019Œþ\bDBPE\b!¤aÈɁ†\u0006\u0004—ÿV20@vviK¿~xð\u0000\u000023áèˆ5kÀåÂÞ¾ÂgfgCCƒìDâPE\b!¤aHMÅÿvd,UuvªiS$%•ÞmÞ\u001c))øü\u0019¶¶hÛ\u0016áá¨zÆed$LM™\bO$\r½ÇG\b!¤a—G~~åÆÌLxx >\u001e\\niýdb‚þA‡\u000eÈχ¼<¸\\\u0014\u0017ÃÃ\u0003\t\t¥ß¢§\u0007iéÒ?Ÿ;\u000777†ò\u0013‰B3X„\u0010B\u001a\u0006\u001d\u001d$&Vh©vvêçŸñË/\u0000ðâ\u0005ŒŒðä\tž=ƒ‘QùWÙ3ÄØX¼~îÝ\u0019ü\u0019ˆÄ \u0019,B\b!\rCãÆPRBZ\u001a´µK[ªêØ\u0011zzØ·\u000fÉÉ\u0018<\u0018ƒ\u0007Ãß¿šO+(€»;¶ne(<‘4’W`ÙÚÚnß¾í\u0014DŒèèèàúu\u0014\u0015±\u001d„ˆ\u0011™¹sَ@LJ\u0007\u0002\u0002°qcéeÙìT™Œ\fhjbÃ\u0006Œ\u001a…¨(,_^ýç¼{‡\t\u0013à鉎\u001dEž™H&É+°nܸ±jÕ*¶S\u00101òöí[ýAƒšÊv\u0010\"F\n«.F&ÌzõêÕñãÇÿüóO\u001eÇápx<^§Nœ{ôèÁf,{{ìۇ¿þ‚¥%\u0000øûW?;Õ¨\u001144е+ìí±h\u0011úö-_t•‘\u0013'pö,6n,ý\u0010Bª#y\u0005\u0016!„\u0010qöùóçE‹\u0016½~ýÚÓÓsùòå222\u0000x<Þ£GöìÙ³qãÆÝ»w7mڔµ|‡\u000fÃÁ\u0001[¶ ¦RÇÃâÅÐÓÚ5ˆÅ¾}X½\u001aRR’\u0002\u0007%%Œ\u001c‰»wѸ1³¹‰„¡\u0002‹\u0010BˆÐ|üøqäȑ“'OÞ¶m›`»””T\u001e=zôèñàÁƒáÇ\u001f?~ÜØØ˜ˆššàr1q\",,àí\reå\nw\u001f?Ʋe\u00186\f%O™Œ°~}é­ââòy,B¾†\n,B\b!ÂÁçó]]]þùç!C†ÔÔ§gϞGŽ\u001cquu½zõªr¥â†1ZZ¸v\r§OcäH((ÀÄ\u0004ªªHIAt4ZµÂž=hÙ²šï¢êŠ|\u000b*°\b!„\bGPPPëÖ­+UW|>¿¤¨2ý߆œ­[·öôôô÷÷_»v-\u001b1\u0001\u0000\u001c\u000eƍøqÈÊB\\\u001crs¡­\r\u0013“\nû¼\u0013R\u000fô_\u0012!„\u0010áøí·ß‚‚‚\u0004[BCCOœ8\u0011\u001e\u001e^©§““Óo¿ý–ŸŸ///Ï`ÀêhhÐY7D\u0014h£QB\b!B˜˜¨©©©¦¦&Ø\u0018\u0011\u0011¡     P©3‡Ã±³³\u000b\r\re0 !Œ¢\u0002‹\u0010Bˆ\u0010DGGwéÒ¥R£··÷Ž\u001d;ÔÕÕ«öïܹsTT\u0014#Ñ\ba\u0001\u0015X„\u0010B„ ++Kã[žµ5mÚôÝ»w¢ËC\b»¨À\"„\u0010\"\u0004\u001a\u001a\u001aYYYuïÿîÝ;MMMÑå!„]T`\u0011B\b\u0011‚¶mÛ>}ú´îýŸ>}Ú¶m[Ñå!„]T`\u0011B\b\u0011\u0002}}ý”””ÜÜÜ:ö¿|ùò€\u0001\u0003D\u001a‰\u0010\u0016QE\b!D8fΜ¹±ì\u001cåZ\u0005\u0005\u0005õìÙSQQQԑ\ba\u000b\u0015X„\u0010B„cìØ±OŸ>½™G|ý\u0000\u0000\u001a×IDATsçN¥öÄÄIJ]F\u0001ÄÅÅ\u0005\u0004\u0004,[¶ŒÙt„0Š6\u001a%„\u0010\"\u001c\u001c\u000eçØ±c#FŒÈÉÉ\u0019>|xµ}ž>}:kÖ¬C‡\u000e©ªª2\u001c\u0010&Ñ\f\u0016!„\u0010¡QSS»råÊŋ\u0017nj\u0019sÿþ}\u001eWv+**ÊÓÓsŊ\u0015çΝ\u0013œÐ\"ä‡$y3X–––^^^l§ bDSS\u0013ûö¡ €í DŒ4Þ²…í\b\r—‚‚\u0003\u0007þù矣G._¾\u001c\u0000‡Ãáñx­[·vvvîß¿?Û\u0001\ta‚ä\u0015X\u001f?>xð Û)ˆ\u0018‰ŒŒTX¸\u0010éél\u0007!b¤Èؘí\bLãóù\u0017/^<wî\\BBBIA###cccãêꪣ£Ã|ž\u000e\u001d:\u0004\u0004\u00040?.!bBò\n¬ÂÂÂììl¶S\u00101Âãñðá\u0003è¿\nҀýóÏ?žžžVVV>>>­Zµ*iüôéÓÕ«Wǎ\u001d;lØ0ooo\u000e‡ÃnHB\u001a\u0014ZƒE\b!’íΝ;sæÌ9vìØÚµk˪+\u0000\n\n\nŽŽŽwïÞ-,,œ4i’àr(Bˆ¨QE\b!\u0012ìÕ«W+W®¼xñ¢¾¾~µ\u001d8\u001cÎòåË»téR²\u001cŠ\u0010Â\f*°\b!D‚-\\¸pïÞ½***e-|>ßÂÂâùóç‚ݼ¼¼bbb¢££\u0019\u000fHH\u0003E\u0005\u0016!„Hª¨¨(eeåvíڕµ„††º»»‡‡‡Wí¼zõjZuN\bc¨À\"„\u0010I\u0015\u001c\u001c<vìXÁ–ˆˆ\b\u0005\u0005\u0005\u0005\u0005…ªÍÍÍ_¾|I+±\ba\u0006\u0015X„\u0010\"©¢££;wî,Øâíí½cÇ\u000euuõjûëëë§¥¥1\u0012†Ž\n,B\b‘TYYY\u001a\u001a\u001auﯩ©ùîÝ;Ñå!„”¡\u0002‹\u0010B$U“&M²²²êÞÿÝ»wššš¢ËC\b)#y\u001b\u0012B\b)Ñ®]»'Ož\f\u001d:´ŽýãããµµµE\u001a‰ˆVA\u0001BCñÇ\u001fHI”\u0014\f\f0`\u0000,-!-Ív2R\u0019Í`\u0011Bˆ¤rpp8sæL\u001d;GFF¶jÕJJŠþo_2ñùؽ\u001bÖÖxò\u0004#F`ýz¬Z…~ý\u0010\u0012‚>}pñ\"ÛùHe4ƒE\b!’ªC‡\u000e\u001f>|ø÷ß\u0005wj¨‰¯¯ïÚµk\u0019HE„/?\u001fnn03ý{‘)o74„µ5޿ǂ\u0005¸\u001fë׃\u000eD\u0012\u001bôO\u0019B\b‘`\u0001\u0001\u0001Ó§OÏÍÍ\u0015lLLL455\u0015lÙ¾}»©©iûöí™MG„ÏÇÔ©\u00185\n>>\u0015ª«2jj8x\u0010²²ðóc<\u001c©\u0011\u0015X„\u0010\"ÁLLLV­ZeooŸPm\u0007>Ÿÿ믿†‡‡ûÑß¾\u0012êäI\u0018\u0018 lóà`˜šBQ\u0011Öֈ‰)ï¶j\u0015\u001e?FD\u0004+\u0019IUT`\u0011Bˆd³±±Ù¾}û„\t\u0013V­ZõæÍ›²öüü|.—Û¿\u000e‡\u0013\u0018\u0018H«¯$\u0012Ÿ;±lYéej*&NĦMHI•\u0015œœÊ{r8\b\bÀ/¿°\u0012“T%yk°ŒÍÌÌØNAĈ’’\u0012&L@N\u000eÛAˆ\u0018‘~öŒí\bŒêرã;wBBB|||’’’x<^£F8\u001cŽÍɓ'›5kÆvÀ\u001f\u0010ŸÏ\u000f\t\tùý÷ߓ““¥¥¥‹‹‹9\u001cN÷îÝ'OžÜ¶m[¡\róø1ºuƒ’RéeX\u0018ÌÍQòÞ¨\u000füü²}eMLŸ÷&´\u0000ä{I^UTTTPPÀv\n\"Fx<\u001e>|Àû÷l\u0007!„MRRR#FŒ\u00181b\u0004ÛA\u001a„\u0017/^LŸ>½W¯^ëÖ­322*i,..¾ÿþ’%Kôõõ\u0003\u0002\u0002dee…0RX\u0018úô)¿´±¥eù-CÃʵ”¥%ž<AÿþB\u0018šÔä\u0015Xñññýõ\u0017Û)ˆ\u0018\t\b\bÀŋHMe;\b\u0011#Å]»²\u001dü°ÂÃÃ\u0017,XpôèQcccÁviié>}úôéÓçäɓööö\\.·ÚC!¿Mj*ºt)¿TV†²2ø|„„`ölìÞ]ùµA]]$'×wP\"\f’W`\u0011B\b!lINNž?~pppÓ¦Mkêãâ⢤¤äîî~êÔ©úŽ'/üü\n-™™ðð@|<¸\\Tý‡Ä§O¨á$JÂ0ZóH\b!„ÔÕòåË\u0003\u0002\u0002\u0004«+>ŸoaañüùsÁn\u000e\u000e\u000eM›6½víZ}Ç34Ä˗嗟?ÃÖ\u0016mÛ\"<¼šê\nÀ‹\u0017øß#KÂ.*°\b!„:IIIIOO·,[\u0005\u0005„††º»»‡‡‡Wí¼bŊ­[·ÖwH[[\\¾\\~É墸\u0018\u001e\u001eHH@\\\u001cââP\\\\~—ÏǓ'07¯ï D\u0018è\u0011!!„\u0010R'—/_vtt\u0014l‰ˆˆPPP¨v­•–––””Ôû÷ïÕêóNŸ–\u0016\u0014\u0014ðô):u\u0002€'OðìY…9ªŒ\f”\u001dàýûï°µ\u0005íÇ!\u001eè\u0006B\b!¤Nbbb:•\u0014:ÿãíí½cÇ\u000eõ\u001a–=™™™½\u0014|À÷}üüàåUº\u0012Ëß\u001f|~…¯²ê*)\t¿ý†\u0005\u000bê;\u001c\u0011\u0012šÁ\"„\u0010\"±\n\u000bqë\u0016®]C\\\u001c>†¶6,,0b\u0004š7\u0017ÅhÙÙÙ5ÕRÕÒÐÐÈÊʪï¨&&ðò‚“\u0013Nž„²rõ}\u0012\u0012àìŒÝ»ËwÌ\"l£\u0019,B\b!’)(\b}ûâÑ#¸ºâäI\\º„µk¡¤\u000477̟¼<¡\u000f¨©©ùîÝ»º÷OOO×ÒÒ\u0012ÂÀ#FÀÓ\u0013¶¶\b\u000e\u0006Ÿ_áVQ\u0011öîŸqØ»—V_‰\u0015šÁ\"„\u0010\"1òóóÿûï¿´´4¥S§L\n\u000bµoܨ0©£¯I“0i\u0012Οǐ!8u\nººB\u001cÝÌÌìï¿ÿîÖ­[\u001dûGEE™˜˜\bgl[[t놀\u0000l؀–-¡¯¢\"ÄÆ\"-\r#Gâöm\be_S\"<T`\u0011B\b‘\u0000‘‘‘~~~ééé:uÒ~ùòcfæ¿ÍšeÙÛO:ÕÅÅ¥òI‹ŽŽ06†‹\u000b®\\¢¢°2ØÙÙ9;;Ϙ1£.\u0013\u0013\u0013åää”kz¨÷\u001dÔÕQrb÷Û·HJB£F00€¶¶Ð>Ÿ\b\u0015\u0015X„\u0010BÄ\u001aŸÏ_µjUddäúõëMMMñú5fÏÆýû’ÊËËÛ¼yó/]ºø|ü(œŒîݱk\u0017JŽ\u0002ìÔ\tÓ§cݺҢD\u0018455Û´isýúõAƒ\u0006}µ³Ï¢E‹„5t\u0005\u0006\u000600\u0010É'\u0013á¡\u0002‹\u0010BˆxHIÁ™3\b\rŇ\u000f’‚¬,úöÅØ±ž›77oÞ<((¨´›Ÿ\u001füüJ6#PTTôñð(þõ×%\u0006\u0006K££5\u000e\u001e„“\u0013þù§´§³3úõ\u0013îáÇ«W¯¶··o×®žž^Ycbbb¥nǏ\u001f—••µ²²\u0012Ö¸DâÐ\"wB\b!lûò\u0005+WbüxhiáøqÜ»‡;wpá\u0002Úµ;æè(óçŸËæÍ+ïùòe…ãù¤;w\u001e±¿ÛܹðñAt4²³Koq8ptĕ+BLÚ¤I“ýû÷\u001d;6\"\"¢Ú\u000e|>ûöí\u0017.\\ؾ}»\u0010Ç%\u0012‡\n,B\b!¬ÊÏ/ÝX!4\u0014ÎÎPU-mWPÈ·µÝ-'·nÙ2ØÙ!=\u001d\u0000^¿æ·kWáh\u001a\u001b\u001bœ?ß«W/ccã°­[ahXa¾ÊÊ\n\u001f\u000b7oûöíϞ=ëëë;}úôG\u001eñÿ÷Z_^^ޅ\u000b\u0017\u0006\f\u0018ðþýûóçÏËÈÈ\bw\\\"Yè\u0011!!„\u0010V¹»cÊ\u0014Œ\u001aUõNÉÎérNN00(Y±\u001ezõꉇ\u000fß>-郎\feeðù+:tà̙ƒÓ§Áá”ßÕÑAjªÐ#ëêꆄ„Ü¿ÿøñã\u000b\u0017.”’’âñxrrrÖÖÖǎ\u001dÓ\u0015꫋DBI^¥¤¤Ô²eK¶S\u00101Ò¨äUšêŽª \r\u0016Gð¯X\"΂ƒÑ¼y…ê*8\u0018‹\u0017#!\u0001Ý»Gjjº¬Y\u0003\u0000=z`Ä\bìÜ\u0019\u0011\u001f¯ÀçW>š&3\u0013\u001e\u001eMâ㧙šî\u0019:´Â£™Ü\\¨¨ˆ({¯^½zõê%¢\u000f'’Nò\n¬Ž\u001d;N:•í\u0014DŒ¨©©aùr\u0014\u0014°\u001d„ˆ‘F[¶°\u001dÔͶm8¾ü25\u0015\u0013'âÔ)ô\u001b§lÝÚ,0°ôÖôéèÝÛûâE¼zÅ\u0015ÜíóógØÚbð`œ=ûÁÅåÝ»w\u0015öö|þ\u001cÆÆŒü$„T y\u0005Ö_ý\u0015\u0010\u0010Àv\n\"FÞ¾}«?mš(ž\u0002\u0010ÉUÔµ+Û\u0011H\u001dÄÇ£iS\b\u001e>\u0013\u0016\u0006ss\f\u001d\n\u0000>>\u0006k×ò?~,ÝB³qcô틘\u0018\u0014\u0014€Ç+ÿ\u0016.\u0017ÅÅðð@BB‹/_¾¼z…&M -]z78˜Žç#¬¼\u0002‹\u0010BÈ\u000f\"2\u0012Ý»Wh±±¥eéŸÃÂ2\u0014\u0015y……:ew{ôÀ³g˜:\u0015\u001e\u001eåßòä\tž=ƒ‘\u0011€M\u0000.\\@FFé\u0011ȱ±HJBûö\"þ1\b©\u0006½EH\b!Ì)..Žˆˆ¸xñbppðÇ\u000f\u000b\u000b\u000bÙNΌ\f4mZ¡EY\u0019ZZàó\u0011\u001c\f\u0017—p\u0017—Ûwî”ßÕÒBZ\u001aœœPT„gÏJ\u001býýÁçƒÏÏÿôɦðù¥ÕUa!¦Odž\rLý0„T@\u0005\u0016!„0!33ÓÛÛ»wïއ\u000f\u001f~õêÕÛ·oϜ93`À\u0000\u000f\u000f„„\u0004¶Ó±DM\rïßWnÌ̄£#Ö¬\u0001—ûÓʕǎ\u001d+¿•\r\r\rp8PW‡¿?îß\u0017ü¾“'OÚÛۗ^äæbÜ8¸¹ÑùDŽ-ôˆ\u0010BDîΝ;˖-[±bEÕ%¤÷ïß\u001f?~üìٳǎ\u001dËJ66µn«W+´\b¬X‡´t\u000bÀÔÔô…\u000b£J^3ŒŠB‡\u000e\u0000 %…]»àç‡Ö­±h\u0011´µ333\u000f\u001c8pûöm\u0014\u0015!(\b[·båJ\f\u001eÌÂ\u000fE\b\u0000*°\b!DÔBCC7lØpõêUµê\u000eléի׍\u001b7¦L™òùóçI“&1\u001fMíÛ#*\n……(ۓS`ÅzIƒß/¿ØÙÛ\u001b\u001a\u001avîÜ\u0019×®aÞ<”\u001dMsñ\".]´iyYYãß¼\tèÒE~Ì\u0018ää`à@\\»&ºÝ\u0019\b©\u000b*°\b!D„ÒÓÓW®\\yåÊ\u0015Õ²\rÊ«““;zô¨]—.]Ú7´\u0015ÙãÇcÏ\u001e̝[z)°b½„bFÆï¿ÿîâââÖ©ÓÄ®]¥*í€5lX”¡áìY³\u0016®[׫G\u000f´h\u0001%%\u0006Ó\u0013R#*°\b!D„Ö¬Y³jÕªJÕ\u0015ŸÏïÙ³ç‘#GLMMKZ\u001a7n¼}ûöe˖•\u001fiÜ@L›\u0006[[ôí[ºXÊß\u001fþþ•º4\u0003®\u001c8°ÁÚºOóæÃ7n´´´ÔÑÑÉÍ͍ŽŽ.ùu\u001d8x°U«VÌg'¤\u0016Œ\u0016X<\u001eïãǏJJJRR´¸ž\u0010òã+,,|öìÙo¿ý&Ø\u0018\u001a\u001azâĉðððJÛ¶mËçóSSSuttÐp4nŒÀ@Œ\u0019ƒM›Ð³gõ}þûO~Ê\u0014ߋ\u0017½ML®]»våʕÔÔT\u0015\u0015•V­Z\u0005\u0004\u0004\u0018\u001a\u001a2\u001a˜ºa¢À*((X¿~ý©S§bcc¿|ù\"--mdd4~üø¥K—Ê–l\u001fG\b!?¢‡\u000f\u001fV=J%\"\"BAA¡òa/\u0000€Áƒ\u0007‡††Ž\u001f?ž‘tbCW\u0017ÁÁpw‡¾>æÏ¯°ñzr2öìÁýû8~\u001c-[*\u0002ŽŽŽŽŽŽìe%¤®˜(°¦M›–ššºÿ~333\u0015\u0015•ÜÜÜçϟ\u0007\u0004\u0004̚5ëàÁƒ\f\u0004 „\u0010V$$$\u0018\t,'*áíí\r€ËåVíß²eË¿ÿþ›‰dâ¦iS„„àÖ-øúâí[()AZ\u001a\u001f>@K\u000b..X½\u001at¸$‘4L\u0014X!!!111͚5+¹ÔÐа´´\f\f\f400``tB\baKaaaãÆëÞ_FF¦Ao=:`\u0000\u0006\f\u0000Pz\u0018\u000eàN$\u0019\u0013k¡\f\r\r¯]»V©ñúõëzzz\fŒN\b!liÞ¼yRRRÝû'$$èêêŠ.Ä“£êŠH:&f°\u000e\u001c8ààà\u0010\u0010\u0010`ff¦¬¬œ››\u001b\u0013\u0013“™™\u0019\u0012\u0012ÂÀè„\u0010Â\u0016\u000b\u000b‹M›6Õ½ÿ­[·–-[&º<„\u0010Æ0Q`uíÚ5>>þîÝ»oÞ¼ÉÎÎVWW÷ððèׯ_£F´I\u0004!äG¦¬¬¬¬¬üï¿ÿ¶k×322âããÛ´iÃ@0Bˆ¨1Tâü{w\u001bÓäõÆqü.íŠJ\u001f\u0003n\u001d\u0006TœZc†Ût\u001b‰ÌфøbŽŠ\u000fA’9C&>DŒK\u0016¶Ì¨“é6\u0013\u0013–™lÎe˜Åhb¶¡ àL4>ƉÌ8ABŠ\u0011\u0005,H\u0011»\u000eڈ`Ëýqg\r¡úß\u000e-ŒïçÕéÅ9=WÒ\u0018iOO5\u001aM¦òÉú_ÚÛÛ¯]»ööÛoG¦\u0001\u0000ˆŠ¢¢¢Âªªª'^OóñÇ\u001foÞ¼92]\u0001\u0018n*Y–£²qiii^^žÏçû»\tGŽ\u001cÙ·oߐbssóøñãããㇹ;Œ&\u001aFå÷G»\u000bŒ,õ/*?Z7\u00028Î\u0007\u000f\u001e<þ­©ÖÖÖþþ~nË\u001c>n·Ûçóñå*\fæt:Ϝ9“˜˜8\u001cO\u001eµ€…éÓO?]°`Íf‹v#\u0018Al6ÛÙ³g£Ý\u0005Â())±Z­éééaÿÚÐÐpòäÉM›6©Õê\b7\u0006`˜p“;\u0000\f»üüüÇüuöìÙcî'\bÿºH\u0004‡\u000f\u001fnß¾}ƌ\u0019±±±F£Q«ÕNŸ>½¨¨¨¯¯/\u0002»\u0003\u0000\u0000DX$\u0002ÖÚµk«««¿ÿþ{—ËÕßßïÞ½\u0003\u0007\u000e\\¿~}Æ\r\u0011Ø\u001d\u0000\u0000 ¸É\u001d\u0000\u0000@0nr\u0007\u0000\u0000\u0010Œ›ÜG+µZÍ\u0017Ž0\u0004—÷\u0002À\b\u0011¡k\u001aü~ÿà›ÜSRR¸Éý_zðàÁ¸qãø>&\u0006óz½z½>Ú]\u0000\u0000¸\u0007\u000b\u0000\u0000@4Þÿ\u0000\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`J²,§¥¥566F»\u0011Œ\u0014ǎ\u001d³Z­qqq6›ÍápD»\u001dŒ\t.—K¥R}õÕWÁJUUUFFÆ?{¶C‡\u000e­\\¹RLgƒ|øá‡f³ùÞ½{Ê̌\fUˆ¶¶6áû>Þ…\u000bÇý%++K)^½zõ•W^1›Íyyy}}}\u0011n\tÂ\u0011°FŸÓ§O¯^½º¦¦&ڍ`¤p¹\\ï¾ûnqqqGGGzzzNNN´;ÂX¡R©vìØ\u0011ù€òôJJJ\u001c\u000edzÏ>«<¬ªªòx<\u001e'))©²²R\u0019'&&F¸«\u001b7nœ8q¢¶¶¶¶¶vïÞ½’$ùý~»Ý¾qãÆ†††ööö/¾ø\"Â-A8\u0002ÖèsíÚµ\t\u0013&L˜0!ڍ`¤¸|ùòœ9s\u0016-Zd0\u0018¶mÛÖÐÐàñx¢Ý\u0014Æ\u0004­V›ŸŸ¿iÓ¦!õ˗/§¥¥\r\u0019755͟?¿°°0!!!==½ººúÕW_Õëõ\u001f|ð2³··777×h4¦¥¥Õ××+Å\u000b\u0017.¼ôÒKñññï¼óNGG‡$I\u0019\u0019\u0019Ÿ}öYjjêàM\u001c92sæL£Ñ¸téRå-«%K–tww¿öÚk]]]Ê\u001cNg2™L&SLLLp\\VV6da \u0010ذaƒÙlNHHعsgØJØÞÂNÓétUUUÁ>\u001f=zÔÙÙùÆ\u001boX­V«Õš””$IÒùóçFã{w˜˜¸uëÖÇ\u000f\u000by\u0010M2F§I“&9\u001cŽhw\u0011¡§§§³³S\u0019Ÿ?~êÔ©\u0003\u0003\u0003Ñm\tcAGGGll¬×ëMJJª¨¨e¹²²òÍ7ߔe¹ººúõ×_W¦\u0005Ç7oÞT©Tû÷ïw»ÝsçÎ}î¹çZ[[ýõWI’Ün÷Áƒ\u0007%I:pà@OOÏÖ­[­V«ßï¿ÿ~|||EEÅ\u001fü±nݺÌÌLY–\u001d\u000e‡Ñh\\¿~}]]]°™[·n\u0019ÆS§N¹Ýî¼¼¼œœ\u001c¥n4\u001a½^ohó“'O>{öìß-üùçŸg̘qûöíßÿ=66¶©©)´\u0012¶·ÐiJ±­­-¸uSS“ÉdÊÊÊJIIÉÍÍu:²,÷ÝwÁžïß¿¯Ñh\u0002€Ð—\u000b‘ÆÏ-\u0003£ž^¯×ëõ²,WTT\u0014\u0014\u0014|ûí·*•*ÚMa¬Ðét_ýuAAÍf{âd³Ù¼jÕ*F“™™éóù’“““““'MšÔÓÓ#IÒܹsW­Z%IÒöíÛ÷íÛwóæÍšš\u001a›Í¦œRúòË/\u0013\u0012\u0012\u0006\u0006\u0006$I\n\u0004\u0002{öìÑjµÁg®¨¨ÈÎÎÎÌ̔$i÷î݉‰‰@@­V?±¥°\u000bý~ÿÀÀ€×ë}ùå—ÛÚÚ\f\u0006Õ+W†T\u000e\u001f>\u001cÚ[èBI’–/_>xG—Ëe±XÖ­[7mÚ´]»våää\\ºtÉãñ\u0004©Ý`0øý~ŸÏ§,Ç(EÀ\u0002þ\u000bÜn÷š5kîܹS^^>oÞ¼h·ƒ±Ån·ÿðÃ\u000fEEEaO¸Ë²\u001c\u001cOœ8Q£ÑH’¤Ñh,\u0016‹RT*’$M™2%XINNîììt:Ç\u001f\u000fÎT«Õ’$Y,–ÁéJ’$—Ë\u0015\\>qâD­VÛÕÕ\u0015\\ø\u0018a\u0017._¾¼££Ãn·ÇÄÄ\u0014\u0014\u0014lܸ1´\u0012¶·Ði¡;Ο??øM”½{÷\u001a\f†®®.³Ùìõz•¢×ëU«Õ:î‰Íc$ã\f\u00160êõõõ-\\¸pÖ¬Y555¤+DŞ={JJJêêê‚\u0015¿ß¯\fžþ\b|ss³2èïïoiiIJJ²X,+V¬p¹\\.—ëîÝ»õõõJ \t}kÊb±´¶¶*c·ÛÝßߟð4›†]èt:—-[ÖÜÜ|ôèÑC‡\u000e•••…VÂö\u0016:-tǚššsçÎ)c­V«V«Ÿy晔””`êjllœ2eJL\fÿAn¼~À¨W^^\u001e\b\u0004Ö¬Yãt:[ZZZZZ\u0002@´›ÂؒœœüÉ'Ÿ|þùçÊC“ÉTWWwýúuÇóÍ7ß<å“ÔÖÖîß¿ßãñlÙ²å…\u0017^˜:uê[o½uüøñsçÎýùçŸ;vìÈÍÍý»¿³²²ÊÊÊΜ9ãñx\n\u000b\u000bív{ð±Ç\u000b»°´´Ôn·ß½{×l6«ÕjŸÏ\u0017Z\tÛ[è4I’JKKÛÛۃ;ööö.Y²äâŋÝÝÝÛ¶mKOO7™L\u0019\u0019\u0019n·ûرc½½½ÅÅÅÃqc\u0005\"-ڇÀð\u000fqÈ\u001dA\u001f}ôѐ×]]]Ñn\nÿ}Ê!÷àÃG\u001e͙3G9ä>00ðþûïëtºÔÔÔ\u001fü1xÈ}æÌ™Êä-[¶ìܹS\u0019Ož<¹¹¹ùàÁƒk×®ÍÎÎ6\u0018\f\u000b\u0016,¸uë–ò×_~ùeÖ¬YãǏ·Ùlʙq‡Ã\u0011|žÁ~úé§éÓ§ëõúŋ\u0017»\\.¥øÄCîa\u0017vwwgeeÅÅÅ™Íæüüü¾¾¾ÐJØÞÂN‹‹‹«¬¬\u001c¼{qqñóÏ?¯ìØÞÞ®\u0014ûí·ÔÔÔøøø¼¼¼‡\u000f\u001fþ¿/\u0007F\u001a•<èÓq\u0000\u0000\u0000ü{|D\b\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bö?\u0018XŸ—[7›ò\u0000\u0000\u0000\u0000IEND®B`‚",
+      "body": "‰PNG\r\n\u001a\n\u0000\u0000\u0000\rIHDR\u0000\u0000\u0003 \u0000\u0000\u0002X\b\u0002\u0000\u0000\u0000\u0015\u0014\u0015'\u0000\u0000 \u0000IDATxœìÝy\\Mùÿ\u0007ðw»–›6\tE–\u0012ƒ,¡ÂTv!ƒlY¦¤\u0018»‘]c÷µ±ŒÈÞ-…L™\u0018K13veK{))-´Þûû#¿º­“îéœ{ëõ|ôGçs>ó*‡Þ>çs>GF(\u0014\u0012\u0000\u0000\u0000\u00000G–ë\u0000\u0000\u0000\u0000\u0000õ\r\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u000eøùù™˜˜¨ªªÚØØDDD\u00147\u001e8pÀÐÐPEEÅÚÚ:22²âWyyy\u0005\u0005\u0005\u0011Ñ?ÿüÓ½{wMMMGGǼ¼¼rÝ\u0006\u000f\u001eÜèÿ\u001c9²¸111qèСêêêæææ/_¾$¢³gÏz{{×á7\tߨҫ¢ÒFQ5¼*ŠEFFª©©Uӈ«\u0002\u0000€1B`WRR\u0012Ç\u000b\b\bøôéÓêÕ«;uê$\u0014\n_¿~­  \u0010\u001c\u001cœ””4gÎ\u001c\u001b\u001b›r_õåË\u0017kk뢢¢‚‚‚æÍ›\u001f>|8!!aàÀ¿üòK¹ž-[¶¼qãFDDDDDDlllqcϞ=·mۖ””´hÑ\"kkk¡P˜——geeUXXX÷ß1ü·J¯ŠJ\u001bEÕüª\u0010\n…………\u0016\u0016\u0016rrrÕ4âª\u0000\u0000`\n\n,¶ùúúöíÛ·øó¼¼<\u0019\u0019™\u001f?&&&òx¼°°°ÌÌL77·±cǖû*///OOO¡P\u0018\u001c\u001cÜ¡C‡âÆÐÐP###ÑnùùùJJJ\u0005\u0005\u0005¢\u001e=211\u0011\b\u0004B¡077÷ñãÇÅíîîîÞÞÞuð-Â7«ôª¨´Qô«jxU\u0014Û±cǸqãÊ\u0015X\u0015\u001bqU\u0000\u00000\u0002·\bÙ6`À€‹\u0017/\u0016\u001e\u0016\u0016fhh¨¡¡Ñ¬Y3\u000f\u000f\u000fssóƍ\u001b\u001f=zôÀ\u0003å¾*00°ÿþDôöíÛΝ;\u00177vêÔéÝ»w\u0002 ¤[ll¬²²ò˜1cÚ¶m;iÒ¤øøx\"zòäIûöígΜillìàà ¡¡QÜÙÆÆ&00°®¿_¨‰J¯ŠJ\u001bE¿ª†WEq‡ýû÷ÿúë¯ÿو«\u0002\u0000€\u0011(°ØÆãñtuu…B¡ŸŸŸƒƒÃ®]»ddd\"##7nÜxïÞ½œœœ\u00193f899•ûªçϟ·mۖˆÒÓÓy<^q£ººzaaavvvI·ääd==½™3g\u0006\u0006\u0006***Ž\u001f?žˆÞ¿ùòå\u001e=z\u0004\u0006\u00066oÞ|„\tŝ۶mûìÙ36¾gø/•^\u0015•6Š~U\r¯\n@àâââéé©®®^}#áª\u0000\u0000`ˆ<×\u0001\u001a¢´´4\u0017\u0017—ØØX>ŸoffFD—/_\u001e6l˜¹¹9\u0011­[·®qãÆŸ>}jܸqqÿ¬¬¬ÜÜÜâß šššYYY%írrr¢Ó–ûôéS2\u0015zïÞ½êêê©©©\u001a5úþûïgΜID[·nUSSûð჎ŽN‹\u0016-¢££\u000b\n\n\u0014\u0014\u0014Xüî¡r\u0015¯Šª\u001a‹Õüª8tèPóæÍ‡\u000f\u001fþáÇê\u001b‰\bW\u0005\u0000\u0000#0‚Ŷ¼¼¼Áƒ\u0007wèÐ!<<¼äWfQQQÉ=\u001d¡PX<˸Ò/oÓ¦MI\t\u0015\u0019\u0019ihh(+[ú‡\u0018\u001e\u001e\u001e\u001a\u001aZü¹¢¢¢œœœ‚‚‚AI\u0007YYYYYY999\"*7\u001c\u0002\u001cªôª¨´±RÕ_\u00157nÜð÷÷×ÑÑ166.**ÒÑÑ\t\u000b\u000b«´‘pU\u0000\u00000\u0004\u0005\u0016Ûø|~QQ‘‹‹K\\\\\\ttttttQQÑðáÃ}}}oݺõéÓ§•+WöéÓGt¶\rÇkÔ¨Qñ\u0010…µµuZZšŸŸß—/_<==§L™RÜç…\u000b\t\t\t_¾|\u0019=zôíÛ·?}úäîîÞ·o_\r\rÁƒ\u0007?}úôìÙ³™™™îîîæææšššD”`hhˆ\nIPéUQicɗÔüªøí·ß^¼xñèÑ£ÐÐPYYÙG\u001euëÖ­ÒFÂU\u0001\u0000À\u0014N§Ø7DK—.-÷Gšš*\u0014\nϞ=kll¬¦¦6|øð’å\u0015J\f\u001b6ìáÇş߿¿K—.ÚÚڎŽŽ¹¹¹Åªªª—/_\u0016\n…žžžÍš5ãñx£FJHH(Þû×_uéÒEMMmèС111ōþùç¤I“Xø–á?UzUTu©”¨ùUQ,55µÜS„\u0015\u001bqU\u0000\u00000BFXÅ­((¿ýö[^^ÞÏ?ÿÌà1׬YcddT2Ú\u0001R\u0007W\u0005\u0000€ÄB%\u001drss‡\r\u001b\u0016\u0012\u0012\":·F\u001cùùùƒ\u0007\u000f\u000e\u000e\u000e–—ǃ\u000eÒ\nW\u0005\u0000€Ä’[»v-×\u0019à¿ÉËËggggdd´k׎‘\u0003^¸p¡k×®]»veähÀ\t\\\u0015\u0000\u0000\u0012\u000b#X\u0000\u0000\u0000\u0000\fÃS„\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0\u0014X\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0\u0014X\u0000\u0000\u0000\u0000\f“²Õn>|øðçŸrB\"DDD¤¤¤(**r\u001d\u0004$Hvvö Aƒ¸N\u0001\u0000 \u001ddeeíììêèå`RV`ݸqÃÏÏÏÊʊë Ü{ÿþ}jjª’’\u0012×A@‚|úô)==ë\u0014\u0012aɒ%[·nå:\u0005\u0000H´\u0013'NtíÚµmÛ¶uqp)+°ˆ¨OŸ>®®®\\§\u0000\u0000‰¶lÙ2üC\u0001\u0000Õ»ÿ~Ý\u001d\u001cs°\u0000\u0000\u0000\u0000\u0018†\u0002\u000b\u0000\u0000\u0000€a(°\u0000\u0000\u0000\u0000\u0018†\u0002\u000b\u0000\u0000\u0000€a(°\u0000\u0000\u0000\u0000\u0018†\u0002\u000b\u0000\u0000\u0000€a(°\u0000\u0000\u0000\u0000\u0018†\u0002\u000b\u0000\u0000\u0000€a(°\u0000\u0000\u0000\u0000\u0018†\u0002\u000b\u0000\u0000\u0000€a(°\u0000\u0000\u0000\u0000\u0018†\u0002\u000b\u0000\u0000\u0000€aÒ÷²g\u0000\u0000h rs)$„^¾¤ÔTÒÕ¥Ž\u001dÉÆ†\u0014\u0015¹Ž\u0005P\tŒ`\u0001\u0000€ÄË̤U«hÀ\u0000zôˆŒiäHj׎îÝ#kkÚ°>æ:\u001f@y\u0018Á\u0002\u0000\u0000Éöú59:Ò…´q#ÉȔ¶\u001cI¿üBÞÞ4d\b<I††œ%\u0004¨\u0000\u0005\u0016\u0000ÔCªªª\\G\u0000†$%я?ÒɓԶm%{eeiÚ423#\u0007\u0007º|™´µYÏ\u0007P9é+°¢¢¢¼½½¹N\u0001\u0012¤oß¾†øŸ+”%+‹ù\u000fõÅ̙äåUZ]ùùѲe\u0014\u0017G½zÑÞ½Ô¡\u0003\u0011Qǎ´e\u000býô\u0013;ÇaR\u0000QÒW`…‡‡{zzr\u0002$ˆ\u000f\n,('++‹ë\bÀ„ÐP20 îÝ¿n&'ÓÔ©äãCýúÑÖ­4~<=}úuWß¾tð =x@={r\u0015V\\YY\u0014\u0017G¹¹Ô´)µhÁu\u001a\u0010—ô\u0015X\u0000\u0000ÐPx{Ó…¥›aadjJÇ\u0013\u0011¹»Ó¦M”žNšš_÷ΚE>>ÒW`\t\u0004tæ\f\u001d;F²²Ô®\u001d))Qr2½{G––´t)éêr\u000fj\t\u0005\u0016\u0000\u0000Hª×¯©S§ÒÍ\u0001\u0003ÈÒòëçaadhH\u001a\u001a¥{{÷¦•+Y'¾ÄDš6úõ£\u000b\u0017H]½´](¤  \u001a3†\u0016, qã¸Ë\u0007µ‡\u0002\u000b\u0000\u0000$U¹¹t<\u001eñx$\u0014’¿?͙Cûö•y¨Pê&Þ%&ÒØ±´w/uëV~—Œ\f\r\u001dJÖÖ4c\u0006}üH3gr‘\u000fĂ\u0002\u000b\u0000\u0000¤GZ\u001a¹¸Pl,ñùdfÆu\u001a1\b\u00044m\u001aíÛG]»VÙ§Q#:~œ~øºt!\u000b\u000b\u0016Ã\u0001\u0003¤­Þ\u0007\u0000€†C   t3/\u0006\u000f¦\u000e\u001d(<¼’ê*?_š\u0006±¼½ÉƦLuåçG&&¤ªJ66\u0014\u0011ñµQNŽöí£Õ«9É\b␞k\u0011\u0000\u0000\u001ašîÝ)<¼t“ϧ¢\"rq¡¸8ŠŽ¦èh***Ý{ó&õéÃ~ÆZ:~œ\u0016,(Ý,~@Òӓ’’¨o_\u001a?¾t—¾>\u0019\u0019ÑÇìg\u0004q À\u0002\u0000\u0000IåèH»v•nþû/=~L­[—~¤§—îݳ‡¦Ne?cm¤¥‘š\u001a©©•¶”< ©®Nîîôüy™oÍΎ®^e?&ˆ\u0003\u0005\u0016\u0000\u0000H*SSRQ¡ÀÀ¯›\u001e\u001e$\u0014–ùÐÑùºëìY24$##®’~›ØØò\u000bÓ\u000f\u0018@\u0017/~ý¼â\u0003’ÆÆôî\u001d{ñ€\t˜ä\u000e\u0000\u0000\u0012lÏ\u001e²µ¥Æ©oß*ûüñ\u0007ýþ{i\u001d&ùrr¨Üۜª@RU•rrXÎ\bbB\u0005\u0000\u0000\u0012LU•|}iòdêӇ~þ™TTÊìÍÊ\"\u000f\u000fzþœ|}©Q#Ž\"~;==JJ*ßXÍ\u0003’‰‰Ô¬\u0019ké€\u0011(°\u0000\u0000@²iiQ` <IC‡R«VÔ½;ijÒǏôà\u0001%&Ҝ9´aC™ñ\u001eÉצ\rEF–i)~@rèP:žääÊ÷¿y“ÌÍYK\u0007Œ@\u0005\u0000\u0000\u0012OV–~ü‘~ü‘Þ¼¡ˆ\búðŒiÌ\u0018’ð÷æåÑ­[\u0014\u0013CÙÙÔ´)õîMmÚ\u0010\u0011ÉÊRçÎtûvé}OÑ\u0007$‹\u0019\u0018|­´\u0004\u0002âó) €‹o\u0000j\u000f\u0005\u0016\u0000\u0000Hví¨];®CÔÀ‡\u000f´q#ýû/\r\u0018@íڑ®.%%ÑêՔ”DK–­-­\\I?þHׯ“¼<‘È\u0003’%RS¿Ná?z”\u0006\r*ó\"\u001d\u0006ÒW`éêê\u000e\u001c8ë\u0014 Aš6mÊu\u00048ÊÊÊ\\G€\u0006,,Œ\u0016-¢_~¡;˴ϜI\u001f>»;ùù‘—\u0017MžLóæÑÞ½$#C\u001e\u001eäáQù¡||¤iþ>ü?é+°455¤åA\\`…––\u0016×\u0011@â(**r\u001d\u0001\u001aª‡\u000fiÙ2ò÷§&M*Ù«£CûöÑáÃ4}:8A\u001f?҄\t´woéz\u0013%„B:~œ¼½ÉLJ””X\b\u000e̒¾\u0002ëå˗‡\u000f\u001fæ:\u0005H®]»šššr\u0002$˧OŸ¸Ž\u0000\rRn.͙C\u0017/V^]•pv¦˜\u0018:x–,¡\u0010\u001a=šzõ¢\u0011#ÈØ˜””()‰nÞ¤óçÉÆ†\u0002\u0003\u001bBu%\u0010\bRRRRSSµ´´tuu\u0015\u0014\u0014¸NÄ\u0000é+°\u0000\u0000\u0000$Ô¾}ääTfI\u0005??Z¶Œââ¨W/Ú»—:tøÚ¾j\u0015Y[ÓÔ©4`\u0000ÙØÐ½{tí\u001a\u001d9BÙÙ¤¯OææÄ瓦&'ß\u0004›Þ¾}»uëÖ'Ož\u0018\u001a\u001ajkkgddÄÆÆ6oÞüçŸîÙ³'×éĂ\u0002\u000b\u0000\u0000€!—.Qppéfñ\u001b\u0006}|¨_?Úº•Ə§§O¿îRR\";;úã\u000f²³#YYêÓGš^¤È_ý544tíÚµæe\u0017¡xýúõÚµkÕÕÕwíÚ%½·ûñª\u001c\u0000\u0000\u0002………‰‰‰\u0011\u0011\u0011\u001f>|à:K\u0015ÒÓIK«Ì\u001d½êß08d\bݸÁàù322^¼xñêÕ«\u001ciXö}þüù¹¹¹W¯^5¯°Ä—‘‘Ñ©S§,--ǎ\u001d[PPÀI<ña\u0004\u000b\u0000\u0000$ڝ;wvíڕœœÜ²eK55µÔÔÔ¤¤$sss77·æÍ›sNDB\u0002µlY¦eÀ\u0000²´üúyÅ7\f¶jEññâŸ6''ÇËË+00PCC£e˖ùùùqqq………\u000e\u000e\u000eÓ¦M“«¸l©\u00048|ø°‚‚ÂÚµk«é3uêԂ‚‚e˖mß¾­\\LB\u0005\u0000\u0000\u0012ê˗/³f͒““óððh-²F”P(üóÏ?\u001d\u001c\u001c\u001c\u001c\u001c\\]]9Lø\u001fªà \u0013nß¾íææ6{öìàà`Ñ»iYYY¿ýö[ÿþý\u001e=Ú¦xuS‰‘••uèС›7oŠ6\n…B\u000b\u000b‹cǎ™˜˜”4NŸ>ÝÎÎîŋ\u0017\u001d;vd=¦¸p‹\u0010\u0000\u0000$Qnnî¨Q£F\u001auäÈ\u0011Ñꊈdddú÷ï\u001f\u001c\u001cüôéÓõë×s•°¼\u0016-(6¶|cZ\u001a\u001dK\u001b6\u0010ŸO#G–Ù\u0015\u0013Cúúâœ0((hÆ\rÓ¦M+7W‰Çã-_¾ü÷ߟ2eÊ˗/Å9\u000bãΝ;çèè(\u001a8$$ÄÙÙ9<<¼bçe˖\u001d<xÅtŒA\u0005\u0000\u0000’hîܹ®®®cƌ©ªƒ¼¼üž={¢¢¢ø|>›Áª¤©Ié锛[ÚRü†Á\u000e\u001d(<¼üû›‰èÚ5\u001a0 Ög‹ŽŽÞ´iӅ\u000b\u0017´µµ«êÓ¾}{ooïéÓ§ùò¥Ö'bܕ+W~øá\u0007і‡\u000f\u001fª¨¨¨”{“7\u0011\u0011YXXüóÏ?lEc\u0012\n,\u0000\u00008\u000f\u001e<ÈË˳··\u0017m\u0014\n…æææ‘e_“ìåååáᑗ—ÇnÀ*Œ\u001eM'O–nоa0:𢣩¨è뮼<\n\b 1^L²jÕª­[·òx¼’–J>mÚ´qvvÞ½{w­Oĸ\u001f?–{\u0003‡›››———feËRÈÊÊÊËË\u000b…B¶Ò1\u0006\u0005\u0016\u0000\u0000Hœ½{÷._¾\\´¥ª»HjjjvvvW®\\a1]Õ~ú‰Ž\u001e¥¤¤¯›%o\u0018,ù(yŠpÓ&rr¢Ú¾ÓéÇ\u000fééé½{÷.i©æ.ۏ?þèçç'5J1%%%I) ¿\u0005\n,\u0000\u00008¯_¿þî»ïD[ª¹‹4jÔ(I)°\u001a5¢ß~£I“¨x-\t\u000f\u000f\u0012\nË|”¼¿ùÝ;š1£Öç\t\n\n\u001a1b„hK5?\u001f99¹.]º<þ¼Ö§c–ŒŒŒ@ ¨yÿ/_¾4jÔ¨îòÔ\u0011\u0014X\u0000\u0000 Y²³³+Þ-ªæ.’±±qtt4\u001bÉj¢[7Ú¼™Fޤ  Jö¦¥Ñœ9tï\u001e\u001d>,Î\u0013…ïÞ½kß¾½hK5?\u001f\"jß¾}TTT­OǬ®]»†……Õ°óǏ\u001fÕÔÔê4O\u001dÁ2\r\u0000\u0000 Y²²²¾éwª¼¼|aaaÝåùf––äïO\u001b6ÐæÍ4`\u0000\u0019\u0019\u0011G‰‰të\u0016ÅÇӒ%4|¸˜gÈÎÎþ¦\u001f‘ššZVV–˜'eн½ý‰\u0013',KV\b«ÖéÓ§G\u001aUבê\u0002F°\u0000\u0000@²4iÒ$55µæý333EçzK„&Mh÷n\n\n\"\u000b\u000bÊ̤W¯HU•Ö­£ÐPñ«+\"jÚ´irrrÍû'%%5\u0013}Cbåää¼zõ***ŠÁç\u0010---\u0013\u0012\u0012ž={öŸ=ÓÒÒNŸ>ýã?2uj6Iß\b–®®î@1\u001e»€ú§ÜÓ(\u0000D$36 DñˆTnnn\rÿ\u001cÿúë¯^½zÕuªÚhԈ\u0006\rª‹\u0003÷êÕË××·æC;÷îݛ7o^ÅöÂÂÂäää÷ïßëèè4oÞ\\AA¡¸=77÷À\u0003¾¾¾***-Z´(,,LHH‘‘™4iÒÔ©SÅ_\u001dÞËËËÁÁÁ××WWW·¤1¾ìºö¹¹¹S¦LÙºu«”¾ŽPú\n,===\tý‹\u0004\u001cÑÓÓã:\u0002H\u001cåÚ>œ\u0005\u0012bèС—.]rpp¨IçS§N­Zµª®#I\u0014\u000b\u000b\u000b77·\u001aÖ 111\n\n\nå¦gEDDxxx¼yó¦M›6Mš4IKK‹ŽŽnÚ´éâŋeddæÏŸïäätõêUÑ¿J™™™{÷îíß¿ÿ‘#GÚ¶m+NþV­ZíÚµë‡\u001f~صkWϞ=+vx÷î݌\u00193æÎÛGz߁-”*gϞíÛ·/×?3,>>>\\_˜ q444¸Ž\u0000bÉÌÌ´°°ÈÎÎ.×Þ¢E‹ˆˆ\bі»wïNš4‰Åh’âàÁƒ›6m*×Xñç#\u0014\n'L˜\u0010\u0016\u0016V²)\u0010\bV¯^=räÈG\u001e•ëùúõë\u0003\u0007¶hÑ\"..®ªó¾|ùÒÂÂâŋ\u0017âÅ\u0017\n…¸¸¸I“&\u001f?þâŋñññyyy‰‰‰×¯_wuu\u001d2dȓ'OÄ?Eõœß¼ySG\u0007—¾\u0011,\u0000\u0000¨÷x<ÞªU«\u001c\u001d\u001d}||äåKU•»‹\u0014\u001f\u001f¿xñb___Ö\u0003roúôécǎ½zõê°aÃJ\u001aã+¼=zÛ¶mmÚ´\u0011]1kƌ\u0019&&&þþþ\u0015©¢¢òå˗U«V͙3çâŋ¢?ù\u0012ÆÆÆ§OŸvppøã?TUUÅù\u0016ôõõOŸ>ýúõk>ŸÏçóß¿¯­­mllìêêÚ£G\u000fqŽ,\u0011ê¨p«#\u0018Á‚Š0‚\u0005\u0015a\u0004«~8r䈭­mbbb¥{oݺeaañôéS–SIŽÌÌL[[Û={ö\u0014\u0015\u0015Uܛ““³páŸ~úItïîÝ»ÝÝÝ«:àôéÓÿüóO¡PxàÀ%K–\b…B@лwbǏ\u001fß°a\u0003#ß\u0005‡0‚\u0005\u0000\u0000\r‘““Sûöí\u001d\u001c\u001cºuë6zôè\u000e\u001d:hhh¼ÿþîÝ»>>>êêê|>_t–tCÃãñüüü¶nÝjee5a„\u0001\u0003\u0006´lÙ²   **êʕ+sçΝ<yrIÿ\u001f?ž;w.44Tô B¡ÐÂÂâØ±c͚5‹µ¶¶&\"WW×áǟ8q\"44´ÒÕá§L™Ò·oߕ+WÊÊb9‚Ê¡À\u0002\u0000\u0000ÉeiiyãÆ;wî\u0004\u0006\u0006îܹ3++«iÓ¦]»v-¾óÅu:îÉË˯X±böìÙÅ?ŸÄÄD999CCÁ\u0003\u0007º¹¹•›\u0002úôi\u0017\u0017\u0017Ñg\u0000CBBN:U\\B\u0005\u0007\u0007ÛÚږìrss[¿~ýwß}Wéêð²²²fff\u001e=êÞ½{}sÒ\r\u0005\u0016\u0000\u0000H4\u0019\u0019™¾}ûb~H5\u001a7nìààðŸ\u000f]\u0006\u0005\u00058qB´Eô\u0005;QQQ¢¯'úþûï\u0005\u0002——\u0017ŸÏ¯ôh&&&oß¾EU\u0015\u0014X\u0000\u0000\u0000\rBÅw\u0010¹¹¹\u0011Qq\tUnux99¹êoÿñx<ÉY\u001d^\u0002qpë4555##ƒýó\u0002\u0000\u0000@U*®\u000e/''WTTTUÿ¤¤$,CX\r6\n¬‘#GÆÅÅ\u0011Q||¼………žžž®®nÿþý\u0013\u0013\u0013Y8;\u0000\u0000\u0000\u0014\u0013\n…UíêÙ³çíÛ·E[\n\u000b\u000b«Y´ýΝ;¸?X\r6\n¬?þø#''‡ˆ\u0016/^lbb’•••““Ó³gϹsç²pv\u0000\u0000\u0000 ¢ï¾ûîŸþ©j¯™™Ùƒ\u0007\u000f>þ\\¼Y¼*UU\u0013\u0013\u0013óóó1‚U\rVo\u0011þý÷ß˗/WQQQPPX±bEHH\b›g\u0007\u0000\u0000hÈÆ\u001bwìØ±ªöÊÈÈ̚5kë֭śǏ\u001f\u001f3fLUW®\\¹|ùrÆ\u0013Ö',\u0015XIII………ß}÷ÝÛ·o‹[ž>}*:™\u000e\u0000\u0000\u0000ꔕ•UTTTDDDU\u001d¦NúôéӀ€€äädÿ‰\u0013'\u0012Q||¼‰‰‰h·}ûöihhXYYÕybiÆÆS„ßÿ½££ãû÷•_¿~mkk\u001b\u001a\u001a:zôè_~ù……³\u0003\u0000\u0000@±½{÷Nž<™Ïç7iÒ¤¤±ä\u0005;²²²ÇŽ\u001d\u001b7n\\TTÔ©S§*NÀÊËË[¿~}bbâÁƒ\u0007Ù\u000b-Ø(°®_¿ND\u0005\u0005\u0005±±±ÅO((++ûúú\u0016/\u0017\u000b\u0000\u0000\u0000ì044ܱcǨQ£vîÜÙ«W¯Š\u001dâãã³³³---\u0017-Z4iÒ¤\u0003\u0007¶lÙ²¨¨(**êêÕ«|>ßÙÙyÓ¦Mì'—:쭃¥  Ð¶mÛ¶mÛ\u0012QïÞ½\u0013\u0012\u0012\u0002\u0002\u0002FŒ\u0018QUÿ´´´èèèr¯^½ÒÔÔ¬\u000fï€\u0004æhiiq\u001d\u0001$Ž¢¢\"×\u0011\u0000$T¯^½Î;·té҂‚‚ñãÇ÷ìÙSGG'##ãßÿ½xñbFFÆáǍ322\u0002\u0002\u0002¶lْ””$++k``0`À€àààJ\u0017v‡Š8[hôÞ½{ŽŽŽÙÙÙUuxúôéµk×Ê5Þ¸qÃÌ̬OŸ>uœ\u000e¤‰\u0001×\u0011@â`Š'@5ôõõOŸ>\u001d\u0015\u0015åçç\u0017\u0018\u0018øáÃ\u0007--­\u000e\u001d:,Y²¤S§NÅ}444¦L™2eÊ\u0014n£J/™j–Đ@‹\u0016-ºÿþÝ»w¹\u000e\u0002\u0012ÄÇǧx&&@\tMMÍôôt®S\u0000€D›1cƊ\u0015+Šï­1ŽÕe\u001a\u0004\u0002Aff¦@ `ó¤\u0000\u0000\u0000\u0000,c£ÀÊÍÍ]³f±±±’’RãÆ\u0015\u0015\u0015ŒŒÖ®]›——ÇÂÙ\u0001\u0000\u0000\u0000XÆFåêêzïÞ½ƒ\u0007\u000f&''çç秤¤\u001c?~üɓ'³gÏfáì\u0000\u0000\u0000\u0000,cc’»¿¿DDD³f͊7µ´´,--½½½[µjÅÂÙ\u0001\u0000\u0000€5\u0002@V–Õ\tH’‰\u0002ËÐÐðÚµkNNN¢AAAxø\u000b\u0000\u0000 \u001exõêÕÁƒ\u0007ÃÂÂ\u0014\u0014\u0014ˆH(\u0014òx¼±cÇ:88\u0014·4@l\u0014X‡\u000e\u001d²³³Û¶m[§Nx<^VVVDDDZZš¿¿?\u000bg\u0007\u0000\u0000€:RXX¸|ùòÈÈÈ%K–üúë¯%‹¿§¤¤œ<yÒÊÊjǎ\u001d½{÷æ6$'Ø(°ÌÌÌbccCCC£¢¢ÒÓÓ555]\\\\¬­­åå9[…\u000b\u0000\u0000\u0000ĔŸŸooo_<†Rn—®®îâŋ§N:yòä\u0005\u000b\u0016T³®x}ÅR‰#//?pà@vÎ\u0005\u0000\u0000\u0000,X°`Á¸qã¦NZU\u0007]]]???[[ÛÖ­[÷Ýwlfã\u001c¦¡\u0001\u0000\u0000À7»ÿ~vvv¹êJ(\u0014š››GFF–´¨¨¨\u001c<xpéÒ¥¬\u0007ä\u0018\n,\u0000\u0000\u0000øfÛ·o_³fhKHHˆ³³sxxx¹žFFFM›6}üø1‹é¸‡\u0002\u000b\u0000\u0000\u0000¾MAAARRR»víD\u001b\u001f>|¨¢¢RéÛ ííí/_¾ÌV:‰€\u0002\u000b\u0000\u0000\u0000¾MbbbëÖ­Ë5º¹¹yyyijjVìojj*zß°!@\u0005\u0000\u0000\u0000ß&##CCC£æý\u001bàû×¥o¡\u000455µ6mÚp\u0002$ˆšš\u001a×\u0011@â`\u0015\u0018€:¥££óáǚ÷OIIÑÕÕ­»<\u0012Húþ\r211\u0019;v,×)@‚tèЁë\b q¾éÿÖ\u0000ð­ôôô¢££kÞÿï¿ÿîܹsÅ‘DÒW`ýý÷ß»wïæ:\u0005H\u0010\u001f\u001fŸ¶mÛr\u0002$Ë7ýß\u001a\u0000¾•œœœ‰‰É?ÿüÓ£Gšô?{ö쯿þZש$\næ`\u0001\u0000\u0000À7[ºté/¿ü\"\u0014\nÿ³gxx¸’’RCûŸ0\n,\u0000\u0000\u0000øfÆÆÆ\u0016\u0016\u0016›7o.×\u001e\u001f\u001fobbR²™’’²hÑ\"\u000f\u000f\u000fvÓq\u000f\u0005\u0016\u0000\u0000@C”šš\u001a\u0010\u0010pøðá\u0013'Nܼy3??ÿ[°jÕª¸¸¸\u0015+V\u0014\u0016\u0016VÚáùóç£GÞµkW‹\u0016-ÄÎ+eP`\u0001\u0000\u00004,ááá#GŽœ>}zddd£F\u0004\u0002Áõë×\u0007\u000e\u001c8þüÔÔԚ\u001fGFFfÿþý-[¶´²²:zôhZZZq»P(¼ÿþìÙ³—-[vúôéž={ÖÍ÷!Ѥo’;\u0000\u0000\u0000ԎP(\\¿~ýÓ§O÷ìÙchhXnoPPÝ¯¿þjeeUócþôÓO“&M:s挓“SvvvQQ‘œœ\\çΝ\u001d\u001c\u001cúöíËdz©‚\u0002\u000b\u0000\u0000 ¡X¹r¥’’Òùóçedd*î\u001d2dH¯^½Æ\u001b'//ß§OŸš\u001fVCCcÖ¬Y³fÍb.©ÔC\u0005\u0000 ®”””äädYYÙ\u0016-ZTúž\u0010\u0000Ipåʕ÷ïß\u001f9r¤š>šššgϞ\u001d>|øõë×ÕÕÕYËVÿ À\u0002\u0000¨¥ììì;w^»vMOOO___ \u0010DGGgffN˜0aƌ\u0019\n\n\n\\\u0007\u0004JF±\u0000\u0000 \u0000IDAT(%\u0014\n7oÞìïï_®ÑÂÂâØ±c¢Ïýikk/^¼xÛ¶mëׯg=fýIî\u0000\u0000µqëÖ­\u0003\u0007¶iÓ&44ô…\u000b;wîܽ{·¿¿ÿÕ«Wóóómll\u001aÚ«mAÂ=xð G\u001eZZZ%-!!!ÎÎÎááá\u0015;ÛÛۇ„„Ôd+¨\n\n,\u0000€ovõêÕ͛7_½zÕÁÁ¡Ü{\u000f•••\u0017,XpòäIggç§OŸr•\u0010 œ\u001b7n\f\u00192D´åáÇ******\u0015;ËÈȘ˜˜¼~ýš­tõ\u0010\n,\u0000€o\u0013\u001d\u001dý¿ÿýï…\u000bÕL·jݺõ™3g\\]]³³³ÙÌ\u0006P•øøøV­Z‰¶¸¹¹yyyUu\u0019\u001b\u001a\u001aÆÅű\u0012­~B\u0005\u0000ðmV¯^íé驦¦VÒ\"\u0014\nÍÍÍËÝ\u0013400˜;w®§§'ë\u0001\u0001*!\u0010\bde¿á—¾¬¬¬@ ¨»<õ\u001e\n,\u0000€o––öñãGх\u0013«™È2iÒ¤   ü–\u0002IТE‹ØØØš÷Õ×ׯ»<õžô=E¨¨¨ˆ§ A”¢¢\"×\u0011@â|ÓÿÔ¿É\u001füakk+ÚRÍD\u0016YYY33³G\u001euïÞ½Žò\u0000Ԑµµµ¯¯o¹iXÕxþü¹è£…𭤯À233›={6×)@‚4̗0@õtttêèÈïÞ½ëÑ£‡h‹››\u001b\u0011ñùüJû\u001b\u001b\u001b¿{÷\u000e\u0005\u0016pÎÂÂbɒ%YYY<\u001eï?;\u0007\u0006\u0006ZXXTº\u0018)Ԑô\u0015XwïÞݶm\u001b×)@‚øøøLœ8‘ë\u0014 YRRRêèÈ999•\u000eVUEUU5''§ŽÂ\u0000Ԝ¬¬ìÏ?ÿ¼zõê]»vUß3++kÓ¦M—/_f'X}…9X\u0000\u0000ß@OO/99¹æý\u0013\u0013\u0013õôôê.\u000f@ÍÙÛÛ\u0017\u0014\u0014ìÙ³G´1>>^ôVàçϟ\u001d\u001c\u001cÖ¬Y£­­ÍzÀz\u0005\u0005\u0016\u0000À7èÝ»÷­[·jÞÿΝ;ån)\u0002ph÷îݯ_¿vuuýðáCŽ\u000f\u001e<\u00186l˜‹‹Kͧj‰+3“Ν£µkiî\\Z»–Μ¡Œ\f–N]Ǥï\u0016!\u0000\u0000‡ÌÌÌ\u0016,X““£ªªúŸcbbäåå1\u0012\u0000’C^^~÷îÝW¯^\u001d7nœMóæÍóóóß¼y\u0013\u0014\u0014¤££süøqCCC6¢¤§ÓƍôÏ?4j\u0014õïOšš”‘A\u000f\u001fҘ1Ô¹3ýò\u000bIù_\u001c\u0014X\u0000\u0000ß@FFföìÙ¿þúë†\r\u001bþ³óÒ¥KW­ZÅB*€o2lذaƽ~ýúîÝ»\u000f\u001e<PUUmժՙ3g444XJ\u0010\u0019IÓ§ÓòåTn¡¸~ýhþ|ºz•FŒ ß§ÎYÊS\u0007P`\u0001\u0000|›É“'Oš4éÒ¥Kcƌ)iŒ/×m˖-FFF½{÷f7\u001d@M\u0019\u0019\u0019\u0019\u0019\u0019qpâ¤$š>NŸ¦ª†Ê†\r£Îiüx:s†Z¶d5\u001bs0\u0007\u000b\u0000àÛÈÈÈ\u001c9rÄÛÛ{˖-………\u0015;äää̛7/..nýúõìÇ\u0003t³f‘—WiuåçG&&¤ªJ66\u0014\u0011ñµQ_Ÿ~ÿ\\]9ŠÈ\u0000\u0014X\u0000\u0000ßLEEå…\u000bŠŠŠVVV[·n}ôèQjjjrrrXXؚ5k\u0006\u000e\u001cد_¿={öÔÝz§\u0000ÒêÎ\u001dÒÓ£’•á’“iêTòô¤¤$êۗƏ/íÙ©\u0013uè@üÁILñá\u0016!\u0000@mÈÊÊ.\\¸ÐÅÅåÚµkǎ\u001d‹‹‹SPP000\u00184hЪU«ð‚\u0001€Ê>]f\\*,ŒLMiøp\"\"wwÚ´‰ÒÓ©ä}-..äéIƒ\u0006qSl(°\u0000\u0000jOUUuìØ±cǎå:\b€”xþœD_l0`\u0000YZ~ý<,Œ\f\rIt¢}ǎôæ\r«ñ˜ƒák\u0000\u0000\u0000`‹Œ\f‰¾‡Ç#]]\u0012\nÉϏ\u001c\u001ch×.*÷~\u001e©½ÏŽ\u0011,\u0000\u0000\u0000àNZ\u001a¹¸Pl,ñùdfÆu\u001aÆHka\b\u0000\u0000\u0000ÒGNŽòòJ7óòhð`êЁÂÃ+©®ŠŠH(d3\u001dƒP`\u0001\u0000\u0000\u0000[úõ£\u001b7J7ù|**\"\u0017\u0017Š‹£èhŠŽ¦¢¢Ò½·o“¹9û\u0019\u0019\u0002\u000b\u0000\u0000\u0000Ø2m\u001aíÞ]ºùï¿ôø1µn]ú‘ž^ºwÇ\u000ertd=\"3¤o\u000e–µµõºuë¸N\u0001\u0012¤OŸ>”ž.½ÃÈP\u0017:vìÈu\u0004\u0000¨LëÖÔ¹3\u001d=JNNDD\u001e\u001eäáQyÏ3gÈÀ€LLØLÇ é+°BCC7oÞÌu\n 111-{÷¦äd®ƒ€\u0004ɯGSe\u0001ê›M›ÈΎ45é‡\u001fªìsõ*\u001d>L\u0001\u0001,Æb\u0018n\u0011\u0002\u0000\u0000\u0000‹\u0014\u0014èâE:{–\u0016, \u000f\u001fÊïMO'77:r„|}II‰‹|̐¾\u0011,\u0000\u0000\u0000n**äãCW¯’ƒ\u0003)+S×®¤£Ciiôø1eeÑüùdgÇuDq¡À\u0002\u0000\u0000\u0000.\f\u001bFÆQJ\n½|Iïߓ©)ýô\u00135mÊu,f À\u0002\u0000\u0000\u0000îè꒮.×!˜‡9X\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0\u0014X\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0\u0014X\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0\u0014X\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0\u0014X\u0000\u0000\u0000\u0000\fC\u0005\u0000\u0000\u0000À0é{UÎàÁƒwïÞÍu\n zzz\u0014\u0014D\u0005\u0005\\\u0007\u0001\t¢8>×\u0011\u0000 A“¾\u0002ëúõëk×®å:\u0005H˜˜˜–C†Pr2×A@‚ä›™q\u001d\u0001\u0000\u001a4Ü\"\u0004\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†Iß$w\u0000\u0000©‘›KB!)+s£a{ñ‚\u0002\u0003éåKÊÌ$]]ê҅Fޤf͸Ž\u0005õ\u001c\n,\u0000\u0000¦\u0005\u0004Љ\u0013””D<\u001eÉÈPf&5kFS¦\u001d×É\u001a˜\u0017/hÙ2ÒÔ¤±cé‡\u001fHS“RR(,Œœœ¨M\u001bÚ¸‘´´¸Ž\bõ\u00167\u0005VXXX·nݔ””89;\u0000@]IH éÓ©K\u0017Ú¶Z¶,m‹#//òò¢Ã‡ÉÀ€»|\r‰¿?mßN¿ÿNÆÆ¥::Ô±#MŸNAA4b\u0004\u001d9B&&ÜE„úŒ›\u0002kĈ\u0011\u001e=Ò××çäì\u0000\u0000uâí[š2…öï'SÓò»\f\fÈÞ>¥\t\u0013èèQjߞ‹|\rɝ;´w/]¹B**•w\u00182„Ú·§I“ˆÏ§¦MÙ\r\u0007\r\u0002\u001b“ÜÕÔÔäËJKKkÕª•¼<nP\u0002@}ñù3ýø#8QIuU¢sgòö¦éÓ)+‹Åd\rO^\u001e-YB§N•VW~~dbBªªdcC\u0011\u0011_\u001b\r\riûvZ°€«˜P¿±Q`=xð W¯^cƌyõêUrrrrr²¦¦æÃ‡\u000f“±ô6\u0000Ô\u001b;v«+\u0019\u0019•¶TúK½M\u001bš;—<=9ÉØP\u001c9BS¦¶ö×Íädš:•<=))‰úö¥ñãK{ZXœ\u001c=yÂIL¨ßØ(°:tèð×_YZZÚÚÚÞ¿_GGGVVVKKKGG‡…³\u0003\u0000Ô¹¢\"\n\b )SJ[ªù¥>q\"]¿N……ìÇl(|}ÉÁ¡t3,ŒLMiøpRW'wwzþœÒÓK÷::҅\u000bìg„z¥u°äää\u0016.\\\u0018\u0018\u0018¸uëÖ©S§æçç³s^\u0000\u00006„‡SŸ>$+ò/j5¿ÔedÈښîÜá$iƒŸO\u001a\u001a¥›\u0003\u0006Ðŋ_?\u000f\u000b#CÃ2{ûõ£û÷Y\u0007\r\u0003«³ Ú¶m\u001b\u0012\u0012rèС‚‚\u0002e,\f\u0003\u0000õÆ«WÔ¹s™–\u0001\u0003ÈÒòëç\u0015©wêD¯^‘•\u0015{\t\u001bŽOŸ¨qã2-<\u001eñx$\u0014’¿?͙Cûö‘ŒLéÞF(/åŒÐ\u0010°½’»¬¬¬««ë™3grss\u0003\u0002\u0002X>;\u0000@¨ô—º®.\t…äçG\u000e\u000e´kW™_ê\u001a\u001aeîR\u0001ƒ”•)7·|cZ\u001a\u001dK\u001b6\u0010ŸO#Gr\u0011\u000b\u001a\u001cΞã»w£cvvvU\u001dΝ;·e˖rñññ?ýôÓîÝ»ë8\u001dH\u0013===\n\n¢‚\u0002®ƒ€\u0004Qœ?ŸÕó5iB))å\u001bÓÒÈŅbc‰Ï'3³2»RR¸_\u001aàÞ=âóéùsÊÊ\"55jߞF¢ï¿/S\bJ#EEÊÉ)Ӓ—Gƒ\u0007ÓСtþ<Éɕï\u001f\u0017Gzz¬¥ƒ\u0006D(U\u0016.\\hY2ê\u000e@DD111B==!\u0011>ðQòaffÆê¿MϞ\t§O/Ӓ›+ìÞ]¸r¥°°°’þ³f\t\u001f>d'Z%ž=\u0013\u000e\u001e,œ=[xó¦0'G(\u0014\n?\u0016Þ»'\\´Hhc#üûo΂1eÆ\fáãÇ¥›gÎ\bMM…ïޕ~ˆþ¡üö›ðøqö3‚$pvv~óæM\u001d\u001dœÕ\u0011,@­¦¦&+‹—L\u0003@=òÝwôò%å䐪ê×\u0016>ŸŠŠÈŅââ¾¶\u0018\u0018|\u001d>ùò…ž<¡®]¹‰zí\u001aýïtô(µiSÚ¨¬LæædnNññäèH3gÒ¸qÜÄcĬYäáA§N}Ýü÷_zü˜Z·.퐚Jŏ±ç瓷7\u0005\u0005q\u0010\u0012ê;6\nÜÜÜ5kÖ\u0018\u001b\u001b+))5nÜXQQÑÈÈhíÚµy˜W\b\u0000õÆO?‘謆’_ê%\u001f%“®<=iÆ\fN2Ò£GäáAW®”©®DéëS` \u001d9BýÅn2FõèAÊÊäëûuÓÄÂ2\u001f%‹\u0004­\\I..Äãq•\u0014ê16\n,WW×{÷î\u001d<x0999???%%åøñãOž<™={6\u000bg\u0007\u0000`äIôäIéXHU¿ÔoÜ û÷éÇ\u001f9H(\u0010Ð…äí]:ÌVéR¨JJäíM˖I÷¼Æ={Èˋ\u0002\u0003«ì \u0014Ò¦Môå\u000b99±\u0018\u000b\u001a\u00106\n,ÿãǏ[YYikk+((hiiYZZz{{ûûû³pv\u0000\u00006ÈÊ҉\u0013äéIǎUÙÇۛ6o¦\u0013'ˆ“i\u0012\u0001\u0001Ô¯\u001fµhñu³š¥PµµiܸÒ[lÒHY™üüèÄ\tš;—Þ¿/¿÷É\u0013\u001a9’„Bòòâ\"\u001c4\blü%744¼víZ¹Æ   \u0003¼R\u001e\u0000ê\u0013\u001e\u0002\u0002(2’\u0006\r¢óçéÓ§¯í™™tþ<\r\u0019BOžP``™\u0005±ØtéR™µæ«_ßÜÁø|ö32IMÎž%;;š1ƒ\u0006\r¢9shÅ\nrv¦~ýÈӓ¶m£Õ«¥þ‘I`lLr?t萝Ý¶mÛ:uêÄãñ²²²\"\"\"ÒÒÒ0‚\u0005\u0000õ¢\"ýú+%$йs4eÊח:óxdmM‡\u000e\u0011·ÿ«Œ‰¡öíK7«_\nµiÓÒ\u0002Qª\r\u001eLƒ\u0007ÓçÏ\u0014\u001dM\u0019\u0019¤«K††$ÏÙ\u0012EÐp°q‘™™™ÅÆÆ†††FEE¥§§kjjº¸¸X[[Ëã\u0012\u0007€z©E\u000bZ´ˆ\u0016-â:Gµª_ß¼˜PXOÆxTT¨cG®C@ÃÂR‰#//?pà@vÎ\u0005\u0000\u00005RÍR¨ÅêGu\u0005À\u0005¬G\u0005\u0000Ð0¨©ÑǏ¥›Åë›wè@áá•TW¹¹ÜÌÄ\u0007¨/ð÷\u0007\u0000 a\u0018:”Dg¾Š.…\u001a\u001dMÑÑTTTº÷úu²±a?#@½YP\u0000\u0000\rôidkK“'“‚\u0002Qµë›\u000b…´};ùøp“\u0013 ^À\b\u0016\u0000@ÃÀ㑣#-[öu³šõÍ7n¤\u0011#¨Y3®’\u0002Ô\u0003(°\u0000\u0000\u001a\fgg\u0012\bhÕ*\u0012\bªìãáAQQ´x1‹±\u0000ê!\u0014X\u0000\u0000\rÉΝ¤­Mƒ\u0006џ–)³„Bºs‡†\r£ü|:r\u0004Ï\u000f\u0002ˆIúæ`Y[[¯[·Žë\u0014 AtuuéìYÊÏç:\bH\u0010Å5k¸Ž Á~þ™Æ§;iõjÒÐ mmúø‘>~¤\u001e=è·ßª|\u000f4\u0000|\u000bé+°BCC7oÞÌu\n 111-'L äd®ƒ€\u0004ɯtU'(¡¯OÛ¶\u0011\u0011}ùòun»Š\nי\u001a¨\u001f?¾xñ\"%%EKK«]»vúúú\\'\u0002fH_\u0005\u0000\u0000ŒQV¦–-¹\u000eÑ@ݼys˖-B¡ÐÌÌLGGçÙ³gûöíKNNvqqqppÅ:dR\u000e\u0005\u0016\u0000\u0000\u0000«\n\n\næÍ›WPPpðàÁæÍ›‹îÊÉÉñôô´µµõööÖ)y®\u0013¤\u0010\n,\u0000\u0000\u0000ö\b\u0004‚É“'\u000f\u001b6ÌÉÉ©â^UUÕ_~ùåîÝ»?üðC@@€†è\u001b¸Aª`\u0004\u0012\u0000\u0000€=žžž={ö¬´º*aii¹~ýzWWWÖR\u0001ãP`\u0001\u0000\u0000°äÇ\u000f—/_^\\v™1¡Phnn\u001e\u0019\u0019)ÚØ¿ÿƍ\u001bÿõ×_ì\u0006\u0004Æ À\u0002\u0000\u0000`Éùó睝E'°‡„„8;;‡‡‡Wì¼xñâÇ\u000f³˜\u000e˜„\u0002\u000b\u0000\u0000€%ׯ_\u001f>|¸hËÇ\u000fUTTT*[&ÃÄÄäíÛ·lE\u0003†a’;\u0000\u0000\u0000K222Ê=\u001bèææFD|>¿Òþ***yyyJJJl„\u0003Fa\u0004\u000b\u0000\u0000@B)**\u0016\u0014\u0014p\u0002j\u0003#X\u0000\u0000\rTaaáŋ\u0017/]º”ššZTT$''§®®>bÄ\b\u0007\u0007\u0007•¢\":r„®^¥ü|**\"99RT$[[š>ÔÔ¸\u000e.Ŕ””¾|ù¢¬¬\\Ãþ™™™jøK'Œ`\u0001\u00004D7oÞ´²²ŠŽŽÞ²eˍ\u001b7nÞ¼yãÆßÿ½  à×®]?š™QãÆtö,ݸA7oҍ\u001btö,©«Ó Atî\u001c×Ù¥XŸ>}nܸQÃÎ)))šššuš\u0007ê\u000eF°\u0000\u0000\u001aœS§N>}úòåËZZZ¢íººº?}úTdaáZTÔ.)iEãÆ¥û\u001a7&GGš8‘~ú‰¢¢hùr¶C×\u000bãǏ_¹re¹yîU9|øð¸qãê:\u0012Ô\u0011Œ`\u0001\u00004,·oß>}ú4ŸÏ/W]\u0011\u0011?O/_Ê\u001d?~ØÛû͛7§OŸ.ß¡Q#:z”\"#éüyvÒÖ3íÛ·×ÔÔ\f\n\núϞ111W¯^8q\"\u000b© . À\u0002\u0000h@ŠŠŠ–/_~âÄ\t\u0005\u0005…’Ư\u000b]>|H;vо}ōûöí{¼~½ÀؘTUÉÆ†\"\"J²?mßN99,‡¯\u001f¶oß¾aƧOŸŠ6ÆÇǛ˜˜”l¦¥¥M:uÿþýrrr¬\u0007\u0004fHß-BkkëuëÖq\u0002$ˆ®®.=Kùù\\\u0007\u0001\t¢¸f\r×\u0011$”¿¿ÿ!C´µµKZBBBN:\u0015\u001e\u001eN|>MŸN\u001a\u0015·+~ü¸1&†ïà0fÇ\u000eÚº•Ə§’š Q#rv¦\u0013'觟Øÿ\u0016¤ºººÏäɓ]\\\\¦L™\"##S®ÃíÛ·—.]ºmÛ¶Ž\u001d;r’\u0010\u0018!}\u0005VhhèæÍ›¹N\u0001\u0012$&&¦å„\t”œÌu\u0010 ùff\\GP|>ÕªU¢-¥\u000b]ÞºE\u0017.”î\b\u000b“íÖm_lì\u0018uurw§M›(=Jæ\\\u001eMŽŽ(°jÇÀÀàÚµk[¶léׯ߈\u0011#z÷îݤI“ŒŒŒgϞñùü\u0016-Z\\¼x±Y³f\\Ç\u0004±H_\u0005\u0000\u0000µ\u0016\u001b\u001bkll,ÚRºÐåçÏ$2²E\u0003\u0006ÈYZ\u0016N˜@D\u0014\u0016F††¤¡QºW[›²³Y‰\\?©¨¨¬]»vÙ²eüñÇ_ýõþý{mmm###ooïr+‘‚”B\u0005\u0000\u0000•áñˆÇSTP(ºtInþ|Ú·*ÜÌ\u00021)++ÛÙÙÙÙÙq\u001d\u0004˜‡\u0002\u000b\u0000\u0000ª–¶úáC¹Í›‰Ï'Üu\u0005ø\u0016xŠ\u0010\u0000 \u0001iÞ¼ù»wï*ßÇãQJJéf^ž`àÀ855\n\u000f¯¤ºzÿžDWÉ\u0002€²P`\u0001\u00004 vvvçªZŠÝƦÌ*í|~VFFƸq\u0014\u0017GÑÑ\u0014\u001dMEE¥{/\\ ÜØ\u0002¨\u001a\n,\u0000€\u0006d̘1þþþŸ>}ªd߈\u0011tútÉÔuÁß7ŽŽž½u+µnýõ#=ýkÏìl:uŠ\u001c\u001cØJ\r }P`\u0001\u00004 \n\n\nëÖ­srr\u0012\b\u0004¢íñññ&¦¦äîNÓ§“@@D‹òó\u000f\u001f:DBaéGñÓm\u0002\u000199‘»{ɊY\u0000P\u0011&¹\u0003\u00004,\u0003\u0007\u000e|óæÍ„\t\u0013Ž\u001e=ª¦¦Vfß°aôîpüø¥::Ê\u001a\u001aÎÎÎå¿8+‹œœ¨\u001a6ŒµÀ\u0000Ò\b\u0005\u0016\u0000@ƒ3kÖ,\u0003\u0003ƒAƒ\u00069::ÚÛۗ,잝}YS󟈈eyyMæÍ£„\u0004jÑâë×$$Ðùótî\u001c­YCC†p\u0016\u001d@J À\u0002\u0000hˆ†\u000f\u001fÞ¿ÿ\u0013'NL›6í˗/EEErrròòòC†\fYuû¶¦Š\n=K\u000b\u0016ÐǏ$\u0010¬,ii‘\u001dýù'))q\u001d@\n À\u0002\u0000h ”••gΜ9sæÌÊwO›FÓ¦±›\b þÀ$w\u0000\u0000\u0000\u0000†¡À\u0002\u0000\u0000\u0000`\u0018\n,\u0000\u0000\u0000\u0000†Iß\u001c,kkëuëÖq\u0002$ˆ®®.=Kùù\\\u0007\u0001\t¢¸f\r×\u0011\u0000 A“¾\u0002+44tóæÍ\\§\u0000\t\u0012\u0013\u0013ÓrÂ\u0004JNæ:\bH|¼™\u0018\u00008…[„\u0000\u0000\u0000\u0000\f“¾\u0011,\u0000\u0000©‘‘A±±”žNººÔ¶-)*r\u001d\b\u0000X‚\u0002\u000b\u0000 \u000eðù´o\u001fÉ˓‘\u00115nL))ôâ\u0005µlI+WR‡\u000e\\‡\u0003€:‡\u0002\u000b\u0000€Q\u0019\u00194m\u001a™˜\u000fii•Ùõô)-YBææ´j\u0015ÉÈp”\u000f\u0000؀9X\u0000\u0000ÌÉÊ\";;Z´ˆ¶l)_]\u0011QçÎtù2\t…4>\u0017á\u0000€=(°\u0000\u0000˜ãêJ«W“M•\u001dddÈݝäåéøq\u0016c\u0001\u0000ÛP`\u0001\u00000äÖ-RS£ÁƒK[üüÈĄTUÉÆ†\"\"JÛÿ÷?Ú¿ŸrrØÏ\b\u0000ì@\u0005\u0000À\u0003\u0007hÙ²ÒÍädš:•<=))‰úö¥ñãKw5jD\u0013&¿?û\u0019\u0001€\u001d(°\u0000\u0000\u0018\u0012\u0013Cíڕn†…‘©)\r\u001fNêêäîNϟSzzéޑ#)(¨’ƒ\b…už\u0013\u0000êžXO\u0011Ο?ßÞÞ¾OŸ>rrrL\u0005\u0002\u0000JYYågµ\u000f\u0018@––_?\u000f\u000b#CCÒÐ(ÝkhHqq_?\u0017\bèÂ\u0005:žRSIV–ˆ¨ €ºw'ggê҅…ì\u0000À8±\n,MMÍyóæ½ÿ~̘1ööößÿ½¼<Ö}\u0000€\u0006éógRV.ÓÂã\u0011GB!ùûӜ9´o_™¥\u0019ääH  \"zñ‚fÍ¢\u0003iÇ\u000eÒ×ÿºW(¤ðpZ¿ž´µi×.jԈ­o\u0003 !\u001a1b„’’RçΝçϟ¯UñùßZ\u0011«\u001eZ·nݺu뢢¢ø|þÚµk_½zegggooocc£  ÀH>\u0000\u0000éФ\t¥¦–oLK#\u0017\u0017Š%>ŸÊ½\u001e1#ƒÔÕéÎ\u001dZ±‚Nž¤V­Ê앑!ssºp.\\ áÃÉϏÔÔê6?@\u00036tèP%%¥N:ñx<¦ŽÉÀ€“–––AÛ¶mŸ={v÷îÝgϞ999yyy\u001e=Züƒ\u0003\u0000H\u0007YY’‘¡¬,*ù\u0007:/\u0006\u000f¦¡Céüyª8\"4”¾ûŽ–.¥Ë—+Y1«„½=©¨“\u0013?_WÉ\u0001\u001a¼¹sç\u0016òæÍ›–-[\n…B__ßìììiÓ¦)Öö\rWbMrߺu«µµµ¾¾þ¡C‡ºwïþÏ?ÿ\u0014×X§Nš={¶8G\u0006\u0000>£Fљ3¥›|>\u0015\u0015‘‹\u000bÅÅQt4EGSQQéÞ\u0013'(\"‚¶o/­®ªZÓÁ֖ôõ)0•ï\u0001 áZ¿~}§N233wïÞíáá±ÿþ’«\u0016Ä\u001aÁŠˆˆ˜?þ AƒÊ\r©õìÙsïÞ½â\u001c¹\u001a–––\u000b\u0017.¬£ƒƒ4ÒÑѡߧÜ\\®ƒ€\u0004Qرƒƒ³ººRÿþ4vìךéßéñcjݺ´Cj*éè\u0010\u0011\u0005\u0007“’\u0012egSïÞ_w\u0015¯éàãCýúÑÖ­4~<=}Zú…«VÑäÉ4|8kß\n@\u0003´k×®°°0mmí}ûöùúú6nܸG\u001e¿ÿþ{íŽ&VµÿþC‡\u000e…‡‡\u000f\u001c8Ïç¿yófÞ¼yJJJªªªuwðï¿ÿ>|øp\u001d\u001d\u001c¤Ñ“'OT–,¡”\u0014®ƒ€\u0004)hۖƒ³6jD[¶ÐäÉté\u0012)+“‡\u0007yxTÒíåKZ³†Æ+óPaɚ\u000eDäîN›6Qz:ij~Ý«£CòòeZ\u0000€iEEE\u001a\u001a\u001aOž<\u0011\b\u0004]ºtIHHÈÏϯõÑÄ*°\\\\\\ž={vàÀ\u0001\"jݺµ§§ç‹\u0017/Ž\u001c9\"Î1ÿS~~~ºèZ2Ðà\t\u0004\u0002úô‰pU€$èۗfÍ\"[[Ú¿ŸÚ·¯¤ƒ¯/mßNÞÞ´g\u000fYY•¶W¿¦\u0003\u0011}÷\u001d½yC={ÖYt€†nÒ¤IC†\f\u0011\b\u0004\u000b\u0016,ˆ‹‹³³³ëß¿­&VuéҥǏ\u001f·iӆˆLMMO:Õ¥K—º.°\u0000\u0000$Ú¨QddDK–º:\u0019C\u001d:¦&½OwïÒùóÔ½;\u0005\u0006’º:ed”)¡ª_Ӂˆ´´èãG–¿\u0015€\u0006eϞ=|>¿°°ÐÞÞ>..nòäÉ3gάõÑÄ*°š6mšššZ\\`\u0011Qbb¢¶¶¶8\u0007\u0004\u0000¨\u000f:v$zõŠ._¦à`JO§¦M©{w:žJþ‘ÔÑ¡\u000f\u001fÊÌЪfM\u0007\"JI!]]–ò\u00034Hòòòöööş·nÝzɒ%b\u001dMœ/Þ¸qãðáÃ\u001d\u001c\u001cZµj\u0015\u001f\u001fïíí½mÛ6q\u000e\b\u0000P\u0018\u001bÓâÅUîíܙ\u001e<(½åWýš\u000eDôì\u0019\u0019\u0019ÕIN\u0000 \"¢\u0010ww÷e‡Š###kw4±\n¬‰\u0013'vëÖíܹs¯_¿nÚ´ipp°©©©8\u0007\u0004\u0000h(†\u000f§qã¨dE\u001bÑ5\u001dŠ\u0019\u0018”VZ±±¤¢‚µF\u0001êÔôéÓ'Mš4eÊ\u0014F^K#î!Ú·oïîî.~\u000e\u0000€†EK‹:w¦+WÈ֖¨Ú5\u001dˆhõjZ¶Œƒ\u0000\rIAAÁš5k”˽óª¶ÄZh4$$ÄÒÒÒ¤¬š|a^^ž8ç\u0005\u0000¨\u000fÖ¬¡M›(:šˆÈÄÂ2\u001f%ÕՑ#¤®N\u0016\u0016Ü\u0005\u0005h\u0010~þùç]»v\u0015\u0016\u00162r4±F°j8˜–ššºvíÚ'OžXXX,^¼xȐ!\u001f?633óññi×®8\u0001\u0000\u0000¤˜¦&\u001d>L“&Ñîݕ¯¿ \u0014’§'Ý¿O§N±\u001e\u000e Ááóù\u001e=Ú¼ys³fÍdþÿ1^næ`Õp0mƌ\u0019Ÿ?ž;wîµk׺uë¶`Á‚?ÿüsÓ¦MóæÍ»zõª8\u0001\u0000\u0000¤›‰\tùúҜ9Ô¸19;“…\u0005ÉÊ\u0012\u0011efҕ+´?\r\u001dJgÎ|m\u0004€ºtèÐ!\u0006&VU<˜æææVý\bVHHȋ\u0017/Z¶lijjzìØ1\u0017\u0017\u0017MM͟þ¹†÷\u0013\u0001\u0000ê3==ºx‘\u001e< sçÈݝ\n\u000bI^ž\u001a5¢AƒèìYjڔë|\u0000\r\u0005³e‰X\u0005V\r\u0007Ó´µµSRRZ¶lill|æÌ\u0019---\"ÊÌÌTUU\u0015çì\u0000\u0000õGϞX¥\u001d€+\u001a5:räÈúõë+îâæ\u0016a\r\u0007ÓÖ®]Û¯_?33³ÐÐÐ\t\u0013&\u0010ÑÞ½{7mÚ4cÆ\fqÎ\u000e\u0000\u0000\u0000 >>Ÿß¥K—îÝ»3xL±\n¬âÁ´¢¢¢””\u0014===™r/vøNNNýúõ»{÷nI\u0007EEÅß~ûmÔ¨Qâœ\u001d\u0000\u0000\u0000@|C‡\u000e%¢æÍ›\u0013QQQQjjªŽŽŽ˜«a‰5q2))iРA<\u001eÏØØ8&&ÆÜÜ<**ªÒžíÚµ›6mšìÿÏӜ1cFϞ=\u0003\u0003\u0003Å9;\u0000\u0000\u0000\u0000SÞ¿?~üøF\u001aµmÛVYYÙÞÞ>%%¥ÖG\u0013«:[¼xq»víüüüÚ´iÓ²eË!C†¸¸¸„„„ÔäkïÝ»çè蘝éùò\u0000\u0000 \u0000IDAT]U‡€€€\u0013'N”k|ôèѨQ£\u0016.\\(Nl¨gtttè÷ß)7—ë  A\u0014vìà:\u0002\u0000H™™3gjii%&&6iÒäÇ\u000fK–,™9s¦¯¯oíŽ&#\u0014\nk\u001dE[[ûíÛ·\u001a\u001a\u001azzzÉÉÉéééúúú999µ> ¨ÏŸ?'''—kܸqcBB›7o\u00189\u0005Ô\u000fýõWó1c(5•ë  Azikß¿Ÿë\u0014\u0000 Ñf̘±bŊ¶mÛ\u0016oª««ÇÄÄhjj\u0016o~üø±uë֟>}ªÝÁÅ\u001aÁÒ×׿}ûöˆ\u0011#Š7\u001f=zÔZô=\u000f\u0015\b\u0004‚ììl555Ù\u001a¬é¢¢¢Ò¦M›r\u001b7~ùòeU7\"¡a*,,¤˜\u0018ªPŽCC&ÔÒâ:\u0002\u0000H\u0019==½ÿýwÀ€\u0001ś\u000f\u001f>lÖ¬Y­&Vµ{÷î±cÇÚØØdff:99\u0005\u0006\u0006V¼©GD¹¹¹ÿûßÿ|||Þ½{WXX(''׺uëɓ'¯X±BIIIœ\u0000\u0000\u0000\u0000\u0000ŒØ¼yóرcG\u001eݪU«˜˜\u0018__ßÇ\u000f×úhbMr·²²zùòåˆ\u0011#V®\\Ù§OŸÇ\u001f\u0017ÏÃ/ÇÕÕõÞ½{\u0007\u000f\u001eLNNÎÏÏOII9~üø“'Of—¼F\u001e\u0000\u0000\u0000€Söööÿþû¯©©inn®©©é?ÿü3vìØZ\u001fM¬\u0011,\"ÒÖÖþñÇ\u001f«ïãïï\u001f\u0011\u0011Q2Φ¥¥eiiéííݪU+1Ï\u000e\u0000\u0000\u0000Àˆüüük×®uêÔiá…|>ß××wÞ¼yµ¾Õ&Venn^±1,,¬\\‹¡¡áµkלœœD\u001bƒ‚‚\f\f\fÄ9;\u0000\u0000\u0000\u0000S\\\\\\ž={vàÀ\u0001\"jݺµ§§ç‹\u0017/Ž\u001c9R»£‰U`íܹ³ø\u0013¡P\u0018\u001f\u001fÿÛo¿Í™3§b·C‡\u000eÙÙÙmÛ¶­S§N<\u001e/+++\"\"\"--Íßß_œ³\u0003\u0000\u0000\u00000åÒ¥K\u001f?.~ÀÎÔÔôÔ©S]ºtá¦À*7‚5`À€þýû\u001b7®\\733³ØØØÐÐШ¨¨ôôtMMM\u0017\u0017\u0017kkk1×H\u0005\u0000\u0000\u0000`JÓ¦MSSSKV0HLLÔÖÖ®õј,qâââªZ@A^^~àÀ\fž\u000b\u0000\u00008ôðáÃk×®½}ûöóçϺºº½{÷\u001e6l˜††\u0006×¹@º}ùò%%%EGGGUU•ý³oܸqøðá\u000e\u000e\u000e­ZµŠ÷ööÞ¶m[­ÆØ\bVaaáãǏçΝ+Î\u0001\u0001\u0000@…‡‡¯ZµªM›6?üðƒ½½=ÇKNN¾u떝••Õʕ+•••¹Î\bR&!!açΝwïÞÕÐÐÐÖÖNOOÿøñc—.]\u0016.\\ؾ}{ÖbLœ8±[·nçΝ{ýúuÓ¦MƒƒƒMMMk}4fæ`\u0015ÓÐÐ`ó\u0007\u0001\u0000\u0000,;|øð¥K—Ž\u001e=*ú”’žž^×®]ç͛wòäI[[[\u001f\u001f\u001f===\u000eC‚tÙ³g¯¯ïʕ+=<<D×!¿ÿ¾››[—.]6lØP“õÉÅ1bÄ\b%%¥Î;ϟ?ßÝݝ‘c2ÿ\u0014!\u0000\u0000ÔK—.]\n\u000e\u000eöóó«t\u0006­ŒŒÌ´iÓ:vì8qâÄ+W®¨¨¨°Ÿ\u0010¤Î²eË\u0004\u0002ApppÅ\u0012ªW¯^—/_Þµkה)S¼½½ë´Æ\u001a:t¨’’Rñ£xL\u001dS¬¸úúúššš\u001aU`*\"\u0000\u0000p.--mûöíGŽ\u001c\u0011­®„B¡¹¹ydddI‹™™Ù̙3×­[ÇEF2'OžÌÉÉÙºuk5Åӂ\u0005\u000bzôè±aÆ:M2wî\\\u0017\u0017\u0017\u000b\u000b\u000b\u0005\u0005\u0005¦Ž)VåîîÞµk×ÀÀÀˆˆˆk×®õìÙsݺuÑÿ¡„\u0000\u0000À=OOÏå˗‹Î¯\n\t\tqvv\u000e\u000f\u000f/×sÒ¤Iÿýw*Þ¿\u000eÕÊÎÎÞ»w¯§§§hcŒˆ\u0016/^|ïÞ=©{\r±X\u0005ÖÆ\u001b½½½ûôéÓ¬Y3ssóâùö\u0018Á\u0002\u0000¨BCCmmmE[\u001e>|¨¢¢Ré­À‰\u0013'^¾|™­h •Μ9ãèè(ºNzU%;\u0011ýüóÏâ¼\u0016\u0013bÍÁ’‘‘‰ŠŠjÑ¢EñæÛ·o\u0005\u0002\u0001\u0013©ªcfföŸ/ç\u0006EKK‹¶n¥ÏŸ¹\u000e\u0002\u0012DáØ1®#ԕ‚‚‚””\u0014\u001e§®®ÎÚISSS[´hQî>Ž››\u001b\u0011ñùüŠý­¬¬¶mÛ6}út–ò\u0014ºråʾ}ûD[ª)Ùmll6oÞÌB*¡PøæÍ›„„„f͚\u0019\u0019\u0019‰3ñK¬\u0002kõêÕ?üðƒ««kÛ¶m£¢¢\u000e\u001c8°lÙ2q\u000eX\u0013‘‘‘\u0001\u0001\u0001u}\u0016\"#FŒPóò\"܏\u0000\u0011…b,\u000f(™²²²¼¼¼‚‚‚äååõôô²²²ÒÒÒÚ´i3gΜ޽{×õٓ““KÞ'[\u0013͛7OJJª»<P\u000f¤§§7mÚT´¥š’Á©QՈˆˆ˜8qbBBB«V­âââôôôΝ;gbbR»£‰U`¹ººvíÚõìÙ³ÁÁÁMš49{öì€\u0001\u0003Ä9`MdggKݍX¨S………\u0014\u0013CÉÉ\\\u0007\u0001\t\"ÔÒâ:\u0002“\u0002\u0002\u00026mÚ4þü   Ñ[*‘‘‘›7oÞ¿ÿÞ½{ëtõ)eeå/_¾Ô¼ÿçϟ±\u001a\u00160KAA¡°°°Nß\u00013}út[[Ûõë×\u0017ŸkíÚµÎÎÎwîÜ©ÝÑÄ\rÚ«W¯\u001e=z¤¤¤èééÉÈȈy4\u0000\u0000(çØ±c\u0001\u0001\u0001ÁÁÁ\u0015×¶6119qℯ¯ïȑ#ýýýëne„\u0016-Z|Ó£K¯_¿.yß\b\u0000#꺺\"¢ˆˆˆË—/\u0017–ÉËË»¹¹íÞ½»ÖG\u0013k’{RRÒ Aƒx<ž±±qLLŒ¹¹9Ɩ\u0000\u0000\u0018\u0014\u0016\u0016vþüù3gÎTóæÑ£Gϟ?ßÕÕõÿØ»ó¸\u001aÓ6\u000eà¿öõDiC)I\nc\r1¡D\u001aícɖ-Y²¼–fB“uìY\"Û`„²Ó)I\"ËXÃÈ:ÅØZ¨PQÑÞyÿ¨©S*¥sžçœº¾Ÿþè¹Ïí<?ó¾¸zÎ}_·ðb(((ÈÈȤ¥¥ÕrþéÓ§mll„—‡4\u0000íÚµ{ðàA-'§§§3ÐYÍÎÎîèÑ£<\u001e¯ä’ËåZ[[÷»Õ«Àš?¾¡¡á‡\u000f\u001f”””Zµj5xð`ww÷ú¼!!„2<\u001eÏÛÛ{×®]5·ž\u0002ààà   pñâEᅙ<yr-ÏeKOO¿~ýzß¾}…\u0017†4\u0000C‡\u000e=xð`-'\u001f9rÄÑÑQ¨y\u0000(((̙3§S§NNNNÝ»wŸ8qâ—/_Fþ§®ïV¯§mçΝ{ñâEIQ)))9gΜú\u001c‹H\b!„ß­[·:tè ££S6\u0012\u0015\u0015\u0015\u0014\u0014Tå>öß~ûmÞ¼y\u0003\u0006\f\u0010R\u0018ggç={öDGGWZSŸ””ÄÉãñf̘±xñb)))!%!\ràAƒÖ­[÷êÕ«Ö­[×<óãǏ—.]\u0012v$+++\u0001.%¯W¥££síÚ5;;»’Ëû÷ïó?\u0013!„Z\n\u000b\u000bûùçŸùGjØÇ®§§—––VPP ¤ýV\u0012\u0012\u0012û÷ïwttôóóëÑ£G•s\n\u000b\u000bç̙ӹsçAƒ\u0006\t#\u0003i`¶lÙ2~üø°°0þž#•Jö‚‚\u0002WW×U«Vñoï\u0010’ïxLUƒz}D¸e˖\t\u0013&\f\u001f><33sâĉ...ô\u0004‹\u0010B\u0004åùóçíÛ·ç\u001fñôôô÷÷WUU­r¾¾¾þÛ·o…—GCC#88ø·ß~[²dIfff¥W¯_¿nmmݹsç\u0005\u000b\u0016\b/\u0003iHLLL–-[fkkûôéÓ*'¼}ûÖÎÎnÔ¨Q\u0016\u0016\u0016BM\"//èÐ!ãª|÷{Öë\tVÿþýŸ>}\u001a\u0016\u0016Ö¹sgmmíU«VÕ©Q\n!„\u001adeeÕéèY\u0015\u0015•OŸ>\t/\u000f\u0000--­ˆˆˆ£G\u000e\u001d:TNNÎÐАÃá¼}û666¶sçÎû÷ï×ÕÕ\u0015j\u0000ÒÀXZZîÙ³gÞ¼y:::...={öTVVÎÉÉyøðáñãÇÿþûïuëÖU÷ÄT€¸\\n§Nºuë&À÷¬WÕ©S§   ê«N\b! ©©ùîÝ;==½ZÎOMMÕÖÖ\u0016j$\u0000\u0012\u0012\u0012%k~322\u0012\u0012\u0012233›7oÞºukZtE¾O»víΜ9s÷îÝS§NmÞ¼ùÓ§OÊÊÊFFF\u000e\u000e\u000eëׯg¦\u0003Tɦ×\u0016-Z\bð=ëU`\u00181bǎ\u001d›7o–••\u0015T B\b!%ºvízãÆZ\u0016X<\u001e/))ICCCةʨªªV÷a%!uejjjjjÊÖÝ»téRÝK÷ïßÿ¾÷¬Wuá…û÷ï\u0007\u0006\u0006jii•ýìRió0!„ïãää4kÖ¬Q£FÕfò•+WzôèA\rŸ\tù\u000e\u0001B8½´^\u0005ÖΝ;\u0005•ƒ\u0010BH%zzzZZZ—.]²´´¬yfaaá²eË\u0002\u0003\u0003™\tFH\u0003cnnž””Ô´iS\u0000‡\u000e\u001drppPVV®ç{~ç.Beeå\u001f?–,°¿wŽNý×Û\u0013B\b©dõêÕÞÞÞñññüƒIII•þ²7oÞ¨Q£Z¶lÉl:B\u001aˆÏŸ?—}ïááñáÇú¿çw\u0016XˆB\b!¤\u0012uuõ½{÷Ž\u001c9òÚµkUNÈÎÎ\u001e?~¼ºººPÊ!„Ô•pÏM\u0014†Î;;88°‚ˆ¦M›ÂÛ\u001b|E?!Ò\\.Û\u0011\u0004ÆÄÄ$$$dÞ¼y[·nuuuíÛ·o“&M\n\u000b\u000bŸ={ÆårÃÂÂ\u0016,X@+\u0012\"jįÀJLL¼}û6Û)ˆ\b\u0019?~¼ÊéÓ¨õ1´¤1(’¬W\u0017eQ£©©\u0019\u0018\u0018\u0018\u0017\u0017wòäÉ?þø#;;[RRÒÀÀ`Ȑ!žžž´›ú‹‰‰)i;WXXøðáòæ¾{oã÷\u0017X\u0002RKéééÿý·PoAÄK~~>\u001e>DJ\nÛAˆ\bá±·ß[xŒ½½½ÙNA\u0004&??ÿÞ½{oß¾åñx-[¶ìÖ­\u001bÕÊliÖ¬ÙðáÃK¾———Ÿ4iRÙKß½\bê;\u000b,aD!„\u0010B\u001aƒ7oÞ¬X±âŸþ133+é}\u001f\u001d\u001dý믿¶oß~ñâłmwIjC\u0018¥Ëw\u0016XTE\u0011B\b!߁Ëånذaåʕýúõ«ôÒå˗GŒ\u0018ñË/¿8::²’\bø­Á\"„\u0010BÄÔɓ'ƒ‚‚Ν;§¨¨øõ«\u0016\u0016\u0016‘‘‘cǎ-,,\u001c:t(óñˆ\u0000QE\b!„0áå˗þþþgϞ•——¯nŽ¢¢bPPM×®]\r\f\f˜ŒG\u0004«Am´!„\u0010BDÖâŋׯ__©ºâñxfffü§Ì)((øúú.^¼˜ñ€D¨À\"„\u0010B„.33óÝ»w•6ÚGEE¹¹¹EGGWšÜ£GwïÞeff2\u0018\b\u0018}DH\b!Æóç\b\rœ'ÈȀª*:t€ƒ\u0003\f\rَÕ(\\¹reàÀ•\u0006cbb\u0014\u0015\u0015«\\eeeõ×_ÙÙÙ1’Ž\b\u001e\u0015X„\u0010Ò\b¼~_\u0005€\u0011#àè\b55¤§#&\u0006‹\u0016AB\u0002ëÖAOíˆ\r\\bb¢¾¾~Ùeqq1—˽sçNjjjQQ‘«««’’R¯^½ÜÜ܌ŒŒ\u0000\u0018\u0018\u0018$$$°\u0016—Ô\u001b\u0015X„\u0010ÒÐ]»\u0006//øû£k×òAUU´iƒaÃpï\u001eFÂºu07g/bÃWXX(##Sòý?ÿü3}út\u000b\u000b‹uëÖééééèè\u001c<x°mÛ¶W¯^?¾¡¡áºuëddd\n\n\nØÍLêƒ\n,B\biÐbc±h\u0011 ªZõ„nÝpæ\f\u001c\u001cðÇ\u001f01a6\\#Ò¢E‹¤¤$\u0000×®][´hÑÁƒ\u0007õ*>5”’’²°°°°°\b\b\bppp\u00188p \u001e=V\u0014g´È\u0010B\u001a.\u001e\u000f3fàÀòê*$\u0004ÆÆPR‚¥%bcK\u0007UUqà\u0000<<À㱕´ÁëÛ·ïŋ\u0017\u0013\u0012\u0012¼¼¼¸\\n\rÅӄ\t\u0013ÜÜÜüüüÌ院8£\u0002‹\u0010B\u001a®°0˜™¡léOJ\n\\]±a\u0003’“anŽ\u0011#Êg¶nÞ½\u0011\u0016ÆFÊFAKK+??öìÙ~~~jjjeã<\u001eïýû÷/_¾äŸljj*!!\u0011[V\u0001\u00131D\u0005\u0016!„4\\ǎa„òË[·Ð¹3lm¡¢\u0002\u001fŸÒí„e&MÂñãŒGlD¦NzçΝîÝ»—”´iÈÏÏçŸÆãñæÏŸ¿cǎ\u001b72ž‘\bŒø­Á211éÛ·/Û)ˆ\bQQQÁ̙ÈÊb;\b\u0011!ÒW®°\u001dA4$&ÂȨüÒÊ\n}ú”~ë\u0016ôõÑ´iù«†† mk”˜˜hnnîíí½råJ\t\t\tðµi(kÚÎãñ¼½½»wï>dȐ͛7ggg+++³šš|'ñ+°222âããÙNADH~~>\u001e>Dz:ÛAˆ\b)..f;‚h¨pÉá€Ã\u0001‡ÐP̘\u001d;*O¨tI\u0004*66ÖÇÇçäɓ£GÞ´i“¶¶¶§§'\u0000.—[2!99yÞ¼y&&&\u000b\u0017.\u0004о}û\u0017/^tîܙÍÐä{‰_•’’rãÆ\r¶S\u0010\u0011’››‹¿þBJ\nÛAˆ\b)®Ø/›”KKƒ»;\u0012\u0012Àå‚þ+1+##CMMmɒ%—.]\u001a=z´žžÞàÁƒ[µj•ŸŸ\u001f\u001e\u001e¾f͚„„„%K–ôïß¿d¾ššZ:ýè(¶Ä¯À\"„\u0010R[RRÈÍEÙáwyy°¶†\rŽ\u001f‡”Tåɹ¹U\f\u0012ÁQWWÿðáC‹\u0016-,-----ãââ.^¼øðáÃÜÜÜOŸ>-X°ÀØØ˜þ»wï455ÙJKê‰\n,B\bi¸,,\u0010\u0019\t\u0007‡ÒK.\u0017EEpwGbb鈮nyQuþ<,-Y\bÙhtìØñï¿ÿîÔ©SÉ¥±±qIEuàÀQ£FUª®\u0000ÄÆÆ–­Í\"b‡v\u0011\u0012BHÃ5a\u0002üüÊ»[Ý»‡\u0007\u000fкuùWÙ.B\u001e\u000f›7WØrH\u0004ÍÎÎîx­÷i¾|ùRUUUAAA¨‘ˆðPE\b!\r—Ž\u000e,,°yséåÚµàñ*|©«—¾´i\u0013,-Ѳ%[I\u001bƒæÍ›ëèè\\¾|¹6“ûí7///!'\"BD\u0005\u0016!„4hÞÞ¸q\u0003»w×4g÷nܺ…E‹˜ÊÔxýþûï‹\u0016-zûö-ÿ`RRR¥Ï\u0007wïÞ­©©Ù£G\u000ffÓ\u0011A¢\u0002‹\u0010B˜——wàÀaÆ\r\u00180 ÿþ\u0003\u0006\føùçŸ\u0003\u0002\u0002rss…{cII\u001c>ŒÇ1r$þý·ò«ÏžaäHüó\u000f\u000e\u001d‚$ý‹ tššš;vì\u00186lØÃ‡\u000f«œÀãñ|}}/\\¸àëëËp6\"X´È\u0010B„.\"\"bÙ²e...[¶liÑ¢EÉ`rròñãÇ---½½½íìì„x{iiøùáï¿áピ\u0014\u0018\u0018@S\u0013ïÞáÅ\u000b4oŽ_E·nB¼;©¨sçÎG\u001e>}z«V­ÜÜܺuëVÒt4;;ûìÙ³Û¶m³±±9räˆ\u0004õ$\u0013sT`\u0011Bˆpíܹóüù󑑑\u001c\u000e‡¼yóæ³gϞ4i’››Û˗/gϞ-Ü\u001cÝ»ãÈ\u0011\u0014\u0014 !\u0001ééPSC«V‘\u0011îMIUtuuî^½ºoß¾ùóçKJJ\u0016\u0017\u0017+((XYY\u001d9rD[[›í€D\u0000¨À\"„\u0010!Šˆˆ¸páÂñãÇ%«ù\u0000NYYùȑ#%m'\u001d\u001d\u001d…\u001eHF\u0006mÚ M\u001b¡ßˆ|Kß¾}éä·\u0006Œ\n,B\b\u0011–¼¼¼å˗GFF¦¤¤„‡‡ÿóÏ?™™™êêê'Ož\f\n\nêÙ³gÉ4\t\t‰½{÷ZYY\r\u001a4HQQ‘Ý̄\u0010 %„\u0010\",‡\u000f\u001f¶¶¶ž6mÚ´iÓ¤¥¥ÇŒ\u0019caañäɓçϟϚ5kÞ¼y\u001f?~,™©¨¨8a„\u0003\u0007\u000e°\u001b˜\u0010\"(ô\u0004‹\u0010B„eß¾}Ÿ?Þ¾}{ÙêK—.ééé)**îß¿ÿÙ³g¶¶¶ûöí322\u00020lذ\t\u0013&L›6ÕȄ\u0010Á \u0002‹\u0010B„âñãÇ\u000f\u001f>|ñ⅚šZÙ §§'\u0000.—\u000bÀÁÁ¡cǎcǎår¹šššÍš5ËÎÎf-.!D Ä¯ÀjÓ¦Mǎ\u001dÙNADˆ²²2ƎEf&ÛAˆ\b‘zð€Ý\u0000ÅÅÅ\u001e\u001e\u001e&&&üÕ\u0015ÇëÝ»w@@@وÁ†\r\u001bfΜyìØ1\u0016R\u0012B„Fü\n¬‚‚\u0002¡÷å#b¥¸¸\u0018Ÿ>῵,„ˆ‚£G\u000e\u001e<øÂ…\u000be#QQQAAAÑÑѕföîÝ{ǎ\u001d111]»ve6#!\" )\tÁÁˆŽFr2\u0014\u0015¡¯\u000f\u001b\u001b\f\u001a\u0004YY¶“Õ—ø\u0015X\t\t\t7nÜ`;\u0005\u0011!¾¾¾8}\u001a))l\u0007!\"¤ÈԔÝ\u0000ǎ\u001dÛ¾}û;wÞ½{§©©\t &&FQQ±ÊM‚“&M:vìXëÖ­éd_҈dfbÑ\"¼x\u0001WW¬Y\u0003mmäåáéS„…á÷ßáå\u0005''¶#Ö\u000bí\"$„\u0010ÁKOOoÞ¼¹Ýɓ'KF<==ýýýUUU¿žlnn~ûöíààà!C†0\u001b“\u0010–$&ÂÖ\u0016ƒ\u0007ãìYŒ\u001e\r\u001d\u001dHKCI\tݺañbDF\"$\u0004>>l§¬\u0017*°\b!DÀ\n\n\näää\u0000Œ\u00193æÀ\u0003_¾|©y¾´´taaáîÝ»'L˜ÀD>Bؕ1c°c\u0007ìí«žÀá`ß>ääÀϏÙd‚D\u0005\u0016!„\b˜””Taa!\u0000\u0005\u0005\u0005//¯)S¦ðx<þ\tIIIÆÆÆü#Ϟ=›3g޲²2£A\taÅòå˜=\u001beûÕBB`l\f%%XZ\"6¶|Úºu\b\u000bÃ˗¬d¬?*°\b!DÀ$%%\u000b\n\nJŠ*''§®]»Ž\u001b7®ºÝ9yyycǎmÚ´éˆ\u0011#˜I\b\u001bÒÒp÷.†\r+½LI«+6l@r2ÌÍÁÿ§@R\u0012+WbÕ*VbÖ\u001f\u0015X„\u0010\"x:uúûï¿K¾Ÿ?¾“““¥¥åŸþY\\\\\\6çÓ§Oû÷ï·´´TUU1c\u0006KI\taVX\u0018†\u000f/¿¼u\u000b;ÃÖ\u0016**ðñÁ“'ÈÈ(µgOÄÆ¢°ù˜õG\u0005\u0016!„\bÞäɓ}}}Ë.‡\u000e\u001dzá…œœœŒŒŒ\t\u0013&XXX\f\u00180ÀÅÅåÓ§OgϞ}ðà‹‹\u000b‹i\taν{øñÇòK++ü·\u0011\u0004·nA_\u001fM›V˜ß¾=^¿f,\u00001צ!##£iÓ¦\u0012\u0012\u0012%—EEE\u0019\u0019\u0019êêêŒ\u0005 „\u0010ÆtíڕÃáp¹\\§ÿ¶š+))͘1ãë'UkÖ¬qppÐÐÐ`<#!lHM…–Vù%‡\u0003\u000e\u0007<\u001eBC1c\u0006vìÀuB)mm¤¤ÀАá˜õÇÄ\u0013¬ØØØŽ\u001d;6kÖÌÐÐ0,,¬d011‘þB!„4`[¶lÙ²e˹sçj˜óÇ\u001f<xð`þüùŒ¥\"„e\u001c\u000e²²*Œ¤¥aèP¬X\u0001.·Š}…YYàp\u0018K'@L\u0014XÓ¦MûùçŸsss÷íÛ7mÚ´»wï2pSB\ba—‚‚BHHÈ®]»<==ÓÓÓ+½\u001a\u001f\u001f?vìØ'Ož\u001c<xP¢Òì„4`\u0006\u0006ˆ‹+¿Ì˃µ5LL\u0010\u001d*û\u0003?{\u0006}}¦Â\t\u0012\u0013\u001f\u0011Þ¹s',,LVV¶_¿~Û¶m›6mÚׇE\u0010BHÃÃápN:uúôéQ£FÉÈÈtèÐAMM-55õÑ£GJJJ\u000b\u0017.ìÕ«\u0017Û\u0019\ta–­-¶l]é%—‹¢\"¸»#1±tDW\u0017RR¥ßgd ¨\bMš°³Þ˜(°tuuÿúë/[[[\u0000\u000e\u000e\u000e\u0001\u0001\u0001‹\u0017/vwwgàք\u0010Â:{{{{{ûŒŒŒ§OŸ~úôICCÃÈȈZ^‘FªS'¼yƒ—/a`\u0000\u0000÷îáÁ\u0003´n]>áý{”­Ï^»\u0016Ó¦±\u0010R\u0010˜øˆpíÚµ#GŽìÛ·ï»wï$$$vïÞ}öìYggg\u0006nM\b!\"BUUÕÌÌlðàÁݺu£êŠ4j«Vaútäç\u0003ÀÚµàñ*|•UW×®áÉ\u0013ˆmµÀÄ\u0013,''§ÿý÷Ö­[%瘪««ß¼y“ËåÞ»w»\u0013B\b!D„tíŠqã0r$\u000e\u001c@u?l\\¹\u0002oo„†2›L\u0018jÓ ­­íÄw,¶œœœ¹¹¹’’R\r¿äÙ³g\u000f\u001e<¨4øï¿ÿêêê\u000eçïQF\u001a=EEEØÛããG¶ƒ\u0010\u0011\"•Àv\u0004Bj%...\"\"âõë×yyyZZZfff–––%gY6dcÆ@U\u0015ƒ\u0006aî\\8;CF¦ü¥·o±v-\u0012\u0013qú4ª:\u001c]\\0×\u0007«’›7oN˜0!;;»º\tyyy\u0019üí\\\u0001\u0000¹¹¹jjj%OÂ\b)!))‰&M*·N!\u001c\u0015XDäݽ{×ÛÛ[[[ÛÎÎnÀ€\u0001rrrÉÉɗ/_^ºté˜1c<<<¤ÊÖz7HC†ÀÜ\u001c[¶ÀÊ\n\u001c\u000e´µ‘—‡„\u0004¨«cÊ\u0014ØØ°¯¾$*\u001dA*âæÎ{ûöí\u001b7n°\u001d„ˆøøøV½z!%…í D„ô05½sç\u000eÛ)\b©ÖŸþyâĉíÛ·ëՃ   ÀÏÏﯿþ\n\f\fTQQa#\u001dã¾|ÁÛ·PT„–\u0016\u0018,+'Ož¼páÂ6mÚ\bãÍ\u0019}‚U\\\\œ­¬¬,)IGô\u0010B\bi¤Ž\u001f?~á…ÐÐPié*þ\u0015–‘‘ñôôìØ±ãèÑ£¹\\n•s\u001a\u001aEEqìÕ^3&\nÜÜÜ%K–\u0018\u0019\u0019ÉÉÉ5iÒDVV¶mÛ¶K—.ÍËËcàî„\u0010BˆèHMMݲe˟þÉ_9ñx<33³8¾\u000eœ666\u0003\u0007\u000eôóóc##\u0011\u0000&\n¬)S¦Ü¼ys÷îÝ)))ùùùïÞ½Û¿ÿÇ\u000f=<<\u0018¸;!„\u0010\":Ö¬Y³xñbyyù²‘¨¨(77·¯[pϜ9óäɓ_¾|a6 \u0011\f&\u001e<†††ÆÆÆ6oÞ¼äRMM­OŸ>zzz\fܝ\u0010B\b\u0011\u0011<\u001eïöíÛ\u001b7nä\u001fŒ‰‰QTTTTT¬4YZZÚÁÁ!22’\u001b~Ãñè\u0011\u000e\u001dÂíÛ(*\u0002\u0007YYüø#ƌAÛ¶l'\u0013\f&ž`éëëGDDT\u001a<w®.\u0003w'„\u0010BDÄ«W¯ŒŒŒ*>ééééïï¯ZUK‚\u0001\u0003\u0006\\¿~©tLùô\tãÆaåJX[#2\u0012—/ãÊ\u0015œ9ƒÞ½1o\u001efÎDn.Û\u0011\u0005€‰'X{öìqppðõõíØ±#‡ÃÉÊʊMKK\u000b\u0015ç\u0006b„\u0010BH]%''·hÑ¢öóuttÞ¾}+¼<,xû\u0016#F`É\u0012\f\u001aTa\\V\u0016ƒ\u0007cð`\u001c;†!Cpê\u0014š6e)¢`0Q`™šš&$$\\¾|ùå˗\u0019\u0019\u0019ªªªîîî\u0016\u0016\u0016bg\u0004!„\u0010ò\u001fyyù:mðÊÍÍå_­%öòò0v,¶nE×®ÕÎ\u00191\u0002\u001a\u001a\u0018;\u0016¡¡\u0010çž\u0003\f•8ÒÒÒ\u0003\u0007\u000edæ^„\u0010BˆhjÕªÕ˗/k?ÿùóç_7Ê\u0012cþþpq)¯®BBàå…ÄDôì‰íÛabR:ni‰«W\u0011\u0014\u0004WW¶’ÖŸ\u0018׆„\u0010BˆxÑÐÐHOOÏ­õ\u001a£°°°Áƒ\u0007\u000b5\u0012sŠŠpâ\u0004ÜÜJ/SRàêŠ\r\u001bœ\fssŒ\u0018Qaòüùص‹ùŒ\u0002D\u0005\u0016!„\u0010œQ£FíØ±£63ß½{÷àÁƒ\u001e=z\b;\u0012C®_G¿~([\u001dtë\u0016:w†­-TTàãƒ'OÀ>žèqôJ\u0000\u0000 \u0000IDAT’\u0012\f\rñô)+I\u0005‚\n,B\b!„9nnn\\.÷Ù³g•Æ“’’ŒË.y<Þ̙3—-[&Ñ`\u000eZ}ü\u0018¦¦å—VV8y²ôû[· ¯_yU»©)\u001e?f.ž QE\b!„0GZZzß¾}ãǏÿ÷ß«›SXX8kÖ,SSS\u000b\u000b\u000b\u0006£\tYZ\u001aš5+¿äp ©\t\u001e\u000f!!\u0018=\u001a~~¨TJjhàý{†3\n\u0010íã#„\u0010Ґ=zôèðáÃÑÑÑ<\u001e\u000f€œœÜÀ\u0003G\u001e]Öþšy\u0006\u0006\u0006\u0007\u000f\u001eœ0a¨Q£¦L™\"##Ãÿê;w\u0016.\\8|øð©S§²•P(TU+|\b\b -\rîîHH\u0000—[ááV‰\u000f\u001f ©ÉX:\u0013¿\u0002«U«V-[¶d;\u0005\u0011!ŠŠŠ°·ÇǏl\u0007!\"D2>ží\b„}ééé³fÍ*..ž<yòòåËKz\u0003eee={v̘1ýúõóññ‘’’b%›¡¡áŋ\u0017wîÜ9`À\u0000\u001d\u001dvíÚÉÊʦ¤¤Ü¿¿M›6»wïnݺ5+Á„ÈÄ\u0004—/cèÐÒ˼<X[ÃÆ\u0006Ǐ£Êÿ\u0015\u001e>ĬYL\u0006\u0014,ñ+°”””ÔÕÕÙNADˆ´´4ôô ¦Æv\u0010\"B$\u0013\u0013َ@X\u0016\u001f\u001f?jÔ¨Õ«W÷ïߟœÃáŒ\u00181bøðáÛ¶msvv>vì\u0018[¦deegϞ={ö섄„øøøììl\u001d\u001d\u001dccãJ\u000f´\u001a޾}áãƒeËJ»[q¹(*‚»;Êþ´êê–WZyyxü\u0018\u001d;²\u0013U\u0010įÀŠ½qã\u0006Û)ˆ\bñððhê\u0014¶ƒ\u0010\u0011RøõÇ\r¤1ÉÎÎvuuÝ»w¯IYk¥Š$$$fΜ©¡¡1uêÔýû÷3\u001c¯’V­ZµjՊÝ\fL•…\r\u000e\u001fƘ1\u0000pï\u001e\u001e<\u0000ÿƒº÷ïQö\u0000eÛ6±n‚\u0005ZäN\b!¤áY·nÝôéÓù«+\u001egff\u0016\u0017\u0017Ç?ÍÅÅEII)22’ñ€Õüùع\u0013%«û×®\u0005W᫬ºº{\u0017áá˜<™Å¤õG\u0005\u0016!„\u0006å˗/\u0017/^\u001c9rdÙHTT”››[ttôד—.]ºaÃ\u0006\u0006Ó5nJJ\b\bÀ¸q¸{·Ú9\u0017/bÎ\u001c\u0004\u0005AÌÏÓ\u0013ïô„\u0010B\u0018–››{âĉ°°°äää’\u0015âFFFC‡\u000e\u001d8p ˆtlºpႭ­-˜˜˜\u0018EEEEEů'kjjÊÉɽÿ^CCƒÁŒX›6\b\u000e†»;ôôàáöíË_ºw\u000f[¶ ?\u001fgΠI\u0013ö\"\n\u0006\u0015X„\u0010BjëÔ©SëׯwqqY¿~½®®nÉàýû÷ƒ‚‚V¯^íçç÷Ã\u000f?°›\u0010Àƒ\u0007\u000f~üñGþ\u0011OOO\u0000\\.·Êùݺu{òäIƒê8%â´µqú4.]†\rxö\f%‹ú\u000b\nðÃ\u000f˜>\u001d½z±O0¨À\"„\u0010R+«V­zúôiTTT¥GA]ºtéÒ¥K||üøñã\u0017.\\ÈúÙyiiiÍø\u001bZ~‹¦¦æ{qnh)®,-aiÉv\b!¢\u0002‹\u0010BÈ·\u001d8p >>¾†\rwzzzgΜ\u00192dH˖-;²º»^UU5£RCË\u001a¥¥¥ñŸQCˆ@Ð\"wB\b!ߐžž¾{÷nþÁ¯÷å)))\u0005\u0004\u0004̝;—ñ€\u0015´k×îÑ£GµŸÿøñc###áå!\u0013\u0015X„\u0010B¾aÛ¶msçÎåo€Yݾ¼Ö­[wèÐáòåˌæ«ÈÆÆ&$$¤–“³³³SSSutt„\u001a‰4BT`\u0011B\bù†¨¨([[[þ‘\u001aöå\u001a5ªºåäÌhÚ´i»ví.\\¸P›É¾¾¾\ríÈ?\"\u001a¨À\"„\u0010R“ââbiii999þAOOOUUÕ¯çwïÞýɓ'L¥«ÚÒ¥K\u0017/^œRñ€‡¤¤¤Jk­®^½zçÎ\u001dþŽY„\b\n\u0015X„\u0010BjòéÓ'\u0015\u0015•Úϗ––.,,\u0014^žÚÐÐÐØºuë°aÞ?^ݜˆˆ\booïƒ\u0007\u000fŠHû.ÒÀÐ.BB\baĽ{¸w\u000f©©àpЦ\r,-QÕçk\"HEE%++«ö󋋋%%Ùÿé½{÷î\u0001\u0001\u0001îîî}ûöuww/ëÚ\u0005àþýû\u001b7n\u0004\u0010\u001e\u001e®¬¬Ì^FҐQE\b!ÂT\\ŒÀ@ì܉.]ðãèÙ\u0013Ÿ?ãþ}¬[‡Îáã\u0003‘o .%%•››[û²)66ÖÀÀ@Ø©jÃÐÐðâŋ\\.wþüùïÞ½+É_PPСC‡™3göìٓ퀤!\u0013¿\u0002K[[{àÀl§ \"D^^\u001eýú!=í D„Hff²\u001d\u0001\u0000ñãñÃ\u000f¸p¡Âó*''x{ãÜ988`ófÑo]Ý«W¯¿þú«–½ÎOž<ioo/äDµ%!!áììììì\f   @ZZš>\u0010$Ì\u0010¿\u0002KUUµmÛ¶l§ \"DVV\u0016:¡.\u001fa\u0006OòÊ\u0015¶#\u0000……\u00189\u0012Ó¦Áήê\tƒ\u0007£kW\f\u001b†mÛ \u0002'ÌÔ`Ö¬YS¦L©M•žž\u001e\u0019\u0019¹hÑ\"ᇪ3þ6\u0013„\b›ø\u0015X±±±7nÜ`;\u0005\u0011!\u001e\u001e\u001eMýýQq»\u0010iä\nMMَ\u0000¬Yƒ!CÊ««\u0010xy!1\u0011={bûv˜˜\u0000€¦&‚‚0r$._†\bÿ󯧧ׯ_¿5kÖ,X°€<))‰ÿ²¸¸xÒ¤I+V¬–\u0016¿\\\b\u0011,ö×!\u0012BH\u0003”žŽóç1mZéeJ\n\\]±a\u0003’“anŽ\u0011#ÊgêêbÄ\büù'+1koÑ¢E±±±«W¯æñxUNøüùó¨Q£lll,\u001bô\u0001s„Ô\u0012\u0015X„\u0010\"\u0004\\.ƌAÙªð[·Ð¹3lm¡¢\u0002\u001f\u001f<y\u0002þÃòÜÜpò$+1kOBB\"  €Çã\r\u001a4(22’¿\u0011CVVÖ¾}û\u0006\r\u001a4nܸie5%!\u001b=Å%„\u0010!¸r\u0005K—–_ZY¡OŸÒïo݂¾>š6-UY\u0019ÅÅÈχ¬,“\u0019ëJBBbÑ¢E®®®;wîüý÷ߥ¥¥eeesssåää†\f\u0019rþüy%%%¶3\u0012\"*¨À\"„\u0010!HN\u0006ÿñv\u001c\u000e8\u001cðx\b\rŌ\u0019ر\u0003•ö²µl‰ädèé1\u001có;èêê®\\¹²äûÜÜ\\yyyvó\u0010\"š¨À\"„\u0010!@¥µJiipwGB\u0002¸\\|½\u0006ŸÇƒ\b4ç¬+ª®\b©Žøýy&„\u00101в%âãË/óò`m\r\u0013\u0013DGWQ]\u0001HJ‚¶6cé\b!ÂFO°\b!D\b¬¬\u0010\u0011²¦}\\.ŠŠàîŽÄÄÒ\u0011]]HI•~ÿñ#ääD¹M\u0003\u0011ŠÜ\\<|ˆÔT((@O\u000fÔâ±a¡\u0002‹\u0010B„ÀÞ\u001e?ý„éÓQÒ\u0011êÞ=<x€Ö­Ë'¼\u000fuõÒï·mØ1,„$lyö\f˗#)\t=z eKdgãÐ!ÄÅÁÙ\u0019³f>xm\u0010¨À\"„\u0010!PQ‹\u000bÖ­CIOóµk±vmÕ3Ÿ>Ņ\u000bˆŠb2\u001daÓÖ­\b\u000b+=Œ’_Q\u0011þü\u0013VVس§´\u000f-\u0011g´\u0006‹\u0010B„cÖ,<x€\u0003\u0007jšóú5&NğŠã\nwò=V­Â‹\u0017\b\u000f¯\\]\u0001’‚»;‚‚à憸86Â\u0011A¢?҄\u0010\"\u001c\u0012\u00128x\u0010W®`Æ\f|øPùÕâb\u0004\u0005aÌ\u0018ìÝ[á£CҀ]¸€Ç±iSùò»¯éë—ÖXùù\f&#‚G\u001f\u0011\u0012BˆÐÈÊbï^„‡ÃÅ\u0005êêèÓ\u0007ÚÚÈÎÆ“'¸y\u0013C† 2\u0012Ԝ³‘àñ°|9N*oVåñ”\u0000Z·ÆèÑØ¹\u0013³g³\u0015–Ô\u001f=Á\"„\u0010!\u001b2\u0004QQX¿\u001ezzHO‡œ\u001c\\\\pí\u001a||¨ºjDîÜA—.å;\u001bj8ž\u0012€»;Nœ`>#\u0011 ñ{‚¥¦¦Ö½{w¶S\u0010\u0011\"++‹NÐ²%ÛAˆ\b‘¨Ô']\u0014´j…V­Ø\u000eAØsî\u001clmË/ˎ§\u0004àフ+‘‘\u0001UÕÒWee¡­äd4oÎBT\"\bâW`éêꚛ›³‚ˆ\u0010EEEØÛãóg¶ƒ\u0010\u0011\"Åå²\u001dÔKff¦ŠŠ\nÛ)\u0004*1\u0011#G–_Ö|<%€6m\u0010\u001fO\u0005–ø\u0012¿\u0002ëÁƒ\u0007;vì`;\u0005\u0011!£FRY¹\u0012))l\u0007!\"¤°ÊnéD´%''oß¾ý¯¿þ’’’RRRúüùsqq±•••‡‡G³fÍØNWoyy“+¿üæñ”²²ÈËc8#\u0011 ñ+°\b!„4<~~~ÁÁÁ¿üòËâŋeþkjŸ——\u0017\u001e\u001eîèèèææ6qâDv\u0013ÖW‹\u0016HJªð1qÍÇS&%ÑÊ\u0007±F‹Ü\t!„°ìÿû_JJÊŋ\u0017mmmeøŽ\f’““svv¾|ùòÝ»w—,YÂbB\u000107Çŋå—ß<žòéS´iÃX:\"pT`\u0011B\baÓöíÛåååW¯^-YM·UiiémÛ¶%''\u001f:tˆál‚de…ðp\u0014\u0014”^ò\u001fOùú5^¿FQQùäÈHôìYùCC\"V¨À\"„\u0010š\u000f\u001f>\u001c9rdõêÕüƒ<\u001eÏÌÌ,®b7ó­[·nݺ5;;›Ù€‚#/Ñ£±qcéeÙñ”e_\u0019\u0019¥/åä`ùr,XÀVR\"\u0010T`\u0011B\baÍÞ½{g͚Åÿì***ÊÍÍ-::ºÒL99¹I“&\u0005\u0005\u00051\u001bP <<\u0010\u001dÐP\u0000X»\u0016<^…¯’\u0016Y\u0005\u0005˜8\u0011óçCS“ݰ¤ž¨À\"„\u0010š\u000b\u0017.Øòw‡\u0002bbb\u0014\u0015\u0015\u0015\u0015\u0015¿žììì\u001c\u001e\u001eÎT4!”ā\u0003Ø¿\u001f+WV½CðùsØÙaÈ\u00108;3\u001eŽ\b\u0018í\"$„\u0010šÂÂÂJµ”§§'\u0000nUÌÔÕÕ333\u0019J&$ÊÊ8~\u001c»wÃÂ\u0002––°°@˖øü\u0019/^ 4\u0014YYX¿\u001e:±’\b\u0000\u0015X„\u0010B\bƒ$%1u*ÜÜpõ*nÜÀéӐ—GëÖX¹\u0012\u0006\u0006l‡#\u0002C\u0005\u0016!„\u0010Â8iiXZÂҒí\u001cDXh\r\u0016!„\u0010Öp8œ÷ïß×rò˗/[´h!Ô<„\b\n\u0015X„\u0010BXãààpôèÑZN>|ø°3­þ&b‚\n,B\b!¬quu=tèPm–®¿{÷.\"\"‚\n,\".¨À\"„\u0010Â\u001a99¹e˖\u001f?¾ˆ¿9””dll\\v™ŸŸïêêº~ýz)))Æ3\u0002@zzzbbb\u001e¾LjMü\u0016¹+++\u001bÐ>\u000bÂGZZ\u001azz¨ªk\u000ei´$èŒ\u0011ñ1hР¤¤$''§€€€f͚}=!99yܸqS§N533c8ÛÕ«W·oߞ””¤¡¡Ááp’““óóó\u0007\u000f\u001e<sæL\u000e‡Ãp\u0018\"^įÀ266\u001e:t(Û)ˆ\bQQQÁ̙øò…í D„H\u0007\u0004°\u001dÔÁĉ\u0013\r\f\f\u001c\u001d\u001d­­­‡\u000f\u001fnbbR2þàÁƒcǎ]¿~}ýúõ=zô`2Rvvö”)S\u0014\u0015\u0015ÿý÷6|‡.çåå:uÊÚÚÚÇÇgȐ!LF\"âE‚Ç㱝¡\u000eæÎ{ûöí\u001b7n°\u001d„ˆøøøV½z!%…í D„ô05½sç\u000eÛ)HÝ\u0014\u0015\u00159s&$$äÕ«WÅÅŒ’’mÛ¶urr\u001a<xpuç@\u000bIVV–½½½——×O?ýTå„ìììñãÇ;::Ž\u001b7ŽÉ`D°&Ož¼páBþ\u0002Z€Äï\t\u0016!„\u0006IJJÊÁÁÁÁÁí ˜4iÒ¢E‹¬­­«› ¬¬|äÈ\u0011{{{\u0013\u0013\u0013†\u001f­\u0011qA‹Ü\t!„rçΝkÑ¢E¥êŠÇ㙙™ÅÅŕÈÈÈìÝ»×ËËK¼>\bbQRRÒ͛7oß¾œœÌv\u0016&Ð\u0013,B\b!¤Ü¶mÛvíÚÅ?\u0012\u0015\u0015\u0015\u0014\u0014\u0014\u001d\u001d]if˖-ïÞ½K\u000f±jðéÓ§\u001b7ž?ÞÀÀ@GG§¨¨(!!áíÛ·ŽŽŽ3fÌPPP`; °PE\b!„”ÊÍÍýòåKóæÍù\u0007cbb\u0014\u0015\u0015\u0015«Úªììì\u001c\u001e\u001eN\u0005Vu.]º´hÑ¢ùóç/Y²„!]AAÁ\u0003\u0007\u0006\f\u0018°cǎ.]º°˜Pxè#BB\b!¤Tbbâם€<==ýýýUUU¿žobbòüùsF¢‰Ÿ³gÏ®[·îìٳÆ\r«´MAFFÆÍÍíäɓÿûßÿ\u001aê~\u0014*°\b!„RYYYujpÕ¤I“OŸ>\t/øŠ_½zõñãǛ6mZݜ\u0016-Z\u001c;vlöìÙ\u0019\u0019\u0019Lfc\u0006\u0015X„\u0010BH)--­ÔÔÔÚÏOIIÑÖÖ\u0016^\u001eñåãããë뫬¬\\6òõF\u0001\u0000ZZZ^^^kÖ¬a< ÐQE\b!„”jÞ¼ù˗/k?ÿúõ릦¦ÂË#¦222RSS{öìY6\u0012\u0015\u0015åææöõF\u0001\u0000NNN×®]+,,d0 \u0013˜Xä^©\\åÇÔ\u0014!„\u0010Â.IIÉ®]»^»vÍÜܼ6ó\u001e=ºwï^a§\u0012;QQQ•z´Ö°Q\u0000@Ÿ>}îܹӻwoFÒ1„‰\u0002k„\tÑÑъŠŠ_¯\u0010LJJb \u0000!„\u0010RK\u000b\u0016,˜0aBddä7\u000f–\u000e\u000f\u000foÓ¦M‹\u0016-˜\t&F^¿~]vÞQ\tOOO\u0000\\.·ÊùFFF¯^½¢\u0002«ÎnÞ¼éææ¦¨¨èïïÏÀí\b!„ï¦««;tèPOOÏM›6ñWz\"ðüùó•+Wž9s†Ùtâ!''§N\r®\u0014\u0015\u0015¿4¸ód™Xƒ%!!1fÌ\u0018}}}\u0006îE\b!„Ô“‡‡‡ŠŠÊĉ\u0013³³³«œ\u0010\u0015\u00155~üøýû÷×°E®1ÓÖÖ®S»ö7oÞTê=Ö\u00000´ÈÝÊʪäñ !„\u0010\"ú–-[æèèhmm½råÊǏ\u001fçåå\u0001HKK;uꔳ³óáÇÃÂÂ\f\r\rَ)¢z÷î}åʕÚÏ¿zõ*ÿŠø†µNîoÞ¼‰‰‰±³³«nB~~þçϟ+\ræååÉÊÊVÙí4Z’’’hÒ\u0004yyl\u0007!„4(NNNC†\f‰ˆˆð÷÷õêU~~¾ššZ¯^½|}}Û´iÃv:‘Ö±cÇØØØOŸ>5iÒ䛓\u0013\u0012\u0012x<ž††\u0006\u0003Á˜ÄZuóæÍ\t\u0013&T÷ô\u0015@DDD```¥Áû÷ï;::zxx\b9\u001d\u0011'jjjX¿\u001e¹¹l\u0007!\"D¦âê\u0019B¾¬¬¬ƒƒƒƒƒ\u0003ÛAÄÏܹs—-[¶qãÆoÎüõ×_ûí7\u0006\"1LB¼Ž\u0001Ÿ;wîíÛ·oܸÁv\u0010\"Bâãã[õꅔ\u0014¶ƒ\u0010\u0011ÒÃÔ´¡ž¿Aˆ¸˜4i’……Ÿqãj˜³f͚ìììßÿ±Tü&Ož¼páB!=d´Ñhqqqfffqq1“7%„\u0010B\bóvìØqîܹŋ\u0017çVõ\tCVV–‡‡GJJÊòåË™ÏÆ\u0000&\n¬ÜÜÜ%K–\u0018\u0019\u0019ÉÉÉ5iÒDVV¶mÛ¶K—.Í£E3„\u0010BH\u0003%''\u0017\u0018\u0018تU+KKËå˗߸qã͛7‰‰‰W®\\Y¸páàÁƒ\u0007\u000e\u001c¸yóæJç@7\u0018L¬Áš2eJJJÊîÝ»;v쨢¢’••\u0015\u0017\u0017çëëëááA\rp\t!„†JBBbòäÉ®®®—.]\n\r\r}óæ¤¤d«V­¬­­W¬X!-ÍÚBp\u00060ñ{\u000b\r\r-kq¡¦¦Ö§OŸÀÀ@===\u0006îN\b!„\u0010\u0016ÉÉÉÙØØØØØ°\u001d„QL<—Ó×׏ˆˆ¨4xîÜ9]]]\u0006îN\b!„\u0010Â0&ž`íÙ³ÇÁÁÁ××·cǎ\u001c\u000e'+++666---44”»\u0013B\b!„0Œ‰\u0002ËÔÔ4!!áòåË/_¾ÌÈÈPUUuww·°°hØ\u001f¾\u0012B\b!¤Ñb¨Ä‘––\u001e8p 3÷\"„\u0010B\baWÃÜ\u001bI\b!„\u0010Â\"*°\b!„\u0010B\u0004ŒVA\u0011Bˆ\u0018zô\b\u000f\u001f\"-\rªª06†©)$$ØÎD\b)GO°\b!D|\u0014\u0015aï^ôé\u0003|ù‚–-QXˆƒ\u0007ѧ\u000f6m\u0002\u001dAˆÈ 'X„\u0010\"&ÒÓ1f\fú÷GT\u0014\u0014\u0014ÊÇ'NDa!vïÆàÁ\b\f„Ž\u000e{\u0011\t!¥Ä¯À’••UUUe;\u0005\u0011!’’’h҄~v'\r\\N\u000e†\u000eŲeèׯŠW¥¥1}:ÌÍ1b\u0004BC¡®Îx>\"2ΝÃñãxþ\u001c’’(*‚¼<\u0006\fÀ¸qøï<\u0015Â\fñ+°úôéãííÍv\n\"BÔÕÕñÇ\u001fÈÏg;\b\u0011!²K–°\u001dAÐæÏÇìÙUWWe~ø\u0001¾¾˜2\u0005§N1\u0015‹ˆ’ÿÅôéèÒ\u0005sç¢C‡ÒÁ/_\u0010\u0011Ñ£1h\u0010\u0016.¤µzŒ\u0011¿\u0002ëòåË«V­b;\u0005\u0011!ñññ­\\\\’Âv\u0010\"BòMMَ PϞáÍ\u001b8;—„„ÀË\u000b‰‰èÙ\u0013Û·ÃĤt¼O\u001f¨«ãêUôíËJRš[·àé‰}ûжm…qEEüü3œá닑#\u0011\u0014\u0004êòÍ\bZäN\b!\"/(\b\u001e\u001eå—))puņ\rHN.ýXßìÙØ¿Ÿá€„e‰‰˜7\u000f\\nåꪌ„\u0004~ù\u0005\u0003\u0006à—_˜MÖxQE\b!\"ïúuXX”_Þº…Νak\u000b\u0015\u0015øøàÉ\u0013dd”¿Ú±#ž=c<\"aՂ\u0005ðó+_{\u0017\u0012\u0002cc()åÿøã³7oÞ\u0014\u0014\u0014\u0000ÀÔ©xû\u0016÷´ñ \u0002‹\u0010BD^Q\u0011ääÊ/­¬pòdé÷·nA_\u001fM›V˜/-\r\u001e¹x„]¯^!7\u0017=z”^¦¤\u0014\u0019³ÍÀ`Pǎg>}⸹-\\¸pàÀ#G޼}û6V¬Àºu¬Æm,èƒXB\b\u00117\u001c\u000e8\u001cðx\b\rŌ\u0019ر£Š•Ë<\u001e-gn,BCù?&\u000eöòj+#ÓÍÇgFïÞÈχ¼ü\u0001??¨ª>þ|éÒ¥JJJ;Þ¾•Ìχ¬,‹‘\u001b\u0003*°\b!DäII¡Ò¿ˆiipwGB\u0002¸\\|½¢¿°\u0010’ô\u0001E£ñø1lmK¾;wn3mm§¸8\t-- Â\u0003NCCÃÀÀÀC‡\u000eEž=;ðÅ\u000béÂB„‡#.\u000eÙÙÐÐ@çΰ·G‹\u0016,þ>\u001a\u0018ú\u0013H\b!õõå˗W¯^¥¥¥\të\u0006}úàòåò˼<X[ÃÄ\u0004ÑÑUTWÿü\u0003##a%!\"(=\u001djj\u0000\u0002\u0002\u0002x<Þok×JhiÇCH\bF†Ÿ\u001fÿ³ÌÑ£G·10H´²Âƍhß\u001e>>ص\u000b³fAN\u000enn˜>\u001dÂû¿q#CO°\b!ä;¥¦¦nÚ´éêÕ«jjjššš\u0019\u0019\u0019©©©†††ÿûßÿºuë&È;\u001eE‹`m]zÉ墨\bîîHL,\u001dÑՅ”Té÷þþ\u0018;Vw'\"NM\rééÙ²²»víº\\Rˆÿ÷€“\u0017\u001cÜ{Ö¬€¶mK'\u0007\u0007·ý÷ß%­[ðôìPÖ+KM\r&&˜0\u0001‘‘°·ÇŸ¢l>ù^T`\u0011BÈ÷Ø»wï\u0003\u0007\u0016.\\¸råJ©²â\u0006xòäɊ\u0015+ÔÔÔ6oÞ,+¨e.ÆÆÐÐÀéÓ°·\u0007€{÷ðà\u0001Z·.Ÿðþ}é\u000e²èh¼}[aË!iðÚ·GL̉ϟ]]]åääJ\u001fpÚØ\\œ>=pǎèèèò™W¯b÷n\u0018\u001aÚþþû®]»¶lÙRù­¬­ad„Q£Àå¢äCFò½è#BB\b©³•+Wþý÷ßQQQ666üÕ\u0015€\u000e\u001d:\u001c9r¤wïÞ?ÿüséÞxØ¸\u0011¾¾¸u\u000b\u0000Ö®\u0005W᫤ºŠ‹Ãœ9øã\u000fÝ”ˆ\u0005{{\u001c?\u001e\u001e\u001eîää\u0004”?à|qù²nQ‘‰‚\u0002ŠŠ\u0000 7\u0017^^X¹\u0012šš=ÌÍcbbʺ9ÀÒ\u0012±±¥ï¦¯\r\u001b0g\u000ek¿†‚\n,B\b©›gϞmß¾]ºúŽØ®®®#FŒ˜7ožÀ„\u0013'àãƒM›ª8\u0018ª¸\u0018ûöaÊ\u0014\u001c>\fMMÝ”ˆ\u0005CCHH4}õªEÉ\u0012õÿ\u001epº¯ZµìÀrr¤23\u0001`ï^Œ\u001f\r\u001bðË/\u0012\u0012\u0012Ú@µíjûô„\u0004\u001e=båwÓ`PE\b!uŸŸ¿fÍ\u001aþA\u001egff\u0016\u0017\u0017Ç?8nܸ·o߯ÄÄ\bìÞ\u001a\u001a\b\u000f‡¬,ú÷Çÿþ‡ƒ\u0007qî\u001c\u0002\u0003áå…>}šŠsç ¯/°Û\u00111²nÝÿþý\u0017\u001f?\u0002•\u001fpê´lY¤ª\n\u0000\\.Š‹Ñ´)zö\u0004Ð9'§¨cÇjÛՎ\u001f\u0013'Xù­4\u0018T`\u0011BH\u001dœ>}ÚÑёÃᔍDEE¹¹¹UXéò\u001fooï;w\nòö22˜1\u00037n`ìX\u0014\u0016âþ}äæÂÎ\u000eׯcÁ\u0002((\bò^DŒèéí54äÙÛ#>¾ê\t<\u001eâã\u0011\u0019‰M›J\u0006n((Hq¹¥¯~Ý®¶TõiR{´È\u0010Bêà̙3^^^ü#111ŠŠŠŠŠŠ_Oî֭ۓ'O\u0004\u001fBB\u0002=z”wî\u0016k‰‰¸}\u001bo߂Áž\u001e~ü‘\u001a`~\u001f)KË{?üÐ}üxô뇉\u0013Ë÷@ðx¸z\u0015\u001e\u001e’‰\u0013%»M?}ú$¡¢\u0002MÍjÛÕÊË#/ßGÃA\u0005\u0016!„ÔA|||ۊçézzz\u0002à–=\f¨ˆÃáäææÊËË3\u0011N¼œ?µk¡¦†¾}¡­œ\u001cDEañbôè\u0001oo4kÆv>13|øð»wï¾t\t!!ðöƛ7¥ÍfÓÒpÿ~i³«ÿ6d\u0004\u0005\u0005ÙÛÛ×Ô®–ŽZª7ñ+°¬­­«ØYJ\u001a1mmmœ;\u0007\u0001n×\"âOvöl!½sqq±d]š¤s8œ¬¬,*°*(,ÄܹÈÉAPP\u0015½\u0000́\u001d6m‚™\u0019\u001báÄUϞ=W­ZõàáÃÎNN(ÙNXBG\u0007³f¡m[dg—\f¤§§\u0007\u0006\u0006^Šˆ€¥%llpü8*î„\u0005€ÄDêê^OâW`EFF.]º”í\u0014D„ÄÇÇ·\u001a<\u0018))l\u0007!\"$ÿëþæ\u0002\"//Ÿ““£PëÕNiiiÍèaL%Ó¦¡[7xxTýª­-zöİaØ´\t‚í×ÚÐmݺÕÅÅ%88X‹¯lMJJ*ýÎØ\u0018\u001eå¶m;vìØµk×ʝ=[S»ÚÐPüô\u0013“á\u001b\u001eZäN\b!uЭ[·\u001b7nÔrrNN\u000eÇ«Ó\u0013¯†ïÀ\u00014kVmuUBC\u0003GŽ`Æ\fää0\u0015«!ÐÕÕõ÷÷wrrºUÒ/­’iÓ²}|lmmÝÜÜúöí[Þ®¶ì«l\u0017a^\u001e\u000e\u001d‚³sFFÆÓ§O“““‹J:i‘º ?ö„\u0010R\u0007C‡\u000e=xð`-'\u0007\u0007\u0007ÛØØ\b5˜ÉËÎ\u001dàÿ\u0014¢Ê^—\u0000š7ÇäÉØ¶ñˆâ­[·n'Ožô÷÷\u001f6l؉\u0013'’’’òóóSRR.\\¸0u÷îëwïþio?tèP úvµÀç™34mÚgР‰\u0013'nܸÑÓÓÓÂÂÂÅÅ¥ö?Z\u0010ˆãG„„\u0010¢nݺeeeÝ¿¿K—.5Ïüüù³¿¿ÿ¹sç˜\t&\u001e¢¢`cSÞN\"%\u0005®®8|\u0018}ûbýzŒ\u0018Q¡¹å¸q\u00188\u0010žž¬$\u0015_-Z´\b\f\f|ñâEppphhhjjªššš‘‘‘»»»éæÍ°³CÛ¶°µ­ú\u0017óx÷œœ^ÿýw³}û®YYñ?|}ñâŊ\u0015+vïÞ½}ûöÚDÞ¨ñÄʜ9súôéÃö3\"ZâããyÚÚ<€¾è«ìËÔÔTx\u0011%$$ôîÝ;55µ†9………#FŒ\b\r\r\u0015^\f±äéÉ»y³ü28˜gn^ú}^\u001eOB‚—ž^aþÏ?óÞ½c.^c•Åsqáyxð’“+¿tïÞs##®™YA~~u¿úĉ\u0013ƒ\u0006\r*ùì»\u0001pss{þü¹ÞœžxƒÙ6\u0000\u0000\u0019\u000bIDAT`\u0011BHÝèêênݺÕÉÉiëÖ­Ý»wÿz»wïÜÜÜ\u001c\u001c\u001cìKÎf&eÞ¼ž^ù¥•\u0015Ê~fþº×%\u0000==$%ACƒ¹„\rž²2Ž\u001cÁùópwGn.Ú¶…Š\n޽ÿÿ&ÊÉí21Y\u001b\u001c,Áß\u0010«¢¡C‡òx¼\u00193fìÝ»—ÉÔâˆ\n,B\b©³îÝ»\u001f=ztþüù222£G633k֬ٗ/_\u001e=ztêÔ©[·n­\\¹ÒÜܜ혢‡Ç«Ð͒Ã\u0001‡Sm¯K\u0000\u0012\u0012ԐI(\u0006\r AÈÉÁë×øø\u0011ZZ\u0005͛»XYEœ:Å_]ñx¼Þ½{\u0007\u0004\u0004\u0018\u001b\u001b—\r\u000e\u001b6,88øæÍ›½{÷f#ºØ \u0002‹\u0010B¾‡®®î±cǞ<yÂårÿüóÏ\u000f\u001f>¨¨¨´mÛÖÖÖvõêÕ´s°j-[\"!\u0001ÚÚå#5ôº\u0004\u0010\u001f\u000f\u001d\u001d&\u00036.\n\n01)ù6<$ÄÖÖVEE¥ìŨ¨¨   ê΀Z»v-\u0015X5£\u0002‹\u0010B¾_‡\u000e\u001d:tèÀv\nñai‰sçJ\u000e\u001b\u0006€¼<X[WÛë²°\u0010ïßCS“ግSxxøìŠíyk8\u0003ª}ûö/^¼`*š¸¢\u0002‹\u0010BH\u0005III\t\t\t………Í›7744¬aENYYá÷ßñË/(imÏåÖÔëòÐ!\f\u0019\"°[“\u001a½zõÊÈȈ¤æ3 ÔÕÕ?}úÔ¤I\u0013&‰'*°\b!„\u0000@nn®¿¿?—ËÕÕÕ500‘‘IJJúçŸÌÌÌ\u0016.\\¨!•æòò˜<\u0019+WbÅ\n\u0000å½.˼_ڍéÝ;ìØ¨(\u0001ܔÔBAAŒŒLí痜\u0001E\u0005V\r¨À\"„\u0010‚G\u001eM:uÒ¤I—/_––®ðOCDD„““Ó¯¿þêèè(€;¹¹ÁÕ\u0015ûöaâD¬]‹µk«˜“‘Q£à燪>Ÿ\" ¢¢R§'R©©©šôémh\u0019&!„4v\u000f\u001e<˜>}úÑ£G'Ož\\©º\u0002`ccsþüùÀÀÀC‡\u000e\tæ~{÷âúu̚…ôô*^½x\u0011vvX¼¸|©\u0016\u0011>SSÓk×®Õrr^^^AA¬¬¬P#‰;z‚E\b!Zvvöôéӏ\u001f?Þ²eËêæ(**\u0006\u0005\u0005ÙÚÚvêÔ©cǎõ½¥¬,öìAh(œ¡¯þýѼ9rr\u0010\u0017‡óçÑ®\u001dNž¬°Ó\bßСC—/_n[]‡÷Џ\\î Aƒ„\u001dIÜÑ\u0013,B\biÔ6mÚ4cƌJÕ\u0015Ç333‹‹‹+\u001b‘••ݺu«···Ànìà€+Wàí\rii<~Œ7oÐ¥\u000bΜÁΝT]1¯}ûöRRR7oÞüæÌϟ?ûùù͜9“TbMüž`YXX,[¶Œí\u0014D„hjjâèQäç³\u001d„ˆ\u0010Ù%K؎ \u001ex<ÞÙ³g+}6T]\u0003$ccc\u0019\u0019™ÄÄD]]]%02BÅÍk„-\u001b7ntvv>vì˜\u000e_ﱤ¤$þ9EEE“&MZ¸p!Ç,R%ñ+°._¾¼jÕ*¶S\u0010\u0011\u0012\u001f\u001fßÊÅ\u0005))l\u0007!\"$ÿ떕¤*Ož<éܹs¥¶¨54@²³³‹ŒŒtssc* aŽ––Ö\u001fü1|øðõë×Wy\u000eAJJÊäɓé\f¨Ú\u0010¿\u0002‹\u0010Bˆ ÄÇÇ·iÓ¦Ò`\r\r\f\r\rϝ;ÇD2†Ž\u001d;r¹Ü_ýuÓ¦M£FêÓ§––Vffæ“'O‚ƒƒÿþûïU«Võ);>’Ôˆ\n,B\bi\bx<ÞÇ\u000f_¿~™™©­­Ý­[·f͚}óWåää(((Ôþ.\n\n\n999õˆID––Öþýû_¾|yêÔ©àààÔÔT\u000e‡Ó®];GGG___Avmè¨À\"„\u0010ñ–““ãçç\u0017\u001a\u001aÚ¥K—víÚ)++ß¾}{óæÍ\u0012\u0012\u0012‹\u0016-ªùyCóæÍcbbj¯7oÞ4o޼ޑI5ŠŠ\u0010\u0012‚\u0010ÄÇCF\u0006ùùhÕ\n\u000e\u000eprB]º€ÖŸAɃLòݨÀ\"„\u00101öôéÓI“&Mž<ùêÕ«R\u0015óKLLôòò\n\u000e\u000e^³fÔ×'ý\u0001\u0000ºvíº¤.\u001b\u0002.]º4räÈz%&Õùë/,\\\b\u001b\u001büö\u001bÚ¶-\u001d|ñ\u0002ǎ¡üþ;\u0006\f`5\u001f©\u001bjÓ@\b!âêÕ«W\u0013'N<xðàĉ\u0013¿.¡tuu\u000f\u001d:Ô²eËiÓ¦U÷\u000eŠŠŠêêê\u001f?®Íí>þ\u001c\u001d\u001dÝ£Gz…&U:x\u0010k×\"4\u0014>>åÕ\u0015€6m°p!́Ÿ\u001fvïf/\u001f©3*°\b!D,\u0015\u0015\u0015Mœ8qß¾}\u0006\u0006\u00065L›3gŽªªj@@@u\u0013–,Yò믿\u0016\u0017\u0017óŽ«V­òðð¨´å\bÀåË8v\f!!¨nٜª*NBD\u0004\"\"˜MF¾\u001fý9!„\u0010±\u0014\u0018\u0018hccÓ®];þÁ¯\u001b„\u0002X¾|ù®]»ª[œnbbbmmý믿òx<þñ¤¤$ccã²Ë£G¾~ýz̘1‚û\u001d\u0010\u0000@A\u0001¼½qð Ê\u000e)\n\t±1””`i‰ØØÒA))\u0004\u0004`Ù2äæ²•”Ô\t\u0015X„\u0010\"–‚‚‚<<<øG¢¢¢ÜÜܾn\u0010*//ïèèXC{…9sæ4iÒd̘1\u001f>|øúÕÜÜÜe˖\u0005\u0007\u0007ïÙ³‡6‘\tÞñãprBÓ¦¥—))puņ\rHN†¹9FŒ(ŸÉá`ìX\u0004\u0006²\u0012“Ô\u0015\u0015X„\u0010\"~J\u001eGUê¦]CƒÐŸ~úé…\u000b5¼¡Ïĉ\u0013þùçÙ³gGDD<}ú4>>þêÕ«K–,±´´lÙ²åáÇëÔЁÔ\u0016—\u000bþ}\u0003·n¡sgØÚBE\u0005>>xò\u0004\u0019\u0019寎\u0018Ó§™ÏH¾\u0003í\"$„\u0010ñ“œœüõy554\b500HHH¨ù=\u0007\r\u001a4pàÀ»wïFFF\u0006\u0007\u0007çååéèèôë×ÏÛÛ[VVVPÉIeï߃ÿJ++”uÖ¸u\u000búúå\u000f·\u0000hh 3“Ñxä{QE\b!â§°°PZº\u000eKKK\u0017\u0016\u0016~sš„„D\u001e=hŸ ›8\u001cp8àñ\u0010\u001aŠ\u00193°c\u0007ècYñD\u0005\u0016!„ˆŸæÍ›W:…·f\t\t\t-[¶\u0014^\u001e\"HiipwGB\u0002¸\\Щšb‹Ö`\u0011Bˆøáp8ÙÙÙ¹µÞPvþüy\u000b\u000b\u000ba&\"ߋÃ\u0001ÿނ¼<X[ÃÄ\u0004ÑÑUTW™™—g2\u001dùnT`\u0011BˆXrtt\f\n\nªÍÌâââcǎÙÚÚ\n;’`de!.\u000e/_¢‘\u001czhk‹ààòK.\u0017EEpwGb\"^¿Æë×(**õôiX[3Ÿ‘|\u0007ñûˆÐÂÂbÙ²el§ \"DSS\u0013G\"?Ÿí D„ÈÖåø\u001715}út+++\u0007\u0007\u0007\r\ršgnÛ¶mȐ!Mù×J‹ /_°m\u001bÂÂÀá@G\u0007yyxó\u0006’’\u0018;\u0016£G£\u0001w7\u001d3\u0006ÖÖ\u00187\u000err\u0000pï\u001e\u001e<@ëÖå\u0013Þ¿‡º:\u0000\u0014\u0014`ûvœ9ÃNNRW<±2g̚\u000f.%P||<O[›\u0007Ð\u0017}•}™šš²ý×\u0015\u0013nݺeeeõñãÇ\u001a愇‡ÛÚÚ\u0016\u0014\u00140–ê{\\»ÆëՋ\u0017\u0010ÀËÍ­0þñ#oÅ\nž…\u0005ïõk–’ÕQq1ïÍ\u001b^L\f/.Ž÷åKmՑ#<7·oO›1ƒ\u0017\u0010PŸt¤\u001277·çϟ\u000béÍÅï\t\u0016!„\u0012½zõZ°`­­­¯¯¯™™Y¥Wsss}}}ïÝ»wøðá:m9dZD\u00046nę3U\u001c\u0014Ó¤\t~û\rÎÎ\u00189\u0012\u0007\u000fÂА|µ“œŒuë\u0010\u001d\r}}hkãóg¼z\u0005iiL™\u0002'§oüZ\u0017\u0017<{†©Sáï\u000f\u0019™*&\u0014\u0016bþ|p8\u0018?^\u0018ى0ˆð\u001f9B\b!ß2pà@##£Å‹\u0017/]ºÔÎÎÎÈÈHEE%99ùêÕ«7nÜpww?qâ„HŸ\u001eøê\u0015V­Â™3àpªÓ¡\u0003\u000e\u001cÀ„\tˆŠ*ý\u001cMÔ\u001c8€={°x16n¬ÐUáÃ\u0007¬[‡={°µç\f–ðñÁ\u0003°°ÀìÙ°·GY·Øœ\u001c„‡cófL˜\u000077!þ\u0016ˆ QE\b!â­U«V\u0001\u0001\u0001éééçϟ¿sçΗ/_´´´†\u000f\u001fîëë+Ò¥U‰E‹°iSyu\u0015\u0012\u0002//$&¢gOlß\u000e\u0013“Òñ¶máê\n̟ÏVÒjmތGpá\u0002¾nǪ®Žuëpí\u001a\u001c\u001c\u0010\u001aú\u001akÜ8ØÛã?àà€ÂBÈÈ  \u0000RR°²\u0002—û_KD\u000f\u0015X„\u0010Ò\u0010¨©©¹¸¸°¢ŽÞ½CV\u0016ºw/½,9†ïðaôí‹õë1b\u0004\u001e=*Ÿìæ†~ýD®Àºx\u0011ׯãèњ–á››cíZŒ\u001f°°o¼›ª*¼¼àå\u0005\u0000ùùUTlD|ˆü\u000f7„\u0010B\u001aªsç`o_~Yó1|ÒÒhß\u001e±±ÌǬVq1–.Ŏ\u001dåÕUH\bŒ¡¤\u0004KË\nQÍÍѾ=BBêðæT]‰9*°\b!„°äåK´kW~ie…“'K¿ÿú\u0018>\u0000ÆÆxù’¹xßtý:zö,í¡€ÿžÀm؀äd˜›cĈ\n“ù\u0005üÁ|FÂ\u0016F\u000b¬âââÌÌÌââb&oJ\b!DDegCY¹ü’Á¦&x<„„`ôhøùU>†ÃAV\u0016Ã\u0019k\u0012\u001e\u000eGÇò˚ŸÀih ?¿±tO%Ì\u0014X¹¹¹K–,122’““kÒ¤‰¬¬lÛ¶m—.]š——ÇÀÝ\t!„ˆ(--¤¤T\u0018IKÃСX±\u0002\\n…O\u000fK$'C[›±tßöú5Ú¶-¿üæ\u00138}}¼yÃ\\<Â*&\n¬)S¦Ü¼ys÷îÝ)))ùùùïÞ½Û¿ÿÇ\u000f=<<\u0018¸;!„\u0010\u0011Õ£\u0007®]+¿¬ù\u0018>\u00007o¢K\u0017ÆÒ}[v6””Ê/¿ù\u0004NI\tÙÙ\fg$lab\u0017ahhhlllóæÍK.ÕÔÔúôé\u0013\u0018\u0018¨§§ÇÀÝ\t!„ˆ¨\u001f„—\u0017òòJ»[ñ\u001fÃWBW\u0017RR¥ß¿~\ryùÊτإ­””\n\u001d¼ÒÒà\u0004p¹UԈÉÉøïŸBÒà1ñ\u0004K__?\"\"¢Òà¹sçtuu\u0019¸;!„\u0010\u0011%-ñãáçWzYv\f_Ù\u0017ÿ\u001a&//x{³\u0012³Z½z᯿Ê/k~\u0002ÇãáÍ\u001bhi1\u0019°ˆ‰'X{öìqppðõõíØ±#‡ÃÉÊʊMKK\u000b\r\reàî„\u0010BDWÉI2]»bÐ ¬]‹µk«žæë\u000bCCôìÉl¸o±·Çرå\rÖk~\u0002\u0017\u0019\t:K·1a¢À255MHH¸|ùò˗/322TUUÝÝÝ-,,Dúl,B\b!\f’B` \\\\ðò%ÜÝ«hי“\u0003ooää`Û66òÕHK\u000b;ãäI\f\u001d\nð=+óþ}i\u0013‡¼<üþ{ù\u0012xÒ\b0TâHKK\u000f\u001c8ä͛7111vvvÌ\u0004 „\u0010\"¢š4ÁéÓX½\u001a––\u00185\n\u0003\u0006@W\u0017……xñ\u0002áá8}\u001a3f`ìX¶SVcéR\f\u0019‚¶mÑ©SµOàŠ‹1u*f̀¦&ãù\bk$x<\u001e+7>qâĄ\t\u0013²«ßOqòäɝ;wV\u001a|õꕂ‚B3:’‰ð‘–––(,d;\u0005\u0011-ââ~øá\u0007¶S:*(À‡\u000fÈÈ@~>$$ /\u000f554kVÓ)4µ––––-”ÍUyyxô\b­ZU]?åç#6\u0016jj eÇ¢'11ñâŋ-Z´\u0010ƛ³V`‘zZ¶lY¿~ý,--Ù\u000eBDˆ¥¥å¥K—ØNAH㓝­[ñÃ\u000føé§òEW\u0000޾ş¢ôíË^8Â\u000eFWA\u0015\u0017\u0017ggg+++‹Á\u0001ï„\u0010BH-)+cáÂ*Æ[´Ào¿1ž†ˆ\u0004êäN\b!„\u0010\"`Ôɝ\u0010B\b!DÀ¨“;!„\u0010Bˆ€Q'wB\b!„\u0010\u0001£NîâJJJJН\n!\u00005ï%„\u0010\u0011ÁP›†ÂÂBþNî\u0006\u0006\u0006Ôɽž¾|ù\"//Oû1\t¿¬¬,\u000eÿ¹³„\u0010BXB}°\b!„\u0010B\u0004Œž\u0010B\b!„\b\u0018\u0015X„\u0010B\b!\u0002F\u0005\u0016!„\u0010Bˆ€QE\b!„\u0010\"`T`\u0011B\b!„\b\u0018\u0015X„\u0010B\b!\u0002F\u0005\u0016!„\u0010Bˆ€Q%–x<ž™™Y\\\\\u001cÛAˆ¨\b\t\tù{÷\u0016\u0012e·Çqü\u0019Çt§ã\u001cPkRÔ´ƒv£•@+\u0005é¢pÒ\u0012\u0013*‘Îd\u0014Du£\u001dè\bQÐ\u0011Šˆ„¨,ÍC]D¥Q©E¥IL‘¥æi̦IG0kÆÙ\u0017\u000f{fÞj¿{í&_¿Ÿ«õü]ëYx\u0010̬qbbbüýý“““F£§ÛÁˆ`2™\u0014\nÅÑ£G•òòò¤¤¤¿w·ÂÂÂ\u0015+VˆélˆíÛ·ëtº\u000f\u001f>ȗIII\n\u0017mmmÂ÷ý±\u0005\u000b\u0016üë?RSSåâÓ§O§OŸ®Óérrr\u0006\u0006\u0006~sK\u0010Ž€5üܹsgõêÕµµµžn\u0004\n“É´råʂ‚‚ÎÎÎÄÄÄÌÌLOw„‘B¡PìÝ»÷÷\u0007”_wöìY£Ñ8fÌ\u0018ù²¼¼Üb±X,–°°°²²2y\u001c\u0012\u0012ò›»zýúõ­[·êêêêêêNž<)I’Íf3\u0018\f›6mzùòe{{ûÁƒ\u0007sK\u0010Ž€5ü<þÜÏÏÏÏÏÏӍàOQSS\u0013\u0017\u0017·hÑ\"µZ½sçΗ/_Z,\u0016O7…\u0011ÁÇÇg͚5›7oþ®^SS3gÎœïÆ\t\t\tÛ¶m\u000b\n\nJLL¬®®ž9sf@@ÀÖ­[å™ýýýYYY\u001afΜ9\r\r\rrñþýûS§N\r\f\f\\¾|ygg§$I¯^½JJJÚ¿llìÐM¯]»\u0016\u001d\u001d­Ñh–,Y\"¿d•žžÞÓÓ3kÖ¬îînyŽJ¥ÒjµZ­ÖËËË9...þn¡Ýn߸q£N§\u000b\n\nÚ·oŸÛŠÛÞÜNS©TåååÎ>¿}ûÖÕÕ5wîܘ˜˜˜˜˜°°0I’ªªª4\u001aͪU«BBBòóó/]º$ä\u0001Á“\u001c\u0018žBCCF£§»À\u001f¡···««K\u001eWUUEFF\u000e\u000e\u000ez¶%Œ\u0004¾¾¾V«5,,¬´´Ôáp”••ÍŸ?ßápTWWϞ=[žæ\u001c¿yóF¡Pœ;wÎl6ÇÇǏ\u001d;¶¥¥åáǒ$™Íæ‹\u0017/J’tá…ÞÞÞüüü˜˜\u0018›ÍöñãÇÀÀÀÒÒÒOŸ>­_¿>%%Åáp\u0018FF³aÆúúzg3oß¾Õh4·oß6›Í999™™™r]£ÑX­V׿#\"\"îÝ»÷W\u000b¯^½:yòäwïÞ={öÌ××·±±Ñµâ¶7×ir±­­Í¹ucc£V«MMMŠŠÊÊÊjmmu8\u001cgΜqöüñãGooo»Ý.ôqáwã떁a/     Àáp”––æææž:uJ¡Pxº)Œ\u0014*•êøñã¹¹¹ÉÉÉ?¬Óé²³³½½½SRRúúúÂÃÃÃÃÃCCC{{{%IŠÏÎΖ$i÷îݧOŸ~óæMmmmrr²|Jéȑ#AAAƒƒƒ’$Ùíöcǎùøø8ï\\ZZš–––’’\"IÒáÇCBBìv»R©üiKn\u0017Úl¶ÁÁA«Õ:mÚ´¶¶6µZýäɓï*—.]ríÍu¡$I\u0019\u0019\u0019Cw4™Lz½~ýúõ\u0013&L8tèPffæ£G,\u0016‹ó›ÚÕjµÍfëë듗c˜\"`\u0001ÿ\u0004f³yíÚµïß¿/))™1c†§ÛÁÈb0\u0018Ο?¿gÏ\u001e·'Ü\u001d\u000e‡s\u001c\u001c\u001cìíí-I’···^¯—‹rE’¤ñãÇ;+ááá]]]­­­\u0015\u0015\u0015ΙJ¥²««K’$½^?4]I’d2™œËƒƒƒ}||º»»\u000bÀ파ŒÎÎNƒÁàå啛›»iÓ&׊ÛÞ\\§¹î˜àü$Êɓ'Õjuww·N§³Z­rÑjµ*•J•JõÓæñ'ã\f\u00160ì\r\f\f,X°`ʔ)µµµ¤+xıcÇΞ=[__ï¬Øl6yðëGà›ššäÁׯ_›››ÃÂÂôzý²eËL&“Édêèèhhh\u0003ëKSz½¾¥¥E\u001e›Íæ¯_¿\u0006\u0005\u0005ýʦn\u0017¶¶¶.]º´©©éúõ녅…ÅÅÅ®\u0015·½¹Nsݱ¶¶¶²²R\u001eûøø(•ÊQ£FEEE9S׫W¯Æ\u001fïåÅ\u001fèáç\u0007\f{%%%v»}íÚµ­­­ÍÍÍÍÍÍv»ÝÓMad\t\u000f\u000fßµkׁ\u0003\u0007äK­V[__ÿâÅ\u000b‹Årâĉ_¼I]]ݹsç,\u0016K^^Þĉ\u0013###\u0017.\\XQQQYYùùóç½{÷feeýÕÛß©©©ÅÅÅwïÞµX,Û¶m3\u0018\fÎ\u0017Æ~Ìí¢¢\"ƒÁÐÑÑ¡Óé”Je__ŸkÅmo®Ó$I***joowîØßߟžžþàÁƒžžž;w&&&jµÚ¤¤$³Ù|ãÆþþþ‚‚‚ÿǬÀïæéC`ø›8ä\u000e§\u001d;v|÷{ÝÝÝíé¦ðÏ'\u001frw^~ûö-..N>ä>88¸eË\u0016•J\u0015\u001b\u001b{ùòeç!÷èèhyr^^Þ¾}ûäqDDDSSÓŋ\u0017×­[—––¦V«ç͛÷öí[ù§7oޜ2eÊèÑ£“““å3ãF£ÑyŸ¡®\\¹2iÒ¤€€€Å‹\u0017›L&¹øÓCîn\u0017öôô¤¦¦úûûëtº5kÖ\f\f\f¸VÜöævš¿¿YYÙÐÝ\u000b\n\nƍ\u001b'ïØÞÞ.\u0017\u001f?~\u001c\u001b\u001b\u001b\u0018\u0018˜““óå˗ÿöqàO£p\fyw\u001c\u0000\u0000\u0000ÿ;Þ\"\u0004\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004#`\u0001\u0000\u0000\bFÀ\u0002\u0000\u0000\u0010Œ€\u0005\u0000\u0000 \u0018\u0001\u000b\u0000\u0000@0\u0002\u0016\u0000\u0000€`\u0004,\u0000\u0000\u0000Á\bX\u0000\u0000\u0000‚\u0011°\u0000\u0000\u0000\u0004û7jXn»¼’Gö\u0000\u0000\u0000\u0000IEND®B`‚",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:19 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:42 GMT",
         "Content-Type": "image/png",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d0e0d0f735b61c9dbf2e34f718b6433f01499102238; expires=Tue, 03-Jul-18 17:17:18 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=ddee2d358affbad7806b4f1f66f0577f91499110602; expires=Tue, 03-Jul-18 19:36:42 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
@@ -23,13 +23,13 @@
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:19 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:42 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f5fbd37075b-AMS"
+        "CF-RAY": "378c4b900da82bee-AMS"
       },
       "status_code": 200,
       "type": "ok"
@@ -42,16 +42,16 @@
       "method": "get",
       "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x016a01d836/graphics/50/svg"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/graphics/50/svg"
     },
     "response": {
-      "body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"841pt\" height=\"595pt\" viewBox=\"0 0 841 595\" version=\"1.1\">\n<defs>\n<g>\n<symbol overflow=\"visible\" id=\"glyph0-0\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-1\">\n<path style=\"stroke:none;\" d=\"M 4.296875 -0.125 L 4.296875 -8.765625 L 3.359375 -8.765625 C 2.953125 -7.328125 2.859375 -7.28125 1.078125 -7.0625 L 1.078125 -6.0625 L 2.96875 -6.0625 L 2.96875 0 L 4.296875 0 Z M 4.296875 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-2\">\n<path style=\"stroke:none;\" d=\"M 6.265625 -6.140625 C 6.265625 -7.578125 5.015625 -8.765625 3.40625 -8.765625 C 1.671875 -8.765625 0.515625 -7.75 0.453125 -5.5625 L 1.78125 -5.5625 C 1.875 -7.109375 2.328125 -7.578125 3.375 -7.578125 C 4.328125 -7.578125 4.90625 -7.03125 4.90625 -6.125 C 4.90625 -5.453125 4.546875 -4.96875 3.796875 -4.53125 L 2.6875 -3.90625 C 0.90625 -2.90625 0.359375 -2 0.25 0 L 6.203125 0 L 6.203125 -1.3125 L 1.75 -1.3125 C 1.84375 -1.875 2.1875 -2.21875 3.234375 -2.828125 L 4.421875 -3.484375 C 5.609375 -4.109375 6.265625 -5.09375 6.265625 -6.140625 Z M 6.265625 -6.140625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-3\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.765625 C 6.28125 -4.359375 5.078125 -5.5625 3.546875 -5.5625 C 2.71875 -5.5625 1.9375 -5.203125 1.484375 -4.578125 L 1.734375 -4.46875 C 1.734375 -6.546875 2.28125 -7.578125 3.484375 -7.578125 C 4.234375 -7.578125 4.609375 -7.234375 4.796875 -6.28125 L 6.125 -6.28125 C 5.90625 -7.8125 4.859375 -8.765625 3.5625 -8.765625 C 1.578125 -8.765625 0.375 -6.96875 0.375 -4.015625 C 0.375 -1.359375 1.421875 0.1875 3.375 0.1875 C 4.984375 0.1875 6.28125 -1.109375 6.28125 -2.765625 Z M 4.9375 -2.6875 C 4.9375 -1.625 4.359375 -1.015625 3.390625 -1.015625 C 2.40625 -1.015625 1.78125 -1.65625 1.78125 -2.75 C 1.78125 -3.796875 2.375 -4.359375 3.421875 -4.359375 C 4.4375 -4.359375 4.9375 -3.828125 4.9375 -2.6875 Z M 4.9375 -2.6875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-4\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-5\">\n<path style=\"stroke:none;\" d=\"M 3.59375 2.3125 C 2.53125 0.59375 1.984375 -1.3125 1.984375 -3.234375 C 1.984375 -5.140625 2.53125 -7.078125 3.734375 -9.015625 L 2.765625 -9.015625 C 1.53125 -7.40625 0.734375 -5.125 0.734375 -3.234375 C 0.734375 -1.34375 1.53125 0.9375 2.765625 2.546875 L 3.734375 2.546875 Z M 3.59375 2.3125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-6\">\n<path style=\"stroke:none;\" d=\"M 6.21875 -4.21875 C 6.21875 -7.171875 5.140625 -8.765625 3.296875 -8.765625 C 1.46875 -8.765625 0.375 -7.15625 0.375 -4.296875 C 0.375 -1.421875 1.46875 0.1875 3.296875 0.1875 C 5.09375 0.1875 6.21875 -1.421875 6.21875 -4.21875 Z M 4.859375 -4.3125 C 4.859375 -1.90625 4.453125 -0.953125 3.28125 -0.953125 C 2.15625 -0.953125 1.734375 -1.953125 1.734375 -4.28125 C 1.734375 -6.609375 2.15625 -7.578125 3.296875 -7.578125 C 4.4375 -7.578125 4.859375 -6.59375 4.859375 -4.3125 Z M 4.859375 -4.3125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-7\">\n<path style=\"stroke:none;\" d=\"M 2.421875 -0.125 L 2.421875 -1.515625 L 0.90625 -1.515625 L 0.90625 0 L 2.421875 0 Z M 2.421875 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-8\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.953125 C 6.28125 -4.625 5.046875 -5.875 3.40625 -5.875 C 2.8125 -5.875 2.21875 -5.671875 2.015625 -5.515625 L 2.28125 -7.28125 L 5.84375 -7.28125 L 5.84375 -8.59375 L 1.203125 -8.59375 L 0.515625 -3.875 L 1.71875 -3.875 C 2.25 -4.5 2.5625 -4.671875 3.21875 -4.671875 C 4.359375 -4.671875 4.9375 -4.0625 4.9375 -2.8125 C 4.9375 -1.578125 4.375 -1.015625 3.21875 -1.015625 C 2.296875 -1.015625 1.859375 -1.359375 1.578125 -2.453125 L 0.25 -2.453125 C 0.625 -0.625 1.734375 0.1875 3.234375 0.1875 C 4.953125 0.1875 6.28125 -1.15625 6.28125 -2.953125 Z M 6.28125 -2.953125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-9\">\n<path style=\"stroke:none;\" d=\"M 3.203125 -3.234375 C 3.203125 -5.125 2.40625 -7.40625 1.171875 -9.015625 L 0.203125 -9.015625 C 1.40625 -7.0625 1.953125 -5.140625 1.953125 -3.234375 C 1.953125 -1.3125 1.40625 0.609375 0.203125 2.546875 L 1.171875 2.546875 C 2.40625 0.9375 3.203125 -1.34375 3.203125 -3.234375 Z M 3.203125 -3.234375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-10\">\n<path style=\"stroke:none;\" d=\"M 6.375 -2.171875 L 6.375 -3.25 L 5.109375 -3.25 L 5.109375 -8.765625 L 4.125 -8.765625 L 0.1875 -3.328125 L 0.1875 -2.046875 L 3.78125 -2.046875 L 3.78125 0 L 5.109375 0 L 5.109375 -2.046875 L 6.375 -2.046875 Z M 3.921875 -3.25 L 1.515625 -3.25 L 4.015625 -6.75 L 3.78125 -6.84375 L 3.78125 -3.25 Z M 3.921875 -3.25 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-11\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.53125 C 6.28125 -3.484375 5.671875 -4.265625 4.953125 -4.625 C 5.65625 -5.046875 5.984375 -5.5625 5.984375 -6.375 C 5.984375 -7.703125 4.8125 -8.765625 3.296875 -8.765625 C 1.796875 -8.765625 0.59375 -7.703125 0.59375 -6.375 C 0.59375 -5.578125 0.921875 -5.046875 1.625 -4.625 C 0.921875 -4.265625 0.296875 -3.484375 0.296875 -2.546875 C 0.296875 -0.984375 1.625 0.1875 3.296875 0.1875 C 4.984375 0.1875 6.28125 -0.984375 6.28125 -2.53125 Z M 4.625 -6.34375 C 4.625 -5.5625 4.1875 -5.15625 3.296875 -5.15625 C 2.40625 -5.15625 1.953125 -5.5625 1.953125 -6.359375 C 1.953125 -7.171875 2.40625 -7.578125 3.296875 -7.578125 C 4.203125 -7.578125 4.625 -7.171875 4.625 -6.34375 Z M 4.9375 -2.515625 C 4.9375 -1.515625 4.359375 -1.015625 3.28125 -1.015625 C 2.25 -1.015625 1.65625 -1.53125 1.65625 -2.515625 C 1.65625 -3.515625 2.25 -4.015625 3.296875 -4.015625 C 4.359375 -4.015625 4.9375 -3.515625 4.9375 -2.515625 Z M 4.9375 -2.515625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-12\">\n<path style=\"stroke:none;\" d=\"M 7.890625 -0.125 L 7.890625 -9.015625 L 6.546875 -9.015625 L 6.546875 -1.734375 L 6.796875 -1.828125 L 2.1875 -9.015625 L 0.765625 -9.015625 L 0.765625 0 L 2.09375 0 L 2.09375 -7.21875 L 1.859375 -7.125 L 6.421875 0 L 7.890625 0 Z M 7.890625 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-13\">\n<path style=\"stroke:none;\" d=\"M 5.921875 -0.125 L 5.921875 -6.546875 L 4.640625 -6.546875 L 4.640625 -2.953125 C 4.640625 -1.671875 4.109375 -0.953125 3.078125 -0.953125 C 2.28125 -0.953125 1.90625 -1.3125 1.90625 -2.0625 L 1.90625 -6.546875 L 0.640625 -6.546875 L 0.640625 -1.671875 C 0.640625 -0.625 1.5625 0.1875 2.78125 0.1875 C 3.703125 0.1875 4.390625 -0.1875 4.984375 -1.015625 L 4.734375 -1.109375 L 4.734375 0 L 5.921875 0 Z M 5.921875 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-14\">\n<path style=\"stroke:none;\" d=\"M 9.25 -0.125 L 9.25 -4.84375 C 9.25 -5.96875 8.5 -6.734375 7.3125 -6.734375 C 6.484375 -6.734375 5.875 -6.4375 5.40625 -5.875 C 5.109375 -6.40625 4.515625 -6.734375 3.703125 -6.734375 C 2.859375 -6.734375 2.203125 -6.390625 1.65625 -5.625 L 1.890625 -5.53125 L 1.890625 -6.546875 L 0.703125 -6.546875 L 0.703125 0 L 1.984375 0 L 1.984375 -4.078125 C 1.984375 -4.984375 2.515625 -5.59375 3.328125 -5.59375 C 4.0625 -5.59375 4.34375 -5.265625 4.34375 -4.46875 L 4.34375 0 L 5.609375 0 L 5.609375 -4.078125 C 5.609375 -4.984375 6.15625 -5.59375 6.96875 -5.59375 C 7.703125 -5.59375 7.984375 -5.25 7.984375 -4.46875 L 7.984375 0 L 9.25 0 Z M 9.25 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-15\">\n<path style=\"stroke:none;\" d=\"M 6.40625 -3.34375 C 6.40625 -5.390625 5.25 -6.734375 3.59375 -6.734375 C 2.71875 -6.734375 2 -6.375 1.53125 -5.65625 L 1.78125 -5.5625 L 1.78125 -9.015625 L 0.5 -9.015625 L 0.5 0 L 1.6875 0 L 1.6875 -1.03125 L 1.4375 -0.9375 C 1.921875 -0.203125 2.65625 0.1875 3.546875 0.1875 C 5.203125 0.1875 6.40625 -1.3125 6.40625 -3.34375 Z M 5.09375 -3.28125 C 5.09375 -1.859375 4.484375 -1.015625 3.390625 -1.015625 C 2.34375 -1.015625 1.78125 -1.84375 1.78125 -3.28125 C 1.78125 -4.75 2.34375 -5.578125 3.390625 -5.53125 C 4.515625 -5.53125 5.09375 -4.6875 5.09375 -3.28125 Z M 5.09375 -3.28125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-16\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.984375 C 6.28125 -3.90625 6.21875 -4.46875 6.03125 -4.9375 C 5.625 -5.96875 4.53125 -6.734375 3.359375 -6.734375 C 1.609375 -6.734375 0.34375 -5.296875 0.34375 -3.234375 C 0.34375 -1.171875 1.578125 0.1875 3.34375 0.1875 C 4.78125 0.1875 5.90625 -0.765625 6.1875 -2.171875 L 4.921875 -2.171875 C 4.59375 -1.21875 4.171875 -1.015625 3.375 -1.015625 C 2.328125 -1.015625 1.6875 -1.546875 1.65625 -2.859375 L 6.28125 -2.859375 Z M 5.1875 -3.78125 C 5.1875 -3.78125 4.984375 -3.921875 4.984375 -3.9375 L 1.6875 -3.9375 C 1.765625 -4.921875 2.34375 -5.546875 3.34375 -5.546875 C 4.328125 -5.546875 4.9375 -4.859375 4.9375 -3.875 Z M 5.1875 -3.78125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-17\">\n<path style=\"stroke:none;\" d=\"M 3.984375 -5.546875 L 3.984375 -6.6875 C 3.6875 -6.71875 3.59375 -6.734375 3.46875 -6.734375 C 2.8125 -6.734375 2.21875 -6.3125 1.640625 -5.375 L 1.890625 -5.28125 L 1.890625 -6.546875 L 0.703125 -6.546875 L 0.703125 0 L 1.96875 0 L 1.96875 -3.390625 C 1.96875 -4.8125 2.296875 -5.390625 3.984375 -5.40625 Z M 3.984375 -5.546875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-18\">\n<path style=\"stroke:none;\" d=\"M 6.25 -3.234375 C 6.25 -5.40625 5.078125 -6.734375 3.265625 -6.734375 C 1.5 -6.734375 0.28125 -5.390625 0.28125 -3.28125 C 0.28125 -1.15625 1.484375 0.1875 3.28125 0.1875 C 5.046875 0.1875 6.25 -1.15625 6.25 -3.234375 Z M 4.9375 -3.234375 C 4.9375 -1.765625 4.375 -1.015625 3.28125 -1.015625 C 2.15625 -1.015625 1.609375 -1.75 1.609375 -3.28125 C 1.609375 -4.78125 2.15625 -5.546875 3.28125 -5.546875 C 4.40625 -5.546875 4.9375 -4.796875 4.9375 -3.234375 Z M 4.9375 -3.234375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-19\">\n<path style=\"stroke:none;\" d=\"M 3.234375 -5.609375 L 3.234375 -6.546875 L 2.1875 -6.546875 L 2.1875 -7.40625 C 2.1875 -7.828125 2.296875 -7.90625 2.75 -7.90625 C 2.828125 -7.90625 2.875 -7.90625 3.234375 -7.890625 L 3.234375 -8.96875 C 2.875 -9.03125 2.734375 -9.046875 2.53125 -9.046875 C 1.609375 -9.046875 0.90625 -8.390625 0.90625 -7.484375 L 0.90625 -6.546875 L 0.078125 -6.546875 L 0.078125 -5.46875 L 0.90625 -5.46875 L 0.90625 0 L 2.1875 0 L 2.1875 -5.46875 L 3.234375 -5.46875 Z M 3.234375 -5.609375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-20\">\n<path style=\"stroke:none;\" d=\"M 7.25 -7.890625 L 7.25 -9.015625 L 0.109375 -9.015625 L 0.109375 -7.765625 L 2.984375 -7.765625 L 2.984375 0 L 4.375 0 L 4.375 -7.765625 L 7.25 -7.765625 Z M 7.25 -7.890625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-21\">\n<path style=\"stroke:none;\" d=\"M 5.640625 -1.890625 C 5.640625 -2.828125 4.984375 -3.4375 3.734375 -3.734375 L 2.765625 -3.953125 C 1.953125 -4.15625 1.734375 -4.28125 1.734375 -4.734375 C 1.734375 -5.296875 2.125 -5.546875 2.9375 -5.546875 C 3.75 -5.546875 4.03125 -5.328125 4.0625 -4.53125 L 5.390625 -4.53125 C 5.375 -5.90625 4.421875 -6.734375 2.96875 -6.734375 C 1.515625 -6.734375 0.421875 -5.84375 0.421875 -4.6875 C 0.421875 -3.703125 1.0625 -3.09375 2.5625 -2.734375 L 3.484375 -2.515625 C 4.1875 -2.34375 4.3125 -2.265625 4.3125 -1.8125 C 4.3125 -1.21875 3.875 -1.015625 3 -1.015625 C 2.09375 -1.015625 1.734375 -1.09375 1.578125 -2.1875 L 0.265625 -2.1875 C 0.3125 -0.59375 1.265625 0.1875 2.921875 0.1875 C 4.5 0.1875 5.640625 -0.6875 5.640625 -1.890625 Z M 5.640625 -1.890625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-22\">\n<path style=\"stroke:none;\" d=\"M 2.421875 -0.125 L 2.421875 -1.515625 L 0.90625 -1.515625 L 0.90625 0 L 2.421875 0 Z M 2.421875 -5.171875 L 2.421875 -6.546875 L 0.90625 -6.546875 L 0.90625 -5.046875 L 2.421875 -5.046875 Z M 2.421875 -5.171875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-0\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-1\">\n<path style=\"stroke:none;\" d=\"M -4.21875 -6.21875 C -7.171875 -6.21875 -8.765625 -5.140625 -8.765625 -3.296875 C -8.765625 -1.46875 -7.15625 -0.375 -4.296875 -0.375 C -1.421875 -0.375 0.1875 -1.46875 0.1875 -3.296875 C 0.1875 -5.09375 -1.421875 -6.21875 -4.21875 -6.21875 Z M -4.3125 -4.859375 C -1.90625 -4.859375 -0.953125 -4.453125 -0.953125 -3.28125 C -0.953125 -2.15625 -1.953125 -1.734375 -4.28125 -1.734375 C -6.609375 -1.734375 -7.578125 -2.15625 -7.578125 -3.296875 C -7.578125 -4.4375 -6.59375 -4.859375 -4.3125 -4.859375 Z M -4.3125 -4.859375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-2\">\n<path style=\"stroke:none;\" d=\"M -0.125 -2.421875 L -1.515625 -2.421875 L -1.515625 -0.90625 L 0 -0.90625 L 0 -2.421875 Z M -0.125 -2.421875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-3\">\n<path style=\"stroke:none;\" d=\"M -0.125 -4.296875 L -8.765625 -4.296875 L -8.765625 -3.359375 C -7.328125 -2.953125 -7.28125 -2.859375 -7.0625 -1.078125 L -6.0625 -1.078125 L -6.0625 -2.96875 L 0 -2.96875 L 0 -4.296875 Z M -0.125 -4.296875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-4\">\n<path style=\"stroke:none;\" d=\"M -6.140625 -6.265625 C -7.578125 -6.265625 -8.765625 -5.015625 -8.765625 -3.40625 C -8.765625 -1.671875 -7.75 -0.515625 -5.5625 -0.453125 L -5.5625 -1.78125 C -7.109375 -1.875 -7.578125 -2.328125 -7.578125 -3.375 C -7.578125 -4.328125 -7.03125 -4.90625 -6.125 -4.90625 C -5.453125 -4.90625 -4.96875 -4.546875 -4.53125 -3.796875 L -3.90625 -2.6875 C -2.90625 -0.90625 -2 -0.359375 0 -0.25 L 0 -6.203125 L -1.3125 -6.203125 L -1.3125 -1.75 C -1.875 -1.84375 -2.21875 -2.1875 -2.828125 -3.234375 L -3.484375 -4.421875 C -4.109375 -5.609375 -5.09375 -6.265625 -6.140625 -6.265625 Z M -6.140625 -6.265625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-5\">\n<path style=\"stroke:none;\" d=\"M -2.609375 -6.203125 C -3.640625 -6.203125 -4.375 -5.65625 -4.71875 -4.625 L -4.453125 -4.625 C -4.765625 -5.421875 -5.453125 -5.953125 -6.296875 -5.953125 C -7.765625 -5.953125 -8.765625 -4.84375 -8.765625 -3.234375 C -8.765625 -1.515625 -7.703125 -0.453125 -5.765625 -0.421875 L -5.765625 -1.75 C -7.15625 -1.78125 -7.578125 -2.15625 -7.578125 -3.234375 C -7.578125 -4.171875 -7.15625 -4.59375 -6.265625 -4.59375 C -5.359375 -4.59375 -5.109375 -4.34375 -5.109375 -2.515625 L -3.953125 -2.515625 L -3.953125 -3.234375 C -3.953125 -4.390625 -3.546875 -4.84375 -2.59375 -4.84375 C -1.53125 -4.84375 -1.015625 -4.328125 -1.015625 -3.234375 C -1.015625 -2.078125 -1.46875 -1.640625 -2.828125 -1.5625 L -2.828125 -0.234375 C -0.796875 -0.375 0.1875 -1.453125 0.1875 -3.1875 C 0.1875 -4.9375 -1 -6.203125 -2.609375 -6.203125 Z M -2.609375 -6.203125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-6\">\n<path style=\"stroke:none;\" d=\"M -2.171875 -6.375 L -3.25 -6.375 L -3.25 -5.109375 L -8.765625 -5.109375 L -8.765625 -4.125 L -3.328125 -0.1875 L -2.046875 -0.1875 L -2.046875 -3.78125 L 0 -3.78125 L 0 -5.109375 L -2.046875 -5.109375 L -2.046875 -6.375 Z M -3.25 -3.921875 L -3.25 -1.515625 L -6.75 -4.015625 L -6.84375 -3.78125 L -3.25 -3.78125 Z M -3.25 -3.921875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-7\">\n<path style=\"stroke:none;\" d=\"M -2.953125 -6.28125 C -4.625 -6.28125 -5.875 -5.046875 -5.875 -3.40625 C -5.875 -2.8125 -5.671875 -2.21875 -5.515625 -2.015625 L -7.28125 -2.28125 L -7.28125 -5.84375 L -8.59375 -5.84375 L -8.59375 -1.203125 L -3.875 -0.515625 L -3.875 -1.71875 C -4.5 -2.25 -4.671875 -2.5625 -4.671875 -3.21875 C -4.671875 -4.359375 -4.0625 -4.9375 -2.8125 -4.9375 C -1.578125 -4.9375 -1.015625 -4.375 -1.015625 -3.21875 C -1.015625 -2.296875 -1.359375 -1.859375 -2.453125 -1.578125 L -2.453125 -0.25 C -0.625 -0.625 0.1875 -1.734375 0.1875 -3.234375 C 0.1875 -4.953125 -1.15625 -6.28125 -2.953125 -6.28125 Z M -2.953125 -6.28125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-8\">\n<path style=\"stroke:none;\" d=\"M -7.890625 -7.078125 L -9.015625 -7.078125 L -9.015625 -0.9375 L 0 -0.9375 L 0 -2.328125 L -3.984375 -2.328125 L -3.984375 -6.5 L -5.234375 -6.5 L -5.234375 -2.328125 L -7.765625 -2.328125 L -7.765625 -7.078125 Z M -7.890625 -7.078125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-9\">\n<path style=\"stroke:none;\" d=\"M -5.546875 -3.984375 L -6.6875 -3.984375 C -6.71875 -3.6875 -6.734375 -3.59375 -6.734375 -3.46875 C -6.734375 -2.8125 -6.3125 -2.21875 -5.375 -1.640625 L -5.28125 -1.890625 L -6.546875 -1.890625 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 L -3.390625 -1.96875 C -4.8125 -1.96875 -5.390625 -2.296875 -5.40625 -3.984375 Z M -5.546875 -3.984375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-10\">\n<path style=\"stroke:none;\" d=\"M -2.984375 -6.28125 C -3.90625 -6.28125 -4.46875 -6.21875 -4.9375 -6.03125 C -5.96875 -5.625 -6.734375 -4.53125 -6.734375 -3.359375 C -6.734375 -1.609375 -5.296875 -0.34375 -3.234375 -0.34375 C -1.171875 -0.34375 0.1875 -1.578125 0.1875 -3.34375 C 0.1875 -4.78125 -0.765625 -5.90625 -2.171875 -6.1875 L -2.171875 -4.921875 C -1.21875 -4.59375 -1.015625 -4.171875 -1.015625 -3.375 C -1.015625 -2.328125 -1.546875 -1.6875 -2.859375 -1.65625 L -2.859375 -6.28125 Z M -3.78125 -5.1875 C -3.78125 -5.1875 -3.921875 -4.984375 -3.9375 -4.984375 L -3.9375 -1.6875 C -4.921875 -1.765625 -5.546875 -2.34375 -5.546875 -3.34375 C -5.546875 -4.328125 -4.859375 -4.9375 -3.875 -4.9375 Z M -3.78125 -5.1875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-11\">\n<path style=\"stroke:none;\" d=\"M 2.484375 -6.078125 L -6.546875 -6.078125 L -6.546875 -4.90625 L -5.578125 -4.90625 L -5.671875 -5.140625 C -6.34375 -4.6875 -6.734375 -3.875 -6.734375 -3.046875 C -6.734375 -1.390625 -5.296875 -0.171875 -3.203125 -0.171875 C -1.15625 -0.171875 0.1875 -1.34375 0.1875 -3 C 0.1875 -3.875 -0.171875 -4.578125 -0.859375 -5.046875 L -0.953125 -4.796875 L 2.609375 -4.796875 L 2.609375 -6.078125 Z M -3.234375 -4.796875 C -1.796875 -4.796875 -1.015625 -4.25 -1.015625 -3.1875 C -1.015625 -2.09375 -1.8125 -1.484375 -3.28125 -1.484375 C -4.734375 -1.484375 -5.53125 -2.09375 -5.53125 -3.1875 C -5.53125 -4.265625 -4.703125 -4.796875 -3.234375 -4.796875 Z M -3.234375 -4.796875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-12\">\n<path style=\"stroke:none;\" d=\"M -0.125 -5.921875 L -6.546875 -5.921875 L -6.546875 -4.640625 L -2.953125 -4.640625 C -1.671875 -4.640625 -0.953125 -4.109375 -0.953125 -3.078125 C -0.953125 -2.28125 -1.3125 -1.90625 -2.0625 -1.90625 L -6.546875 -1.90625 L -6.546875 -0.640625 L -1.671875 -0.640625 C -0.625 -0.640625 0.1875 -1.5625 0.1875 -2.78125 C 0.1875 -3.703125 -0.1875 -4.390625 -1.015625 -4.984375 L -1.109375 -4.734375 L 0 -4.734375 L 0 -5.921875 Z M -0.125 -5.921875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-13\">\n<path style=\"stroke:none;\" d=\"M -0.125 -5.96875 L -4.890625 -5.96875 C -5.921875 -5.96875 -6.734375 -5.0625 -6.734375 -3.859375 C -6.734375 -2.921875 -6.34375 -2.203125 -5.453125 -1.65625 L -5.359375 -1.890625 L -6.546875 -1.890625 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 L -3.59375 -1.96875 C -4.890625 -1.96875 -5.59375 -2.53125 -5.59375 -3.546875 C -5.59375 -4.34375 -5.25 -4.703125 -4.484375 -4.703125 L 0 -4.703125 L 0 -5.96875 Z M -0.125 -5.96875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-14\">\n<path style=\"stroke:none;\" d=\"M -2.421875 -5.71875 L -2.421875 -4.59375 C -1.28125 -4.40625 -1.015625 -4.03125 -1.015625 -3.1875 C -1.015625 -2.078125 -1.734375 -1.546875 -3.21875 -1.546875 C -4.78125 -1.546875 -5.546875 -2.0625 -5.546875 -3.15625 C -5.546875 -4 -5.1875 -4.375 -4.171875 -4.53125 L -4.171875 -5.796875 C -5.84375 -5.65625 -6.734375 -4.578125 -6.734375 -3.171875 C -6.734375 -1.46875 -5.296875 -0.234375 -3.21875 -0.234375 C -1.1875 -0.234375 0.1875 -1.453125 0.1875 -3.15625 C 0.1875 -4.65625 -0.859375 -5.734375 -2.421875 -5.875 Z M -2.421875 -5.71875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-15\">\n<path style=\"stroke:none;\" d=\"M -6.546875 -5.734375 L -6.546875 -4.5625 L -1.53125 -2.765625 L -1.53125 -3.046875 L -6.546875 -1.390625 L -6.546875 -0.046875 L -0.109375 -2.21875 L 0.890625 -1.84375 C 1.328125 -1.671875 1.375 -1.609375 1.375 -1.171875 C 1.375 -1.03125 1.34375 -0.859375 1.265625 -0.5 L 2.40625 -0.5 C 2.53125 -0.75 2.609375 -1.0625 2.609375 -1.3125 C 2.609375 -2.03125 2.09375 -2.734375 1.1875 -3.078125 L -6.546875 -5.921875 Z M -6.546875 -5.734375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-16\">\n<path style=\"stroke:none;\" d=\"M -0.125 -1.9375 L -9.015625 -1.9375 L -9.015625 -0.671875 L 0 -0.671875 L 0 -1.9375 Z M -0.125 -1.9375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-17\">\n<path style=\"stroke:none;\" d=\"M -0.125 -1.96875 L -6.546875 -1.96875 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 Z M -7.375 -2.09375 L -8.75 -2.09375 L -8.75 -0.578125 L -7.234375 -0.578125 L -7.234375 -2.09375 Z M -7.375 -2.09375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-18\">\n<path style=\"stroke:none;\" d=\"M -3.21875 -6.40625 C -5.328125 -6.40625 -6.734375 -5.25 -6.734375 -3.578125 C -6.734375 -2.71875 -6.3125 -1.9375 -5.5625 -1.46875 L -5.46875 -1.703125 L -6.546875 -1.703125 L -6.546875 -0.515625 L 2.609375 -0.515625 L 2.609375 -1.78125 L -0.890625 -1.78125 L -0.796875 -1.546875 C -0.140625 -2.078125 0.1875 -2.765625 0.1875 -3.59375 C 0.1875 -5.203125 -1.21875 -6.40625 -3.21875 -6.40625 Z M -3.234375 -5.09375 C -1.8125 -5.09375 -1.015625 -4.5 -1.015625 -3.40625 C -1.015625 -2.359375 -1.75 -1.78125 -3.234375 -1.78125 C -4.703125 -1.78125 -5.53125 -2.359375 -5.53125 -3.40625 C -5.53125 -4.515625 -4.734375 -5.09375 -3.234375 -5.09375 Z M -3.234375 -5.09375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-19\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-20\">\n<path style=\"stroke:none;\" d=\"M -7.3125 -1.84375 L -8.765625 -1.84375 L -8.765625 -0.4375 L -7.3125 -0.4375 L -5.5625 -0.78125 L -5.5625 -1.484375 Z M -7.3125 -1.84375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-21\">\n<path style=\"stroke:none;\" d=\"M -3.234375 -6.25 C -5.40625 -6.25 -6.734375 -5.078125 -6.734375 -3.265625 C -6.734375 -1.5 -5.390625 -0.28125 -3.28125 -0.28125 C -1.15625 -0.28125 0.1875 -1.484375 0.1875 -3.28125 C 0.1875 -5.046875 -1.15625 -6.25 -3.234375 -6.25 Z M -3.234375 -4.9375 C -1.765625 -4.9375 -1.015625 -4.375 -1.015625 -3.28125 C -1.015625 -2.15625 -1.75 -1.609375 -3.28125 -1.609375 C -4.78125 -1.609375 -5.546875 -2.15625 -5.546875 -3.28125 C -5.546875 -4.40625 -4.796875 -4.9375 -3.234375 -4.9375 Z M -3.234375 -4.9375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-22\">\n<path style=\"stroke:none;\" d=\"M -1.890625 -5.640625 C -2.828125 -5.640625 -3.4375 -4.984375 -3.734375 -3.734375 L -3.953125 -2.765625 C -4.15625 -1.953125 -4.28125 -1.734375 -4.734375 -1.734375 C -5.296875 -1.734375 -5.546875 -2.125 -5.546875 -2.9375 C -5.546875 -3.75 -5.328125 -4.03125 -4.53125 -4.0625 L -4.53125 -5.390625 C -5.90625 -5.375 -6.734375 -4.421875 -6.734375 -2.96875 C -6.734375 -1.515625 -5.84375 -0.421875 -4.6875 -0.421875 C -3.703125 -0.421875 -3.09375 -1.0625 -2.734375 -2.5625 L -2.515625 -3.484375 C -2.34375 -4.1875 -2.265625 -4.3125 -1.8125 -4.3125 C -1.21875 -4.3125 -1.015625 -3.875 -1.015625 -3 C -1.015625 -2.09375 -1.09375 -1.734375 -2.1875 -1.578125 L -2.1875 -0.265625 C -0.59375 -0.3125 0.1875 -1.265625 0.1875 -2.921875 C 0.1875 -4.5 -0.6875 -5.640625 -1.890625 -5.640625 Z M -1.890625 -5.640625 \"/>\n</symbol>\n</g>\n<clipPath id=\"clip1\">\n  <path d=\"M 434 59.039062 L 436 59.039062 L 436 522 L 434 522 Z M 434 59.039062 \"/>\n</clipPath>\n<clipPath id=\"clip2\">\n  <path d=\"M 483 507 L 501 507 L 501 522.558594 L 483 522.558594 Z M 483 507 \"/>\n</clipPath>\n<clipPath id=\"clip3\">\n  <path d=\"M 59.039062 76 L 247 76 L 247 522 L 59.039062 522 Z M 59.039062 76 \"/>\n</clipPath>\n<clipPath id=\"clip4\">\n  <path d=\"M 59.039062 76 L 248 76 L 248 522 L 59.039062 522 Z M 59.039062 76 \"/>\n</clipPath>\n<clipPath id=\"clip5\">\n  <path d=\"M 59.039062 521 L 436 521 L 436 522 L 59.039062 522 Z M 59.039062 521 \"/>\n</clipPath>\n<clipPath id=\"clip6\">\n  <path d=\"M 59.039062 504 L 436 504 L 436 505 L 59.039062 505 Z M 59.039062 504 \"/>\n</clipPath>\n<clipPath id=\"clip7\">\n  <path d=\"M 59.039062 486 L 436 486 L 436 488 L 59.039062 488 Z M 59.039062 486 \"/>\n</clipPath>\n<clipPath id=\"clip8\">\n  <path d=\"M 59.039062 469 L 436 469 L 436 471 L 59.039062 471 Z M 59.039062 469 \"/>\n</clipPath>\n<clipPath id=\"clip9\">\n  <path d=\"M 59.039062 452 L 436 452 L 436 454 L 59.039062 454 Z M 59.039062 452 \"/>\n</clipPath>\n<clipPath id=\"clip10\">\n  <path d=\"M 59.039062 435 L 436 435 L 436 437 L 59.039062 437 Z M 59.039062 435 \"/>\n</clipPath>\n<clipPath id=\"clip11\">\n  <path d=\"M 59.039062 418 L 436 418 L 436 420 L 59.039062 420 Z M 59.039062 418 \"/>\n</clipPath>\n<clipPath id=\"clip12\">\n  <path d=\"M 59.039062 401 L 436 401 L 436 403 L 59.039062 403 Z M 59.039062 401 \"/>\n</clipPath>\n<clipPath id=\"clip13\">\n  <path d=\"M 59.039062 384 L 436 384 L 436 386 L 59.039062 386 Z M 59.039062 384 \"/>\n</clipPath>\n<clipPath id=\"clip14\">\n  <path d=\"M 59.039062 367 L 436 367 L 436 368 L 59.039062 368 Z M 59.039062 367 \"/>\n</clipPath>\n<clipPath id=\"clip15\">\n  <path d=\"M 59.039062 350 L 436 350 L 436 351 L 59.039062 351 Z M 59.039062 350 \"/>\n</clipPath>\n<clipPath id=\"clip16\">\n  <path d=\"M 59.039062 333 L 436 333 L 436 334 L 59.039062 334 Z M 59.039062 333 \"/>\n</clipPath>\n<clipPath id=\"clip17\">\n  <path d=\"M 59.039062 315 L 436 315 L 436 317 L 59.039062 317 Z M 59.039062 315 \"/>\n</clipPath>\n<clipPath id=\"clip18\">\n  <path d=\"M 59.039062 298 L 436 298 L 436 300 L 59.039062 300 Z M 59.039062 298 \"/>\n</clipPath>\n<clipPath id=\"clip19\">\n  <path d=\"M 59.039062 281 L 436 281 L 436 283 L 59.039062 283 Z M 59.039062 281 \"/>\n</clipPath>\n<clipPath id=\"clip20\">\n  <path d=\"M 59.039062 264 L 436 264 L 436 266 L 59.039062 266 Z M 59.039062 264 \"/>\n</clipPath>\n<clipPath id=\"clip21\">\n  <path d=\"M 59.039062 247 L 436 247 L 436 249 L 59.039062 249 Z M 59.039062 247 \"/>\n</clipPath>\n<clipPath id=\"clip22\">\n  <path d=\"M 59.039062 230 L 436 230 L 436 232 L 59.039062 232 Z M 59.039062 230 \"/>\n</clipPath>\n<clipPath id=\"clip23\">\n  <path d=\"M 59.039062 213 L 436 213 L 436 215 L 59.039062 215 Z M 59.039062 213 \"/>\n</clipPath>\n<clipPath id=\"clip24\">\n  <path d=\"M 59.039062 196 L 436 196 L 436 197 L 59.039062 197 Z M 59.039062 196 \"/>\n</clipPath>\n<clipPath id=\"clip25\">\n  <path d=\"M 59.039062 179 L 436 179 L 436 180 L 59.039062 180 Z M 59.039062 179 \"/>\n</clipPath>\n<clipPath id=\"clip26\">\n  <path d=\"M 59.039062 161 L 436 161 L 436 163 L 59.039062 163 Z M 59.039062 161 \"/>\n</clipPath>\n<clipPath id=\"clip27\">\n  <path d=\"M 59.039062 144 L 436 144 L 436 146 L 59.039062 146 Z M 59.039062 144 \"/>\n</clipPath>\n<clipPath id=\"clip28\">\n  <path d=\"M 59.039062 127 L 436 127 L 436 129 L 59.039062 129 Z M 59.039062 127 \"/>\n</clipPath>\n<clipPath id=\"clip29\">\n  <path d=\"M 59.039062 110 L 436 110 L 436 112 L 59.039062 112 Z M 59.039062 110 \"/>\n</clipPath>\n<clipPath id=\"clip30\">\n  <path d=\"M 59.039062 93 L 436 93 L 436 95 L 59.039062 95 Z M 59.039062 93 \"/>\n</clipPath>\n<clipPath id=\"clip31\">\n  <path d=\"M 59.039062 76 L 436 76 L 436 78 L 59.039062 78 Z M 59.039062 76 \"/>\n</clipPath>\n<clipPath id=\"clip32\">\n  <path d=\"M 434 59.039062 L 436 59.039062 L 436 522 L 434 522 Z M 434 59.039062 \"/>\n</clipPath>\n</defs>\n<g id=\"surface1\">\n<rect x=\"0\" y=\"0\" width=\"841\" height=\"595\" style=\"fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;\"/>\n<g clip-path=\"url(#clip1)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 434.898438 521.558594 L 434.898438 59.039062 \"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 521.558594 L 340.933594 521.558594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 521.558594 L 153.003906 528.761719 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 340.933594 521.558594 L 340.933594 528.761719 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"149.503906\" y=\"547.256836\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"337.433594\" y=\"547.256836\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 59.039062 93.933594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 51.839844 521.558594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 436.035156 L 51.839844 436.035156 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 350.507812 L 51.839844 350.507812 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 264.984375 L 51.839844 264.984375 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 179.460938 L 51.839844 179.460938 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 93.933594 L 51.839844 93.933594 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"530.058594\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"523.386719\"/>\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"520.050781\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"444.535156\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"437.863281\"/>\n  <use xlink:href=\"#glyph1-3\" x=\"41.538086\" y=\"434.527344\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"359.007812\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"352.335938\"/>\n  <use xlink:href=\"#glyph1-4\" x=\"41.538086\" y=\"349\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"273.484375\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"266.8125\"/>\n  <use xlink:href=\"#glyph1-5\" x=\"41.538086\" y=\"263.476562\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"187.960938\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"181.289062\"/>\n  <use xlink:href=\"#glyph1-6\" x=\"41.538086\" y=\"177.953125\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"102.433594\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"95.761719\"/>\n  <use xlink:href=\"#glyph1-7\" x=\"41.538086\" y=\"92.425781\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-8\" x=\"27.135742\" y=\"318.800781\"/>\n  <use xlink:href=\"#glyph1-9\" x=\"27.135742\" y=\"311.888672\"/>\n  <use xlink:href=\"#glyph1-10\" x=\"27.135742\" y=\"308.011719\"/>\n  <use xlink:href=\"#glyph1-11\" x=\"27.135742\" y=\"301.339844\"/>\n  <use xlink:href=\"#glyph1-12\" x=\"27.135742\" y=\"294.608398\"/>\n  <use xlink:href=\"#glyph1-10\" x=\"27.135742\" y=\"287.936523\"/>\n  <use xlink:href=\"#glyph1-13\" x=\"27.135742\" y=\"281.264648\"/>\n  <use xlink:href=\"#glyph1-14\" x=\"27.135742\" y=\"274.592773\"/>\n  <use xlink:href=\"#glyph1-15\" x=\"27.135742\" y=\"268.592773\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-8\" x=\"822.057617\" y=\"318.300781\"/>\n  <use xlink:href=\"#glyph1-16\" x=\"822.057617\" y=\"310.96875\"/>\n  <use xlink:href=\"#glyph1-17\" x=\"822.057617\" y=\"308.304688\"/>\n  <use xlink:href=\"#glyph1-18\" x=\"822.057617\" y=\"305.640625\"/>\n  <use xlink:href=\"#glyph1-19\" x=\"822.057617\" y=\"298.96875\"/>\n  <use xlink:href=\"#glyph1-20\" x=\"822.057617\" y=\"295.632812\"/>\n  <use xlink:href=\"#glyph1-14\" x=\"822.057617\" y=\"293.34082\"/>\n  <use xlink:href=\"#glyph1-21\" x=\"822.057617\" y=\"287.34082\"/>\n  <use xlink:href=\"#glyph1-17\" x=\"822.057617\" y=\"280.668945\"/>\n  <use xlink:href=\"#glyph1-13\" x=\"822.057617\" y=\"278.004883\"/>\n  <use xlink:href=\"#glyph1-22\" x=\"822.057617\" y=\"271.333008\"/>\n  <use xlink:href=\"#glyph1-20\" x=\"822.057617\" y=\"265.333008\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 662.257812 417.875 C 662.257812 422.347656 658.628906 425.972656 654.15625 425.972656 C 649.683594 425.972656 646.054688 422.347656 646.054688 417.875 C 646.054688 413.402344 649.683594 409.773438 654.15625 409.773438 C 658.628906 409.773438 662.257812 413.402344 662.257812 417.875 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 718.890625 202.007812 C 718.890625 206.480469 715.265625 210.109375 710.789062 210.109375 C 706.316406 210.109375 702.691406 206.480469 702.691406 202.007812 C 702.691406 197.535156 706.316406 193.910156 710.789062 193.910156 C 715.265625 193.910156 718.890625 197.535156 718.890625 202.007812 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 648.542969 208.707031 C 648.542969 213.179688 644.914062 216.804688 640.441406 216.804688 C 635.96875 216.804688 632.339844 213.179688 632.339844 208.707031 C 632.339844 204.230469 635.96875 200.605469 640.441406 200.605469 C 644.914062 200.605469 648.542969 204.230469 648.542969 208.707031 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 577.6875 205.777344 C 577.6875 210.253906 574.0625 213.878906 569.589844 213.878906 C 565.113281 213.878906 561.488281 210.253906 561.488281 205.777344 C 561.488281 201.304688 565.113281 197.679688 569.589844 197.679688 C 574.0625 197.679688 577.6875 201.304688 577.6875 205.777344 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 680.917969 195.324219 C 680.917969 199.800781 677.289062 203.425781 672.816406 203.425781 C 668.34375 203.425781 664.714844 199.800781 664.714844 195.324219 C 664.714844 190.851562 668.34375 187.226562 672.816406 187.226562 C 677.289062 187.226562 680.917969 190.851562 680.917969 195.324219 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 702.40625 416.964844 C 702.40625 421.441406 698.78125 425.066406 694.304688 425.066406 C 689.832031 425.066406 686.207031 421.441406 686.207031 416.964844 C 686.207031 412.492188 689.832031 408.867188 694.304688 408.867188 C 698.78125 408.867188 702.40625 412.492188 702.40625 416.964844 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 680.617188 124.03125 C 680.617188 128.507812 676.992188 132.132812 672.519531 132.132812 C 668.042969 132.132812 664.417969 128.507812 664.417969 124.03125 C 664.417969 119.558594 668.042969 115.933594 672.519531 115.933594 C 676.992188 115.933594 680.617188 119.558594 680.617188 124.03125 \"/>\n<g clip-path=\"url(#clip2)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 499.761719 516.175781 C 499.761719 520.648438 496.132812 524.273438 491.660156 524.273438 C 487.1875 524.273438 483.5625 520.648438 483.5625 516.175781 C 483.5625 511.699219 487.1875 508.074219 491.660156 508.074219 C 496.132812 508.074219 499.761719 511.699219 499.761719 516.175781 \"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 653.371094 447.367188 C 653.371094 451.84375 649.742188 455.46875 645.269531 455.46875 C 640.796875 455.46875 637.171875 451.84375 637.171875 447.367188 C 637.171875 442.894531 640.796875 439.269531 645.269531 439.269531 C 649.742188 439.269531 653.371094 442.894531 653.371094 447.367188 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 544.820312 81.808594 C 544.820312 86.28125 541.191406 89.910156 536.71875 89.910156 C 532.246094 89.910156 528.621094 86.28125 528.621094 81.808594 C 528.621094 77.335938 532.246094 73.707031 536.71875 73.707031 C 541.191406 73.707031 544.820312 77.335938 544.820312 81.808594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 762.949219 336.445312 C 762.949219 340.917969 759.324219 344.542969 754.851562 344.542969 C 750.375 344.542969 746.75 340.917969 746.75 336.445312 C 746.75 331.96875 750.375 328.34375 754.851562 328.34375 C 759.324219 328.34375 762.949219 331.96875 762.949219 336.445312 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 535.742188 122.101562 C 535.742188 126.574219 532.117188 130.203125 527.640625 130.203125 C 523.167969 130.203125 519.542969 126.574219 519.542969 122.101562 C 519.542969 117.628906 523.167969 114 527.640625 114 C 532.117188 114 535.742188 117.628906 535.742188 122.101562 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 635.433594 297.117188 C 635.433594 301.59375 631.808594 305.21875 627.332031 305.21875 C 622.859375 305.21875 619.234375 301.59375 619.234375 297.117188 C 619.234375 292.644531 622.859375 289.019531 627.332031 289.019531 C 631.808594 289.019531 635.433594 292.644531 635.433594 297.117188 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 768.925781 236.382812 C 768.925781 240.855469 765.296875 244.484375 760.824219 244.484375 C 756.351562 244.484375 752.726562 240.855469 752.726562 236.382812 C 752.726562 231.910156 756.351562 228.285156 760.824219 228.285156 C 765.296875 228.285156 768.925781 231.910156 768.925781 236.382812 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 613.65625 363.617188 C 613.65625 368.089844 610.027344 371.714844 605.554688 371.714844 C 601.082031 371.714844 597.453125 368.089844 597.453125 363.617188 C 597.453125 359.144531 601.082031 355.515625 605.554688 355.515625 C 610.027344 355.515625 613.65625 359.144531 613.65625 363.617188 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 489.867188 288.144531 C 489.867188 292.617188 486.242188 296.246094 481.769531 296.246094 C 477.296875 296.246094 473.667969 292.617188 473.667969 288.144531 C 473.667969 283.671875 477.296875 280.046875 481.769531 280.046875 C 486.242188 280.046875 489.867188 283.671875 489.867188 288.144531 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 536.757812 385.441406 C 536.757812 389.914062 533.132812 393.539062 528.65625 393.539062 C 524.183594 393.539062 520.558594 389.914062 520.558594 385.441406 C 520.558594 380.96875 524.183594 377.339844 528.65625 377.339844 C 533.132812 377.339844 536.757812 380.96875 536.757812 385.441406 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 760.554688 247.621094 C 760.554688 252.09375 756.925781 255.71875 752.453125 255.71875 C 747.980469 255.71875 744.355469 252.09375 744.355469 247.621094 C 744.355469 243.144531 747.980469 239.519531 752.453125 239.519531 C 756.925781 239.519531 760.554688 243.144531 760.554688 247.621094 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 587.675781 386.242188 C 587.675781 390.714844 584.046875 394.339844 579.574219 394.339844 C 575.101562 394.339844 571.472656 390.714844 571.472656 386.242188 C 571.472656 381.765625 575.101562 378.140625 579.574219 378.140625 C 584.046875 378.140625 587.675781 381.765625 587.675781 386.242188 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 727.269531 390.585938 C 727.269531 395.058594 723.640625 398.683594 719.167969 398.683594 C 714.695312 398.683594 711.070312 395.058594 711.070312 390.585938 C 711.070312 386.113281 714.695312 382.484375 719.167969 382.484375 C 723.640625 382.484375 727.269531 386.113281 727.269531 390.585938 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 652.089844 311.792969 C 652.089844 316.269531 648.464844 319.894531 643.992188 319.894531 C 639.519531 319.894531 635.890625 316.269531 635.890625 311.792969 C 635.890625 307.320312 639.519531 303.695312 643.992188 303.695312 C 648.464844 303.695312 652.089844 307.320312 652.089844 311.792969 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 664.804688 240.503906 C 664.804688 244.976562 661.175781 248.601562 656.703125 248.601562 C 652.230469 248.601562 648.605469 244.976562 648.605469 240.503906 C 648.605469 236.03125 652.230469 232.402344 656.703125 232.402344 C 661.175781 232.402344 664.804688 236.03125 664.804688 240.503906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 662.292969 226.753906 C 662.292969 231.226562 658.664062 234.851562 654.191406 234.851562 C 649.71875 234.851562 646.089844 231.226562 646.089844 226.753906 C 646.089844 222.277344 649.71875 218.652344 654.191406 218.652344 C 658.664062 218.652344 662.292969 222.277344 662.292969 226.753906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 663.453125 494.753906 C 663.453125 499.226562 659.828125 502.851562 655.351562 502.851562 C 650.878906 502.851562 647.253906 499.226562 647.253906 494.753906 C 647.253906 490.277344 650.878906 486.652344 655.351562 486.652344 C 659.828125 486.652344 663.453125 490.277344 663.453125 494.753906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 601.304688 507.757812 C 601.304688 512.230469 597.675781 515.859375 593.203125 515.859375 C 588.730469 515.859375 585.101562 512.230469 585.101562 507.757812 C 585.101562 503.285156 588.730469 499.660156 593.203125 499.660156 C 597.675781 499.660156 601.304688 503.285156 601.304688 507.757812 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 699.699219 292.914062 C 699.699219 297.386719 696.074219 301.015625 691.597656 301.015625 C 687.125 301.015625 683.5 297.386719 683.5 292.914062 C 683.5 288.441406 687.125 284.816406 691.597656 284.816406 C 696.074219 284.816406 699.699219 288.441406 699.699219 292.914062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 486.214844 309.738281 C 486.214844 314.210938 482.585938 317.835938 478.113281 317.835938 C 473.640625 317.835938 470.011719 314.210938 470.011719 309.738281 C 470.011719 305.265625 473.640625 301.636719 478.113281 301.636719 C 482.585938 301.636719 486.214844 305.265625 486.214844 309.738281 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 596.410156 346.875 C 596.410156 351.347656 592.785156 354.972656 588.3125 354.972656 C 583.839844 354.972656 580.210938 351.347656 580.210938 346.875 C 580.210938 342.402344 583.839844 338.773438 588.3125 338.773438 C 592.785156 338.773438 596.410156 342.402344 596.410156 346.875 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 571.414062 171.601562 C 571.414062 176.074219 567.785156 179.699219 563.3125 179.699219 C 558.839844 179.699219 555.210938 176.074219 555.210938 171.601562 C 555.210938 167.125 558.839844 163.5 563.3125 163.5 C 567.785156 163.5 571.414062 167.125 571.414062 171.601562 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 730.886719 202.320312 C 730.886719 206.796875 727.257812 210.421875 722.785156 210.421875 C 718.3125 210.421875 714.683594 206.796875 714.683594 202.320312 C 714.683594 197.847656 718.3125 194.222656 722.785156 194.222656 C 727.257812 194.222656 730.886719 197.847656 730.886719 202.320312 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 490.96875 394.019531 C 490.96875 398.492188 487.34375 402.121094 482.871094 402.121094 C 478.398438 402.121094 474.769531 398.492188 474.769531 394.019531 C 474.769531 389.546875 478.398438 385.921875 482.871094 385.921875 C 487.34375 385.921875 490.96875 389.546875 490.96875 394.019531 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 729.390625 141.269531 C 729.390625 145.742188 725.761719 149.371094 721.289062 149.371094 C 716.816406 149.371094 713.1875 145.742188 713.1875 141.269531 C 713.1875 136.796875 716.816406 133.171875 721.289062 133.171875 C 725.761719 133.171875 729.390625 136.796875 729.390625 141.269531 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 557.082031 343.980469 C 557.082031 348.457031 553.457031 352.082031 548.984375 352.082031 C 544.507812 352.082031 540.882812 348.457031 540.882812 343.980469 C 540.882812 339.507812 544.507812 335.882812 548.984375 335.882812 C 553.457031 335.882812 557.082031 339.507812 557.082031 343.980469 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 502.488281 407.421875 C 502.488281 411.894531 498.863281 415.519531 494.390625 415.519531 C 489.917969 415.519531 486.289062 411.894531 486.289062 407.421875 C 486.289062 402.949219 489.917969 399.320312 494.390625 399.320312 C 498.863281 399.320312 502.488281 402.949219 502.488281 407.421875 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 680.925781 319.082031 C 680.925781 323.554688 677.300781 327.183594 672.828125 327.183594 C 668.355469 327.183594 664.726562 323.554688 664.726562 319.082031 C 664.726562 314.609375 668.355469 310.984375 672.828125 310.984375 C 677.300781 310.984375 680.925781 314.609375 680.925781 319.082031 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 619.429688 502.910156 C 619.429688 507.382812 615.800781 511.011719 611.328125 511.011719 C 606.855469 511.011719 603.230469 507.382812 603.230469 502.910156 C 603.230469 498.4375 606.855469 494.808594 611.328125 494.808594 C 615.800781 494.808594 619.429688 498.4375 619.429688 502.910156 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 698.113281 365.40625 C 698.113281 369.878906 694.488281 373.507812 690.015625 373.507812 C 685.542969 373.507812 681.914062 369.878906 681.914062 365.40625 C 681.914062 360.933594 685.542969 357.308594 690.015625 357.308594 C 694.488281 357.308594 698.113281 360.933594 698.113281 365.40625 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 703.738281 489.144531 C 703.738281 493.621094 700.113281 497.246094 695.640625 497.246094 C 691.167969 497.246094 687.539062 493.621094 687.539062 489.144531 C 687.539062 484.671875 691.167969 481.046875 695.640625 481.046875 C 700.113281 481.046875 703.738281 484.671875 703.738281 489.144531 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 533.25 478.96875 C 533.25 483.441406 529.625 487.070312 525.152344 487.070312 C 520.675781 487.070312 517.050781 483.441406 517.050781 478.96875 C 517.050781 474.496094 520.675781 470.867188 525.152344 470.867188 C 529.625 470.867188 533.25 474.496094 533.25 478.96875 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 583.355469 462.167969 C 583.355469 466.640625 579.726562 470.269531 575.253906 470.269531 C 570.78125 470.269531 567.152344 466.640625 567.152344 462.167969 C 567.152344 457.695312 570.78125 454.066406 575.253906 454.066406 C 579.726562 454.066406 583.355469 457.695312 583.355469 462.167969 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 586.230469 317.089844 C 586.230469 321.5625 582.601562 325.1875 578.128906 325.1875 C 573.65625 325.1875 570.027344 321.5625 570.027344 317.089844 C 570.027344 312.617188 573.65625 308.988281 578.128906 308.988281 C 582.601562 308.988281 586.230469 312.617188 586.230469 317.089844 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 664.0625 275.191406 C 664.0625 279.664062 660.433594 283.289062 655.960938 283.289062 C 651.488281 283.289062 647.859375 279.664062 647.859375 275.191406 C 647.859375 270.71875 651.488281 267.089844 655.960938 267.089844 C 660.433594 267.089844 664.0625 270.71875 664.0625 275.191406 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 551.25 293.636719 C 551.25 298.109375 547.625 301.734375 543.148438 301.734375 C 538.675781 301.734375 535.050781 298.109375 535.050781 293.636719 C 535.050781 289.160156 538.675781 285.535156 543.148438 285.535156 C 547.625 285.535156 551.25 289.160156 551.25 293.636719 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 612.527344 505.34375 C 612.527344 509.816406 608.898438 513.445312 604.425781 513.445312 C 599.953125 513.445312 596.328125 509.816406 596.328125 505.34375 C 596.328125 500.871094 599.953125 497.242188 604.425781 497.242188 C 608.898438 497.242188 612.527344 500.871094 612.527344 505.34375 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 727.234375 371.378906 C 727.234375 375.851562 723.605469 379.480469 719.132812 379.480469 C 714.660156 379.480469 711.03125 375.851562 711.03125 371.378906 C 711.03125 366.90625 714.660156 363.277344 719.132812 363.277344 C 723.605469 363.277344 727.234375 366.90625 727.234375 371.378906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 530.472656 308.777344 C 530.472656 313.253906 526.847656 316.878906 522.375 316.878906 C 517.898438 316.878906 514.273438 313.253906 514.273438 308.777344 C 514.273438 304.304688 517.898438 300.679688 522.375 300.679688 C 526.847656 300.679688 530.472656 304.304688 530.472656 308.777344 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 640.671875 449.582031 C 640.671875 454.054688 637.046875 457.679688 632.574219 457.679688 C 628.097656 457.679688 624.472656 454.054688 624.472656 449.582031 C 624.472656 445.105469 628.097656 441.480469 632.574219 441.480469 C 637.046875 441.480469 640.671875 445.105469 640.671875 449.582031 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 679.710938 344.851562 C 679.710938 349.324219 676.082031 352.949219 671.609375 352.949219 C 667.136719 352.949219 663.507812 349.324219 663.507812 344.851562 C 663.507812 340.378906 667.136719 336.75 671.609375 336.75 C 676.082031 336.75 679.710938 340.378906 679.710938 344.851562 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 506.472656 230.808594 C 506.472656 235.285156 502.847656 238.910156 498.371094 238.910156 C 493.898438 238.910156 490.273438 235.285156 490.273438 230.808594 C 490.273438 226.335938 493.898438 222.710938 498.371094 222.710938 C 502.847656 222.710938 506.472656 226.335938 506.472656 230.808594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 539.578125 157.886719 C 539.578125 162.359375 535.953125 165.984375 531.476562 165.984375 C 527.003906 165.984375 523.378906 162.359375 523.378906 157.886719 C 523.378906 153.414062 527.003906 149.785156 531.476562 149.785156 C 535.953125 149.785156 539.578125 153.414062 539.578125 157.886719 \"/>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"650.65625\" y=\"422.151367\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"707.289062\" y=\"206.28418\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"636.941406\" y=\"212.983398\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"566.089844\" y=\"210.053711\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"669.316406\" y=\"199.600586\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"690.804688\" y=\"421.241211\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"669.019531\" y=\"128.307617\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"488.160156\" y=\"520.452148\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"641.769531\" y=\"451.643555\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"533.21875\" y=\"86.084961\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"751.351562\" y=\"340.72168\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"524.140625\" y=\"126.37793\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"623.832031\" y=\"301.393555\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"757.324219\" y=\"240.65918\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"602.054688\" y=\"367.893555\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"478.269531\" y=\"292.420898\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"525.15625\" y=\"389.717773\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"748.953125\" y=\"251.897461\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"576.074219\" y=\"390.518555\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"715.667969\" y=\"394.862305\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"640.492188\" y=\"316.069336\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"653.203125\" y=\"244.780273\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"650.691406\" y=\"231.030273\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"651.851562\" y=\"499.030273\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"589.703125\" y=\"512.03418\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"688.097656\" y=\"297.19043\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"474.613281\" y=\"314.014648\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"584.8125\" y=\"351.151367\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"559.8125\" y=\"175.87793\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"719.285156\" y=\"206.59668\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"479.371094\" y=\"398.295898\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"717.789062\" y=\"145.545898\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"545.484375\" y=\"348.256836\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"490.890625\" y=\"411.698242\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"669.328125\" y=\"323.358398\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"607.828125\" y=\"507.186523\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"686.515625\" y=\"369.682617\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"692.140625\" y=\"493.420898\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"521.652344\" y=\"483.245117\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"571.753906\" y=\"466.444336\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"574.628906\" y=\"321.366211\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"652.460938\" y=\"279.467773\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"539.648438\" y=\"297.913086\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"600.925781\" y=\"509.620117\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"715.632812\" y=\"375.655273\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"518.875\" y=\"313.053711\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"629.074219\" y=\"453.858398\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"668.109375\" y=\"349.12793\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"494.871094\" y=\"235.084961\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"527.976562\" y=\"162.163086\"/>\n</g>\n<g clip-path=\"url(#clip3)\" clip-rule=\"nonzero\">\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 59.039062 521.558594 L 246.96875 521.558594 L 246.96875 76.828125 L 59.039062 76.828125 Z M 59.039062 521.558594 \"/>\n</g>\n<g clip-path=\"url(#clip4)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 246.96875 521.558594 L 246.96875 76.828125 L 59.039062 76.828125 Z M 59.039062 521.558594 \"/>\n</g>\n<path style=\"fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.96875 521.558594 L 434.898438 521.558594 L 434.898438 111.039062 L 246.96875 111.039062 Z M 246.96875 521.558594 \"/>\n<g clip-path=\"url(#clip5)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 434.898438 521.558594 \"/>\n</g>\n<g clip-path=\"url(#clip6)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 504.453125 L 434.898438 504.453125 \"/>\n</g>\n<g clip-path=\"url(#clip7)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 487.351562 L 434.898438 487.351562 \"/>\n</g>\n<g clip-path=\"url(#clip8)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 470.246094 L 434.898438 470.246094 \"/>\n</g>\n<g clip-path=\"url(#clip9)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 453.140625 L 434.898438 453.140625 \"/>\n</g>\n<g clip-path=\"url(#clip10)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 436.035156 L 434.898438 436.035156 \"/>\n</g>\n<g clip-path=\"url(#clip11)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 418.929688 L 434.898438 418.929688 \"/>\n</g>\n<g clip-path=\"url(#clip12)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 401.824219 L 434.898438 401.824219 \"/>\n</g>\n<g clip-path=\"url(#clip13)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 384.71875 L 434.898438 384.71875 \"/>\n</g>\n<g clip-path=\"url(#clip14)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 367.613281 L 434.898438 367.613281 \"/>\n</g>\n<g clip-path=\"url(#clip15)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 350.507812 L 434.898438 350.507812 \"/>\n</g>\n<g clip-path=\"url(#clip16)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 333.40625 L 434.898438 333.40625 \"/>\n</g>\n<g clip-path=\"url(#clip17)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 316.300781 L 434.898438 316.300781 \"/>\n</g>\n<g clip-path=\"url(#clip18)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 299.195312 L 434.898438 299.195312 \"/>\n</g>\n<g clip-path=\"url(#clip19)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 282.089844 L 434.898438 282.089844 \"/>\n</g>\n<g clip-path=\"url(#clip20)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 264.984375 L 434.898438 264.984375 \"/>\n</g>\n<g clip-path=\"url(#clip21)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 247.878906 L 434.898438 247.878906 \"/>\n</g>\n<g clip-path=\"url(#clip22)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 230.773438 L 434.898438 230.773438 \"/>\n</g>\n<g clip-path=\"url(#clip23)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 213.667969 L 434.898438 213.667969 \"/>\n</g>\n<g clip-path=\"url(#clip24)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 196.5625 L 434.898438 196.5625 \"/>\n</g>\n<g clip-path=\"url(#clip25)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 179.460938 L 434.898438 179.460938 \"/>\n</g>\n<g clip-path=\"url(#clip26)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 162.355469 L 434.898438 162.355469 \"/>\n</g>\n<g clip-path=\"url(#clip27)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 145.25 L 434.898438 145.25 \"/>\n</g>\n<g clip-path=\"url(#clip28)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 128.144531 L 434.898438 128.144531 \"/>\n</g>\n<g clip-path=\"url(#clip29)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 111.039062 L 434.898438 111.039062 \"/>\n</g>\n<g clip-path=\"url(#clip30)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 93.933594 L 434.898438 93.933594 \"/>\n</g>\n<g clip-path=\"url(#clip31)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 76.828125 L 434.898438 76.828125 \"/>\n</g>\n<g clip-path=\"url(#clip32)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 434.898438 521.558594 L 434.898438 59.039062 \"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 59.039062 L 340.933594 59.039062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 59.039062 L 153.003906 59.039062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 340.933594 59.039062 L 340.933594 59.039062 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"128.503906\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-3\" x=\"135.175781\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"141.847656\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-5\" x=\"145.183594\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"149.179688\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-7\" x=\"155.851562\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-8\" x=\"159.1875\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-2\" x=\"165.859375\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-9\" x=\"172.53125\" y=\"48.737305\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"316.433594\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-10\" x=\"323.105469\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"329.777344\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-5\" x=\"333.113281\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"337.109375\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-7\" x=\"343.78125\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-10\" x=\"347.117188\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-11\" x=\"353.789062\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-9\" x=\"360.460938\" y=\"48.737305\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 622.828125 521.558594 L 622.828125 521.558594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 622.828125 521.558594 L 622.828125 521.558594 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-12\" x=\"564.328125\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-13\" x=\"572.992188\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-14\" x=\"579.664062\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-15\" x=\"589.660156\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-16\" x=\"596.332031\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-17\" x=\"603.003906\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"607\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"610.335938\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-19\" x=\"617.007812\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"620.34375\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-20\" x=\"623.679688\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"629.932617\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-21\" x=\"636.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-21\" x=\"642.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-16\" x=\"648.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-21\" x=\"655.276367\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-22\" x=\"661.276367\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"664.612305\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-8\" x=\"667.948242\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"674.620117\" y=\"547.256836\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 810.761719 521.558594 L 810.761719 59.039062 L 59.039062 59.039062 L 59.039062 521.558594 \"/>\n</g>\n</svg>\n",
+      "body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"841pt\" height=\"595pt\" viewBox=\"0 0 841 595\" version=\"1.1\">\n<defs>\n<g>\n<symbol overflow=\"visible\" id=\"glyph0-0\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-1\">\n<path style=\"stroke:none;\" d=\"M 4.296875 -0.125 L 4.296875 -8.765625 L 3.359375 -8.765625 C 2.953125 -7.328125 2.859375 -7.28125 1.078125 -7.0625 L 1.078125 -6.0625 L 2.96875 -6.0625 L 2.96875 0 L 4.296875 0 Z M 4.296875 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-2\">\n<path style=\"stroke:none;\" d=\"M 6.265625 -6.140625 C 6.265625 -7.578125 5.015625 -8.765625 3.40625 -8.765625 C 1.671875 -8.765625 0.515625 -7.75 0.453125 -5.5625 L 1.78125 -5.5625 C 1.875 -7.109375 2.328125 -7.578125 3.375 -7.578125 C 4.328125 -7.578125 4.90625 -7.03125 4.90625 -6.125 C 4.90625 -5.453125 4.546875 -4.96875 3.796875 -4.53125 L 2.6875 -3.90625 C 0.90625 -2.90625 0.359375 -2 0.25 0 L 6.203125 0 L 6.203125 -1.3125 L 1.75 -1.3125 C 1.84375 -1.875 2.1875 -2.21875 3.234375 -2.828125 L 4.421875 -3.484375 C 5.609375 -4.109375 6.265625 -5.09375 6.265625 -6.140625 Z M 6.265625 -6.140625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-3\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.53125 C 6.28125 -3.484375 5.671875 -4.265625 4.953125 -4.625 C 5.65625 -5.046875 5.984375 -5.5625 5.984375 -6.375 C 5.984375 -7.703125 4.8125 -8.765625 3.296875 -8.765625 C 1.796875 -8.765625 0.59375 -7.703125 0.59375 -6.375 C 0.59375 -5.578125 0.921875 -5.046875 1.625 -4.625 C 0.921875 -4.265625 0.296875 -3.484375 0.296875 -2.546875 C 0.296875 -0.984375 1.625 0.1875 3.296875 0.1875 C 4.984375 0.1875 6.28125 -0.984375 6.28125 -2.53125 Z M 4.625 -6.34375 C 4.625 -5.5625 4.1875 -5.15625 3.296875 -5.15625 C 2.40625 -5.15625 1.953125 -5.5625 1.953125 -6.359375 C 1.953125 -7.171875 2.40625 -7.578125 3.296875 -7.578125 C 4.203125 -7.578125 4.625 -7.171875 4.625 -6.34375 Z M 4.9375 -2.515625 C 4.9375 -1.515625 4.359375 -1.015625 3.28125 -1.015625 C 2.25 -1.015625 1.65625 -1.53125 1.65625 -2.515625 C 1.65625 -3.515625 2.25 -4.015625 3.296875 -4.015625 C 4.359375 -4.015625 4.9375 -3.515625 4.9375 -2.515625 Z M 4.9375 -2.515625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-4\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-5\">\n<path style=\"stroke:none;\" d=\"M 3.59375 2.3125 C 2.53125 0.59375 1.984375 -1.3125 1.984375 -3.234375 C 1.984375 -5.140625 2.53125 -7.078125 3.734375 -9.015625 L 2.765625 -9.015625 C 1.53125 -7.40625 0.734375 -5.125 0.734375 -3.234375 C 0.734375 -1.34375 1.53125 0.9375 2.765625 2.546875 L 3.734375 2.546875 Z M 3.59375 2.3125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-6\">\n<path style=\"stroke:none;\" d=\"M 6.21875 -4.21875 C 6.21875 -7.171875 5.140625 -8.765625 3.296875 -8.765625 C 1.46875 -8.765625 0.375 -7.15625 0.375 -4.296875 C 0.375 -1.421875 1.46875 0.1875 3.296875 0.1875 C 5.09375 0.1875 6.21875 -1.421875 6.21875 -4.21875 Z M 4.859375 -4.3125 C 4.859375 -1.90625 4.453125 -0.953125 3.28125 -0.953125 C 2.15625 -0.953125 1.734375 -1.953125 1.734375 -4.28125 C 1.734375 -6.609375 2.15625 -7.578125 3.296875 -7.578125 C 4.4375 -7.578125 4.859375 -6.59375 4.859375 -4.3125 Z M 4.859375 -4.3125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-7\">\n<path style=\"stroke:none;\" d=\"M 2.421875 -0.125 L 2.421875 -1.515625 L 0.90625 -1.515625 L 0.90625 0 L 2.421875 0 Z M 2.421875 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-8\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.953125 C 6.28125 -4.625 5.046875 -5.875 3.40625 -5.875 C 2.8125 -5.875 2.21875 -5.671875 2.015625 -5.515625 L 2.28125 -7.28125 L 5.84375 -7.28125 L 5.84375 -8.59375 L 1.203125 -8.59375 L 0.515625 -3.875 L 1.71875 -3.875 C 2.25 -4.5 2.5625 -4.671875 3.21875 -4.671875 C 4.359375 -4.671875 4.9375 -4.0625 4.9375 -2.8125 C 4.9375 -1.578125 4.375 -1.015625 3.21875 -1.015625 C 2.296875 -1.015625 1.859375 -1.359375 1.578125 -2.453125 L 0.25 -2.453125 C 0.625 -0.625 1.734375 0.1875 3.234375 0.1875 C 4.953125 0.1875 6.28125 -1.15625 6.28125 -2.953125 Z M 6.28125 -2.953125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-9\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.765625 C 6.28125 -4.359375 5.078125 -5.5625 3.546875 -5.5625 C 2.71875 -5.5625 1.9375 -5.203125 1.484375 -4.578125 L 1.734375 -4.46875 C 1.734375 -6.546875 2.28125 -7.578125 3.484375 -7.578125 C 4.234375 -7.578125 4.609375 -7.234375 4.796875 -6.28125 L 6.125 -6.28125 C 5.90625 -7.8125 4.859375 -8.765625 3.5625 -8.765625 C 1.578125 -8.765625 0.375 -6.96875 0.375 -4.015625 C 0.375 -1.359375 1.421875 0.1875 3.375 0.1875 C 4.984375 0.1875 6.28125 -1.109375 6.28125 -2.765625 Z M 4.9375 -2.6875 C 4.9375 -1.625 4.359375 -1.015625 3.390625 -1.015625 C 2.40625 -1.015625 1.78125 -1.65625 1.78125 -2.75 C 1.78125 -3.796875 2.375 -4.359375 3.421875 -4.359375 C 4.4375 -4.359375 4.9375 -3.828125 4.9375 -2.6875 Z M 4.9375 -2.6875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-10\">\n<path style=\"stroke:none;\" d=\"M 3.203125 -3.234375 C 3.203125 -5.125 2.40625 -7.40625 1.171875 -9.015625 L 0.203125 -9.015625 C 1.40625 -7.0625 1.953125 -5.140625 1.953125 -3.234375 C 1.953125 -1.3125 1.40625 0.609375 0.203125 2.546875 L 1.171875 2.546875 C 2.40625 0.9375 3.203125 -1.34375 3.203125 -3.234375 Z M 3.203125 -3.234375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-11\">\n<path style=\"stroke:none;\" d=\"M 6.375 -2.171875 L 6.375 -3.25 L 5.109375 -3.25 L 5.109375 -8.765625 L 4.125 -8.765625 L 0.1875 -3.328125 L 0.1875 -2.046875 L 3.78125 -2.046875 L 3.78125 0 L 5.109375 0 L 5.109375 -2.046875 L 6.375 -2.046875 Z M 3.921875 -3.25 L 1.515625 -3.25 L 4.015625 -6.75 L 3.78125 -6.84375 L 3.78125 -3.25 Z M 3.921875 -3.25 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-12\">\n<path style=\"stroke:none;\" d=\"M 7.890625 -0.125 L 7.890625 -9.015625 L 6.546875 -9.015625 L 6.546875 -1.734375 L 6.796875 -1.828125 L 2.1875 -9.015625 L 0.765625 -9.015625 L 0.765625 0 L 2.09375 0 L 2.09375 -7.21875 L 1.859375 -7.125 L 6.421875 0 L 7.890625 0 Z M 7.890625 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-13\">\n<path style=\"stroke:none;\" d=\"M 5.921875 -0.125 L 5.921875 -6.546875 L 4.640625 -6.546875 L 4.640625 -2.953125 C 4.640625 -1.671875 4.109375 -0.953125 3.078125 -0.953125 C 2.28125 -0.953125 1.90625 -1.3125 1.90625 -2.0625 L 1.90625 -6.546875 L 0.640625 -6.546875 L 0.640625 -1.671875 C 0.640625 -0.625 1.5625 0.1875 2.78125 0.1875 C 3.703125 0.1875 4.390625 -0.1875 4.984375 -1.015625 L 4.734375 -1.109375 L 4.734375 0 L 5.921875 0 Z M 5.921875 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-14\">\n<path style=\"stroke:none;\" d=\"M 9.25 -0.125 L 9.25 -4.84375 C 9.25 -5.96875 8.5 -6.734375 7.3125 -6.734375 C 6.484375 -6.734375 5.875 -6.4375 5.40625 -5.875 C 5.109375 -6.40625 4.515625 -6.734375 3.703125 -6.734375 C 2.859375 -6.734375 2.203125 -6.390625 1.65625 -5.625 L 1.890625 -5.53125 L 1.890625 -6.546875 L 0.703125 -6.546875 L 0.703125 0 L 1.984375 0 L 1.984375 -4.078125 C 1.984375 -4.984375 2.515625 -5.59375 3.328125 -5.59375 C 4.0625 -5.59375 4.34375 -5.265625 4.34375 -4.46875 L 4.34375 0 L 5.609375 0 L 5.609375 -4.078125 C 5.609375 -4.984375 6.15625 -5.59375 6.96875 -5.59375 C 7.703125 -5.59375 7.984375 -5.25 7.984375 -4.46875 L 7.984375 0 L 9.25 0 Z M 9.25 -0.125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-15\">\n<path style=\"stroke:none;\" d=\"M 6.40625 -3.34375 C 6.40625 -5.390625 5.25 -6.734375 3.59375 -6.734375 C 2.71875 -6.734375 2 -6.375 1.53125 -5.65625 L 1.78125 -5.5625 L 1.78125 -9.015625 L 0.5 -9.015625 L 0.5 0 L 1.6875 0 L 1.6875 -1.03125 L 1.4375 -0.9375 C 1.921875 -0.203125 2.65625 0.1875 3.546875 0.1875 C 5.203125 0.1875 6.40625 -1.3125 6.40625 -3.34375 Z M 5.09375 -3.28125 C 5.09375 -1.859375 4.484375 -1.015625 3.390625 -1.015625 C 2.34375 -1.015625 1.78125 -1.84375 1.78125 -3.28125 C 1.78125 -4.75 2.34375 -5.578125 3.390625 -5.53125 C 4.515625 -5.53125 5.09375 -4.6875 5.09375 -3.28125 Z M 5.09375 -3.28125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-16\">\n<path style=\"stroke:none;\" d=\"M 6.28125 -2.984375 C 6.28125 -3.90625 6.21875 -4.46875 6.03125 -4.9375 C 5.625 -5.96875 4.53125 -6.734375 3.359375 -6.734375 C 1.609375 -6.734375 0.34375 -5.296875 0.34375 -3.234375 C 0.34375 -1.171875 1.578125 0.1875 3.34375 0.1875 C 4.78125 0.1875 5.90625 -0.765625 6.1875 -2.171875 L 4.921875 -2.171875 C 4.59375 -1.21875 4.171875 -1.015625 3.375 -1.015625 C 2.328125 -1.015625 1.6875 -1.546875 1.65625 -2.859375 L 6.28125 -2.859375 Z M 5.1875 -3.78125 C 5.1875 -3.78125 4.984375 -3.921875 4.984375 -3.9375 L 1.6875 -3.9375 C 1.765625 -4.921875 2.34375 -5.546875 3.34375 -5.546875 C 4.328125 -5.546875 4.9375 -4.859375 4.9375 -3.875 Z M 5.1875 -3.78125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-17\">\n<path style=\"stroke:none;\" d=\"M 3.984375 -5.546875 L 3.984375 -6.6875 C 3.6875 -6.71875 3.59375 -6.734375 3.46875 -6.734375 C 2.8125 -6.734375 2.21875 -6.3125 1.640625 -5.375 L 1.890625 -5.28125 L 1.890625 -6.546875 L 0.703125 -6.546875 L 0.703125 0 L 1.96875 0 L 1.96875 -3.390625 C 1.96875 -4.8125 2.296875 -5.390625 3.984375 -5.40625 Z M 3.984375 -5.546875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-18\">\n<path style=\"stroke:none;\" d=\"M 6.25 -3.234375 C 6.25 -5.40625 5.078125 -6.734375 3.265625 -6.734375 C 1.5 -6.734375 0.28125 -5.390625 0.28125 -3.28125 C 0.28125 -1.15625 1.484375 0.1875 3.28125 0.1875 C 5.046875 0.1875 6.25 -1.15625 6.25 -3.234375 Z M 4.9375 -3.234375 C 4.9375 -1.765625 4.375 -1.015625 3.28125 -1.015625 C 2.15625 -1.015625 1.609375 -1.75 1.609375 -3.28125 C 1.609375 -4.78125 2.15625 -5.546875 3.28125 -5.546875 C 4.40625 -5.546875 4.9375 -4.796875 4.9375 -3.234375 Z M 4.9375 -3.234375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-19\">\n<path style=\"stroke:none;\" d=\"M 3.234375 -5.609375 L 3.234375 -6.546875 L 2.1875 -6.546875 L 2.1875 -7.40625 C 2.1875 -7.828125 2.296875 -7.90625 2.75 -7.90625 C 2.828125 -7.90625 2.875 -7.90625 3.234375 -7.890625 L 3.234375 -8.96875 C 2.875 -9.03125 2.734375 -9.046875 2.53125 -9.046875 C 1.609375 -9.046875 0.90625 -8.390625 0.90625 -7.484375 L 0.90625 -6.546875 L 0.078125 -6.546875 L 0.078125 -5.46875 L 0.90625 -5.46875 L 0.90625 0 L 2.1875 0 L 2.1875 -5.46875 L 3.234375 -5.46875 Z M 3.234375 -5.609375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-20\">\n<path style=\"stroke:none;\" d=\"M 7.25 -7.890625 L 7.25 -9.015625 L 0.109375 -9.015625 L 0.109375 -7.765625 L 2.984375 -7.765625 L 2.984375 0 L 4.375 0 L 4.375 -7.765625 L 7.25 -7.765625 Z M 7.25 -7.890625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-21\">\n<path style=\"stroke:none;\" d=\"M 5.640625 -1.890625 C 5.640625 -2.828125 4.984375 -3.4375 3.734375 -3.734375 L 2.765625 -3.953125 C 1.953125 -4.15625 1.734375 -4.28125 1.734375 -4.734375 C 1.734375 -5.296875 2.125 -5.546875 2.9375 -5.546875 C 3.75 -5.546875 4.03125 -5.328125 4.0625 -4.53125 L 5.390625 -4.53125 C 5.375 -5.90625 4.421875 -6.734375 2.96875 -6.734375 C 1.515625 -6.734375 0.421875 -5.84375 0.421875 -4.6875 C 0.421875 -3.703125 1.0625 -3.09375 2.5625 -2.734375 L 3.484375 -2.515625 C 4.1875 -2.34375 4.3125 -2.265625 4.3125 -1.8125 C 4.3125 -1.21875 3.875 -1.015625 3 -1.015625 C 2.09375 -1.015625 1.734375 -1.09375 1.578125 -2.1875 L 0.265625 -2.1875 C 0.3125 -0.59375 1.265625 0.1875 2.921875 0.1875 C 4.5 0.1875 5.640625 -0.6875 5.640625 -1.890625 Z M 5.640625 -1.890625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph0-22\">\n<path style=\"stroke:none;\" d=\"M 2.421875 -0.125 L 2.421875 -1.515625 L 0.90625 -1.515625 L 0.90625 0 L 2.421875 0 Z M 2.421875 -5.171875 L 2.421875 -6.546875 L 0.90625 -6.546875 L 0.90625 -5.046875 L 2.421875 -5.046875 Z M 2.421875 -5.171875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-0\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-1\">\n<path style=\"stroke:none;\" d=\"M -4.21875 -6.21875 C -7.171875 -6.21875 -8.765625 -5.140625 -8.765625 -3.296875 C -8.765625 -1.46875 -7.15625 -0.375 -4.296875 -0.375 C -1.421875 -0.375 0.1875 -1.46875 0.1875 -3.296875 C 0.1875 -5.09375 -1.421875 -6.21875 -4.21875 -6.21875 Z M -4.3125 -4.859375 C -1.90625 -4.859375 -0.953125 -4.453125 -0.953125 -3.28125 C -0.953125 -2.15625 -1.953125 -1.734375 -4.28125 -1.734375 C -6.609375 -1.734375 -7.578125 -2.15625 -7.578125 -3.296875 C -7.578125 -4.4375 -6.59375 -4.859375 -4.3125 -4.859375 Z M -4.3125 -4.859375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-2\">\n<path style=\"stroke:none;\" d=\"M -0.125 -2.421875 L -1.515625 -2.421875 L -1.515625 -0.90625 L 0 -0.90625 L 0 -2.421875 Z M -0.125 -2.421875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-3\">\n<path style=\"stroke:none;\" d=\"M -0.125 -4.296875 L -8.765625 -4.296875 L -8.765625 -3.359375 C -7.328125 -2.953125 -7.28125 -2.859375 -7.0625 -1.078125 L -6.0625 -1.078125 L -6.0625 -2.96875 L 0 -2.96875 L 0 -4.296875 Z M -0.125 -4.296875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-4\">\n<path style=\"stroke:none;\" d=\"M -6.140625 -6.265625 C -7.578125 -6.265625 -8.765625 -5.015625 -8.765625 -3.40625 C -8.765625 -1.671875 -7.75 -0.515625 -5.5625 -0.453125 L -5.5625 -1.78125 C -7.109375 -1.875 -7.578125 -2.328125 -7.578125 -3.375 C -7.578125 -4.328125 -7.03125 -4.90625 -6.125 -4.90625 C -5.453125 -4.90625 -4.96875 -4.546875 -4.53125 -3.796875 L -3.90625 -2.6875 C -2.90625 -0.90625 -2 -0.359375 0 -0.25 L 0 -6.203125 L -1.3125 -6.203125 L -1.3125 -1.75 C -1.875 -1.84375 -2.21875 -2.1875 -2.828125 -3.234375 L -3.484375 -4.421875 C -4.109375 -5.609375 -5.09375 -6.265625 -6.140625 -6.265625 Z M -6.140625 -6.265625 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-5\">\n<path style=\"stroke:none;\" d=\"M -2.609375 -6.203125 C -3.640625 -6.203125 -4.375 -5.65625 -4.71875 -4.625 L -4.453125 -4.625 C -4.765625 -5.421875 -5.453125 -5.953125 -6.296875 -5.953125 C -7.765625 -5.953125 -8.765625 -4.84375 -8.765625 -3.234375 C -8.765625 -1.515625 -7.703125 -0.453125 -5.765625 -0.421875 L -5.765625 -1.75 C -7.15625 -1.78125 -7.578125 -2.15625 -7.578125 -3.234375 C -7.578125 -4.171875 -7.15625 -4.59375 -6.265625 -4.59375 C -5.359375 -4.59375 -5.109375 -4.34375 -5.109375 -2.515625 L -3.953125 -2.515625 L -3.953125 -3.234375 C -3.953125 -4.390625 -3.546875 -4.84375 -2.59375 -4.84375 C -1.53125 -4.84375 -1.015625 -4.328125 -1.015625 -3.234375 C -1.015625 -2.078125 -1.46875 -1.640625 -2.828125 -1.5625 L -2.828125 -0.234375 C -0.796875 -0.375 0.1875 -1.453125 0.1875 -3.1875 C 0.1875 -4.9375 -1 -6.203125 -2.609375 -6.203125 Z M -2.609375 -6.203125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-6\">\n<path style=\"stroke:none;\" d=\"M -2.171875 -6.375 L -3.25 -6.375 L -3.25 -5.109375 L -8.765625 -5.109375 L -8.765625 -4.125 L -3.328125 -0.1875 L -2.046875 -0.1875 L -2.046875 -3.78125 L 0 -3.78125 L 0 -5.109375 L -2.046875 -5.109375 L -2.046875 -6.375 Z M -3.25 -3.921875 L -3.25 -1.515625 L -6.75 -4.015625 L -6.84375 -3.78125 L -3.25 -3.78125 Z M -3.25 -3.921875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-7\">\n<path style=\"stroke:none;\" d=\"M -2.953125 -6.28125 C -4.625 -6.28125 -5.875 -5.046875 -5.875 -3.40625 C -5.875 -2.8125 -5.671875 -2.21875 -5.515625 -2.015625 L -7.28125 -2.28125 L -7.28125 -5.84375 L -8.59375 -5.84375 L -8.59375 -1.203125 L -3.875 -0.515625 L -3.875 -1.71875 C -4.5 -2.25 -4.671875 -2.5625 -4.671875 -3.21875 C -4.671875 -4.359375 -4.0625 -4.9375 -2.8125 -4.9375 C -1.578125 -4.9375 -1.015625 -4.375 -1.015625 -3.21875 C -1.015625 -2.296875 -1.359375 -1.859375 -2.453125 -1.578125 L -2.453125 -0.25 C -0.625 -0.625 0.1875 -1.734375 0.1875 -3.234375 C 0.1875 -4.953125 -1.15625 -6.28125 -2.953125 -6.28125 Z M -2.953125 -6.28125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-8\">\n<path style=\"stroke:none;\" d=\"M -7.890625 -7.078125 L -9.015625 -7.078125 L -9.015625 -0.9375 L 0 -0.9375 L 0 -2.328125 L -3.984375 -2.328125 L -3.984375 -6.5 L -5.234375 -6.5 L -5.234375 -2.328125 L -7.765625 -2.328125 L -7.765625 -7.078125 Z M -7.890625 -7.078125 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-9\">\n<path style=\"stroke:none;\" d=\"M -5.546875 -3.984375 L -6.6875 -3.984375 C -6.71875 -3.6875 -6.734375 -3.59375 -6.734375 -3.46875 C -6.734375 -2.8125 -6.3125 -2.21875 -5.375 -1.640625 L -5.28125 -1.890625 L -6.546875 -1.890625 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 L -3.390625 -1.96875 C -4.8125 -1.96875 -5.390625 -2.296875 -5.40625 -3.984375 Z M -5.546875 -3.984375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-10\">\n<path style=\"stroke:none;\" d=\"M -2.984375 -6.28125 C -3.90625 -6.28125 -4.46875 -6.21875 -4.9375 -6.03125 C -5.96875 -5.625 -6.734375 -4.53125 -6.734375 -3.359375 C -6.734375 -1.609375 -5.296875 -0.34375 -3.234375 -0.34375 C -1.171875 -0.34375 0.1875 -1.578125 0.1875 -3.34375 C 0.1875 -4.78125 -0.765625 -5.90625 -2.171875 -6.1875 L -2.171875 -4.921875 C -1.21875 -4.59375 -1.015625 -4.171875 -1.015625 -3.375 C -1.015625 -2.328125 -1.546875 -1.6875 -2.859375 -1.65625 L -2.859375 -6.28125 Z M -3.78125 -5.1875 C -3.78125 -5.1875 -3.921875 -4.984375 -3.9375 -4.984375 L -3.9375 -1.6875 C -4.921875 -1.765625 -5.546875 -2.34375 -5.546875 -3.34375 C -5.546875 -4.328125 -4.859375 -4.9375 -3.875 -4.9375 Z M -3.78125 -5.1875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-11\">\n<path style=\"stroke:none;\" d=\"M 2.484375 -6.078125 L -6.546875 -6.078125 L -6.546875 -4.90625 L -5.578125 -4.90625 L -5.671875 -5.140625 C -6.34375 -4.6875 -6.734375 -3.875 -6.734375 -3.046875 C -6.734375 -1.390625 -5.296875 -0.171875 -3.203125 -0.171875 C -1.15625 -0.171875 0.1875 -1.34375 0.1875 -3 C 0.1875 -3.875 -0.171875 -4.578125 -0.859375 -5.046875 L -0.953125 -4.796875 L 2.609375 -4.796875 L 2.609375 -6.078125 Z M -3.234375 -4.796875 C -1.796875 -4.796875 -1.015625 -4.25 -1.015625 -3.1875 C -1.015625 -2.09375 -1.8125 -1.484375 -3.28125 -1.484375 C -4.734375 -1.484375 -5.53125 -2.09375 -5.53125 -3.1875 C -5.53125 -4.265625 -4.703125 -4.796875 -3.234375 -4.796875 Z M -3.234375 -4.796875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-12\">\n<path style=\"stroke:none;\" d=\"M -0.125 -5.921875 L -6.546875 -5.921875 L -6.546875 -4.640625 L -2.953125 -4.640625 C -1.671875 -4.640625 -0.953125 -4.109375 -0.953125 -3.078125 C -0.953125 -2.28125 -1.3125 -1.90625 -2.0625 -1.90625 L -6.546875 -1.90625 L -6.546875 -0.640625 L -1.671875 -0.640625 C -0.625 -0.640625 0.1875 -1.5625 0.1875 -2.78125 C 0.1875 -3.703125 -0.1875 -4.390625 -1.015625 -4.984375 L -1.109375 -4.734375 L 0 -4.734375 L 0 -5.921875 Z M -0.125 -5.921875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-13\">\n<path style=\"stroke:none;\" d=\"M -0.125 -5.96875 L -4.890625 -5.96875 C -5.921875 -5.96875 -6.734375 -5.0625 -6.734375 -3.859375 C -6.734375 -2.921875 -6.34375 -2.203125 -5.453125 -1.65625 L -5.359375 -1.890625 L -6.546875 -1.890625 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 L -3.59375 -1.96875 C -4.890625 -1.96875 -5.59375 -2.53125 -5.59375 -3.546875 C -5.59375 -4.34375 -5.25 -4.703125 -4.484375 -4.703125 L 0 -4.703125 L 0 -5.96875 Z M -0.125 -5.96875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-14\">\n<path style=\"stroke:none;\" d=\"M -2.421875 -5.71875 L -2.421875 -4.59375 C -1.28125 -4.40625 -1.015625 -4.03125 -1.015625 -3.1875 C -1.015625 -2.078125 -1.734375 -1.546875 -3.21875 -1.546875 C -4.78125 -1.546875 -5.546875 -2.0625 -5.546875 -3.15625 C -5.546875 -4 -5.1875 -4.375 -4.171875 -4.53125 L -4.171875 -5.796875 C -5.84375 -5.65625 -6.734375 -4.578125 -6.734375 -3.171875 C -6.734375 -1.46875 -5.296875 -0.234375 -3.21875 -0.234375 C -1.1875 -0.234375 0.1875 -1.453125 0.1875 -3.15625 C 0.1875 -4.65625 -0.859375 -5.734375 -2.421875 -5.875 Z M -2.421875 -5.71875 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-15\">\n<path style=\"stroke:none;\" d=\"M -6.546875 -5.734375 L -6.546875 -4.5625 L -1.53125 -2.765625 L -1.53125 -3.046875 L -6.546875 -1.390625 L -6.546875 -0.046875 L -0.109375 -2.21875 L 0.890625 -1.84375 C 1.328125 -1.671875 1.375 -1.609375 1.375 -1.171875 C 1.375 -1.03125 1.34375 -0.859375 1.265625 -0.5 L 2.40625 -0.5 C 2.53125 -0.75 2.609375 -1.0625 2.609375 -1.3125 C 2.609375 -2.03125 2.09375 -2.734375 1.1875 -3.078125 L -6.546875 -5.921875 Z M -6.546875 -5.734375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-16\">\n<path style=\"stroke:none;\" d=\"M -0.125 -1.9375 L -9.015625 -1.9375 L -9.015625 -0.671875 L 0 -0.671875 L 0 -1.9375 Z M -0.125 -1.9375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-17\">\n<path style=\"stroke:none;\" d=\"M -0.125 -1.96875 L -6.546875 -1.96875 L -6.546875 -0.703125 L 0 -0.703125 L 0 -1.96875 Z M -7.375 -2.09375 L -8.75 -2.09375 L -8.75 -0.578125 L -7.234375 -0.578125 L -7.234375 -2.09375 Z M -7.375 -2.09375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-18\">\n<path style=\"stroke:none;\" d=\"M -3.21875 -6.40625 C -5.328125 -6.40625 -6.734375 -5.25 -6.734375 -3.578125 C -6.734375 -2.71875 -6.3125 -1.9375 -5.5625 -1.46875 L -5.46875 -1.703125 L -6.546875 -1.703125 L -6.546875 -0.515625 L 2.609375 -0.515625 L 2.609375 -1.78125 L -0.890625 -1.78125 L -0.796875 -1.546875 C -0.140625 -2.078125 0.1875 -2.765625 0.1875 -3.59375 C 0.1875 -5.203125 -1.21875 -6.40625 -3.21875 -6.40625 Z M -3.234375 -5.09375 C -1.8125 -5.09375 -1.015625 -4.5 -1.015625 -3.40625 C -1.015625 -2.359375 -1.75 -1.78125 -3.234375 -1.78125 C -4.703125 -1.78125 -5.53125 -2.359375 -5.53125 -3.40625 C -5.53125 -4.515625 -4.734375 -5.09375 -3.234375 -5.09375 Z M -3.234375 -5.09375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-19\">\n<path style=\"stroke:none;\" d=\"\"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-20\">\n<path style=\"stroke:none;\" d=\"M -7.3125 -1.84375 L -8.765625 -1.84375 L -8.765625 -0.4375 L -7.3125 -0.4375 L -5.5625 -0.78125 L -5.5625 -1.484375 Z M -7.3125 -1.84375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-21\">\n<path style=\"stroke:none;\" d=\"M -3.234375 -6.25 C -5.40625 -6.25 -6.734375 -5.078125 -6.734375 -3.265625 C -6.734375 -1.5 -5.390625 -0.28125 -3.28125 -0.28125 C -1.15625 -0.28125 0.1875 -1.484375 0.1875 -3.28125 C 0.1875 -5.046875 -1.15625 -6.25 -3.234375 -6.25 Z M -3.234375 -4.9375 C -1.765625 -4.9375 -1.015625 -4.375 -1.015625 -3.28125 C -1.015625 -2.15625 -1.75 -1.609375 -3.28125 -1.609375 C -4.78125 -1.609375 -5.546875 -2.15625 -5.546875 -3.28125 C -5.546875 -4.40625 -4.796875 -4.9375 -3.234375 -4.9375 Z M -3.234375 -4.9375 \"/>\n</symbol>\n<symbol overflow=\"visible\" id=\"glyph1-22\">\n<path style=\"stroke:none;\" d=\"M -1.890625 -5.640625 C -2.828125 -5.640625 -3.4375 -4.984375 -3.734375 -3.734375 L -3.953125 -2.765625 C -4.15625 -1.953125 -4.28125 -1.734375 -4.734375 -1.734375 C -5.296875 -1.734375 -5.546875 -2.125 -5.546875 -2.9375 C -5.546875 -3.75 -5.328125 -4.03125 -4.53125 -4.0625 L -4.53125 -5.390625 C -5.90625 -5.375 -6.734375 -4.421875 -6.734375 -2.96875 C -6.734375 -1.515625 -5.84375 -0.421875 -4.6875 -0.421875 C -3.703125 -0.421875 -3.09375 -1.0625 -2.734375 -2.5625 L -2.515625 -3.484375 C -2.34375 -4.1875 -2.265625 -4.3125 -1.8125 -4.3125 C -1.21875 -4.3125 -1.015625 -3.875 -1.015625 -3 C -1.015625 -2.09375 -1.09375 -1.734375 -2.1875 -1.578125 L -2.1875 -0.265625 C -0.59375 -0.3125 0.1875 -1.265625 0.1875 -2.921875 C 0.1875 -4.5 -0.6875 -5.640625 -1.890625 -5.640625 Z M -1.890625 -5.640625 \"/>\n</symbol>\n</g>\n<clipPath id=\"clip1\">\n  <path d=\"M 434 59.039062 L 436 59.039062 L 436 522 L 434 522 Z M 434 59.039062 \"/>\n</clipPath>\n<clipPath id=\"clip2\">\n  <path d=\"M 652 506 L 670 506 L 670 522.558594 L 652 522.558594 Z M 652 506 \"/>\n</clipPath>\n<clipPath id=\"clip3\">\n  <path d=\"M 59.039062 76 L 247 76 L 247 522 L 59.039062 522 Z M 59.039062 76 \"/>\n</clipPath>\n<clipPath id=\"clip4\">\n  <path d=\"M 59.039062 76 L 248 76 L 248 522 L 59.039062 522 Z M 59.039062 76 \"/>\n</clipPath>\n<clipPath id=\"clip5\">\n  <path d=\"M 59.039062 521 L 436 521 L 436 522 L 59.039062 522 Z M 59.039062 521 \"/>\n</clipPath>\n<clipPath id=\"clip6\">\n  <path d=\"M 59.039062 505 L 436 505 L 436 507 L 59.039062 507 Z M 59.039062 505 \"/>\n</clipPath>\n<clipPath id=\"clip7\">\n  <path d=\"M 59.039062 489 L 436 489 L 436 491 L 59.039062 491 Z M 59.039062 489 \"/>\n</clipPath>\n<clipPath id=\"clip8\">\n  <path d=\"M 59.039062 473 L 436 473 L 436 475 L 59.039062 475 Z M 59.039062 473 \"/>\n</clipPath>\n<clipPath id=\"clip9\">\n  <path d=\"M 59.039062 457 L 436 457 L 436 459 L 59.039062 459 Z M 59.039062 457 \"/>\n</clipPath>\n<clipPath id=\"clip10\">\n  <path d=\"M 59.039062 441 L 436 441 L 436 443 L 59.039062 443 Z M 59.039062 441 \"/>\n</clipPath>\n<clipPath id=\"clip11\">\n  <path d=\"M 59.039062 425 L 436 425 L 436 427 L 59.039062 427 Z M 59.039062 425 \"/>\n</clipPath>\n<clipPath id=\"clip12\">\n  <path d=\"M 59.039062 410 L 436 410 L 436 411 L 59.039062 411 Z M 59.039062 410 \"/>\n</clipPath>\n<clipPath id=\"clip13\">\n  <path d=\"M 59.039062 394 L 436 394 L 436 395 L 59.039062 395 Z M 59.039062 394 \"/>\n</clipPath>\n<clipPath id=\"clip14\">\n  <path d=\"M 59.039062 378 L 436 378 L 436 379 L 59.039062 379 Z M 59.039062 378 \"/>\n</clipPath>\n<clipPath id=\"clip15\">\n  <path d=\"M 59.039062 362 L 436 362 L 436 364 L 59.039062 364 Z M 59.039062 362 \"/>\n</clipPath>\n<clipPath id=\"clip16\">\n  <path d=\"M 59.039062 346 L 436 346 L 436 348 L 59.039062 348 Z M 59.039062 346 \"/>\n</clipPath>\n<clipPath id=\"clip17\">\n  <path d=\"M 59.039062 330 L 436 330 L 436 332 L 59.039062 332 Z M 59.039062 330 \"/>\n</clipPath>\n<clipPath id=\"clip18\">\n  <path d=\"M 59.039062 314 L 436 314 L 436 316 L 59.039062 316 Z M 59.039062 314 \"/>\n</clipPath>\n<clipPath id=\"clip19\">\n  <path d=\"M 59.039062 298 L 436 298 L 436 300 L 59.039062 300 Z M 59.039062 298 \"/>\n</clipPath>\n<clipPath id=\"clip20\">\n  <path d=\"M 59.039062 282 L 436 282 L 436 284 L 59.039062 284 Z M 59.039062 282 \"/>\n</clipPath>\n<clipPath id=\"clip21\">\n  <path d=\"M 59.039062 267 L 436 267 L 436 268 L 59.039062 268 Z M 59.039062 267 \"/>\n</clipPath>\n<clipPath id=\"clip22\">\n  <path d=\"M 59.039062 251 L 436 251 L 436 252 L 59.039062 252 Z M 59.039062 251 \"/>\n</clipPath>\n<clipPath id=\"clip23\">\n  <path d=\"M 59.039062 235 L 436 235 L 436 237 L 59.039062 237 Z M 59.039062 235 \"/>\n</clipPath>\n<clipPath id=\"clip24\">\n  <path d=\"M 59.039062 219 L 436 219 L 436 221 L 59.039062 221 Z M 59.039062 219 \"/>\n</clipPath>\n<clipPath id=\"clip25\">\n  <path d=\"M 59.039062 203 L 436 203 L 436 205 L 59.039062 205 Z M 59.039062 203 \"/>\n</clipPath>\n<clipPath id=\"clip26\">\n  <path d=\"M 59.039062 187 L 436 187 L 436 189 L 59.039062 189 Z M 59.039062 187 \"/>\n</clipPath>\n<clipPath id=\"clip27\">\n  <path d=\"M 59.039062 171 L 436 171 L 436 173 L 59.039062 173 Z M 59.039062 171 \"/>\n</clipPath>\n<clipPath id=\"clip28\">\n  <path d=\"M 59.039062 155 L 436 155 L 436 157 L 59.039062 157 Z M 59.039062 155 \"/>\n</clipPath>\n<clipPath id=\"clip29\">\n  <path d=\"M 59.039062 139 L 436 139 L 436 141 L 59.039062 141 Z M 59.039062 139 \"/>\n</clipPath>\n<clipPath id=\"clip30\">\n  <path d=\"M 59.039062 124 L 436 124 L 436 125 L 59.039062 125 Z M 59.039062 124 \"/>\n</clipPath>\n<clipPath id=\"clip31\">\n  <path d=\"M 59.039062 108 L 436 108 L 436 109 L 59.039062 109 Z M 59.039062 108 \"/>\n</clipPath>\n<clipPath id=\"clip32\">\n  <path d=\"M 59.039062 92 L 436 92 L 436 94 L 59.039062 94 Z M 59.039062 92 \"/>\n</clipPath>\n<clipPath id=\"clip33\">\n  <path d=\"M 59.039062 76 L 436 76 L 436 78 L 59.039062 78 Z M 59.039062 76 \"/>\n</clipPath>\n<clipPath id=\"clip34\">\n  <path d=\"M 434 59.039062 L 436 59.039062 L 436 522 L 434 522 Z M 434 59.039062 \"/>\n</clipPath>\n</defs>\n<g id=\"surface1\">\n<rect x=\"0\" y=\"0\" width=\"841\" height=\"595\" style=\"fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;\"/>\n<g clip-path=\"url(#clip1)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 434.898438 521.558594 L 434.898438 59.039062 \"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 521.558594 L 340.933594 521.558594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 521.558594 L 153.003906 528.761719 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 340.933594 521.558594 L 340.933594 528.761719 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"149.503906\" y=\"547.256836\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"337.433594\" y=\"547.256836\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 59.039062 124.480469 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 51.839844 521.558594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 442.144531 L 51.839844 442.144531 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 362.726562 L 51.839844 362.726562 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 283.3125 L 51.839844 283.3125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 203.894531 L 51.839844 203.894531 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 124.480469 L 51.839844 124.480469 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"530.058594\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"523.386719\"/>\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"520.050781\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"450.644531\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"443.972656\"/>\n  <use xlink:href=\"#glyph1-3\" x=\"41.538086\" y=\"440.636719\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"371.226562\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"364.554688\"/>\n  <use xlink:href=\"#glyph1-4\" x=\"41.538086\" y=\"361.21875\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"291.8125\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"285.140625\"/>\n  <use xlink:href=\"#glyph1-5\" x=\"41.538086\" y=\"281.804688\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"212.394531\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"205.722656\"/>\n  <use xlink:href=\"#glyph1-6\" x=\"41.538086\" y=\"202.386719\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"132.980469\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"126.308594\"/>\n  <use xlink:href=\"#glyph1-7\" x=\"41.538086\" y=\"122.972656\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-8\" x=\"27.135742\" y=\"318.800781\"/>\n  <use xlink:href=\"#glyph1-9\" x=\"27.135742\" y=\"311.888672\"/>\n  <use xlink:href=\"#glyph1-10\" x=\"27.135742\" y=\"308.011719\"/>\n  <use xlink:href=\"#glyph1-11\" x=\"27.135742\" y=\"301.339844\"/>\n  <use xlink:href=\"#glyph1-12\" x=\"27.135742\" y=\"294.608398\"/>\n  <use xlink:href=\"#glyph1-10\" x=\"27.135742\" y=\"287.936523\"/>\n  <use xlink:href=\"#glyph1-13\" x=\"27.135742\" y=\"281.264648\"/>\n  <use xlink:href=\"#glyph1-14\" x=\"27.135742\" y=\"274.592773\"/>\n  <use xlink:href=\"#glyph1-15\" x=\"27.135742\" y=\"268.592773\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-8\" x=\"822.057617\" y=\"318.300781\"/>\n  <use xlink:href=\"#glyph1-16\" x=\"822.057617\" y=\"310.96875\"/>\n  <use xlink:href=\"#glyph1-17\" x=\"822.057617\" y=\"308.304688\"/>\n  <use xlink:href=\"#glyph1-18\" x=\"822.057617\" y=\"305.640625\"/>\n  <use xlink:href=\"#glyph1-19\" x=\"822.057617\" y=\"298.96875\"/>\n  <use xlink:href=\"#glyph1-20\" x=\"822.057617\" y=\"295.632812\"/>\n  <use xlink:href=\"#glyph1-14\" x=\"822.057617\" y=\"293.34082\"/>\n  <use xlink:href=\"#glyph1-21\" x=\"822.057617\" y=\"287.34082\"/>\n  <use xlink:href=\"#glyph1-17\" x=\"822.057617\" y=\"280.668945\"/>\n  <use xlink:href=\"#glyph1-13\" x=\"822.057617\" y=\"278.004883\"/>\n  <use xlink:href=\"#glyph1-22\" x=\"822.057617\" y=\"271.333008\"/>\n  <use xlink:href=\"#glyph1-20\" x=\"822.057617\" y=\"265.333008\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 692.746094 501.789062 C 692.746094 506.261719 689.117188 509.890625 684.644531 509.890625 C 680.171875 509.890625 676.542969 506.261719 676.542969 501.789062 C 676.542969 497.316406 680.171875 493.6875 684.644531 493.6875 C 689.117188 493.6875 692.746094 497.316406 692.746094 501.789062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 777.359375 167.695312 C 777.359375 172.171875 773.730469 175.796875 769.257812 175.796875 C 764.785156 175.796875 761.160156 172.171875 761.160156 167.695312 C 761.160156 163.222656 764.785156 159.597656 769.257812 159.597656 C 773.730469 159.597656 777.359375 163.222656 777.359375 167.695312 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 531.722656 501.300781 C 531.722656 505.777344 528.09375 509.402344 523.621094 509.402344 C 519.148438 509.402344 515.519531 505.777344 515.519531 501.300781 C 515.519531 496.828125 519.148438 493.203125 523.621094 493.203125 C 528.09375 493.203125 531.722656 496.828125 531.722656 501.300781 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 775.707031 376.117188 C 775.707031 380.59375 772.078125 384.21875 767.605469 384.21875 C 763.132812 384.21875 759.507812 380.59375 759.507812 376.117188 C 759.507812 371.644531 763.132812 368.019531 767.605469 368.019531 C 772.078125 368.019531 775.707031 371.644531 775.707031 376.117188 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 570.835938 300.183594 C 570.835938 304.65625 567.210938 308.285156 562.738281 308.285156 C 558.265625 308.285156 554.636719 304.65625 554.636719 300.183594 C 554.636719 295.710938 558.265625 292.082031 562.738281 292.082031 C 567.210938 292.082031 570.835938 295.710938 570.835938 300.183594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 686.492188 229.289062 C 686.492188 233.765625 682.863281 237.390625 678.390625 237.390625 C 673.917969 237.390625 670.292969 233.765625 670.292969 229.289062 C 670.292969 224.816406 673.917969 221.191406 678.390625 221.191406 C 682.863281 221.191406 686.492188 224.816406 686.492188 229.289062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 551.066406 238.59375 C 551.066406 243.066406 547.4375 246.695312 542.964844 246.695312 C 538.492188 246.695312 534.863281 243.066406 534.863281 238.59375 C 534.863281 234.121094 538.492188 230.492188 542.964844 230.492188 C 547.4375 230.492188 551.066406 234.121094 551.066406 238.59375 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 497.25 400.277344 C 497.25 404.75 493.625 408.375 489.152344 408.375 C 484.679688 408.375 481.050781 404.75 481.050781 400.277344 C 481.050781 395.800781 484.679688 392.175781 489.152344 392.175781 C 493.625 392.175781 497.25 395.800781 497.25 400.277344 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 758.046875 138.574219 C 758.046875 143.046875 754.421875 146.675781 749.949219 146.675781 C 745.472656 146.675781 741.847656 143.046875 741.847656 138.574219 C 741.847656 134.101562 745.472656 130.472656 749.949219 130.472656 C 754.421875 130.472656 758.046875 134.101562 758.046875 138.574219 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 741.839844 115.675781 C 741.839844 120.148438 738.210938 123.773438 733.738281 123.773438 C 729.265625 123.773438 725.636719 120.148438 725.636719 115.675781 C 725.636719 111.203125 729.265625 107.574219 733.738281 107.574219 C 738.210938 107.574219 741.839844 111.203125 741.839844 115.675781 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 740.488281 484.691406 C 740.488281 489.164062 736.863281 492.792969 732.390625 492.792969 C 727.917969 492.792969 724.289062 489.164062 724.289062 484.691406 C 724.289062 480.21875 727.917969 476.59375 732.390625 476.59375 C 736.863281 476.59375 740.488281 480.21875 740.488281 484.691406 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 483.75 157.183594 C 483.75 161.65625 480.125 165.285156 475.648438 165.285156 C 471.175781 165.285156 467.550781 161.65625 467.550781 157.183594 C 467.550781 152.710938 471.175781 149.085938 475.648438 149.085938 C 480.125 149.085938 483.75 152.710938 483.75 157.183594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 560.511719 238.53125 C 560.511719 243.003906 556.886719 246.628906 552.410156 246.628906 C 547.9375 246.628906 544.3125 243.003906 544.3125 238.53125 C 544.3125 234.054688 547.9375 230.429688 552.410156 230.429688 C 556.886719 230.429688 560.511719 234.054688 560.511719 238.53125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 601.125 513.375 C 601.125 517.847656 597.5 521.472656 593.023438 521.472656 C 588.550781 521.472656 584.925781 517.847656 584.925781 513.375 C 584.925781 508.898438 588.550781 505.273438 593.023438 505.273438 C 597.5 505.273438 601.125 508.898438 601.125 513.375 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 556.925781 492.503906 C 556.925781 496.976562 553.300781 500.601562 548.828125 500.601562 C 544.351562 500.601562 540.726562 496.976562 540.726562 492.503906 C 540.726562 488.027344 544.351562 484.402344 548.828125 484.402344 C 553.300781 484.402344 556.925781 488.027344 556.925781 492.503906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 687.121094 370.476562 C 687.121094 374.949219 683.496094 378.574219 679.023438 378.574219 C 674.550781 378.574219 670.921875 374.949219 670.921875 370.476562 C 670.921875 366.003906 674.550781 362.375 679.023438 362.375 C 683.496094 362.375 687.121094 366.003906 687.121094 370.476562 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 548.914062 212.011719 C 548.914062 216.484375 545.289062 220.113281 540.816406 220.113281 C 536.34375 220.113281 532.714844 216.484375 532.714844 212.011719 C 532.714844 207.539062 536.34375 203.910156 540.816406 203.910156 C 545.289062 203.910156 548.914062 207.539062 548.914062 212.011719 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 631.78125 385.054688 C 631.78125 389.527344 628.152344 393.152344 623.679688 393.152344 C 619.207031 393.152344 615.582031 389.527344 615.582031 385.054688 C 615.582031 380.578125 619.207031 376.953125 623.679688 376.953125 C 628.152344 376.953125 631.78125 380.578125 631.78125 385.054688 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 718.210938 469.832031 C 718.210938 474.308594 714.582031 477.933594 710.109375 477.933594 C 705.636719 477.933594 702.011719 474.308594 702.011719 469.832031 C 702.011719 465.359375 705.636719 461.734375 710.109375 461.734375 C 714.582031 461.734375 718.210938 465.359375 718.210938 469.832031 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 521.621094 307.65625 C 521.621094 312.128906 517.992188 315.757812 513.519531 315.757812 C 509.046875 315.757812 505.417969 312.128906 505.417969 307.65625 C 505.417969 303.183594 509.046875 299.554688 513.519531 299.554688 C 517.992188 299.554688 521.621094 303.183594 521.621094 307.65625 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 610.0625 105.78125 C 610.0625 110.253906 606.433594 113.882812 601.960938 113.882812 C 597.488281 113.882812 593.863281 110.253906 593.863281 105.78125 C 593.863281 101.308594 597.488281 97.679688 601.960938 97.679688 C 606.433594 97.679688 610.0625 101.308594 610.0625 105.78125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 674.476562 98.578125 C 674.476562 103.050781 670.851562 106.679688 666.378906 106.679688 C 661.902344 106.679688 658.277344 103.050781 658.277344 98.578125 C 658.277344 94.105469 661.902344 90.476562 666.378906 90.476562 C 670.851562 90.476562 674.476562 94.105469 674.476562 98.578125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 685.640625 332.503906 C 685.640625 336.980469 682.011719 340.605469 677.539062 340.605469 C 673.066406 340.605469 669.4375 336.980469 669.4375 332.503906 C 669.4375 328.03125 673.066406 324.40625 677.539062 324.40625 C 682.011719 324.40625 685.640625 328.03125 685.640625 332.503906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 509.03125 270.15625 C 509.03125 274.632812 505.40625 278.257812 500.933594 278.257812 C 496.457031 278.257812 492.832031 274.632812 492.832031 270.15625 C 492.832031 265.683594 496.457031 262.058594 500.933594 262.058594 C 505.40625 262.058594 509.03125 265.683594 509.03125 270.15625 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 768.292969 438.117188 C 768.292969 442.589844 764.667969 446.214844 760.195312 446.214844 C 755.71875 446.214844 752.09375 442.589844 752.09375 438.117188 C 752.09375 433.644531 755.71875 430.015625 760.195312 430.015625 C 764.667969 430.015625 768.292969 433.644531 768.292969 438.117188 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 730.859375 116.632812 C 730.859375 121.105469 727.234375 124.734375 722.757812 124.734375 C 718.285156 124.734375 714.660156 121.105469 714.660156 116.632812 C 714.660156 112.160156 718.285156 108.535156 722.757812 108.535156 C 727.234375 108.535156 730.859375 112.160156 730.859375 116.632812 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 612.3125 81.683594 C 612.3125 86.15625 608.6875 89.78125 604.214844 89.78125 C 599.738281 89.78125 596.113281 86.15625 596.113281 81.683594 C 596.113281 77.210938 599.738281 73.582031 604.214844 73.582031 C 608.6875 73.582031 612.3125 77.210938 612.3125 81.683594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 653.324219 433.28125 C 653.324219 437.757812 649.699219 441.382812 645.222656 441.382812 C 640.75 441.382812 637.125 437.757812 637.125 433.28125 C 637.125 428.808594 640.75 425.183594 645.222656 425.183594 C 649.699219 425.183594 653.324219 428.808594 653.324219 433.28125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 524.609375 462.65625 C 524.609375 467.128906 520.984375 470.753906 516.507812 470.753906 C 512.035156 470.753906 508.410156 467.128906 508.410156 462.65625 C 508.410156 458.179688 512.035156 454.554688 516.507812 454.554688 C 520.984375 454.554688 524.609375 458.179688 524.609375 462.65625 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 716.277344 465.132812 C 716.277344 469.605469 712.652344 473.234375 708.179688 473.234375 C 703.703125 473.234375 700.078125 469.605469 700.078125 465.132812 C 700.078125 460.660156 703.703125 457.035156 708.179688 457.035156 C 712.652344 457.035156 716.277344 460.660156 716.277344 465.132812 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 712.195312 105.765625 C 712.195312 110.238281 708.566406 113.867188 704.09375 113.867188 C 699.621094 113.867188 695.996094 110.238281 695.996094 105.765625 C 695.996094 101.292969 699.621094 97.664062 704.09375 97.664062 C 708.566406 97.664062 712.195312 101.292969 712.195312 105.765625 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 499.183594 346.421875 C 499.183594 350.894531 495.558594 354.523438 491.082031 354.523438 C 486.609375 354.523438 482.984375 350.894531 482.984375 346.421875 C 482.984375 341.949219 486.609375 338.324219 491.082031 338.324219 C 495.558594 338.324219 499.183594 341.949219 499.183594 346.421875 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 601.730469 419.503906 C 601.730469 423.976562 598.101562 427.605469 593.628906 427.605469 C 589.15625 427.605469 585.53125 423.976562 585.53125 419.503906 C 585.53125 415.03125 589.15625 411.402344 593.628906 411.402344 C 598.101562 411.402344 601.730469 415.03125 601.730469 419.503906 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 569.902344 390.996094 C 569.902344 395.46875 566.273438 399.097656 561.800781 399.097656 C 557.328125 399.097656 553.703125 395.46875 553.703125 390.996094 C 553.703125 386.523438 557.328125 382.894531 561.800781 382.894531 C 566.273438 382.894531 569.902344 386.523438 569.902344 390.996094 \"/>\n<g clip-path=\"url(#clip2)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 668.652344 515.320312 C 668.652344 519.792969 665.027344 523.417969 660.550781 523.417969 C 656.078125 523.417969 652.453125 519.792969 652.453125 515.320312 C 652.453125 510.84375 656.078125 507.21875 660.550781 507.21875 C 665.027344 507.21875 668.652344 510.84375 668.652344 515.320312 \"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 729.609375 472.304688 C 729.609375 476.78125 725.984375 480.40625 721.511719 480.40625 C 717.039062 480.40625 713.410156 476.78125 713.410156 472.304688 C 713.410156 467.832031 717.039062 464.207031 721.511719 464.207031 C 725.984375 464.207031 729.609375 467.832031 729.609375 472.304688 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 491.246094 202.835938 C 491.246094 207.3125 487.617188 210.9375 483.144531 210.9375 C 478.671875 210.9375 475.042969 207.3125 475.042969 202.835938 C 475.042969 198.363281 478.671875 194.738281 483.144531 194.738281 C 487.617188 194.738281 491.246094 198.363281 491.246094 202.835938 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 689.238281 86.9375 C 689.238281 91.414062 685.613281 95.039062 681.140625 95.039062 C 676.667969 95.039062 673.039062 91.414062 673.039062 86.9375 C 673.039062 82.464844 676.667969 78.839844 681.140625 78.839844 C 685.613281 78.839844 689.238281 82.464844 689.238281 86.9375 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 780.582031 300.722656 C 780.582031 305.195312 776.957031 308.820312 772.480469 308.820312 C 768.007812 308.820312 764.382812 305.195312 764.382812 300.722656 C 764.382812 296.25 768.007812 292.621094 772.480469 292.621094 C 776.957031 292.621094 780.582031 296.25 780.582031 300.722656 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 777.640625 355.496094 C 777.640625 359.96875 774.015625 363.597656 769.539062 363.597656 C 765.066406 363.597656 761.441406 359.96875 761.441406 355.496094 C 761.441406 351.023438 765.066406 347.398438 769.539062 347.398438 C 774.015625 347.398438 777.640625 351.023438 777.640625 355.496094 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 631.253906 202.230469 C 631.253906 206.707031 627.625 210.332031 623.152344 210.332031 C 618.679688 210.332031 615.050781 206.707031 615.050781 202.230469 C 615.050781 197.757812 618.679688 194.132812 623.152344 194.132812 C 627.625 194.132812 631.253906 197.757812 631.253906 202.230469 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 595.699219 480.46875 C 595.699219 484.941406 592.074219 488.566406 587.597656 488.566406 C 583.125 488.566406 579.5 484.941406 579.5 480.46875 C 579.5 475.996094 583.125 472.367188 587.597656 472.367188 C 592.074219 472.367188 595.699219 475.996094 595.699219 480.46875 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 544.648438 331.8125 C 544.648438 336.289062 541.023438 339.914062 536.546875 339.914062 C 532.074219 339.914062 528.449219 336.289062 528.449219 331.8125 C 528.449219 327.339844 532.074219 323.714844 536.546875 323.714844 C 541.023438 323.714844 544.648438 327.339844 544.648438 331.8125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 684.585938 411.328125 C 684.585938 415.804688 680.957031 419.429688 676.484375 419.429688 C 672.011719 419.429688 668.386719 415.804688 668.386719 411.328125 C 668.386719 406.855469 672.011719 403.230469 676.484375 403.230469 C 680.957031 403.230469 684.585938 406.855469 684.585938 411.328125 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 730.097656 153.027344 C 730.097656 157.5 726.472656 161.125 722 161.125 C 717.527344 161.125 713.898438 157.5 713.898438 153.027344 C 713.898438 148.550781 717.527344 144.925781 722 144.925781 C 726.472656 144.925781 730.097656 148.550781 730.097656 153.027344 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 492.664062 263 C 492.664062 267.472656 489.035156 271.101562 484.5625 271.101562 C 480.089844 271.101562 476.464844 267.472656 476.464844 263 C 476.464844 258.527344 480.089844 254.898438 484.5625 254.898438 C 489.035156 254.898438 492.664062 258.527344 492.664062 263 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 496.96875 350.679688 C 496.96875 355.152344 493.339844 358.78125 488.867188 358.78125 C 484.394531 358.78125 480.769531 355.152344 480.769531 350.679688 C 480.769531 346.207031 484.394531 342.578125 488.867188 342.578125 C 493.339844 342.578125 496.96875 346.207031 496.96875 350.679688 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 684.789062 325.222656 C 684.789062 329.699219 681.164062 333.324219 676.691406 333.324219 C 672.214844 333.324219 668.589844 329.699219 668.589844 325.222656 C 668.589844 320.75 672.214844 317.125 676.691406 317.125 C 681.164062 317.125 684.789062 320.75 684.789062 325.222656 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 778.484375 102.800781 C 778.484375 107.277344 774.859375 110.902344 770.386719 110.902344 C 765.910156 110.902344 762.285156 107.277344 762.285156 102.800781 C 762.285156 98.328125 765.910156 94.703125 770.386719 94.703125 C 774.859375 94.703125 778.484375 98.328125 778.484375 102.800781 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 483.445312 473.835938 C 483.445312 478.308594 479.820312 481.933594 475.347656 481.933594 C 470.871094 481.933594 467.246094 478.308594 467.246094 473.835938 C 467.246094 469.363281 470.871094 465.734375 475.347656 465.734375 C 479.820312 465.734375 483.445312 469.363281 483.445312 473.835938 \"/>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"681.144531\" y=\"506.06543\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"765.757812\" y=\"171.97168\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"520.121094\" y=\"505.577148\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"764.105469\" y=\"380.393555\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"559.238281\" y=\"304.459961\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"674.890625\" y=\"233.56543\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"539.464844\" y=\"242.870117\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"485.652344\" y=\"404.553711\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"746.449219\" y=\"142.850586\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"730.238281\" y=\"119.952148\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"728.890625\" y=\"488.967773\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"472.148438\" y=\"161.459961\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"548.910156\" y=\"242.807617\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"589.523438\" y=\"517.651367\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"545.328125\" y=\"496.780273\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"675.523438\" y=\"374.75293\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"537.316406\" y=\"216.288086\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"620.179688\" y=\"389.331055\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"706.609375\" y=\"474.108398\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"510.019531\" y=\"311.932617\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"598.460938\" y=\"110.057617\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"662.878906\" y=\"102.854492\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"674.039062\" y=\"336.780273\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"497.433594\" y=\"274.432617\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"756.695312\" y=\"442.393555\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"719.257812\" y=\"120.90918\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"600.714844\" y=\"85.959961\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"641.722656\" y=\"437.557617\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"513.007812\" y=\"466.932617\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"704.679688\" y=\"469.40918\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"700.59375\" y=\"110.041992\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"487.582031\" y=\"350.698242\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"590.128906\" y=\"423.780273\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"558.300781\" y=\"395.272461\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"657.050781\" y=\"519.59668\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"718.011719\" y=\"476.581055\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"479.644531\" y=\"207.112305\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"677.640625\" y=\"91.213867\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"768.980469\" y=\"304.999023\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"766.039062\" y=\"359.772461\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"619.652344\" y=\"206.506836\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"584.097656\" y=\"484.745117\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"533.046875\" y=\"336.088867\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"672.984375\" y=\"415.604492\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"718.5\" y=\"157.303711\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"481.0625\" y=\"267.276367\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"485.367188\" y=\"354.956055\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"673.191406\" y=\"329.499023\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"766.886719\" y=\"107.077148\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"471.847656\" y=\"478.112305\"/>\n</g>\n<g clip-path=\"url(#clip3)\" clip-rule=\"nonzero\">\n<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;\" d=\"M 59.039062 521.558594 L 246.96875 521.558594 L 246.96875 76.828125 L 59.039062 76.828125 Z M 59.039062 521.558594 \"/>\n</g>\n<g clip-path=\"url(#clip4)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 246.96875 521.558594 L 246.96875 76.828125 L 59.039062 76.828125 Z M 59.039062 521.558594 \"/>\n</g>\n<path style=\"fill-rule:nonzero;fill:rgb(100%,0%,0%);fill-opacity:1;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 246.96875 521.558594 L 434.898438 521.558594 L 434.898438 172.128906 L 246.96875 172.128906 Z M 246.96875 521.558594 \"/>\n<g clip-path=\"url(#clip5)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 434.898438 521.558594 \"/>\n</g>\n<g clip-path=\"url(#clip6)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 505.675781 L 434.898438 505.675781 \"/>\n</g>\n<g clip-path=\"url(#clip7)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 489.792969 L 434.898438 489.792969 \"/>\n</g>\n<g clip-path=\"url(#clip8)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 473.910156 L 434.898438 473.910156 \"/>\n</g>\n<g clip-path=\"url(#clip9)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 458.027344 L 434.898438 458.027344 \"/>\n</g>\n<g clip-path=\"url(#clip10)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 442.144531 L 434.898438 442.144531 \"/>\n</g>\n<g clip-path=\"url(#clip11)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 426.261719 L 434.898438 426.261719 \"/>\n</g>\n<g clip-path=\"url(#clip12)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 410.378906 L 434.898438 410.378906 \"/>\n</g>\n<g clip-path=\"url(#clip13)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 394.492188 L 434.898438 394.492188 \"/>\n</g>\n<g clip-path=\"url(#clip14)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 378.609375 L 434.898438 378.609375 \"/>\n</g>\n<g clip-path=\"url(#clip15)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 362.726562 L 434.898438 362.726562 \"/>\n</g>\n<g clip-path=\"url(#clip16)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 346.84375 L 434.898438 346.84375 \"/>\n</g>\n<g clip-path=\"url(#clip17)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 330.960938 L 434.898438 330.960938 \"/>\n</g>\n<g clip-path=\"url(#clip18)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 315.078125 L 434.898438 315.078125 \"/>\n</g>\n<g clip-path=\"url(#clip19)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 299.195312 L 434.898438 299.195312 \"/>\n</g>\n<g clip-path=\"url(#clip20)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 283.3125 L 434.898438 283.3125 \"/>\n</g>\n<g clip-path=\"url(#clip21)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 267.429688 L 434.898438 267.429688 \"/>\n</g>\n<g clip-path=\"url(#clip22)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 251.542969 L 434.898438 251.542969 \"/>\n</g>\n<g clip-path=\"url(#clip23)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 235.660156 L 434.898438 235.660156 \"/>\n</g>\n<g clip-path=\"url(#clip24)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 219.777344 L 434.898438 219.777344 \"/>\n</g>\n<g clip-path=\"url(#clip25)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 203.894531 L 434.898438 203.894531 \"/>\n</g>\n<g clip-path=\"url(#clip26)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 188.011719 L 434.898438 188.011719 \"/>\n</g>\n<g clip-path=\"url(#clip27)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 172.128906 L 434.898438 172.128906 \"/>\n</g>\n<g clip-path=\"url(#clip28)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 156.246094 L 434.898438 156.246094 \"/>\n</g>\n<g clip-path=\"url(#clip29)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 140.363281 L 434.898438 140.363281 \"/>\n</g>\n<g clip-path=\"url(#clip30)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 124.480469 L 434.898438 124.480469 \"/>\n</g>\n<g clip-path=\"url(#clip31)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 108.597656 L 434.898438 108.597656 \"/>\n</g>\n<g clip-path=\"url(#clip32)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 92.710938 L 434.898438 92.710938 \"/>\n</g>\n<g clip-path=\"url(#clip33)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 76.828125 L 434.898438 76.828125 \"/>\n</g>\n<g clip-path=\"url(#clip34)\" clip-rule=\"nonzero\">\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 434.898438 521.558594 L 434.898438 59.039062 \"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 59.039062 L 340.933594 59.039062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.003906 59.039062 L 153.003906 59.039062 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 340.933594 59.039062 L 340.933594 59.039062 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"128.503906\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-3\" x=\"135.175781\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"141.847656\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-5\" x=\"145.183594\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"149.179688\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-7\" x=\"155.851562\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-8\" x=\"159.1875\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-9\" x=\"165.859375\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-10\" x=\"172.53125\" y=\"48.737305\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"316.433594\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-2\" x=\"323.105469\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"329.777344\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-5\" x=\"333.113281\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"337.109375\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-7\" x=\"343.78125\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-11\" x=\"347.117188\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-11\" x=\"353.789062\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-10\" x=\"360.460938\" y=\"48.737305\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 622.828125 521.558594 L 622.828125 521.558594 \"/>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 622.828125 521.558594 L 622.828125 521.558594 \"/>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-12\" x=\"564.328125\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-13\" x=\"572.992188\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-14\" x=\"579.664062\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-15\" x=\"589.660156\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-16\" x=\"596.332031\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-17\" x=\"603.003906\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"607\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"610.335938\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-19\" x=\"617.007812\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"620.34375\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-20\" x=\"623.679688\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"629.932617\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-21\" x=\"636.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-21\" x=\"642.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-16\" x=\"648.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-21\" x=\"655.276367\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-22\" x=\"661.276367\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"664.612305\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-8\" x=\"667.948242\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"674.620117\" y=\"547.256836\"/>\n</g>\n<path style=\"fill:none;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.039062 521.558594 L 810.761719 521.558594 L 810.761719 59.039062 L 59.039062 59.039062 L 59.039062 521.558594 \"/>\n</g>\n</svg>\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:18 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:42 GMT",
         "Content-Type": "image/svg+xml",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=de1bb8aa72c076dc09a64b399f6b677841499102238; expires=Tue, 03-Jul-18 17:17:18 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d9ad2c460e04dd4eb4366365885bc69f21499110602; expires=Tue, 03-Jul-18 19:36:42 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
@@ -59,13 +59,13 @@
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:18 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:42 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f5e3eab2b6a-AMS"
+        "CF-RAY": "378c4b8e8cf1147f-AMS"
       },
       "status_code": 200,
       "type": "ok"
@@ -83,29 +83,29 @@
       "url": "https://public.opencpu.org/ocpu/library/animation/R/flip.coin/"
     },
     "response": {
-      "body": "/ocpu/tmp/x016a01d836/R/flip.coin\n/ocpu/tmp/x016a01d836/R/.val\n/ocpu/tmp/x016a01d836/graphics/1\n/ocpu/tmp/x016a01d836/graphics/2\n/ocpu/tmp/x016a01d836/graphics/3\n/ocpu/tmp/x016a01d836/graphics/4\n/ocpu/tmp/x016a01d836/graphics/5\n/ocpu/tmp/x016a01d836/graphics/6\n/ocpu/tmp/x016a01d836/graphics/7\n/ocpu/tmp/x016a01d836/graphics/8\n/ocpu/tmp/x016a01d836/graphics/9\n/ocpu/tmp/x016a01d836/graphics/10\n/ocpu/tmp/x016a01d836/graphics/11\n/ocpu/tmp/x016a01d836/graphics/12\n/ocpu/tmp/x016a01d836/graphics/13\n/ocpu/tmp/x016a01d836/graphics/14\n/ocpu/tmp/x016a01d836/graphics/15\n/ocpu/tmp/x016a01d836/graphics/16\n/ocpu/tmp/x016a01d836/graphics/17\n/ocpu/tmp/x016a01d836/graphics/18\n/ocpu/tmp/x016a01d836/graphics/19\n/ocpu/tmp/x016a01d836/graphics/20\n/ocpu/tmp/x016a01d836/graphics/21\n/ocpu/tmp/x016a01d836/graphics/22\n/ocpu/tmp/x016a01d836/graphics/23\n/ocpu/tmp/x016a01d836/graphics/24\n/ocpu/tmp/x016a01d836/graphics/25\n/ocpu/tmp/x016a01d836/graphics/26\n/ocpu/tmp/x016a01d836/graphics/27\n/ocpu/tmp/x016a01d836/graphics/28\n/ocpu/tmp/x016a01d836/graphics/29\n/ocpu/tmp/x016a01d836/graphics/30\n/ocpu/tmp/x016a01d836/graphics/31\n/ocpu/tmp/x016a01d836/graphics/32\n/ocpu/tmp/x016a01d836/graphics/33\n/ocpu/tmp/x016a01d836/graphics/34\n/ocpu/tmp/x016a01d836/graphics/35\n/ocpu/tmp/x016a01d836/graphics/36\n/ocpu/tmp/x016a01d836/graphics/37\n/ocpu/tmp/x016a01d836/graphics/38\n/ocpu/tmp/x016a01d836/graphics/39\n/ocpu/tmp/x016a01d836/graphics/40\n/ocpu/tmp/x016a01d836/graphics/41\n/ocpu/tmp/x016a01d836/graphics/42\n/ocpu/tmp/x016a01d836/graphics/43\n/ocpu/tmp/x016a01d836/graphics/44\n/ocpu/tmp/x016a01d836/graphics/45\n/ocpu/tmp/x016a01d836/graphics/46\n/ocpu/tmp/x016a01d836/graphics/47\n/ocpu/tmp/x016a01d836/graphics/48\n/ocpu/tmp/x016a01d836/graphics/49\n/ocpu/tmp/x016a01d836/graphics/50\n/ocpu/tmp/x016a01d836/source\n/ocpu/tmp/x016a01d836/console\n/ocpu/tmp/x016a01d836/info\n/ocpu/tmp/x016a01d836/files/DESCRIPTION\n",
+      "body": "/ocpu/tmp/x0f284ca594/R/flip.coin\n/ocpu/tmp/x0f284ca594/R/.val\n/ocpu/tmp/x0f284ca594/graphics/1\n/ocpu/tmp/x0f284ca594/graphics/2\n/ocpu/tmp/x0f284ca594/graphics/3\n/ocpu/tmp/x0f284ca594/graphics/4\n/ocpu/tmp/x0f284ca594/graphics/5\n/ocpu/tmp/x0f284ca594/graphics/6\n/ocpu/tmp/x0f284ca594/graphics/7\n/ocpu/tmp/x0f284ca594/graphics/8\n/ocpu/tmp/x0f284ca594/graphics/9\n/ocpu/tmp/x0f284ca594/graphics/10\n/ocpu/tmp/x0f284ca594/graphics/11\n/ocpu/tmp/x0f284ca594/graphics/12\n/ocpu/tmp/x0f284ca594/graphics/13\n/ocpu/tmp/x0f284ca594/graphics/14\n/ocpu/tmp/x0f284ca594/graphics/15\n/ocpu/tmp/x0f284ca594/graphics/16\n/ocpu/tmp/x0f284ca594/graphics/17\n/ocpu/tmp/x0f284ca594/graphics/18\n/ocpu/tmp/x0f284ca594/graphics/19\n/ocpu/tmp/x0f284ca594/graphics/20\n/ocpu/tmp/x0f284ca594/graphics/21\n/ocpu/tmp/x0f284ca594/graphics/22\n/ocpu/tmp/x0f284ca594/graphics/23\n/ocpu/tmp/x0f284ca594/graphics/24\n/ocpu/tmp/x0f284ca594/graphics/25\n/ocpu/tmp/x0f284ca594/graphics/26\n/ocpu/tmp/x0f284ca594/graphics/27\n/ocpu/tmp/x0f284ca594/graphics/28\n/ocpu/tmp/x0f284ca594/graphics/29\n/ocpu/tmp/x0f284ca594/graphics/30\n/ocpu/tmp/x0f284ca594/graphics/31\n/ocpu/tmp/x0f284ca594/graphics/32\n/ocpu/tmp/x0f284ca594/graphics/33\n/ocpu/tmp/x0f284ca594/graphics/34\n/ocpu/tmp/x0f284ca594/graphics/35\n/ocpu/tmp/x0f284ca594/graphics/36\n/ocpu/tmp/x0f284ca594/graphics/37\n/ocpu/tmp/x0f284ca594/graphics/38\n/ocpu/tmp/x0f284ca594/graphics/39\n/ocpu/tmp/x0f284ca594/graphics/40\n/ocpu/tmp/x0f284ca594/graphics/41\n/ocpu/tmp/x0f284ca594/graphics/42\n/ocpu/tmp/x0f284ca594/graphics/43\n/ocpu/tmp/x0f284ca594/graphics/44\n/ocpu/tmp/x0f284ca594/graphics/45\n/ocpu/tmp/x0f284ca594/graphics/46\n/ocpu/tmp/x0f284ca594/graphics/47\n/ocpu/tmp/x0f284ca594/graphics/48\n/ocpu/tmp/x0f284ca594/graphics/49\n/ocpu/tmp/x0f284ca594/graphics/50\n/ocpu/tmp/x0f284ca594/source\n/ocpu/tmp/x0f284ca594/console\n/ocpu/tmp/x0f284ca594/info\n/ocpu/tmp/x0f284ca594/files/DESCRIPTION\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:18 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:41 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d85fcfe5b029adb8cda0df5ec8e0b7ce21499102238; expires=Tue, 03-Jul-18 17:17:18 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=dd5126e19d2b4d5443610c5da9b3705131499110601; expires=Tue, 03-Jul-18 19:36:41 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x016a01d836",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x016a01d836/",
+        "X-ocpu-session": "x0f284ca594",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:16 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:40 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "HIT",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f5d9b170755-AMS"
+        "CF-RAY": "378c4b8c58ed2c36-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/bad_request.json b/test/fixtures/vcr_cassettes/bad_request.json
index f84a8ec3a2afc3b855a3d45a9854d936a17f5d6f..37b733ee2e222f2d1e22e54a3ccb4571da254402 100644
--- a/test/fixtures/vcr_cassettes/bad_request.json
+++ b/test/fixtures/vcr_cassettes/bad_request.json
@@ -13,25 +13,25 @@
     "response": {
       "body": "unused argument (some = c(\"data\"))\n\nIn call:\nidentity(some = c(\"data\"))\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:13 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:39 GMT",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=db4763294c49273a0b9d9101053ff8f6a1499102233; expires=Tue, 03-Jul-18 17:17:13 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d2023565807c5b15fdc2b9a427b146be41499110598; expires=Tue, 03-Jul-18 19:36:38 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0bfaac5e60",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0bfaac5e60/",
+        "X-ocpu-session": "x03895cb4dd",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x03895cb4dd/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:13 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:38 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f3e39940755-AMS"
+        "CF-RAY": "378c4b78f8be0755-AMS"
       },
       "status_code": 400,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/description.json b/test/fixtures/vcr_cassettes/description.json
index 4b222a116db390148335781d433bbbedaa0ee3d2..b8490a2eee2ed17e9397cf6ff4669454f30fd438 100644
--- a/test/fixtures/vcr_cassettes/description.json
+++ b/test/fixtures/vcr_cassettes/description.json
@@ -13,11 +13,11 @@
     "response": {
       "body": "\n\t\tInformation on package 'ade4'\n\nDescription:\n\nPackage:            ade4\nVersion:            1.7-6\nDate:               2017-03-23\nTitle:              Analysis of Ecological Data : Exploratory and\n                    Euclidean Methods in Environmental Sciences\nAuthor:             Stéphane Dray <stephane.dray@univ-lyon1.fr>,\n                    Anne-Béatrice Dufour\n                    <anne-beatrice.dufour@univ-lyon1.fr>, and Jean\n                    Thioulouse <jean.thioulouse@univ-lyon1.fr>, with\n                    contributions from Thibaut Jombart, Sandrine\n                    Pavoine, Jean R. Lobry, Sébastien Ollier, and\n                    Aurélie Siberchicot. Based on earlier work by\n                    Daniel Chessel.\nMaintainer:         Aurélie Siberchicot\n                    <aurelie.siberchicot@univ-lyon1.fr>\nDepends:            R (>= 2.10)\nImports:            graphics, grDevices, methods, stats, utils\nSuggests:           ade4TkGUI, adegraphics, adephylo, ape, CircStats,\n                    deldir, lattice, maptools, MASS, pixmap, sp, spdep,\n                    splancs, waveslim\nDescription:        Multivariate data analysis and graphical display.\nLicense:            GPL (>= 2)\nURL:                http://pbil.univ-lyon1.fr/ADE-4, Mailing list:\n                    http://listes.univ-lyon1.fr/wws/info/adelist\nBugReports:         https://github.com/sdray/ade4/issues\nEncoding:           UTF-8\nNeedsCompilation:   yes\nPackaged:           2017-03-23 11:59:39 UTC; aurelie\nRepository:         CRAN\nDate/Publication:   2017-03-23 13:09:49 UTC\nBuilt:              R 3.4.0; x86_64-pc-linux-gnu; \"Sat, 29 Apr 2017\n                    20:23:06 +0000\"; unix\n\nIndex:\n\nEH                      Amount of Evolutionary History\nPI2newick               Import data files from Phylogenetic\n                        Independance Package\nRV.rtest                Monte-Carlo Test on the sum of eigenvalues of a\n                        co-inertia analysis (in R).\nRVdist.randtest         Tests of randomization on the correlation\n                        between two distance matrices (in R).\nabouheif.eg             Phylogenies and quantitative traits from\n                        Abouheif\nacacia                  Spatial pattern analysis in plant communities\nadd.scatter             Add graphics to an existing plot\nade4-deprecated         Deprecated functions in ade4\nade4-package            The ade4 package\nade4toR                 Format Change Utility\naminoacyl               Codon usage\namova                   Analysis of molecular variance\napis108                 Allelic frequencies in ten honeybees\n                        populations at eight microsatellites loci\napqe                    Apportionment of Quadratic Entropy\naravo                   Distribution of Alpine plants in Aravo\n                        (Valloire, France)\nardeche                 Fauna Table with double (row and column)\n                        partitioning\narea.plot               Graphical Display of Areas\narrival                 Arrivals at an intensive care unit\nas.taxo                 Taxonomy\natlas                   Small Ecological Dataset\natya                    Genetic variability of Cacadors\navijons                 Bird species distribution\navimedi                 Fauna Table for Constrained Ordinations\naviurba                 Ecological Tables Triplet\nbacteria                Genomes of 43 Bacteria\nbanque                  Table of Factors\nbaran95                 African Estuary Fishes\nbca                     Between-Class Analysis\nbca.coinertia           Between-class coinertia analysis\nbca.rlq                 Between-Class RLQ analysis\nbf88                    Cubic Ecological Data\nbicenter.wt             Double Weighted Centring\nbordeaux                Wine Tasting\nbsetal97                Ecological and Biological Traits\nbuech                   Buech basin\nbutterfly               Genetics-Ecology-Environment Triple\nbwca.dpcoa              Between- and within-class double principal\n                        coordinate analysis\ncailliez                Transformation to make Euclidean a distance\n                        matrix\ncapitales               Road Distances\ncarni19                 Phylogeny and quantative trait of carnivora\ncarni70                 Phylogeny and quantitative traits of carnivora\ncarniherbi49            Taxonomy, phylogenies and quantitative traits\n                        of carnivora and herbivora\ncasitas                 Enzymatic polymorphism in Mus musculus\ncca                     Canonical Correspondence Analysis\nchatcat                 Qualitative Weighted Variables\nchats                   Pair of Variables\nchazeb                  Charolais-Zebus\nchevaine                Enzymatic polymorphism in Leuciscus cephalus\nchickenk                Veterinary epidemiological study to assess the\n                        risk factors for losses in broiler chickens\nclementines             Fruit Production\ncnc2003                 Frequenting movie theaters in France in 2003\ncoinertia               Coinertia Analysis\ncoleo                   Table of Fuzzy Biological Traits\ncombine.4thcorner       Functions to combine and adjust the outputs\n                        3-table methods\ncorkdist                Tests of randomization between distances\n                        applied to 'kdist' objetcs\ncorvus                  Corvus morphology\ncostatis                STATIS and Co-Inertia : Analysis of a series of\n                        paired ecological tables\ncostatis.randtest       Monte-Carlo test on a Costatis analysis (in C).\ndeug                    Exam marks for some students\ndisc                    Rao's dissimilarity coefficient\ndiscrimin               Linear Discriminant Analysis (descriptive\n                        statistic)\ndiscrimin.coa           Discriminant Correspondence Analysis\ndist.binary             Computation of Distance Matrices for Binary\n                        Data\ndist.dudi               Computation of the Distance Matrix from a\n                        Statistical Triplet\ndist.genet              Genetic distances from gene frequencies\ndist.ktab               Mixed-variables coefficient of distance\ndist.neig               Computation of the Distance Matrix associated\n                        to a Neighbouring Graph\ndist.prop               Computation of Distance Matrices of Percentage\n                        Data\ndist.quant              Computation of Distance Matrices on\n                        Quantitative Variables\ndivc                    Rao's diversity coefficient also called\n                        quadratic entropy\ndivcmax                 Maximal value of Rao's diversity coefficient\n                        also called quadratic entropy\ndotchart.phylog         Representation of many quantitative variables\n                        in front of a phylogenetic tree\ndotcircle               Representation of n values on a circle\ndoubs                   Pair of Ecological Tables\ndpcoa                   Double principal coordinate analysis\ndudi                    Duality Diagram\ndudi.acm                Multiple Correspondence Analysis\ndudi.coa                Correspondence Analysis\ndudi.dec                Decentred Correspondence Analysis\ndudi.fca                Fuzzy Correspondence Analysis and Fuzzy\n                        Principal Components Analysis\ndudi.hillsmith          Ordination of Tables mixing quantitative\n                        variables and factors\ndudi.mix                Ordination of Tables mixing quantitative\n                        variables and factors\ndudi.nsc                Non symmetric correspondence analysis\ndudi.pca                Principal Component Analysis\ndudi.pco                Principal Coordinates Analysis\ndunedata                Dune Meadow Data\necg                     Electrocardiogram data\necomor                  Ecomorphological Convergence\nelec88                  Electoral Data\nescopage                K-tables of wine-tasting\neuro123                 Triangular Data\nfission                 Fission pattern and heritable morphological\n                        traits\nfoucart                 K-tables Correspondence Analysis with the same\n                        rows and the same columns\nfourthcorner            Functions to compute the fourth-corner\n                        statistic\nfriday87                Faunistic K-tables\nfruits                  Pair of Tables\nfuzzygenet              Reading a table of genetic data (diploid\n                        individuals)\ngearymoran              Moran's I and Geary'c randomization tests for\n                        spatial and phylogenetic autocorrelation\ngenet                   A class of data: tables of populations and\n                        alleles\nggtortoises             Microsatellites of Galapagos tortoises\n                        populations\ngranulo                 Granulometric Curves\ngridrowcol              Complete regular grid analysis\nhdpg                    Genetic Variation In Human Populations\nhousetasks              Contingency Table\nhumDNAm                 human mitochondrial DNA restriction data\nichtyo                  Point sampling of fish community\ninertia.dudi            Decomposition of inertia (i.e. contributions)\n                        in multivariate methods\nirishdata               Geary's Irish Data\nis.euclid               Is a Distance Matrix Euclidean?\njulliot                 Seed dispersal\njv73                    K-tables Multi-Regions\nkcponds                 Ponds in a nature reserve\nkdist                   the class of objects 'kdist' (K distance\n                        matrices)\nkdist2ktab              Transformation of K distance matrices (object\n                        'kdist') into K Euclidean representations\n                        (object 'ktab')\nkdisteuclid             a way to obtain Euclidean distance matrices\nkplot                   Generic Function for Multiple Graphs in a\n                        K-tables Analysis\nkplot.foucart           Multiple Graphs for the Foucart's\n                        Correspondence Analysis\nkplot.mcoa              Multiple Graphs for a Multiple Co-inertia\n                        Analysis\nkplot.mfa               Multiple Graphs for a Multiple Factorial\n                        Analysis\nkplot.pta               Multiple Graphs for a Partial Triadic Analysis\nkplot.sepan             Multiple Graphs for Separated Analyses in a\n                        K-tables\nkplot.statis            Multiple Graphs of a STATIS Analysis\nkrandtest               Class of the Permutation Tests (in C).\nktab                    the class of objects 'ktab' (K-tables)\nktab.data.frame         Creation of K-tables from a data frame\nktab.list.df            Creating a K-tables from a list of data frames.\nktab.list.dudi          Creation of a K-tables from a list of duality\n                        diagrams\nktab.match2ktabs        STATIS and Co-Inertia : Analysis of a series of\n                        paired ecological tables\nktab.within             Process to go from a Within Analysis to a\n                        K-tables\nlascaux                 Genetic/Environment and types of variables\nlingoes                 Transformation of a Distance Matrix for\n                        becoming Euclidean\nlizards                 Phylogeny and quantitative traits of lizards\nmacaca                  Landmarks\nmacon                   Wine Tasting\nmacroloire              Assemblages of Macroinvertebrates in the Loire\n                        River (France)\nmafragh                 Phyto-Ecological Survey\nmantel.randtest         Mantel test (correlation between two distance\n                        matrices (in C).)\nmantel.rtest            Mantel test (correlation between two distance\n                        matrices (in R).)\nmaples                  Phylogeny and quantitative traits of flowers\nmariages                Correspondence Analysis Table\nmbpcaiv                 Multiblock principal component analysis with\n                        instrumental variables\nmbpls                   Multiblock partial least squares\nmcoa                    Multiple CO-inertia Analysis\nmdpcoa                  Multiple Double Principal Coordinate Analysis\nmeau                    Ecological Data : sites-variables,\n                        sites-species, where and when\nmeaudret                Ecological Data : sites-variables,\n                        sites-species, where and when\nmfa                     Multiple Factorial Analysis\nmicrosatt               Genetic Relationships between cattle breeds\n                        with microsatellites\nmjrochet                Phylogeny and quantitative traits of teleos\n                        fishes\nmld                     Multi Level Decomposition of unidimensional\n                        data\nmollusc                 Faunistic Communities and Sampling Experiment\nmonde84                 Global State of the World in 1984\nmorphosport             Athletes' Morphology\nmstree                  Minimal Spanning Tree\nmultispati              Multivariate spatial analysis\nmultispati.randtest     Multivariate spatial autocorrelation test (in\n                        C)\nmultispati.rtest        Multivariate spatial autocorrelation test\nneig                    Neighbourhood Graphs\nnewick.eg               Phylogenetic trees in Newick format\nnewick2phylog           Create phylogeny\nniche                   Method to Analyse a pair of tables :\n                        Environmental and Faunistic Data\nnipals                  Non-linear Iterative Partial Least Squares\n                        (NIPALS) algorithm\nnjplot                  Phylogeny and trait of bacteria\nolympic                 Olympic Decathlon\noptimEH                 Nee and May's optimizing process\noribatid                Oribatid mite\noriginality             Originality of a species\norisaved                Maximal or minimal amount of originality saved\n                        under optimal conditions\northobasis              Orthonormal basis for orthonormal transform\northogram               Orthonormal decomposition of variance\nours                    A table of Qualitative Variables\npalm                    Phylogenetic and quantitative traits of\n                        amazonian palm trees\npap                     Taxonomy and quantitative traits of carnivora\npcaiv                   Principal component analysis with respect to\n                        instrumental variables\npcaivortho              Principal Component Analysis with respect to\n                        orthogonal instrumental variables\npcoscaled               Simplified Analysis in Principal Coordinates\npcw                     Distribution of of tropical trees along the\n                        Panama canal\nperthi02                Contingency Table with a partition in Molecular\n                        Biology\nphylog                  Phylogeny\npiosphere               Plant traits response to grazing\nplot.phylog             Plot phylogenies\npresid2002              Results of the French presidential elections of\n                        2002\nprint.within            Within-Class Analysis\nprocella                Phylogeny and quantitative traits of birds\nprocuste                Simple Procruste Rotation between two sets of\n                        points\nprocuste.randtest       Monte-Carlo Test on the sum of the singular\n                        values of a procustean rotation (in C).\nprocuste.rtest          Monte-Carlo Test on the sum of the singular\n                        values of a procustean rotation (in R).\npta                     Partial Triadic Analysis of a K-tables\nquasieuclid             Transformation of a distance matrice to a\n                        Euclidean one\nrandEH                  Nee and May's random process\nrandboot                Bootstrap simulations\nrandboot.multiblock     Bootstraped simulations for multiblock methods\nrandtest                Class of the Permutation Tests (in C).\nrandtest.amova          Permutation tests on an analysis of molecular\n                        variance (in C).\nrandtest.between        Monte-Carlo Test on the between-groups inertia\n                        percentage (in C).\nrandtest.coinertia      Monte-Carlo test on a Co-inertia analysis (in\n                        C).\nrandtest.discrimin      Monte-Carlo Test on a Discriminant Analysis (in\n                        C).\nrandtest.dpcoa          Permutation test for double principal\n                        coordinate analysis (DPCoA)\nrandtest.pcaiv          Monte-Carlo Test on the percentage of explained\n                        (i.e.  constrained) inertia\nrandxval                Two-fold cross-validation\nrankrock                Ordination Table\nreconst                 Reconstitution of Data from a Duality Diagram\nrhizobium               Genetic structure of two nitrogen fixing\n                        bacteria influenced by geographical isolation\n                        and host specialization\nrhone                   Physico-Chemistry Data\nrlq                     RLQ analysis\nrpjdl                   Avifauna and Vegetation\nrtest                   Class of the Permutation Tests (in R).\nrtest.between           Monte-Carlo Test on the between-groups inertia\n                        percentage (in R).\nrtest.discrimin         Monte-Carlo Test on a Discriminant Analysis (in\n                        R).\ns.arrow                 Plot of the factorial maps for the projection\n                        of a vector basis\ns.chull                 Plot of the factorial maps with polygons of\n                        contour by level of a factor\ns.class                 Plot of factorial maps with representation of\n                        point classes\ns.corcircle             Plot of the factorial maps of a correlation\n                        circle\ns.distri                Plot of a frequency distribution\ns.hist                  Display of a scatterplot and its two marginal\n                        histograms\ns.image                 Graph of a variable using image and contour\ns.kde2d                 Scatter Plot with Kernel Density Estimate\ns.label                 Scatter Plot\ns.logo                  Representation of an object in a graph by a\n                        picture\ns.match                 Plot of Paired Coordinates\ns.match.class           Scatterplot of two sets of coordinates and a\n                        partionning into classes\ns.multinom              Graph of frequency profiles (useful for\n                        instance in genetic)\ns.traject               Trajectory Plot\ns.value                 Representation of a value in a graph\nsantacatalina           Indirect Ordination\nsarcelles               Array of Recapture of Rings\nscalewt                 Compute or scale data using (weighted) means,\n                        variances and covariances (possibly for the\n                        levels of a factor)\nscatter                 Graphical representation of the outputs of a\n                        multivariate analysis\nscatter.acm             Plot of the factorial maps in a Multiple\n                        Correspondence Analysis\nscatter.coa             Plot of the factorial maps for a correspondence\n                        analysis\nscatter.dudi            Plot of the Factorial Maps\nscatter.fca             Plot of the factorial maps for a fuzzy\n                        correspondence analysis\nscatterutil             Graphical utility functions\nsco.boxplot             Representation of the link between a variable\n                        and a set of qualitative variables\nsco.class               1D plot of a numeric score and a factor with\n                        labels\nsco.distri              Representation by mean- standard deviation of a\n                        set of weight distributions on a numeric score\nsco.gauss               Relationships between one score and qualitative\n                        variables\nsco.label               1D plot of a numeric score with labels\nsco.match               1D plot of a pair of numeric scores with labels\nsco.quant               Graph to Analyse the Relation between a Score\n                        and Quantitative Variables\nscore                   Graphs for One Dimension\nscore.acm               Graphs to study one factor in a Multiple\n                        Correspondence Analysis\nscore.coa               Reciprocal scaling after a correspondence\n                        analysis\nscore.mix               Graphs to Analyse a factor in a Mixed Analysis\nscore.pca               Graphs to Analyse a factor in PCA\nseconde                 Students and Subjects\nsepan                   Separated Analyses in a K-tables\nskulls                  Morphometric Evolution\nstatico                 STATIS and Co-Inertia : Analysis of a series of\n                        paired ecological tables\nstatico.krandtest       Monte-Carlo test on a Statico analysis (in C).\nstatis                  STATIS, a method for analysing K-tables\nsteppe                  Transect in the Vegetation\nsummary.between         Between-Class Analysis\nsummary.multiblock      Display and summarize multiblock objects\nsupcol                  Projections of Supplementary Columns\nsuprow                  Projections of Supplementary Rows\nsymbols.phylog          Representation of a quantitative variable in\n                        front of a phylogenetic tree\nsyndicats               Two Questions asked on a Sample of 1000\n                        Respondents\nt3012                   Average temperatures of 30 French cities\ntable.cont              Plot of Contingency Tables\ntable.dist              Graph Display for Distance Matrices\ntable.paint             Plot of the arrays by grey levels\ntable.phylog            Plot arrays in front of a phylogenetic tree\ntable.value             Plot of the Arrays\ntarentaise              Mountain Avifauna\ntaxo.eg                 Examples of taxonomy\ntestdim                 Function to perform a test of dimensionality\ntestdim.multiblock      Selection of the number of dimension by\n                        two-fold cross-validation for multiblock\n                        methods\ntintoodiel              Tinto and Odiel estuary geochemistry\ntithonia                Phylogeny and quantitative traits of flowers\ntortues                 Morphological Study of the Painted Turtle\ntoxicity                Homogeneous Table\ntriangle.class          Triangular Representation and Groups of points\ntriangle.plot           Triangular Plotting\ntrichometeo             Pair of Ecological Data\nungulates               Phylogeny and quantitative traits of ungulates.\nuniquewt.df             Elimination of Duplicated Rows in a Array\nvariance.phylog         The phylogenetic ANOVA\nvegtf                   Vegetation in Trois-Fontaines\nveuvage                 Example for Centring in PCA\nwca                     Within-Class Analysis\nwca.rlq                 Within-Class RLQ analysis\nwestafrica              Freshwater fish zoogeography in west Africa\nwithincoinertia         Within-class coinertia analysis\nwithinpca               Normed within principal component analysis\nwitwit.coa              Internal Correspondence Analysis\nwoangers                Plant assemblages in woodlands of the\n                        conurbation of Angers (France)\nworksurv                French Worker Survey (1970)\nyanomama                Distance Matrices\nzealand                 Road distances in New-Zealand\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:14 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:36 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d3aa85e80b49398a4b2600b390dfbce9c1499102234; expires=Tue, 03-Jul-18 17:17:14 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d83fd631290f02a0d4734ab7fa359ab871499110595; expires=Tue, 03-Jul-18 19:36:35 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=86400, public",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
@@ -31,7 +31,7 @@
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "HIT",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f470ee5075b-AMS"
+        "CF-RAY": "378c4b68699b0c89-AMS"
       },
       "status_code": 200,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/digest_hmac.json b/test/fixtures/vcr_cassettes/digest_hmac.json
index a5afb29161875dede1f6b6f5229a489fd696ccc4..ca775c68b3cbe2b42e59700d338abb3b8954ecbe 100644
--- a/test/fixtures/vcr_cassettes/digest_hmac.json
+++ b/test/fixtures/vcr_cassettes/digest_hmac.json
@@ -13,27 +13,27 @@
     "response": {
       "body": "[\"e48bbe6502785b0388ddb386a3318a52a8cc41bfe3ac696223122266e32c919a\"]\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:13 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:39 GMT",
         "Content-Type": "application/json",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=df57c6e56f3bef06e3bc2a1978cf76ed01499102232; expires=Tue, 03-Jul-18 17:17:12 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=df0f396fce3004ab7546281f469cdc3371499110599; expires=Tue, 03-Jul-18 19:36:39 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x08d13b3e08",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x08d13b3e08/",
+        "X-ocpu-session": "x004252601f",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x004252601f/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:13 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:39 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f39bcea0c89-AMS"
+        "CF-RAY": "378c4b7ccb6b72a7-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/flip_coin.json b/test/fixtures/vcr_cassettes/flip_coin.json
index 6f99bc7dcbc6f75a3a7e6970128506233decd4e5..9fb0b40183096339f0a6b8ac01ea873a3c4af86f 100644
--- a/test/fixtures/vcr_cassettes/flip_coin.json
+++ b/test/fixtures/vcr_cassettes/flip_coin.json
@@ -11,29 +11,29 @@
       "url": "https://public.opencpu.org/ocpu/library/animation/R/flip.coin/json"
     },
     "response": {
-      "body": "{\n  \"freq\": [0.54, 0.46],\n  \"nmax\": [50]\n}\n",
+      "body": "{\n  \"freq\": [0.42, 0.58],\n  \"nmax\": [50]\n}\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:15 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:37 GMT",
         "Content-Type": "application/json",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=db314f3e503beb58802a92b519ab7ee1a1499102234; expires=Tue, 03-Jul-18 17:17:14 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d43aa163da19b00be9313397c622fb7631499110596; expires=Tue, 03-Jul-18 19:36:36 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0254f0a707",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0254f0a707/",
+        "X-ocpu-session": "x0672b619eb",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0672b619eb/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:15 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:36 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f489cb42c36-AMS"
+        "CF-RAY": "378c4b6bcf5f2bee-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/github_package.json b/test/fixtures/vcr_cassettes/github_package.json
deleted file mode 100644
index 6126ee4e1fdfc530af62307673a3ecf60a39514f..0000000000000000000000000000000000000000
--- a/test/fixtures/vcr_cassettes/github_package.json
+++ /dev/null
@@ -1,37 +0,0 @@
-[
-  {
-    "request": {
-      "body": "{}",
-      "headers": {
-        "Content-Type": "application/json"
-      },
-      "method": "post",
-      "options": [],
-      "request_body": "",
-      "url": "https://cloud.opencpu.org/ocpu/github/ropensci/ropensciDemos/R/www/json"
-    },
-    "response": {
-      "body": "Github App ropensci/ropensciDemos not installed on this server\n",
-      "headers": {
-        "Date": "Mon, 03 Jul 2017 17:45:07 GMT",
-        "Transfer-Encoding": "chunked",
-        "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d72a7c3a1f74feeab1a985acf2d9fa58d1499103907; expires=Tue, 03-Jul-18 17:45:07 GMT; path=/; domain=.opencpu.org; HttpOnly",
-        "Access-Control-Allow-Origin": "*",
-        "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
-        "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
-        "Access-Control-Allow-Credentials": "true",
-        "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
-        "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:45:07 UTC",
-        "X-ocpu-version": "2.0.3.1",
-        "X-ocpu-server": "rApache",
-        "Vary": "Accept-Encoding",
-        "Server": "cloudflare-nginx",
-        "CF-RAY": "378ba81e8b4b72ad-AMS"
-      },
-      "status_code": 404,
-      "type": "ok"
-    }
-  }
-]
\ No newline at end of file
diff --git a/test/fixtures/vcr_cassettes/github_package_not_found.json b/test/fixtures/vcr_cassettes/github_package_not_found.json
index a197d3b0d7bca046ad102910ba5cf20e69671a5d..c1536edff0ebcf18e9400238d2ab1ab6fdd3aa7a 100644
--- a/test/fixtures/vcr_cassettes/github_package_not_found.json
+++ b/test/fixtures/vcr_cassettes/github_package_not_found.json
@@ -13,22 +13,22 @@
     "response": {
       "body": "Github App baz/foo not installed on this server\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:41:28 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:38 GMT",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d31c9caa9ce95749ee6a7a3be2b332df01499103688; expires=Tue, 03-Jul-18 17:41:28 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d612190d7791ef407bd7146b64583fedc1499110598; expires=Tue, 03-Jul-18 19:36:38 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:41:28 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:38 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378ba2c22d190c1d-AMS"
+        "CF-RAY": "378c4b773eed2bee-AMS"
       },
       "status_code": 404,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/prepare.json b/test/fixtures/vcr_cassettes/prepare.json
index 43ab3fb4b8a4e963992eecc5451c99727557b798..b5c9058b6a6d3c694cc239641649bffe880df3c6 100644
--- a/test/fixtures/vcr_cassettes/prepare.json
+++ b/test/fixtures/vcr_cassettes/prepare.json
@@ -11,29 +11,29 @@
       "url": "https://public.opencpu.org/ocpu/library/digest/R/hmac/"
     },
     "response": {
-      "body": "/ocpu/tmp/x06bbf5d7bb/R/hmac\n/ocpu/tmp/x06bbf5d7bb/R/.val\n/ocpu/tmp/x06bbf5d7bb/stdout\n/ocpu/tmp/x06bbf5d7bb/source\n/ocpu/tmp/x06bbf5d7bb/console\n/ocpu/tmp/x06bbf5d7bb/info\n/ocpu/tmp/x06bbf5d7bb/files/DESCRIPTION\n",
+      "body": "/ocpu/tmp/x0fbb142632/R/hmac\n/ocpu/tmp/x0fbb142632/R/.val\n/ocpu/tmp/x0fbb142632/stdout\n/ocpu/tmp/x0fbb142632/source\n/ocpu/tmp/x0fbb142632/console\n/ocpu/tmp/x0fbb142632/info\n/ocpu/tmp/x0fbb142632/files/DESCRIPTION\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:14 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:38 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=dfbb52d40ab07243d4adc5c2b009b7c4a1499102233; expires=Tue, 03-Jul-18 17:17:13 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d3d7f7600ff3235473a91fe8293cef1471499110597; expires=Tue, 03-Jul-18 19:36:37 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x06bbf5d7bb",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x06bbf5d7bb/",
+        "X-ocpu-session": "x0fbb142632",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0fbb142632/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:14 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:37 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f421f062b6a-AMS"
+        "CF-RAY": "378c4b73fb10147f-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/response_with_na_values.json b/test/fixtures/vcr_cassettes/response_with_na_values.json
index e30cd51417275146f17e01e894f654d894546d57..6e3b93c8de3ec8ef5dea1d923726b2ed8b8a79a8 100644
--- a/test/fixtures/vcr_cassettes/response_with_na_values.json
+++ b/test/fixtures/vcr_cassettes/response_with_na_values.json
@@ -13,27 +13,27 @@
     "response": {
       "body": "{\n  \"y\": [\"not_na\"],\n  \"x\": [\"NA\"]\n}\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 17:17:16 GMT",
+        "Date": "Mon, 03 Jul 2017 19:36:37 GMT",
         "Content-Type": "application/json",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=def14df5dc472448c61b2d9690ac94faf1499102235; expires=Tue, 03-Jul-18 17:17:15 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d73a7efc4e863412cedb1424801778c1e1499110597; expires=Tue, 03-Jul-18 19:36:37 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x081d822941",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x081d822941/",
+        "X-ocpu-session": "x0ce45aacd6",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0ce45aacd6/",
         "Access-Control-Allow-Origin": "*",
         "Access-Control-Expose-Headers": "Location, X-ocpu-session, Content-Type, Cache-Control",
         "Access-Control-Allow-Headers": "Origin, Content-Type, Accept, Accept-Encoding, Cache-Control, Authorization",
         "Access-Control-Allow-Credentials": "true",
         "X-ocpu-r": "R version 3.4.1 (2017-06-30)",
         "X-ocpu-locale": "en_US.UTF-8",
-        "X-ocpu-time": "2017-07-03 17:17:16 UTC",
+        "X-ocpu-time": "2017-07-03 19:36:37 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378b7f4d4f480c1d-AMS"
+        "CF-RAY": "378c4b703ce92c36-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/opencpu_test.exs b/test/opencpu/client_test.exs
similarity index 69%
rename from test/opencpu_test.exs
rename to test/opencpu/client_test.exs
index fc1ae170c64b62ddeae5dd807bb8017dbb01d1e6..55eff6e7247da9d95773359d6ed4ebf893b9a08a 100644
--- a/test/opencpu_test.exs
+++ b/test/opencpu/client_test.exs
@@ -1,6 +1,7 @@
-defmodule OpenCPUTest do
+defmodule OpenCPU.ClientTest do
   use ExUnit.Case, async: false
   use ExVCR.Mock
+  alias OpenCPU.Client
 
   setup_all do
     ExVCR.Config.cassette_library_dir("test/fixtures/vcr_cassettes")
@@ -18,14 +19,14 @@ defmodule OpenCPUTest do
       use_cassette "no_endpoint_configured" do
         assert_raise OpenCPU.OpenCPUError, "OpenCPU endpoint is not configured", fn ->
           Application.put_env(:opencpu, :endpoint_url, nil)
-          OpenCPU.execute(:animation, "flip.coin")
+          Client.execute(:animation, "flip.coin")
         end
       end
     end
 
     test "it can return JSON results" do
       use_cassette "flip_coin" do
-        response = OpenCPU.execute(:animation, "flip.coin")
+        response = Client.execute(:animation, "flip.coin")
         assert Map.keys(response) == ["freq", "nmax"]
       end
     end
@@ -33,21 +34,21 @@ defmodule OpenCPUTest do
     test "it raises an exception on bad requests" do
       use_cassette "bad_request" do
         assert_raise OpenCPU.BadRequest, "unused argument (some = c(\"data\"))\n\nIn call:\nidentity(some = c(\"data\"))\n", fn ->
-          OpenCPU.execute(:base, :identity, %{data: %{some: "data"}})
+          Client.execute(:base, :identity, %{data: %{some: "data"}})
         end
       end
     end
 
     test "it accepts R-function parameters as data" do
       use_cassette "digest_hmac" do
-        response = OpenCPU.execute(:digest, :hmac, %{data: %{key: "baz", object: "qux", algo: "sha256"}})
+        response = Client.execute(:digest, :hmac, %{data: %{key: "baz", object: "qux", algo: "sha256"}})
         assert response == ["e48bbe6502785b0388ddb386a3318a52a8cc41bfe3ac696223122266e32c919a"]
       end
     end
 
     test "it converts NA to nil if option is set" do
       use_cassette "response_with_na_values" do
-        response = OpenCPU.execute(:base, :identity, %{data: %{x: %{x: "NA", y: "not_na"}}, convert_na_to_nil: true})
+        response = Client.execute(:base, :identity, %{data: %{x: %{x: "NA", y: "not_na"}}, convert_na_to_nil: true})
         assert response == %{"x"=>[nil], "y"=>["not_na"]}
       end
     end
@@ -56,7 +57,7 @@ defmodule OpenCPUTest do
   describe "description" do
     test "it returns the content of the package DESCRIPTION file" do
       use_cassette "description" do
-        response = OpenCPU.description("ade4")
+        response = Client.description("ade4")
         assert String.starts_with?(response, "\n\t\tInformation on package 'ade4'\n\n")
       end
     end
@@ -65,7 +66,7 @@ defmodule OpenCPUTest do
   describe "prepare" do
     test "it returns a DelayedCalculation" do
       use_cassette "prepare" do
-        response = OpenCPU.prepare(:digest, :hmac, %{data: %{key: "baz", object: "qux", algo: "sha256"}})
+        response = Client.prepare(:digest, :hmac, %{data: %{key: "baz", object: "qux", algo: "sha256"}})
         assert %OpenCPU.DelayedCalculation{} = response
       end
     end
@@ -73,15 +74,15 @@ defmodule OpenCPUTest do
 
   describe "convert_na_to_nil" do
     test "it converts 'NA' values in hashes in arrays" do
-      assert [4, %{foo: nil}] == OpenCPU.convert_na_to_nil([4, %{foo: "NA"}])
+      assert [4, %{foo: nil}] == Client.convert_na_to_nil([4, %{foo: "NA"}])
     end
 
     test "it converts 'NA' values in arrays in hashes" do
-      assert %{foo: [1, nil]} == OpenCPU.convert_na_to_nil(%{foo: [1, "NA"]})
+      assert %{foo: [1, nil]} == Client.convert_na_to_nil(%{foo: [1, "NA"]})
     end
 
     test "it leaves other values alone" do
-      assert %{foo: [1, "NOTNA"]} == OpenCPU.convert_na_to_nil(%{foo: [1, "NOTNA"]})
+      assert %{foo: [1, "NOTNA"]} == Client.convert_na_to_nil(%{foo: [1, "NOTNA"]})
     end
   end
 
@@ -90,7 +91,7 @@ defmodule OpenCPUTest do
     test "it can access github packages" do
       use_cassette "github_package" do
         Application.put_env(:opencpu, :endpoint_url, "https://cloud.opencpu.org/ocpu")
-        response = OpenCPU.execute("ropensciDemos", "www", %{user: "ropensci", github_remote: true, data: %{}})
+        response = Client.execute("ropensciDemos", "www", %{user: "ropensci", github_remote: true, data: %{}})
         assert response =~ "Welcome to rOpenSci Demos"
       end
     end
@@ -98,7 +99,7 @@ defmodule OpenCPUTest do
     test "what happens when package is not available on GitHub" do
       use_cassette "github_package_not_found" do
         assert_raise OpenCPU.BadRequest, fn ->
-          OpenCPU.execute(:foo, :bar, %{user: "baz", github_remote: true})
+          Client.execute(:foo, :bar, %{user: "baz", github_remote: true})
         end
       end
     end
@@ -106,22 +107,22 @@ defmodule OpenCPUTest do
 
   describe "function_url and package_url" do
     test "system libraries" do
-      assert OpenCPU.function_url("package", "function")
+      assert Client.function_url("package", "function")
           == "/library/package/R/function/"
     end
 
     test "json response" do
-      assert OpenCPU.function_url("package", "function", :system, false, :json)
+      assert Client.function_url("package", "function", :system, false, :json)
           == "/library/package/R/function/json"
     end
 
     test "user libraries" do
-      assert OpenCPU.function_url("package", "function", "username")
+      assert Client.function_url("package", "function", "username")
           == "/user/username/library/package/R/function/"
     end
 
     test "github libraries" do
-      assert OpenCPU.function_url("package", "function", "username", true)
+      assert Client.function_url("package", "function", "username", true)
           == "/github/username/package/R/function/"
     end
   end
diff --git a/test/delayed_calculation_test.exs b/test/opencpu/delayed_calculation_test.exs
similarity index 93%
rename from test/delayed_calculation_test.exs
rename to test/opencpu/delayed_calculation_test.exs
index 849bf5cf8789001769fb414bd8c27891141fc36d..2d89e63e1c58cc212a3259ac3be1d25161ed039a 100644
--- a/test/delayed_calculation_test.exs
+++ b/test/opencpu/delayed_calculation_test.exs
@@ -1,7 +1,7 @@
 defmodule OpenCPU.DelayedCalculationTest do
   use ExUnit.Case, async: false
   use ExVCR.Mock
-  alias OpenCPU.DelayedCalculation
+  alias OpenCPU.{Client, DelayedCalculation}
 
   setup_all do
     Application.put_env(:opencpu, :endpoint_url, "https://public.opencpu.org/ocpu")
@@ -33,7 +33,7 @@ defmodule OpenCPU.DelayedCalculationTest do
   test "graphics" do
     # Use one test to save on cassettes (and lines of code :)
     use_cassette "animation_flip_coin_graphics" do
-      delayed_calculation = OpenCPU.prepare("animation", "flip.coin")
+      delayed_calculation = Client.prepare("animation", "flip.coin")
 
       # it defines methods to access graphic functions
       assert DelayedCalculation.graphics(delayed_calculation) # not to raise error
@@ -58,7 +58,7 @@ defmodule OpenCPU.DelayedCalculationTest do
 
   test "standard getters" do
     use_cassette "animation_flip_coin_getters" do
-      delayed_calculation = OpenCPU.prepare("animation", "flip.coin")
+      delayed_calculation = Client.prepare("animation", "flip.coin")
 
       # it returns raw R calculation result
       assert DelayedCalculation.value(delayed_calculation) =~ "$freq"