diff --git a/lib/opencpu/client.ex b/lib/opencpu/client.ex
index d9253e3a54af0211e9a4d693c3e8838c71b26c3b..0a93ddbb2d62fb50f64f6f73953b3a577d8752bf 100644
--- a/lib/opencpu/client.ex
+++ b/lib/opencpu/client.ex
@@ -13,13 +13,6 @@ defmodule OpenCPU.Client do
     ]
   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.
   """
@@ -28,6 +21,7 @@ defmodule OpenCPU.Client do
     options = Map.merge(%Options{}, options)
 
     function_url(package, function, options.user, options.github_remote, :json)
+    |> process_url
     |> process_query(options.data)
     |> Map.fetch!(:body)
     |> Poison.decode!
@@ -47,12 +41,15 @@ defmodule OpenCPU.Client do
     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}"
+      |> HTTPoison.get(headers(), request_options())
+
+    case response do
+      {:ok, %HTTPoison.Response{status_code: code} = response} when code in [200, 201] ->
+        response.body
+      {:ok, %HTTPoison.Response{status_code: code, body: body}} ->
+        raise OpenCPU.OpenCPUError, message: "Error getting description: #{code}, #{body}"
+      {:error, %HTTPoison.Error{reason: reason}} ->
+        raise OpenCPU.OpenCPUError, message: "Error: #{reason}"
     end
   end
 
@@ -69,29 +66,50 @@ defmodule OpenCPU.Client do
 
     response =
       function_url(package, function, options.user, options.github_remote, nil)
+      |> process_url
       |> process_query(options.data)
 
     OpenCPU.DelayedCalculation.new(
-      response.headers.hdrs |> Map.get("location"),
+      response.headers |> Enum.into(%{}) |> Map.get("Location"),
       response.body |> String.split("\n")
     )
   end
 
   defp process_query(url, data) do
-    response = HTTPotion.post(process_url(url), request_options(data))
+    data = Poison.encode!(data)
 
-    case response.status_code do
-      code when code in [200, 201] ->
+    case HTTPoison.post(url, data, headers(), request_options()) do
+      {:ok, %HTTPoison.Response{status_code: code} = response} 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}"
+      {:ok, %HTTPoison.Response{status_code: 403, body: body}} ->
+        raise OpenCPU.AccessDenied, message: body
+      {:ok, %HTTPoison.Response{status_code: code, body: body}} when code in 400..499 ->
+        raise OpenCPU.BadRequest, message: body
+      {:ok, %HTTPoison.Response{status_code: code, body: body}} when code in 500..599 ->
+        raise OpenCPU.BadRequest, message: body
+      {:ok, %HTTPoison.Response{status_code: code, body: body}} ->
+        raise OpenCPU.OpenCPUError, message: "Invalid status code: #{code}, #{body}"
+      {:error, %HTTPoison.Error{reason: reason}} ->
+        raise OpenCPU.OpenCPUError, message: "Error: #{reason}"
+    end
+  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
+
+  def headers do
+    [{"Content-Type", "application/json"}]
+  end
+
+  def request_options do
+    case {get_env(:username), get_env(:password)} do
+      {nil, _}             -> []
+      {_, nil}             -> []
+      {username, password} -> [hackney: [basic_auth: {username, password}]]
     end
   end
 
@@ -110,21 +128,6 @@ defmodule OpenCPU.Client do
   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
diff --git a/lib/opencpu/delayed_calculation.ex b/lib/opencpu/delayed_calculation.ex
index 44f0dc5fb50f36878cbaf0db1d9d39f323853607..5e5545f882ea50558a75900d4ace36b1c58e8df8 100644
--- a/lib/opencpu/delayed_calculation.ex
+++ b/lib/opencpu/delayed_calculation.ex
@@ -57,11 +57,11 @@ defmodule OpenCPU.DelayedCalculation do
   end
 
   defp process_resource(resource) do
-    case response = HTTPotion.get(resource, [follow_redirects: true]) do
-      %HTTPotion.Response{} ->
-        String.trim(response.body)
-      %HTTPotion.ErrorResponse{message: message} ->
-        raise OpenCPU.BadRequest, message: "Error loading resource '#{resource}': #{message}"
+    case HTTPoison.get(resource, [], [follow_redirect: true]) do
+      {:ok, %HTTPoison.Response{body: body}} ->
+        String.trim(body)
+      {:error, %HTTPoison.Error{reason: reason}} ->
+        raise OpenCPU.BadRequest, message: "Error loading resource '#{resource}': #{reason}"
     end
   end
 
diff --git a/mix.exs b/mix.exs
index 1d6c4c1c82d2d40318c2b9b28a34e2b35e4eba52..34e720bd53e1dc22e743c48e32813bd01a20470c 100644
--- a/mix.exs
+++ b/mix.exs
@@ -29,9 +29,9 @@ defmodule OpenCPU.Mixfile do
   # Type "mix help deps" for more examples and options
   defp deps do
     [
-      {:httpotion, "~> 3.0.2"},
+      {:httpoison, "~> 0.12"},
       {:poison, "~> 3.1"},
-      {:exvcr, "~> 0.8", only: :test},
+      {:exvcr, "~> 0.8", only: :test}
     ]
   end
 end
diff --git a/mix.lock b/mix.lock
index 6b50bdc3b4d67125ee2b4c4239543ddfaa2a6f20..a310179e286ea9481b2b09e02b420e0a088d1d15 100644
--- a/mix.lock
+++ b/mix.lock
@@ -1,11 +1,19 @@
-%{"exactor": {:hex, :exactor, "2.2.3", "a6972f43bb6160afeb73e1d8ab45ba604cd0ac8b5244c557093f6e92ce582786", [:mix], []},
+%{"certifi": {:hex, :certifi, "1.2.1", "c3904f192bd5284e5b13f20db3ceac9626e14eeacfbb492e19583cf0e37b22be", [:rebar3], []},
+  "exactor": {:hex, :exactor, "2.2.3", "a6972f43bb6160afeb73e1d8ab45ba604cd0ac8b5244c557093f6e92ce582786", [:mix], []},
   "excoveralls": {:hex, :excoveralls, "0.2.4", "952aed76674c877bd615770c23085b3d89a60bb736bf5180cb7519ac496e1e99", [:mix], [{:exprintf, "~> 0.1", [hex: :exprintf, optional: false]}, {:jsex, "~> 2.0", [hex: :jsex, optional: false]}]},
   "exjsx": {:hex, :exjsx, "3.2.1", "1bc5bf1e4fd249104178f0885030bcd75a4526f4d2a1e976f4b428d347614f0f", [:mix], [{:jsx, "~> 2.8.0", [hex: :jsx, optional: false]}]},
   "exprintf": {:hex, :exprintf, "0.2.1", "b7e895dfb00520cfb7fc1671303b63b37dc3897c59be7cbf1ae62f766a8a0314", [:mix], []},
   "exvcr": {:hex, :exvcr, "0.8.10", "17090dea4758eb2349146746084a7c422c77f36b922611df6a46fef40a4bf94c", [:mix], [{:exactor, "~> 2.2", [hex: :exactor, optional: false]}, {:exjsx, "~> 3.2", [hex: :exjsx, optional: false]}, {:httpoison, "~> 0.11", [hex: :httpoison, optional: true]}, {:httpotion, "~> 3.0", [hex: :httpotion, optional: true]}, {:ibrowse, "~> 4.2.2", [hex: :ibrowse, optional: true]}, {:meck, "~> 0.8.3", [hex: :meck, optional: false]}]},
+  "hackney": {:hex, :hackney, "1.8.6", "21a725db3569b3fb11a6af17d5c5f654052ce9624219f1317e8639183de4a423", [:rebar3], [{:certifi, "1.2.1", [hex: :certifi, optional: false]}, {:idna, "5.0.2", [hex: :idna, optional: false]}, {:metrics, "1.0.1", [hex: :metrics, optional: false]}, {:mimerl, "1.0.2", [hex: :mimerl, optional: false]}, {:ssl_verify_fun, "1.1.1", [hex: :ssl_verify_fun, optional: false]}]},
+  "httpoison": {:hex, :httpoison, "0.12.0", "8fc3d791c5afe6beb0093680c667dd4ce712a49d89c38c3fe1a43100dd76cf90", [:mix], [{:hackney, "~> 1.8.0", [hex: :hackney, optional: false]}]},
   "httpotion": {:hex, :httpotion, "3.0.2", "525b9bfeb592c914a61a8ee31fdde3871e1861dfe805f8ee5f711f9f11a93483", [:mix], [{:ibrowse, "~> 4.2", [hex: :ibrowse, optional: false]}]},
   "ibrowse": {:hex, :ibrowse, "4.2.2", "b32b5bafcc77b7277eff030ed32e1acc3f610c64e9f6aea19822abcadf681b4b", [:rebar3], []},
+  "idna": {:hex, :idna, "5.0.2", "ac203208ada855d95dc591a764b6e87259cb0e2a364218f215ad662daa8cd6b4", [:rebar3], [{:unicode_util_compat, "0.2.0", [hex: :unicode_util_compat, optional: false]}]},
   "jsex": {:hex, :jsex, "2.0.0", "d54a39e49418b34b1a78236a92f73e4d7c46329c220275d7223fab4b3dc6120f", [:mix], [{:jsx, "~> 2.0", [hex: :jsx, optional: false]}]},
   "jsx": {:hex, :jsx, "2.8.2", "7acc7d785b5abe8a6e9adbde926a24e481f29956dd8b4df49e3e4e7bcc92a018", [:mix, :rebar3], []},
   "meck": {:hex, :meck, "0.8.7", "ebad16ca23f685b07aed3bc011efff65fbaf28881a8adf925428ef5472d390ee", [:rebar3], []},
-  "poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], []}}
+  "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], []},
+  "mimerl": {:hex, :mimerl, "1.0.2", "993f9b0e084083405ed8252b99460c4f0563e41729ab42d9074fd5e52439be88", [:rebar3], []},
+  "poison": {:hex, :poison, "3.1.0", "d9eb636610e096f86f25d9a46f35a9facac35609a7591b3be3326e99a0484665", [:mix], []},
+  "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.1", "28a4d65b7f59893bc2c7de786dec1e1555bd742d336043fe644ae956c3497fbe", [:make, :rebar], []},
+  "unicode_util_compat": {:hex, :unicode_util_compat, "0.2.0", "dbbccf6781821b1c0701845eaf966c9b6d83d7c3bfc65ca2b78b88b8678bfa35", [:rebar3], []}}
diff --git a/test/fixtures/vcr_cassettes/animation_flip_coin_getters.json b/test/fixtures/vcr_cassettes/animation_flip_coin_getters.json
index 62822ef958d4db906f477536dc22f2ba0194213b..40639a495d96af490468a2507e060fc239c1bf4b 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/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",
+      "body": "/ocpu/tmp/x0450cd4d4d/R/flip.coin\n/ocpu/tmp/x0450cd4d4d/R/.val\n/ocpu/tmp/x0450cd4d4d/graphics/1\n/ocpu/tmp/x0450cd4d4d/graphics/2\n/ocpu/tmp/x0450cd4d4d/graphics/3\n/ocpu/tmp/x0450cd4d4d/graphics/4\n/ocpu/tmp/x0450cd4d4d/graphics/5\n/ocpu/tmp/x0450cd4d4d/graphics/6\n/ocpu/tmp/x0450cd4d4d/graphics/7\n/ocpu/tmp/x0450cd4d4d/graphics/8\n/ocpu/tmp/x0450cd4d4d/graphics/9\n/ocpu/tmp/x0450cd4d4d/graphics/10\n/ocpu/tmp/x0450cd4d4d/graphics/11\n/ocpu/tmp/x0450cd4d4d/graphics/12\n/ocpu/tmp/x0450cd4d4d/graphics/13\n/ocpu/tmp/x0450cd4d4d/graphics/14\n/ocpu/tmp/x0450cd4d4d/graphics/15\n/ocpu/tmp/x0450cd4d4d/graphics/16\n/ocpu/tmp/x0450cd4d4d/graphics/17\n/ocpu/tmp/x0450cd4d4d/graphics/18\n/ocpu/tmp/x0450cd4d4d/graphics/19\n/ocpu/tmp/x0450cd4d4d/graphics/20\n/ocpu/tmp/x0450cd4d4d/graphics/21\n/ocpu/tmp/x0450cd4d4d/graphics/22\n/ocpu/tmp/x0450cd4d4d/graphics/23\n/ocpu/tmp/x0450cd4d4d/graphics/24\n/ocpu/tmp/x0450cd4d4d/graphics/25\n/ocpu/tmp/x0450cd4d4d/graphics/26\n/ocpu/tmp/x0450cd4d4d/graphics/27\n/ocpu/tmp/x0450cd4d4d/graphics/28\n/ocpu/tmp/x0450cd4d4d/graphics/29\n/ocpu/tmp/x0450cd4d4d/graphics/30\n/ocpu/tmp/x0450cd4d4d/graphics/31\n/ocpu/tmp/x0450cd4d4d/graphics/32\n/ocpu/tmp/x0450cd4d4d/graphics/33\n/ocpu/tmp/x0450cd4d4d/graphics/34\n/ocpu/tmp/x0450cd4d4d/graphics/35\n/ocpu/tmp/x0450cd4d4d/graphics/36\n/ocpu/tmp/x0450cd4d4d/graphics/37\n/ocpu/tmp/x0450cd4d4d/graphics/38\n/ocpu/tmp/x0450cd4d4d/graphics/39\n/ocpu/tmp/x0450cd4d4d/graphics/40\n/ocpu/tmp/x0450cd4d4d/graphics/41\n/ocpu/tmp/x0450cd4d4d/graphics/42\n/ocpu/tmp/x0450cd4d4d/graphics/43\n/ocpu/tmp/x0450cd4d4d/graphics/44\n/ocpu/tmp/x0450cd4d4d/graphics/45\n/ocpu/tmp/x0450cd4d4d/graphics/46\n/ocpu/tmp/x0450cd4d4d/graphics/47\n/ocpu/tmp/x0450cd4d4d/graphics/48\n/ocpu/tmp/x0450cd4d4d/graphics/49\n/ocpu/tmp/x0450cd4d4d/graphics/50\n/ocpu/tmp/x0450cd4d4d/source\n/ocpu/tmp/x0450cd4d4d/console\n/ocpu/tmp/x0450cd4d4d/info\n/ocpu/tmp/x0450cd4d4d/files/DESCRIPTION\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:40 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:49 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d49043b98d7d00baea49afd7e564d1fdc1499110599; expires=Tue, 03-Jul-18 19:36:39 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d3e45d79f65f191cd0ef3aa777f8d5c981499196949; expires=Wed, 04-Jul-18 19:35:49 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0f284ca594",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/",
+        "X-ocpu-session": "x0450cd4d4d",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0450cd4d4d/",
         "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 19:36:40 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:48 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
-        "X-ocpu-cache": "EXPIRED",
+        "X-ocpu-cache": "HIT",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b7f7b7c147f-AMS"
+        "CF-RAY": "379487a44ae372e9-AMS"
       },
       "status_code": 201,
       "type": "ok"
@@ -44,54 +44,20 @@
       "body": "",
       "headers": [],
       "method": "get",
-      "options": [],
-      "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val"
-    },
-    "response": {
-      "body": "Redirect to http://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val/print\n",
-      "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:40 GMT",
-        "Transfer-Encoding": "chunked",
-        "Connection": "keep-alive",
-        "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/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 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": "378c4b83f99e2b28-AMS"
+      "options": {
+        "follow_redirect": "true"
       },
-      "status_code": 302,
-      "type": "ok"
-    }
-  },
-  {
-    "request": {
-      "body": "",
-      "headers": [],
-      "method": "get",
-      "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/R/.val/print"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0450cd4d4d/R/.val"
     },
     "response": {
-      "body": "$freq\n   1    2 \n0.56 0.44 \n\n$nmax\n[1] 50\n\n",
+      "body": "$freq\n  1   2 \n0.5 0.5 \n\n$nmax\n[1] 50\n\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:40 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:49 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=df42114f69454ed088aad31189ee82a0c1499110600; expires=Tue, 03-Jul-18 19:36:40 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d3e45d79f65f191cd0ef3aa777f8d5c981499196949; expires=Wed, 04-Jul-18 19:35:49 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 +65,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 19:36:40 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:49 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b86bb7b0c89-AMS"
+        "CF-RAY": "379487a79d6572e9-AMS"
       },
       "status_code": 200,
       "type": "ok"
@@ -116,54 +82,20 @@
       "body": "",
       "headers": [],
       "method": "get",
-      "options": [],
-      "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/info"
-    },
-    "response": {
-      "body": "Redirect to http://public.opencpu.org/ocpu/tmp/x0f284ca594/info/print\n",
-      "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:41 GMT",
-        "Transfer-Encoding": "chunked",
-        "Connection": "keep-alive",
-        "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/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 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": "378c4b883c3a0c89-AMS"
+      "options": {
+        "follow_redirect": "true"
       },
-      "status_code": 302,
-      "type": "ok"
-    }
-  },
-  {
-    "request": {
-      "body": "",
-      "headers": [],
-      "method": "get",
-      "options": [],
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/info/print"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0450cd4d4d/info"
     },
     "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 19:36:41 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:50 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d31e8c2abd099fd108ffc890a5497070a1499110601; expires=Tue, 03-Jul-18 19:36:41 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d350736dd231254bc489e0f0550a2b3bd1499196950; expires=Wed, 04-Jul-18 19:35:50 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 +103,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 19:36:41 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:50 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b8939cd2bee-AMS"
+        "CF-RAY": "379487a98eda72e9-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 843e3e61f1891e1d8d864fe134fb17b9ffe7a203..56176b5d10754f8693560ff803dd493296fe2d96 100644
--- a/test/fixtures/vcr_cassettes/animation_flip_coin_graphics.json
+++ b/test/fixtures/vcr_cassettes/animation_flip_coin_graphics.json
@@ -4,18 +4,20 @@
       "body": "",
       "headers": [],
       "method": "get",
-      "options": [],
+      "options": {
+        "follow_redirect": "true"
+      },
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/graphics/50/png"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0450cd4d4d/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»–›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`‚",
+      "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���wX\u0014��\u0007�^���\u0015�\u0002�bA�\u0005\u0005Q\u0014ŎD\u0005cE�ݨ��`�1\u00160��.Vb�\u000b�\rP��C QĆ�JQ�.`�����\u0001\u0017�\u0005\t���.|?\u000f�}�3�3_.(oΜ9��0\f\u0001\u0000\u0000\u0000��(s\u001d\u0000\u0000\u0000\u0000��A�\u0005\u0000\u0000\u0000 e(�\u0000\u0000\u0000\u0000�\f\u0005\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)C�\u0005\u0000\u0000\u0000 e(�\u0000\u0000\u0000\u0000�\f\u0005\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)C�\u0005\u0000\u0000\u0000 e(�\u0000\u0000\u0000\u0000�\f\u0005\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)C�\u0005\u0000\u0000\u0000 e(�\u0000\u0000\u0000\u0000�\f\u0005\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)C�\u0005\u0000\u0000\u0000 e(�\u0000\u0000\u0000\u0000�\f\u0005\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`q,((���ZGG���9!!�����U�F�\u0018Q�O��ڵkDt�Ν�ݻ\u001b\u001a\u001aN�:���X�[�qΜ9s��I\u0019MP_��\u0000\u0000Px\fp'55���]�t�����}�mY{�V�nܸ���������$�\n\u000b\u000b����BaIII�f�\u000e\u001f>��͛A�\u0006�Y�F�g�q���\u0007\f\u0018PZZ��W\u0007�\u0007?\u0015\u0000\u0000\r\u0000\n,.]�x�_�~e�\u0017\u0017\u0017+))egg\u000b\u0004\u0002\r\r�������ݻw���3\f\u0013\u001e\u001enccS�\u0018\u0019\u0019ٮ];�n\u001f\u001b�����ɓ��2@��S\u0001\u0000�\u0000�\u0016!�\\\\\\.\\�P�ytt������ARR����رc���&N����\"�BCC\u0007\u000e\u001cHD/^��ܹsY�����D\"QE������\u001c\u001a\u001a*�\r>\u0017~*\u0000\u0000\u001a\u0000\u0014X\\��xM�4a\u0018&((hҤI;v�PRRJKKkڴ��ٳCCC���===%�ԣG�����(''���5��镖�\u0016\u0014\u0014Tt��8VVV\u000f\u001f>d��ρ�\n\u0000�\u0006@�a\u0018�34jYYY>>>III�����8���\u0007==���4SSӲ�����m۾{�\u000e\u001c8\u0010\u0011\u0011q��\u0019\"���nҤ�@ PV��h\u0016\u001fG(\u0014\u001a\u001a\u001afee�������τ�\n\u0000\u0000E�\u0019,.\u0015\u0017\u0017���������T�\u001e������,�\\]]]EE�c��ڴiS�ٓ'O,,,��~l\u001c%%%�|1 %��\u0000\u0000h\u0000P`q���\u000b�B\u001f\u001f����ׯ_�~�Z(\u0014\u0016\u0016\u0016�\u00193�֭[�߿�������A�\u001f��x������D��䔕�\u0015\u0014\u0014TXX����������o޼��8o޼����D���O\u0005\u0000@C��\"��m���\u0012ߎ��\f�a������y<ިQ�޼y#��������>��������ԩS����\u001auttBBB>6�͛7'N���W\b�\u000e?\u0015\u0000\u0000\r\u0000�`)������xɒ%���׮]ۮ]���\rh\u0018�S\u0001\u0000 WP`)���\"77����\u001aW.�N \u0010����������\"\u001bp\u0005?\u0015\u0000\u0000rEeݺu\\g�O���ZPP���۶m�O���ϟ�ڵk׮]e\u0011\f8��\n\u0000\u0000��\u0019,\u0000\u0000\u0000\u0000)�S�\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)C�\u0005\u0000\u0000\u0000 e\n��Mff�͛7�N!\u0017\u0012\u0012\u0012�����չ\u000e\u0002r���`���\\�\u0000\u0000P\f���#G���[�\u0014��q�FPPЀ\u0001\u0003�\u000e½w��eddhhhp\u001d\u0004�����srr�N!\u0017���m۶q�\u0002\u0000����ǻv�jee%��\u0015��\"��}�Κ5��\u0014\u0000 �V�X�(\u0000�v����\u001b\u001ck�\u0000\u0000\u0000\u0000�\f\u0005\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)C�\u0005\u0000\u0000\u0000 e\u001c\u0014X\u0019\u0019\u0019����_\u0017\u0000\u0000\u0000�\u001dl\u0014X#F�HNN&����޽{7mڴI�&\u0003\u0007\u000e|��-\u000bW\u0007\u0000\u0000E�0LBBµk�BCC���JKK�N\u0004�/�(����>|�@DK�.���������CϞ=�ϟ���\u0001\u0000@q���Y��o߾?��ӝ;w\u0012\u0012\u0012�\u001e=���4gΜ7o�p�\u000e�X}\u0017�_�u��emmm\"Z�jU�֭ټ:\u0000\u0000(����ŋ\u0017/Y�d���JJJ�~���\t\u0013&,\\�p���\\�\u0003�\u0005Kk�RSSKKK;u���ŋ��\u0007\u000f\u001e���su\u0000\u0000P8�o�^�jUHH����DuED���\u000f\u000b\u000b���_�\u001f?�I<�ڱ1�տ��S��{�NKK�ٳgÆ\r���\u001c3f̚5kX�:\u0000\u0000H\u0012\n�?(2�RRHI�Z���\u0003�woRQ�:Y�����K�\u0006\u0007\u0007���|�������LJ\u000f\u001fޭ[�Ν;�\u0019O�\\�B���˗��LD��D��4e\n�l�u�Ǝ�\u0002����DTRR������FDZZZ\u0017/^trrb��\u0000\u0000PũS�s'\r\u0018@C�P�\u0016�0��LAA�|9-[Fc�r���h˖-+V����\u0018��ݻ�ѣG����Z���v�ܹbŊ�� .br��3�3��w�o�!\u001b��Ƣ\"\n\u000f�iӨo_Z�F~*�F��5XjjjVVVVVVD��\u0017_�y��ҥK���\u001f�������K4޸q���B�9\u0001�\u0001066�:�\\*-�y�HG���H|�F����B���ʕ���}{�t\bG�B�\u001f��y�f�ƈ������\u0018����֪��o޼i޼9�\u0019�\u0016\u0013CK�ґ#Ԯ]�vMMrw'wwڹ�Ə�3gHM����\u001d����ݾ}{�ԩ\u0005\u0005\u0005\u001f�PTT���#����s\u001d\u001d��'O�8\u001d(�1c��\\�J��\\\u0007\u00019bjj�u\u0004��d\tu�L\u001f{�[_��[��o�jqò����={Vo���.{LJ°aî_�>m�4V�Ɂ�\u0014��k\n\u000e���?��\u000bIO�\u0016-�={XL\u0006b\u0018��x��>}�p��\u0019ȗ��D�iS�\b\u001f���������+�s�*��Sy��3\u001d:0�ڌ�\u0013��q���&1���r:q\u0017.\\رcG���7o��� �x��͵k��<����f��+\u000fk�Vz{3�o��N�̘1����2\u001a��I`�H���'\u0012�ؼ(\u0000\u0000\u0010\u0011m�B�_�yZ\u001aM�L����J����g��[�ҦM�\u0007� \u0010\b444��_CC���Xvy�KR\u0012���\u0017_�\u001f���ܰ��mc?#\u0010;�4\u0014\u0015\u0015�]��}��\u001a\u001a\u001a�������[�n]#��\u0000\u0000�\u0017/�ys��s\u001a\u001dMvv4|8�鑯/=zD�K2�7'mmJI�$)\u0011����&�)))�h\u0001VH\b�o�U���Ғrr���\u0013l\u0014X�fͺ}���\u0007���\u0004\u0002Azz��c��߿?w�\\\u0016�\u000e\u0000\u0000t�6\r\u0018Py��B\u0017.�\u001e\u001dM\u0016\u0016d`P���\u0001\u0014\u001b�^��������?\"\"���Qvy�ˣGԽ{��~+ml��k��A\u00056\u0016�\u0007\u0007\u0007'$$����\u001d\u001a\u0019\u0019�����ɓ��\u001d\u0000�%��Աc�!�G<\u001e1\f\u0005\u0007Ӽy�w/I��ټ9������������Ç\u000fmmm��snn�G����X\b&\u0017���Ȩ��_���Ɣ��rF vf�,,,�^�*�x���\u0006\r\u0000�\u001dZZTTT�%+�ƍ��\u001b�ϧ\u0011#$�\u0017\u0016��&k�[�nݲe˄B�����]�t)\u000b�䅱1eeUi��[��Ix��\u000bl�`\u001d:th�ȑ~~~���<\u001e/???!!!+++88���\u0003\u0000\u0000�nM�\u001fW\u001e\u0016\u0017��+\r\u001dJ��ռ\u0017���Un)�������}ɒ%?���{rR��\fۿII��ѣY\u000fȝ�\u001d).�r>�_��O�\u0012�\u0017q��\u0019,{{����\u001d;v����k����e��퉉�=z�`��\u0000\u0000@NN\u0014\u0016Vy��PH>>��L�_���$1W\u0014\u0019I}���Q����5k���Z����������Ν;�v�b?\u001b�F��s�*\u000fk�V�~M\u0006\u0006���~L`i�QUU�A�\u0006�s-\u0000\u0000���Q��t�\u0016��GDt�.�Ǔ�ee����]+�_�.]�S6J��\u0015+V����^^^VVVnnnVVV���IIIaaa��ы\u0017/�ؕ�1hՊx<��)ߩ��o��/-_�AH�p'w\u0000\u0000`���4q\"]�L<\u001em�B[���-'�֭#>��p\u001fտ�\u001b7n<|�0,,���\u0017�D���\u001e\u001e\u001e~~~ʜ�χK�7����;���<v���*w�\u0002v��\u0002\u0000h\u001cZ� __\u001a?�N�\"CÚ�dfҗ_���Ԥ\t������m]�(l,�7���h:z�ڶ�����\u0014\u0011Agϲ�\f*5��\u001f\u0000�\u0011ru��+�͍.\\ ��rJ$�S�h�\b��{�ߟ�|Pg\u000e\u000e\u0014\u0010@�g�ʕ��ie{q1]�L�\u0007SF\u0006�?�7=s\b3X\u0000\u0000���\u0013]�F~~�};�kW�|٫W��9\r\u001dJaa���uD����)<��\\�\u001f~�ׯI$\"UURR�\u0001\u0003��ajՊ�|�\u001d\n,\u0000�FF_�6n��\u001b��\u000bz����eK���8\u0015|\u0006%%\u001a6��\r�:\u0007�\u0000\u0005\u0016\u0000@ceeEVV\\�\u0000h��\u0006\u000b\u0000\u0000\u0000@�\u0014o\u0006���\nϒ�8]]]��<���\u001cQ���:\u0002\u00004j��\u0002\u0000\u0000\u0000�2ś�z��ETT\u0014�)@��^����IJK�:\b�\u0011��=�\u0011\u0000�Q�\f\u0016\u0000\u0000\u0000����\u0002\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H��=E\b\u0000\u0000\u0000�IOO?}��k�\n\u000b\u000b�HII�����ӳG�\u001e\\G�k(�\u0000\u0000\u0000�\u0006\f�lݺ544t��ف��\u0006\u0006\u0006D$\u0014\noݺ�s������nҤ\t�1�\u0014\n,\u0000\u0000\u0000�TZZ���{���He��\u0005E***\u0003\u0006\f\u00180`��G�\u001au���\u000e\u001d:p�Sna\r\u0016\u0000\u0000\u0000H���]\\\\�/_.^]��ݻ�/��2mڴ��\u001c��)\u0004\u0014X\u0000\u0000\u0000PEtttnn����x#�0\u000e\u000e\u000eO�<�h������oׯ_�z@\u0005�\u0002\u000b\u0000\u0000\u0000�ؼy�ƍ\u001b�[\"\"\"f̘\u0011\u0013\u0013#������\u0007���,�S\f(�\u0000\u0000\u0000�RAA�\u000f\u001f,,,�\u001b��ⴵ������\u001f;v��˗Y\n�8��\u001d\u0000\u0000\u0000*����]�t�h\\�l\u0019\u0011�����{��u��96�)\u0014�`\u0001\u0000\u0000@���,cc��755MOO�]\u001e\u0005�\u0002\u000b\u0000\u0000\u0000*\u0019\u001a\u001a~҃���ٟT�5\u0012�w������֖�\u0014 Gtuu�ۛ��\u000e\u0002rD%>��\b\u0000��������u����\u0003l�U��\u0015X%%%EEE\\�\u00009\"\u0012���{���:\b\u0000@C`hhXZZ���ibbR��\u0017.\\طo��S)\u001c�+��������N\u0001r��ϏBB(-��  G���\\G\u0000P`\u000b\u0017.ܴi����gLL���A�f�XH�X�\u0006\u000b\u0000\u0000\u0000�\u0018>|xrr�իW%�SRR���+\u000e����,Y�i�&v�)\u0006ś�\u0002\u0000\u0000h���)1����Ԕ,-IKKF�9r�ȨQ���矱c���!))���{˖--Z��Q\u0006��\u0002\u000b\u0000\u0000@\u0011ܸA?�H\u0002\u0001u�@����M\u000f\u001f��\t�XA2�'���{�ҥ\u0005\u000b\u0016�9s�o��ѣ���R٩�o�\u0006\u0004\u0004�����cǎR�tÀ\u0002\u000b\u0000\u0000@�\u0015\u0016ҬY��C���j�\u0017/h�j27�m�HUʿӵ��\u000e\u001d:t�޽C�\u000e}���jjj��ʥ������Ǐ���o?�\u001eh \u0014X\u0000\u0000\u0000rM �1ch�,��V��\u0015�>M��7�:E��d���]��޽��\u0018�\u0011\b\u0004\u001a\u001a\u001aR�D���\u0013\u0000\u0000@�-[F�'�\\]U���{wڲE�A���P]�\u001d\n,\u0000\u0000\u0000y��\t%%��WeKP\u0010Y[��\u000e9;SBBe��et�\n�{�~F�\u0011\n,\u0000\u0000\u0000yu�\u0010-]Zy��F�'��?��R�~��YyJY��Υ�@�3B�P`\u0001\u0000\u0000ȫ?��>}*\u000f���Ύ�\u000f'==��G�H���nn\u0014\u001e�~F�\u0011\u0016�\u0003\u0000\u0000�+eeRQ�<tq������‚\f\f*���Qa!����0�\u0005\u0000\u0000 �\u0018F�@\u001e��4!��� �4�v��c� \u0015��\u0002\u0000\u0000�KJJ$\u0014J6fe��\u000f%%\u0011�/��(ð\u0016\r�\u0015f�\u0000\u0000\u0000�U�&��\\yX\\L��dcC115��\u001e\u001bKvvl��Z��\u0002\u0000\u0000�W��t�H�!�OB!��Pr2�~M�_W��:r�Əg?#�\b\u0005\u0016\u0000\u0000��\u001a7�\"\"()����]��'K�ʏ��\b����[�ۗ�� A��`YYY���r�\u0002䈮�.y{S^\u001e�A@����s\u001d\u0001@\u001a��i�\u001e�<������l�y��oi�\u001c:{��|�Q�W`���\u0014\u0015\u0015q�\u0002�H$���)7�� \u0000\u00002Щ\u0013m�HÇӮ]Խ{\r\u001dnޤիi�>jт�p�Q�W`%%%EEEq�\u0002䈟�\u001f��PZ\u001a�A@�\b���\u0005P\\��S` �ZE\u0002\u0001yxP�.dlL��\u0014\u001bK��S˖\u0014\u0014D��\\��*\u0014��\u0002\u0000\u0000ht,,��)JL��`ڷ�22�̌lm��a27�:\u001c�\u0000\u0005\u0016\u0000\u0000��hݚ\u0016,�:\u0004�\t�\"\u0004\u0000\u0000\u0000�2\u0014X\u0000\u0000\u0000\u0000R�\u0002\u000b\u0000\u0000\u0000@�P`\u0001\u0000\u0000\u0000H\u0019\u0016�\u0003\u0000\u0000��ͥ�\u0017)<�RS��\f\r����͹N&\u00170�\u0005\u0000\u0000\u0000��a�ߟ��I �\u001f~�\u001b7��\rڷ��4�i�h�2�~�(�\u0000\u0000\u0000�\u0013��Є\tTRB��F�gS�V��4q\"]�NݻӰa���iJ��\u0016!\u0000\u0000\u0000������FS�~�äIԺ5yyѥK���^09�\u0019,\u0000\u0000\u0000���\b\"�R]\u0005\u0005��5�萳3%$�7��KÇӞ=�\u0007�\u001f(�\u0000\u0000\u0000�n�n�\r\u001b*\u000f��h�d���T�׏<=+O͙C�NQi)�\u0019�\u0004\n,\u0000\u0000\u0000��w�HS���*[���Ύ�\u000f'==��G�('����\u001a9;ӭ[�$�\u0007(�\u0000\u0000\u0000�\u000e����J��\u000b]�P�yt4YX��A��޽).��xr\u0006\u0005\u0016\u0000\u0000\u0000�Az:��Vi��I\u0013b\u0018\n\n�I�h�\u000eRR�<kfF�ޱ�Q~(�S�VVV���\\�\u00009���K�ޔ��u\u0010�#*��\\G\u0000hp��)=]�1+�||()��|���r*7�ʄV#�x\u0005VIII\u0011v0\u00031\"��޿��\\��\u0000\u00004hm�RPP���bru��C��9RQ����1�m�Z:y�x\u0005VRRRTT\u0014�)@����QH\b��q\u001d\u0004�P⿤\u0001��ll��c\u0012\bH]����'��||(9���e��J��e:����\u0001k�\u0000\u0000\u0000�n&N�\u0003\u0007*\u000f�ޥ�x�����x���M��\"}}Nb�\u0003\u0014X\u0000\u0000\u0000P7��\u000f�?O�\u001e�\u001fn�B\fS��Ą�(3�V����9L�9\u0014X\u0000\u0000\u0000P7jjt�8͜Iw�|�Or2�\u001bG��Uv�j|\u0014o\r\u0016\u0000\u0000\u0000p�U+�x��M�Νi�bj֬�Tn.\u001d>L|>��:q\u0017Q.��\u0002\u0000\u0000�OѴ)]�B!!�`A��X�ꔖFZZ4~<ݼI��.P`\u0001\u0000\u0000�g\u00181�F� \"�ʢ�\u001223���h��\u0002\u000b\u0000\u0000\u0000��ؘ�\u0004�E������Ŝ\\\u001a\u0000\u0000\u0000@ָ)����3228�4\u0000\u0000\u0000���q�PWWW��6B��u��JJJ���,\u0004\u0000\u0000\u0000\u0000`\u0013\u001b3X��g�^�Ǝ\u001d���������\u0019\u001a\u001a��ť��&\u0000\u0000\u0000�\u0010�Q`������\u001f}��\u00196lXll����������I�~�\u0000\u0000\u0000\u0000\r\u000bKO\u0011���,^�xĈ\u00113g�<u�@ `�\u0000\u0000\u0000\u0000�cu�\u0006++����C�\u000e���hii�yi\u0000\u0000\u0000\u0000ְ�\u0014����Y�N�>]TTt��%��\u000e\u0000\u0000\u0000�\u0002�6\u001a�}��ԩS\u000b\n\n>�᯿������hcc���(�t�H���h�|���:\b�\u0011��~�:\u0002\u00004j�\u0015X\u001e\u001e\u001e\u001e\u001e\u001e�t066nӦ�D���~AAA^^�,���)--��D���:\b�\u0011�H�u\u0004\u0000h�X-�D\"QAA������ߚ�������h����������M@PH~~~\u0014\u0012B��\u0003Ĉ��\u0000\u0000�\u001a\u001b\u0005VQQ�\u000f?�p�ԩW�^������XZZzyy�Z�JCC��\u0000\u0000\u0000 �\n\u000b\u000b/_�\u001c\u0016\u0016���RRRbnn���8j�(l�\u0003\r\u0000\u001b��g͚u���\u0007\u000f���\t\u0004����cǎݿ�ܹ,\\\u001d\u0000\u0000�P@@��\u0003_�|�`��gφ���]�V$\u0012yxx�Y�\u0006����cc\u0006+888!!��ܼ���ȨO�>'O�lݺ5\u000bW\u0007\u0000\u0000�\"\u0012�fϞmdd\u0014\u0019\u0019)~\u001f������g�̙\u0001\u0001\u0001���gΜ144�0'@}�1�eaaq��U��k׮�lْ��\u0003\u0000�\\Y�re�N��l�R�*\u0011%%�\u00193f�Z����\u000b�\u0005���\f֡C�F�\u001c���gkk������\u0013\u0012\u0012������Y�:\u0000\u0000ȏ���7o�lݺU��a�޽{\u001f=z��ں����9..n�޽\u000b\u0016,�\"&@}�Q`���'%%EFF�|�2''���������IU��M\"\u0000\u0000�\u0013�6mڵk�xKDDD```LL�D�������Μ9�e\u0001����ZUU�A�\u0006�s-\u0000\u0000�O���B�Pb\u0001n\\\\�������Dguu�\u0003\u0007���\u001f���,f\u0004�\u000e�g\u0001\u0000\u0000H�ӧ��DEEԴ)u�BՖX������S�qٲeD���׷o߿��\u000b\u0005\u0016(\"��E\b\u0000\u0000\r�?��\u000f?P�>�m\u001b�����t�4��Ҕ)��x�w�ޙ���}`ss�4�!\f�\t3X\u0000\u0000P\u000f\u000f\u001f��\u000f͞M�n��[:�ܡٳi�x�=��AWW����u\u001f;//���I/+\u0000{0�\u0005\u0000\u0000���#�=�Ξ��S%�+\"�у�^��x��+k���z��i݇��I۶m�\u0015\u0016�M(�\u0000\u0000�\u0014\u0015ѬYt�\u0014ղ���*��3EG�o�\u0011Q�\u000e\u001d�<yRRRR�+\\�tiȐ!R\t\u000b�2\u0014X\u0000\u0000�Yv�iӨU�ʖ� ��&\u001d\u001drv����F%%ڵ�֮-;���<x�`]����522255�rl\u0000V��\u0002\u0000�����ԩ��ii4y2��Sj*��G�������ښ��#�9s�>}�ɓ'\u0012����T�2JDyyyK�.ݸq�,�\u0000\u0000\u0019B�\u0005\u0000\u0000�.1�,,H|\u000b��h�����IO�|}��#�ɩ<;|8]�ND���Ǐ\u001f�6mڃ\u0007\u000f>6vFFƸq�֬Y�Wւ�R��\bmll\u001c\u001d\u001d�N\u0001rDOO��ϧ�|���\u001cQ��7�#4tIIԦM�\u0016\u0017\u0017�ӧ���h�� \u0003�ʳVV��ZXX�;wnʔ)����\u0016-\u0012�sQQ�ɓ'\u0003\u0002\u0002~���/��B�_\u0003�\f)^��������u\n�#\u0002���ߧ�l���\u001c\u0011�D\\Gh�\u0004\u0002RW����\u0011�G\fC��4o\u001e�JJ�g��I �8jѢExx��3g������[�h��������Q�FݸqCSS���\u0004@&\u0014��JKK����:\u0005ȑ��\"��w�n� Fdo�u���ܜ޼�l��\"\u001f\u001fJJ\">�$�\u0005))Ԭ�x���҄\t\u0013&L� \u0010\b��Ҋ���7o^��9\u0000\nJ�\n,\u0000\u0000�5I,�*.&WW\u001a:�Ν#\u0015\u0015��\u0011\u0011��T�H����\u001fE\u0004h\u0010��\u001d\u0000\u0000>��2u�J���-|>\t���C����5�~MBa���\"\n\u000f����\b\n�\r�`\u0001\u0000�gY��������_�|�.�Ǔ�ee��\f21!\"ں��O'55nr\u0002p\u00013X\u0000\u0000�Y��i�|�>�JK���l!�)��/��'�!�)��Ο�G�h�Ln�r�����Ec�\u0019,\u0000\u0000�\\����ό\u0018qq�ȓaa\u0019\u0019\u0019e{.��暘�x{z�IHPz���\u001c��Da��0��өS��N��$\u0012QI\tu�@ӦQ߾\\�\u0003�B�\u0005\u0000\u0000�/i���\u0007\u000e|�緻k�f�摕\u0015ikSJJjp��e����\u0007\\�ܪq>\u001b��\u0005��P�>��_�u��\u001e���'��E\u0003\u0000\u0000 \u0000IDAT_e�0hXP`\u0001\u0000�gz���i�\u000e\u0006\u0004t�ԉ^���W鯿������==�߹�ѓ'\u0013&N\f\b\b\u0010\rN�p�\u001e͛GG�P��:u�Ç��\rrw�_�&M��\u00072�\u0002\u000b\u0000\u0000>GAA����\u0003\u0003\u0003-�\u0016�[YѼy\u0012}:u�\u0014\u0018\u0018���u�\u001e��AJNde�ܹt����_U\f\u001cH����EW�ְ�\u0005(>,r\u0007\u0000�����?�|K��\u0006�\u0018�qpp\u0010�����\u0005\u000b���X\u000fȝ\r\u001bh͚��*(���IG���)!��[�^4h\u0010\u001d=�ED�9\u0014X\u0000\u0000��JKK�]���_�7FDD̘1#&&F��\t\u0013���J�\u001e6l���)>��\u000e-?LK�ɓ�ߟRS�_?���y�B:r����\u0002\u0014X\u0000\u0000��n߾ݿe�*�D��ⴵ����FIIi�\u0001��-gaa4bD�at4����ᤧG����\u0011��T��Ң6m��\u000b�c����\u0002\u0000�O������J4.[�l���e;5H�ԩ����J4�=}J]�T\u001e��Ѕ\u000b�GG���䓃�;��\u001dUh0P`\u0001\u0000�'�����ӫ{\u0003\u0003���\\��#����_y��Q�&�0\u0014\u0014D�&ю\u001d�[�\u0019\u0019U�ӂ�\u0002O\u0011\u0002\u0000�'kҤIzzz���������.�\u001c15���*-YY��CII�瓽�d�w�gO��\u0001k0�\u0005\u0000\u0000��k׮���u�\u001f\u001d\u001dݭ[7��#]�ПV\u001e\u0016\u0017��+��PLL\r�\u0015\u0011ݹC�n�B\u0003�x3X666���\\�\u00009���G��S~>�A@����\u001b�\u0011\u001a�N�:=y򤠠@WW�_;��������l5LNN�n\u001d����n��PH>>��\\ޡe�ʍ�����{27�&*Ȓ�\u0015X999���\\�\u00009\"\u0010\b��}���:\b�\u0011\u0011ު+{s��ݺu�\r\u001b���֭[����\u0010I.��ӈ\u0011t�\u0018M�NDt�.�Ǔ�na\u0019\u0019��&�\r\u001bh�\u0012\u000eB��)^�����X��)**����4���\u001c\u0011�x/\u0006�j„\t�Ǐ�r力��x{JJ���իW\u001f<x�v�Zv�q���͍z� ;;ڲ��l��ۅ\u000b��MÆ�\u001b\u000eX�5X\u0000\u0000�9����\u001e=�cǎÇ\u000f3\fS�\u0003�0�\u000f\u001f�駟�\u001d;&�cV\u0003��I'OҼyt�Z�\u001d\u0018��G��\u0001v�\u0001{\u001a�O<\u0000\u0000H\u0015��\u000b\t\ty���A�~����̲�_~�eРA�^�\n\t\tiDo!�м9�������Aׯ�@Pޞ�Og�ҠA��\u001d�����iJ�!ŻE\b\u0000\u0000�CMM��OMM=����ONN\u000e\u0011\u0019\u001a\u001a\u000e\u001c8�ĉ\u0013�jy�q���OG�PB\u0002�9C۶�PHD��I�\u0006щ\u0013��\u0007\u001a\u001a\u0004\u0014X\u0000\u0000P_���\u000b\u0016,X�`\u0001�A䏍\r�[�u\b�\u0000n\u0011\u0002\u0000\u0000\u0000H\u0019\n,\u0000\u0000\u0000\u0000)�-B\u0000\u0000�F��˗w��MOO��xm۶��J�Ƨ =��\u0002\u0000\u0000h\u0014�|����w�}���fbbRZZz�…~���_������t\r\rf�\u0000\u0000\u0000\u001a���\"\u001f\u001f\u001fSSӋ\u0017/\u001a\u001a\u001a��\u0012�D�N�ruu=|����\rW\t\u001b\u001e�`\u0001\u0000\u00004d\"�hҤI���۷o����HYY����_~�1cƫW�8I� ��\u0002\u0000\u0000h���������_�����\"  `���x�����\u0002\u0000\u0000h�rrr���\u0017-Z$��0���Ó'O�\u001b���\u0007\u000e\u001cx��iv\u00036X(�\u0000\u0000\u0000\u001a,>�����`DDČ\u00193bbb�w�7o^`` ��\u001a2\u0014X\u0000\u0000\u0000\r�͛7�\f\u0019\"�\u0012\u0017\u0017������]����ч\u000f\u001f�eo���S�\u0000\u0000\u0000\rVjjj�\u0016-�[�-[FD|>���͚5KOO777g#\\��x\u0005������#�)@����������u\u0010�#����u\u0004\u0000z���ѣG�ܹ�0���Jii���ń\t\u0013�\r\u001b�Z\u0006�a�����_II�a\u0018��i<\u0014�����ILL�:\u0005�\u0011�@@��Sv6�A@��I(�Vaa�E��������m۶)+�/�y��ف\u0003\u0007~��ǃ\u0007\u000fZXX���iӦo޼iժU\u001d��}����L��\u001a\t�+���Ң���N\u0001r����~���Ҹ\u000e\u0002rDdo�u\u0004h����F�\u001e=���c�J�j׮ݶm�\u0012\u0012\u0012&M��gϞ�]��:�������gΜY�ι��ZZZxs�T`�;\u0000\u0000�4M�:u�ʕի�\n666�ϟ�3gNFF��Ì\u001e=��ɓu��=p�@�Aݡ�\u0002\u0000\u0000���\u0017/�o����U����S͚5۰aúu�d����dРA�����^��t钷���#5\u0012(�\u0000\u0000\u0000�f���+W�\u0014o�ؾS�\u0007\u000f~��iNN��#�\\�244444T�1%%��ں�055u���\u0007\u000f\u001e��AiA�\u0005\u0000\u0000 \u001diii���\u0006\u0006\u0006⍵�;5z��+W��:����3g\u0002\u0002\u0002֮]��Ç�\u001dBBBƍ\u001b�k׮\u000e\u001d:�:L�x��\u0001\u0000\u0000��ӧO�t�\"�X˾S]�v�v�\u001a\u000b�tuuϝ;\u0017\u0018\u0018���ڹs�>}�������?z�(<<��/�\b\r\r��\u001eh�\u000f\u0014X\u0000\u0000\n,!!��Ç999���\u001d;v�ܹ3׉\u001a����O*S������d�G�����ɓ'O�\u001c\u001f\u001f\u001f\u0017\u0017\u0017\u0017\u0017���ۧO�\u0015+Vhjj���QA�\u0005\u0000�x�B����\u000f\u001d:dmmݭ[733����ݻw?x�૯��9s��*�y瀉��ݻw��?==�I�&��S#;;;;;;�/�\b�o \u0000���������ׯ_XX��ʞ���ݻw\u000f\u001d:400\u0010�E����z˖-u��ΝN�:�.\u000fp\b\u0005\u0016\u0000�\"��ƌ\u0019�aÆ���W?����t������\u001b7.44T__��������@ ���055�K����\u0010Y�\u0002N�)B\u0000\u0000E�dɒŋ\u0017�X]U�ٳ�u��Ν�Z*��t�����ץ�ŋ\u0017{�����d\u001d\t8�\u0002\u000b\u0000@a<y��ݻw�G�\u0016o���%\u0011\r\u001a4HYY��?�d7 ���k^^ޅ\u000b\u0017$�%�z�򥟟��ի�M\u0007�A�\u0005\u0000�0N�81�|�mbID\u000b\u0017.<~�8[Ѡ����\u0003\u0002\u0002\u000e\u001e<��\u000e������G�\u001c�=�\u0006\f\u0005\u0016\u0000�ˆ����9X�&�������g+\u001aT���\n\n\nz��Ő!CBBB\n\u000b\u000b��E\"Qtt�\u00193�n����۷o�mN�),r\u0007\u0000P\u0018\"�HMMM���M,������_��PUUݼysbbb``�]�\u0004\u0002����H$�֭������\u0003�\u0001A�P`\u0001\u0000\u0000�D�֭����o���� �\u0001�+����F�\u001c�u\n�#\u0006\u0006\u0006�z5��-h�Tk��i\u0018�Ba�_�+\u0012�d\u001a\u0006\u0000>F�\n������X�S�\u001c�2e�^H\b��\tP\b�\u0006zk�W�^�n�\u001a0`@]:߻w�cǎ��\u0004\u00005R�\u0002+;;�Ν;\\�\u00009\"\u0010\b��}JK�:\b�\u0011�ޞ�\b21iҤ͛7ױ�ڳg�W_}%�H\u0000P#�+�\u0000\u0000\u001a-;;;uu����A�\u0006�����YY���c'\u0018���\u000f��\u000b�Φ&M�K\u0017jْ�@ [(�\u0000\u0000\u0014ɮ]��\r\u001bfllܭ[��Ɣ�\u0014�>\t\t\tK�.\r\u000e\u000ef=\u001dT#\u0010Ё\u0003��/Թ3u�H\u0006\u0006��\t\u001d=JYY�d\t��s�\u000fd\u0005\u0005\u0016\u0000�\"���;{�ח_~9s�LU�*���D��Ǐ\u0007\u0004\u0004���/&&&\\��r))��E\u001e\u001e\u0014\u0019I��UNeeц\rt�4\u001d:D��\u001c�\u0003\u0019B�\u0005\u0000�`�5kv���ݻw;::��߿{�����999qqq7o�\u001c9r�k״������ed��'�]��p�ؘv�s��ӓ.^�:?\u0019\n��a>h\u0003\u0000аihh,]��֭[#F���Ύ��NOO\u001f2d�\u001f��j�*TWra�\f��ǚ��\n�Ǔ�+}�=[��=��\u0002\u0000PT***����Jvyt�:YZ�\u0017_T�\u0004\u0005ъ\u0015��L�zў=dcS�>o\u001e9;���df�IR�\u0011�`\u0001\u0000\u0000H�ѣ�hQ�aZ\u001aM�L����J����g�)%%��s���\b2�M�U\\\\��u\u0001\u0000\u0000ؐ�Lm�T\u001eFG��\u001d\r\u001fNzz��K�\u001eQNN�Y77\n\u000fg?#�\u0014\u001b\u0005VFFƼy�\u001c\u001d\u001d�/_��ݻ�]�jjj�������,\\\u001d\u0000\u0000�UEE��[��Ņ.\\(�<:�,,���\u0011��^<`\u0005\u001b\u0005�̙3�������gddt��m�ĉ���\u0003\u0006\fX�`\u0001\u000bW\u0007\u0000\u0000`�P(�T �GM�\u0010�PP\u0010M�D;v��\u0012G�%l,r���x��q�V����\u001e=���chh�d�\u0012kkk\u0016�\u000e\u0000\u0000�*\u001d\u001d�˓l��\"\u001f\u001fJJ\">�$^�TP@x��ac\u0006���8==��ڷo��i###\"������a��\u0000\u0000\u0000l36������bru%\u001b\u001b������(,���X\f\u0007l`��Z�n������#�0_~�%\u0011����e�̙,\\\u001d\u0000\u0000�m\u0013'ҁ\u0003��|>\t���C����5�~MBa��Çi�x�3�L�q�pڴi���QQQJ��嬮����?�\u001a5���\u0003\u0000\u0000��Ã\\\\h�$j׎���]��'K��\u000e\u0019\u0019T�.�\u000b\u0017�M�*��A`i���m�~��W��嗛9sfϞ=CCCٹ:\u0000\u0000\u0000�����A�6�޾%\"ڲ�\u0018��GYu\u0015\u001dM�v���܆\u0005Y�l'�۷oO�:����c\u001d~��W�H4޺u�gϞ#G��q:P$\u0006\u0006\u0006�z5}��u\u0010�#�|>�\u0011��kۖv���ח�\r�<[RB��QH\b�;G��\\�\u0003���������C�N�t%�\u0011!JJJJNN����e4P0S�L�\u000b\t��,���\u001c\u0011*�5\u0015 \u0007�u�K�h�Fں��\r��\u001d�Ȉ��):�\"#i�D\n\r%55�S�L�Z`�D���\u0002]]]�:��gbbbR6�*���,11�Ν;�\t\b\nI \u0010������u\u0010�#L�\u0007�\u00008alL?�D\u001f>Px8=}J��dfFnn���{eA��F�UTT��\u000f?�:u�իW���***���^^^�V����`!\u0000\u0000\u0000\u0000�tt\b�u52l̢Ϛ5���\u000f\u001eLKK\u0013\b\u0004���ǎ\u001d���ܹsY�:\u0000\u0000\u0000\u0000�ؘ�\n\u000e\u000eNHH077/;422�ӧ�ɓ'[�n���\u0001\u0000\u0000d*'''666--MSS������^\u0005��\u001a=6f�,,,�^�*�x��-[�pu\u0000\u0000\u0000\u0019�s���ѣ'M�T�88++�������_�renn.��Kl�`\u001d:th�ȑ~~~���<\u001e/???!!!+++88���\u0003\u0000\u0000H\u001d�0����;w������$�^�x���mǎ\u001d�z��$\u001ep�^\u0005�…\u000b=<<���[�\\���}RRRdd�˗/srr\f\r\r}||���TU9�$\u0002\u0000\u0000�>V�^����믿V��Dܘ1c���;~�����у�x�z�8���\u000b\u0016,x���رc=<<������IUUuРA�\u0016\u0000\u0000��\b\r\rMKK\u000b\b\b��O�&MΜ93f̘��p\u001d\u001d\u001dֲ�gpww����ܹ�…\u000b����2f��`�_�>>>>**�m۶�֭kѢŬY��_�^RR\"�p\u0000\u0000\u0000�F$\u0012���\u000f����\f�888<y�D��iӦs��ٱc\u0007�\u0001�\r\u001d:t�СC�\f��x�\u001aS\n�܍��Z�liee%\u0010\b���֭[gaaq�����\f\u0000\u0000 obcc�\r\r\r+Z\"\"\"f̘\u0011\u0013\u0013S����\u0017^�+��ϟ���ӻw���D�@P\\\\|���C�\u000e\t\u0004��\u001e�^\u0005ֶmۜ��Z�hq�С�ݻ߹s��ÇQQQ�����\n\u0000\u0000\u001a���p777񖸸8mmm�^)���ҦM���D����۰a���m^^�Ν;�lٲo߾����h�Z�����p���\u0007KL����sϞ=�\u0019\u0019\u0000\u0000@>����\u001f?���?������w��e\u0018F(\u0014Μ9������K|\u001f\"KKˤ��O��177WWW\u0017O��iǎ\u001d������{��x񢾾~�\u001e=\u000e\u001c8�y���;�o߾C�\u000e���\f\u001a4���?�|�\u0005\u001a\u001a\u001a:::cƌ���\u0000\u0000\u0000�I(\u0014������ϝ;������l۶MYY�E�\u0016�w�~���iӾ����ח�G***B��.#�����ʕ+JJJ\u0006\u0006\u0006�߿\u0017\b\u0004ݻw�7o^���e�e\u0001\t�B\u0003\u0003����D�.]��y�>�\b�U`���<|�p���Ddii�������ڟ�\u0000\u0000\u0000Ph͚5���޳g���\u001c\u001c�Oijj�\u001e=z������\u001b=z����555����7o���^�xq۶m��ͻ|����VY�H$�}��%K:w�����\u0017\u001b���ĉ\u0013�\f\u0019\"\u0012�\u0016-Z���<r�ȁ\u0003\u0007~�pL=���x��011Q__�>\u0003��ŋ\u0017���Gz�gBC����4m�\u0010�\u0003\u001f\u0015\u001f���2��\b\u001a����\u0016-Z<{�L��y��\t\t\t\u0015��Ν���\u0016�D\u000e\u000e\u000e\"���1���3a„���c\u001dv��=nܸ����$\u0007\t3f�x��y�aIIɹs�N�:URR���˭[�����\u0007��\"w33�����÷o�\u001a\u001b\u001b���%\u0000\u0000��������5kV��0���Cii�x7\u000f\u000f\u000f==�\r\u001b6\f\u00180���H+ܸq#,,,00�b⪺y�湸��\\�����cTUU=<<&L����jii��7����}�h�����w���&MjݺuJJ�ɓ'����3`]��ٍ\u001c9R�W\u0001\u0005b``@�WӇ\u000f\\\u0007\u00019���s\u001d\u0001\u001a���������nÆ\r�7o&��������\u0018333��˖-�޽��\u0017/j\u0019P(\u0014�Y�&$$DY�rʃa�޽{\u001f=z��ں�qΜ9�F�JHH������\u0004�\"\"\"|}}����\u001b%�6��z\u0015X\u0013&L�֭�ٳg�={fff\u0016\u001e\u001enggW�\u0001�\"99966V�W\u0001\u00052e�\u0014��\u0010���:\b�\u0011�2\u001bo��F����F��<y�i�\u000e\u001f><cƌ�=\u001a\"##�����E�\u0016Y[[׾���ի...\u0012�j�Ul�;�^�z׮]xN_F�O�>q�Dooo�<�Y�!:t����[�\u001cu���]��r�2\u0002���ߧ�4���\u001ca��\u0000\rӃ\u0007\u000f����h���s�ν�����\r\f\f�U'M�޽�dɒŋ\u0017���%$$���~l�K�.͙3G���]�z�����_K�K\u0001I%%%k׮��F�'�W�%��4\u0000\u0000\u00009���U��X]]�СC����\u0011#lll\n\u000b\u000b�ܹ�����ŋ��P==����6mڤ���/V�����\u0012���-[FD��ns+))���\u0017\u0016\u0016J�\b\u0000qK�,ٱcDze˸���d\u001a\u0000\u0000��322��ɩ8\u001c;v�رc\u001f<xp�ܹ���\u0016-ZXXX\u001c;v��Ĥ�Cff���m-\u0003�������=���Ann.\n,Y������۴i���y�s\tܬ��d\u001a\u0000\u0000������w��xc�Νutt\u0016,X �\u0006�̃\u0007\u000ffϞ]ˀZZZ�4#���QQ��t\u001d:tH���k\u001dh�d�ă�\u0000\u0000\u0000\r�СC��������������q={�JJJ���?i�\u000b�κ&�=Z�f��;�\u0006\u0000\u0000 �\f\r\r;t�\u0010\u0016\u00166x�����y����g�ر\u0007\u000e\u001cprr���/_�\\����#455\u0003\u0002\u00026l�P�\u00147�\b�;�\u0006\u0000\u0000 �֭[7j�([[[񩩔�\u0014�n���O�<ٴiS���s�ƍ�\u001f?�رc�=\u0005\u0002���_��ߡ��|~�.]�w�.�1�U`�M�\t�����M�־S-\u0000\u0000@\u0003`jj�g�\u001e\u000f\u000f����\u000e\u001d:�؇���ر#((�.�\u0019�駯��*$$D|7,���a�y��͞=\u001boL���C�\u0012Q���B��l�[=\u001f��\u001a�����\u0007�x���&&:88�|��>\u0003\u0002\u0000\u0000ȿ�]��8qb޼y+W�\u0014��'\u0012����===/_�|���:�h�M�6�7o\u001e1b���F���{{{�m����[:_\u0000��ݻw������VVVZZZ\u001e\u001e\u001e���=Z�\n��K��m�633SGG�U�VC�\f���π\u0000\u0000\u0000\n�M�6���������\u001d0`��\u0003������N�>�z��\u0003\u0007\u000e|�#����;r�Ȓ%K�Ν\u001b\u0015\u0015U��سg϶l�2dȐI�&�X�B6_\n��={����۷o?|�������j\u0002�v���v�\u0017/�v�UVV^�x1\u000b�\"\u0004\u0000\u0000�\u0013������R\u0019�]�v�/_������_}}}KKKUTTZ�l���\u001e\u0019\u0019���.���HNNNJJJAAA���[�l��K�nܸ���Xv�����������G�W�բE�[�nU�lݻw�>Q\u0000\u0000\u0000\u001a�>}���Ӈ�\u0014u%\u0014\nO�8q��\tmm�6m�hhh���=����aŊ\u0015��~-�6mz��]\u0017\u0017��ø��ڷب]�\n��;w�\u001b7���9//oڴi���Ǐ\u001f�π\u0000\u0000\u0000�\u0010������+WWנ� ]]݊v�a���ƍ\u001b�p�BOOO\u000e\u0013~�M�6�\u001b7n̘1�[�NLL�x���Ç?{�z\u0015X\u0003\u0006\fx���K����6mZ�!V}\u0006\u0004\u0000\u0000����1�<I��TRBD��F�{��7}�9�zJNN���<p�@�Ν%N)))�������̙����f͒E\u0000Y����޽{pppZZ����w�}gee�٣��\u001d����S�L�� \u0000\u0000\u0000���i�\"�ˣ9sh�\u0006*�\\���\"#i�\njڔ�o'mm)^P(\u0014~��W\u0007\u000f\u001e��5����ǎ\u001d\u001b5jT�.]\u001c\u001c\u001c�xu�\u0011\b\u0004W�^���]�x1�Ͽx��\u0005\u000b444>o�z\u0015X5�_\u0016\u001d\u001d]�1\u0001\u0000�\u0011)*�?��ׯ��\u000723#\u0007\u0007�Z�O��N��ѪU4lX�v55\u001a<�\u0006\u000f��\u0017i�0�p�����ѣG���$�+�az��}��ъ�˨���ݻwڴi���Һ�L���<|�p���Ddii������ ��\u001b�^\u0005�O?�T�\t�0)))?���\u0013����g\u0006⌌�h�6��\u001f���\u001cQ;z���\n�»w捻�\b\u0004��͛����\u001e�ot22h�F�w�\u0006\r\"++23��o��o��;Z���\u000e�:�\"()!//��^�>�g�\u001825%//\n\r%\u0015\u0015�\\�ĉ\u0013�/_\u0016o���\b\f\f���)--\r\f\f��������ʥ���^�Z�r�U����ru����_���۴iCDvvv���]�t����rqq\u00198p�����3�z���������\u0012�XF�\u001c�{�\u0004eeq\u001d\u0004�H�r�6��T����6m��������������}}}[�l�v�,�h���h�2Z��v�����PF\u0006}�\u001d\u0005\u0007ӎ\u001d��\u001a�n�~\u001a1���\n\n�\u0015+(9�z�={�Ʀ��_?rv�#Gh���_3==���H��=Ǹ�8mmmMM�ɓ'O�4��\u001flѢE٩ӧO���nnn�gϖ��\u001133�����\u0002��޾}[�}�\u0019�w�\u001e�Ǔ��-^�X��_\u0005v$&&2M�2D��GŇ���L�-\u0012w��\r\u0007\u0007��������/gg瀀\u0000��(���b\u0006\f`22j�?3e\nKy\u0014�P�880��凩�\f��\\�ļ�|�\u001dck[�sa!ӻ�T.\u001b\u001b\u001b��7�To��_455���%ڟ<y2{�l�@0w�ܕ+WJ%��̘1����\u0015��N�266^�`�����ŋMLL�\u001e=�ك��?�\u001c�������Ϙ1CZ�5\u0001\u0000��͛7��\u0017w\t\u0000\u0000 \u0000IDAT�+W�\f�X\u0001CDD=z�v�[�����~69UXH\u000b\u0016���dbR[�Y��Y3�ܻ3�Ÿ�\u0017_P�\u0006���dgGÇ��\u001e��ңG��S�YS��t����_���~�;**����FFF��\u0003���|��AMM�.***[�$�&L�������Ϟ=���\u000b\u000f\u000f�ϔ�t�`�100��k/\u0001\u0000\u001a����իW_�|����c}���\u000e\u001c80r��^�z��у�xr��i�Ljڴ��c7�֬!gg�4�459I*�\u001e>${��C\u0017\u0017���\u0013\u001dM\u0016\u0016$�cioO\u000f\u001f��]=/knn���*�\"\u0012�V�\\y�…nݺU42�[������-�������ǎ\u001dkjjZ�\u0018����ѹs�\u000b\u0017���JeL��`988X[[+���\u0000\u0000�aӦM���\u0012�\u0015�0\u000e\u000e\u000e�o�UQQٵk����VxAA$���4�<���)5���#�})55i�0��`?�b�ʪ�` �GM�\u0010�PP\u0010M�D;v��odSS�Ȩ�e���\u001e>|(�r��e'''�)\"\"bƌ\u0019111D\u0014\u0019\u0019Y��GEEe�ҥ{��\f�\u001a:t�СC�\f\u0019���5f�\n�\u0016-Z\u0018\u001a\u001a\u001a|��\"\u0002\u0000ȡ�����X777�F��+�ڴi���\u0012\u0013\u0013Y\f(�23�Ԕ�_�W����C��\r�c*\u0006##�ήҒ�E���ƍ��ӈ\u0011��33��S���J�.]ğ6\u000b\n\n�ر�lͻ���P(\f\t\t\u0019<xp�)77��7o�?�t͟?��ǧw��j�{��^\u0005���o׮]CCC\u0013\u0012\u0012�^�ڳg���׿�\u001f)%\u0004\u0000�Gw����/$\u001a+~�T����(�\u0001�Л7ԪU�\u0016\u0017\u0017�p����7�Z���\u0014��)\u0016k�*k����Օll(&�ʭ�\n��_�g���e��.;|��y�N��;,[�l��݆��gϞ\u001d1b���N�)uuu%%%�a��D��k\r��������͛\u0013����ɓ'�\u0017-Z$�l\u0000\u0000�+99���B�qٲeD����oӦM���v\t�\u0014\u001dMO��O�t�H�z\u0011�;Mp��#\u001e�\u0018���i�<ڻW��\u0016|L����7$\u0014��n��PH>>��\\ޡe�ʍ�JJ诿h�\u000e�\\�e˖������߻wo�Ҡ��M�Z\r\u0017\u0017\u0017߸q�F�9H\u001e�WPP śq�^����^�|Yq���\u000b�HT�H\u0000\u0000\n�����&������$N\\a!m�J}�RP\u0010ih��\u001d��љ3ԧ\u000f�\u0002�4\u0013˃��))I���\u001b[����@��\n�\u001eMǎ�\u001f޽K��diY�!~���\u0001��K)\u0016�ӧOo۶���gFF\u0006\u0011I�H�D����������U�k���/�rh��0̳g�\"##�>}Zϒ�^3X�}���ѣg͚eee�������X��>\u0003\u0002\u0000(�f͚=x������[H�\n����E_}E��U�؞<�JJh�>rs���*\u000f�):\u0013\u0013�� ��r\u0019Vٍ��C�ܹ\u001a�\u0019�z�\\\\XΨH\u0016.�!C��:v�-[h˖����Ӆ\u000bt�t/�lٲ\u001b7n�\u001b7.;;���î��\u001a\u001a\u001ao߾���,�Y��ظ��\r\u0002��a\u0018�|$.!!a„\to޼iݺurrrӦMϞ=[��OU�\u0019�Y�f]�rE \u0010������9s�o��π\u0000\u0000����>**������\u0007\f\u0018Py��E_~I{��̙5\u0014\u0016jj�`\u0001m�J\u001e\u001e��'��rc�(:y��P�������5\t�姊���\u0015\u0014X��Ң\u0013'h�L��-��As�҉\u0013U�-���\u0003\u0007FFFN�:��ɓ����\u0017/>v�X���CCC����\u001a��k׮999I=�TL�>}ذa���w��y���#뵻g�6Ae\u0018�)--}��H$��P�\n;�Cu��\u001d\u001f�?�������Ν;�ۛ7o��� ޒ�����X���\u0007s�V�!��t��hk3NN��Ǖ�1�'K55�����ݛIM-?\\�\\��W����U\f6���tf�(f�l���*�qq������LV�L�_ZZ��蘞�.�^�/Biii���߽{'�<u'�����~��\u000b\u0006rrr��~�z�`���\u000e\u001e<���o�>11���A|I\u0016\u0000@önݺ�˗W<KU�U�V�\\���8*���o���Z�ru%�@*\u001bp�\u000b--ڵ�&N,�-�0U>�vx?t�޾�iӸ\r�\u0018LM�ϧI�h�.rt��\u0003i�@rt�}�h�\f:{���dz}\u0015\u0015�\u001f~�aʔ)\u0012\u0017RRR$�-_�|�ĉM�4�i�����~��\u0019����|����g�V�\u0002k�ҥm۶���������<����\u0003�붯h\u0011Rd_�bd�P\u0013�\b!K�\u001b�|E\u001a��ؒe�N\u0019�2�HF֙���l��R��T��\u001f5��:��9wy?\u001f��{t>��9��맷��?�Z�\u001a:t�����\u001c�\u0010B$H�v�&O�<o޼ⲻZ\u0000*�^پ}���z��t~�\u0015\u000b\u0016\b6k�\u00055>\u0002\u0003E�Cp�W/l؀�#q�R\u0015{߽�����]��\u000b��$��8p\u00007o��\u0015\\���7�o\u001fغ�cnn>y��1c�|���\tEEEK�,����7o\u001e;��AUUu�ҥ��ƣG��ի�̙3���&���G�������_�|Y��ENNn�ҥ۶m��\u0003\u0012B�d�5k��ϟG�\u001a�{��6m�T�����U�V����������\tz�\u0010lּȉ�9֭\u0013Iz\u000e��#(\b?���\u001b1x0ڷ��&޼�kHM��\u001b�wp%�oʔ)-[�\u001c>|����'M���ߗ3>~�x��9??�ٳg�\u0014�K�����\r���W\u0015X\u0006\u0006\u0006��׈\u0011#J6\u001f<xP��\u0017B\b�n\u000b\u0016,�۷����\u001b7n<lذ�m���˧��\\�|966��ݽ�u���ʽ0_s/�ʏ�K\u0007==�ލ�|ܸ��x���ysl؀�m�NF�����ڵk'N��?����\u0019����SVV\u001e:t�������z\\���W\u0015X�v�\u001a;v����Ǐ\u001fgΜy���cǎ5T2B\b�\u0014���aaa����/_�|�rQQ����…\u000b���k{��L�� )\tAAU��V**���\\��QRR�6mڴiӸ\u000eR7***�\u000e\u001d���Kx]�:��\u0002kРAO�>\r\r\r511i޼�O?�T�b�蘚�N�>]�g!\u0012D[[\u001b[�\"/�� D�(\u001e9��I���fϞ]��|>\u0018Fp���^PEE���<###888222--MUU���������RA�~O\u0011R\u001bAAA����~�m\u0003\u001e���\u001a\u001b\u001b\u0007\u0006\u0006�\\���Ņ���yF\"�F�\u0018���� ��\u0013�Q�\u0010�ڊ��1��A�ޥ�5/rr�&��� $[���<==�޽;i�$ww�-[~����˗!!!�֭sww/{\u0010�\u0010\u0011���\u0005���߀���\u0002���q�޽;v�P\u0012A������R3\b\"���\b�^!-�� D�0\"~/�kM�\u0006_�*\u00169)��Qڭ\u0000��\u001f<=Y\u000eȚ�o�N�0a�ܹ[�l)\u001bTUU�����\u000f\u001f\u0016/^|���u��?\u0011'=�_:)��\u0007�;�W\u0015X�/_~��A@@@�f�����V��V\u0012B����\u001b_���UXY\u0001�i���P4i�o�a3\u001dk>�<iҤ�[��.��W^�&M�\u001d;��\u000f?�ڵk���,�#��\b\u001e*��\u0002k߾}\r��\u0010Bd��\u001fF��]�ᱏ�Hlق�0\u0016c����{ƌ\u0019��\u0015�0���?r�p#��[������ٵk׎���k]�x���㉉�%O�}��k׮3f��߿?��JYXX������x��q{{�\u0006X��~\r���ճ��J�\u000e\f\f��ɩw/�:��rHe�T\u000e}*�Y*�k�y�XY1�v1��\u0015w��3[�0C�2B\u000bwH����\u0001\u0003\u0006\b/�v���>I\u0015�Wa\u0018�֭[�f�b7 i\u0000���C�\u000e]�lٳgτ�\u001f<x0c�\fGGDzZ�\u0013eK�\u0000(KҸq㄄��?x=�`}������盙�5@�G\b!\u0012�ӧO���o߾���n׮]�ƍ��{Z��ŋؿ\u001f�\u0006��o���Bf&��AL\ff�@h(��\u001d���0\u0007\u0007\u0007���߿���VҼ��޽{/[�����^*� qqq�f�ڷo_�~%&&&�\u000f\u001f�z��\u0011#N�>]֕T�ПTB\b�*���������ݻw���{��]\\\\\u001c�0�\u0017/\u001e����h\u0011\u0016.���x�\u0004II������Ą��\\�s�΄\t\u0013�G\\]]\u0001\u0004\u0005\u0005U9�[�n/_��ԩ\u0013\u001b��W��񣳳s```\r\u001dȭ��v�����\u0014\u001e\u001e.}����<�\u0010š����˗�{���ǧ�o����\u001f��ȑ#�\u000e\u001dRWW��\u0003�x�W�dIZZZ��[4o�<55�\n,I���\u000f?\b��\u0005S�\u0003v���Ç\u000f����|�����kjj\u0002(**���y��]ɸi}\u001b�ֿ�j�(�\u0010\"A\u0018��:u����ܹs+�mڴ�]�Ο??jԨ��P\u0015\u0015\u0015�\u0013�9\r\r���������-��C�_~~����7l�P6\u0012\u0011\u0011\u0011\u0018\u0018\u0018\u001d\u001d]y�…\u000b���;n\u000b,\u001d\u001d���Ǘ|���2k֬�]e�M]ճ�\u0012E\u0014B\b� ۶m�ѣG��U\u0019;;�ϟ?/^���\u0003�\u0005�\u0014m۶}���Ō�=����H��H��z��СCk�����r�.]�<yҵkW\u00163�#��E�~��z\r��\u0010B�PFFFhh�\u0015+�\u0007\u0019��ׯ_�^��ƍ��ʊ��a7�\u0004\u00186lXppp-'�������y�~򯸸8���\u0011������jiiU9���X��hֳ�\"�\u0010Yv�ĉ9s���\t�\n���pvv��\u000eȊ\u0015+���YL'\u0019�u떖������L���qvv\u0016u$�P>|�P�S��ttt޿/�<��\u0002�\u0010B��ҥKvvv�#5�\u0018��j\u001b�m�ƍ\u000b\u0016,����`JJJ���w�����'N��n:R���u�����[===���\u0004\u0015X�\u0010Rg���\u0015��^�\u001d\u0010\u001e����P�̐\b�ٳ�����ɓ�{+Vp�֭E�\u0016\u001d;vL�z!\u0011sݻw�}�v��{�{����\tj�@\b!\"���PTT����u\u0010�3u��&M�\f\u00192���m�ȑe��\u0002������y��APPP�_�HK�_!5\u0015��h�\n\u0003\u0007��e7\u001c\u000b\u000b\u000bww�Z6������ׯkh�%���\"��:��x�����@�\n\n\n����ȑ#-,,�o߾m�6===\u0003\u0003������dEE�ٳgoܸQ�e�\u0006\u0010\u0019�\u001f��2��`h��|<|����!֯G�V\ry.Y���0v�؃\u0007\u000f���m�͛7/X���T,�\u0002�\u0010B�������\u001e8p`m&�y�iӦ��$Ѵ��������233SSSUUU[�l����\u0018\u0006?��G��w/Z�.���\u001d��pr��\u001bF�l��ʤE�\u0016\r\u001b6�w���\nu�MII�0��O�>ݸq#��� y\u0005������ӹNAĈ��6�nE^\u001e�A�\u0018Q<rD��wtt���e�u���Ɓ�f:::\"�Űn\u001d\u0018\u0006���*/��\u00171i\u0012��1|��2�\fee�������{xx\f\u001d:��9ǎ\u001d\u000b\b\b8s�L\u0003_�\u0014\u000f�W`��Ņ��r����\u0011#Fh��\"#�� D�\u0014��a����O�nݺէO��g&%%�������4\u000f�o�/#1\u0011ǎ�4G]\u001dǏc�P��f��JƩ�\"ܼ��ב�\u0002\u001e\u000f����;��Z���A�\u0016-.\\��d�\u0012��s�\u000e\u001a4��F��ϟ���O???cc���P%%��?�\u0018��\u0002+777>>��\u0014D�\u0014\u0015\u0015��+��q\u001d��\u0011F[[ԧ���\u001d3f���DžۋW�\u0003���5u�Խ{��\u001bp\u001c��q�\u0002BB��\u0005��\u0011\u0013�Q�\u0010\u001e\u000e\u001b\u001b�x\b\u000e�ʕHNF�>��C�.�ߥ�\u0001OOl܈]�8Mϊ�DZ{7,-ac\u0003CC��HJBP\u0010����ѣ��\f�\u001a5:|��'O�\u001f?�y��/_��x<%%%KK�}��Iyk~F�,]���̌��fD��z�iޜ\u0001�C�����)\u000b#=y���\u0017.\\�r�[����nܸ�B\u0012R�͛��\u0005�����0\f���0..���̪U̠ALX\u0018��Ʉ�2��̚5L�n\u0015��̌�������=���\u0007&7���\u001f>0s�0K�2�Ŭ'c����\u0017/Dtpɻ�E\b!b�K�.����֭���ǎ\u001dۻwo]]����\u0007\u000f\u001e�={VCC�ĉ\u0013���\\ǔ=���\u0013'p�,��-�z\u001566��\u0003=z��\u001b\f\u001f��-Q�*��\u0003\u001b7\"+\u000b�=�z�FL\f��Ζ6K��gO̟_��ƍ�?6oƚ5��'v�I\u000f�jM\b!��{��\u0013'N���\u001d?~����СCyyy�w�\u000e\b\b��\u0003W���)\u0004\u0007C��͔\u0014�k����|\u0019͛#2\u0012\u0000��`d�\n뺴n�J�I��0\u0014\u0015\t���`t�\fuuXY!6V0m�*$&⯿8�(\u0005�\n\u0016!�|-\u001d\u001d�iӦq��\u0000��X�\u0006aa(�oY�U|<�\\���>k����ǘ1X�\u001c�\u0016a�ފ�\u0015�x����[��ԩү��0u*~�\r\u0003\u0006`�V8:�ѣr3]\\\u0010\u0016�ILIGW�\b!�H��\u0000L��ƍK7K�\u0007\u001f\u001f��#ڴ���`��\u001c���ꊠ�*\u001a_%&BZ�>�x�V���[�\u0019\u0015\u0005\u0013\u0013�١Q#xx��cde\t&\u001b\u0018@Y\u0019���$�tT`\u0011B\b�\u0016��\u0010^\u0013��z\u0018>\u001c�\u001b\u000b���\u0002����\u0012}��Դ��ܹ\u0003cc�2��0h�`��\u001agΔ~]���A�\u0010\u001d�^<)B\u0005\u0016!�\u0010i��#�W-,�\u001e�wǝ;04,�\u001e��P\\�\u0015+��X�).\u0016|WD\u0004z�D-\u0016ѓH��h�B���\t==0\f��1y2v�x��eK��U?��\u0001���jҤIY����⬬,ݲ���\u0010BH��Ԅ�&\u0018\u0006!!x�\u001a�ƥ�ý{x�\u0010%�\u000b��ߌ�һf�>a�:�E\u001d飪���r#��pq)�U�z^~>\u001a|�\"���\u0015����nݺ���o߾�\t{rr2-�E\b!D�231v,~�\u0011aa��\u000f��\u0003��7\u0018\u0006\f\u0003K��/J��ϟ��\u0004wwin�޺5^�\u0014l��-���U�-}���\u0006%u�F�5o�<\u0007\u0007����Ç\u000fϛ7�Ν;,��\u0010B��QTħO��\n�Æ\r��1aBi\u000b��Lhj\n&ߺ\u0005[[̘Q�\u001fKZYY!<\\�Yr���\u0005��U�-\u0005p�\u0006��g9�t`�\u0016��K\u0016\u001b\u001a8p�={�͛\u0017MO�\u0011B\bipC� 4\u0014\u0013&�n\nW\u000f%֮ET\u0014fφ�\u0006TT``�ӧ\u0011\u001f_�\u0019��QH��-\u0000\u001a5��\u0001\"#K�&ụ%��\u0002\b\u000fG�\u001ePV� ��c�\n����\u001b7J����744\\�v-\u000b�%�\u0010\"[f͂���\u001aLY�P��ʂ�9.^Ķm�}\u001b�[#5\u0015]���i\u001c;&��U\t//��!7\u0017\u0010�[Z�)��޿���X��ä\u0012��\u0002���{�ĉ\u0003\u0006\fHOO��x���KXXؘ1cX85!�\u0010\u0019���)S�jU�f\rՃ�7֮�ʕX�\b#F�Q#�\"s��\u0010�Wc�x|�P휌\f�\u001f\u000foo�����F�5z���ϟ/_�\\UU\u0015���ndd�U����X8;!�\u0010\u00192w.\n\u000b��\u000e>��\tEEX�\u0004::prb7�8\u00196\f+V`�0��GŞ�|>~�\r��ظ\u0011\u0003\u0006p�O\u001a�Ԧ�y��G�.�TVV���PWWg��\u0010Bd�Νع\u0013��psÐ!��V��\b\u000b��\u000f�O��3�\u0011��w�!,\f[�b�6t�\u0000##0\f����%lm�����:�d㬑Zdd�\u00193rK�\u0001W��ŋ��G�ﲲ��>}���\u0011I�����[���u\u0010\"F\u0014�\u001c�:\u0002�Ԓ%ptĞ=ؼ\u0019��h�\u0004\u001f>��\u0018VV8{\u0016Ԃ�D�&ظ\u0011\u0000^�ě7��`` +\u000f��\u001e�\u0011��,?}�����\u001b6lx���\u0017/8�D��͛7�\u001d\u001c���u\u0010\"F���ܺu��\u0014D<0\f>|��\u0016�9�ؙ={���{�v�DqpV�`�����\\\r\r\r9��~�K]]�m۶\u0015\u0006\u001b7n������x�\u0004$\u0012���\b�^!-�� D�0��\\G b�ǣꊰ�������׭[ױcGee�ƍ\u001b+))u����ӳ�����\u0013B\b!����+Xs��IKK��_�u�֨Q�������m۶͟?���,\u0004 �\u0010B8�0�{\u0017���ʂ�\u000e�w��1י�ȱQ`�����ƶ�w�nmmm33����֭[�pvB\b!�\u001b\u0005\u0005��� ̄wo�쉖-��\u0005??��`�,̜\tyy�#\u0012Qa��222�x��̙3�\u0007���\r\r\rY8;!�\u0010ׯ��\t\u0013p�\u0006\u0014\u0015\u0005�g#?\u001f;v`�\b\u0004\u0004@G���D��(������m�֭[7MM͜�������̐�\u0010\u0016�N\b!���8:b�ު�\u0006��`�*XX��\u0001aaPSc=\u001f\u001196\n,SSӤ��k׮���geeiii���XZZ*(pօ�\u0010B\b\u0011��s���ZYX`�2,[���يE��R����0x�`v�E\b!�p��Ѹ1,,\u0004#��X�\u0012����\u0007~~�ҥt|�h\u001c=��8t��IR\":l�i �\u0010Bd�ѣX�X�����S���TXX�ѱ����q�8�\u0001\t\u000b��\"�\u0010B\u001aT\\\\���QQ01��\u001d\u001a5��\u0007\u001e?FV�`�A��o�3\u0012Q���\b!��\u0006U����5��J�����\u0011�4\u0011�UR\u0002��^6�\u0016��E\b!����&���0\b\u000e���ع\u0013<\u001eי���\u0015,B\b!�A\u0015\u0017W\u001c�̄�\u000b��\u0010\u0014\u0004S�r��|A-��%\u0012��G%�\u0010B\u001aT�Nx�H�YP\u0000\u001b\u001bt����\u0015���\u00057\u0010�\u0014�\u0002�\u0010B\biPS���W�\u0019\u0014��b�� 9\u0019��HL,w�k�>L��~F\"jT`\u0011B�����c^^\u001e�)H5\u0006\u000eDF\u0006��J7���Çh�F�){���yhi�kW��\u0012ё�g���̖.]�u\n\"Ftuuq�\u0000��\u000eBĈ���\\Ghx��Ł��'O�������***���nٲ����!C�NG�;p\u0000����G׮��w\u0015sn݂�7.\\`=\u001ca��\u0015X111gϞ�:\u0005\u0011#���j\u001b7\"#�� D�\u0014I�\u0002��\u001f?�;w�ȑ#�\u001d;�#��%$$���Ͼ��\u0007\u000f\u001e����0!)GW\u0017���)S0s&�O�ظ��\u0010~~�p\u0001�OCC���D�$����͍���:\u0005\u0011#EEEx�\nii\\\u0007!b����:BC���\\�r����[�jUaW�6mv����?���۟9s�E�\u0016�$$Uh�\u001a�.a�NXX`�@tM���;w\u0010\u001d��Sq�<\u0014\u0015�NID���\"�\u0010�����|��g�V��ʘ�����ɩ����l�?��b�*��\u0017F�D~>\u001e<@Q\u0011��\u0010\u0019�\u0005\u000b���n�w\u0005�\u0010Bdʺu�6o�,|��a����\u001f9r���\n�={�;t�М9s��I�'/\u000f\u000b�rk?\u0013\u0019@W�\b!D|eee%$$\f\u001c8�l$\"\"���9::���\u0005\u000b\u0016\u001c;v��t��jQ�E\b!�+<<���^x����jjjjjj�'����m���˗l�#�T�\n,B\b\u0011_Ϟ=�֭��������V����gϞ�\u0012�\u0010R\u0013*�\b!D|}���Q�F��ߤI�\u000f\u001f>�.\u000f��'3\u0000\u0000 \u0000IDAT!����\"�\u0010񥧧���^�����͚5\u0013]\u001eBH-Q�E\b!�G�\u001eQe+��­[����E��\u0010RKT`\u0011B������t�R�����KMM-**�~\u0003*�\b!D|)))988����f����ʕ+E\u001d�\u0010R\u001bT`\u0011B�X[�x�S�n߾-<���\"�e\u0014�#G\u0014\u0015\u0015---Y\rG\b�\u0006\u0015X�\u0010\"֔��\u0003\u0003\u0003]]]���*'\u0014\u0017\u0017o޼9,,l׮],g#�T�\n,B\b\u0011w͚5�p�BDDĈ\u0011#Μ9���ǒ���TKKK%%�\u0013'N(��v��\rZ��\u0010B$������obb�S��L����\u0007\u0005\u0005\u0005]]�!C�\u0004\u0007\u0007kkks\u001d�\u0010R\u000e\u0015X�\u0010\"1���V�X�b�\n��\u0010B���\u0015XfffK�.�:\u0005\u0011#���8p\u0000��\\\u0007!bDq�v�#\u0010Bd��\u0015Xw��9x� �)�\u0018���Q[�\u0002u�vM�ޗv�@\b�i�W`\u0015\u0016\u0016feeq���\u0011>���lП\nB\b!b��\"$�\u0010B\bi`T`\u0011B\b!�40ɻEH\b!��7>\u001f�Ѹ}\u001b��PSC�v\u00182\u0004�ς���`\u0011B\b�.|>��an�S�``\u0000;;���tL��\u00193���u>\"\u0013�\n\u0016!�\u0010)���i�Ы\u0017�\\���`|�P,Z��HL�\u0004OO\f\u001e�]D\"\u0013��\"�\u0010\"-��0i\u0012��\u001evvUO��\u001f\u0017.`�X���v�\u0011�B�\b\t!�H��[ak+����ѹ3��ae�����F�p�8�-���\\�$��\n,B\b!R��\u0007\\����K7��0u*||��\n\u000b\u000b8:\nf6m��s�g\u000f'1���\u0002�\u0010B�T\b\rń\t����ZT\u0014LL`g�F���Ǐ˵#�<\u0019����$2�\n,B\b!R���r��[[�̙ү��`d�&M\u0004{������\u001fYMHd\t\u0015X�\u0010B�›700\u0010ljjBO\u000f\f��`L���;�㕛o`�ׯY�Hd\u0007�EH\b!D*�ˣ���Hf&\\\\���� ��V�_T\u0004\u0005�%HD��`\u0011B\b�\n��HH\u0010l\u0016\u0014��\u0006]� :���\n@R\u0012Z�d-\u001d�5T`\u0011B\b�\nC���\u0005�fP\u0010�����d$&\"1���\u001c0\f��؏Id\u0004\u0015X�\u0010B���\rΝ\u0013t��w\u000f\u000f\u001f�M\u001b�G�-�={0y2'1������fffK�.�:\u0005\u0011#���8p\u0000��\\\u0007!bDq�v�#\u0010֩����v-�n\u0005\u0000oox{W=��S\\���\b6�\u0011Y#y\u0005֝;w\u000e\u001e<�u\n\"Fbbb�V�@z:�A�\u0018�Ү\u001d�\u0011\b\u0017�M�ܹر\u00035�;<>\u001e3g\"0\u0010��,&#2G�\n����,�˼D���|dg��T\u0010\u0002\u0000x��mZZ���������6�qX��U���͛ahXnWq1�\u001ešC8|\u0018m�p���\n�+�\b!�T����cǎ��p}}��-[������������ϙ3GQQ��l���֭��\u001f|�=\u0000��\u000f}}�� .\u000e\u000f\u001e��\u001e�\tUU�S\u0012�G\u0005\u0016!�H��ׯ�\\�r�ҥ�W��\u0017�󕟟��\u0001KK˃\u0007\u000fv�ܙÄl33Ch(23q�.RSѪ\u0015\u0006\r��q�^���\f\u0015X�\u0010\"����v�\u0016\u0016���Ua�����ŋG�\u001c9eʔ}��u����Δ����q�\u0012��QT\u0004yy\u0018\u001bc�xXX|�aEGG\u000766\\� 2��4\u0010B�\u0004KLLܴiөS�*WWeڴis���9s������4\f��[1n\u001c�5É\u0013�r\u00057n��\u001589! \u0000#G\"9��G&DJQ�E\b!\u0012l͚5?�����F�\b�0���\u0013�f``�hѢm۶��\u001c�Ř2\u0005EE�v\r�&�Q��q\u001e\u000f}�`�>l܈\t\u0013��A�\fB�\u000e\u0015X�\u0010\"�233߿o*�\u000eLDD���sttt��\u0013'N�t�\u0012�ϯ�iV���9��!Wͯ\fcc�9���۷u>8!R�\n,B\b�T��������������ԪZ\u0001FNN����A]�3ݻ��d̟/\u0018\t\u000eF��PW��\u0015bcK\u0007[���7V���O@�Ԣ\u0002�\u0010B$UBBB�\u000e\u001d�G\\]]}}}�{\u001e�cǎ\t��!׆�7~�Q�����S���TXX��Q�k�@�}�ׯ�v|B�\u0014\u0015X�\u0010\"����XU\u001duu�O�>��\u0004\u0005\u0005HOGǎ���(����\u000e�\u001a��\u0003�\u001f���;~<Ν���\t�^Ԧ�\u0010B$U�f����j?�͛7}���\t\u0012\u0012P�{��5��J�����\u0011�4\u0011�55�޽u8>�U\u0005\u0005\u0005׮]�~���7o���[�j5dȐ~���U�\u0004����\u0010BdM߾}oܸQ������~[�\u0013�{\u0007\u001d�r#����\u0003� 8\u0018�'c��r�;�6�UAI�\u0018�)i~\u001b\u0019\u00199|�p///www\u000b\u000b�ӧO\u000f\u00180����\\\u0007l0t\u0005�\u0010B$����%K>}�������\u0013\u0013\u0013\u0015\u0014\u0014t*\u0014L5�֮b���L�� )\tAA\u0010z��t��n\u001d�OdL~~�̙3;u�t�ee����[[gee���\u000f���ƍ\u001by��s��`\u0011B����x���ߴiSm&����Y��n'02�ӧ�F\n\n`c�.]\u0010\u001d]��\u0002\u0010\u0013�N��v\n\"3\u0018�qqq\u00199r����puUFKK�������?��\u0013��\u001a\u001c\u0015X�\u0010\"���^�|y��\u0019����\n+\u000fz{{w�ԩn\u000f`\u0001PS��:RR\u0004#AA(.��\u000b������D\u0014\u0017\u000b�9��#��C\u0010�p�ĉ�-[N�<�l�ʦ�^^^�o߾�>�\u0001\u001b\u0018\u0015X�\u0010\"�x<��\u0007\u0003\u0003\u0003����|�RyBnn�…\u000b_�~�~����`�rxz\n6���Çh�F�)��x�>x<�m[��\u0010i�0��ݻ���V�\u0014���mݺ��ˋ݀\rO������_\u0013DJ�����I\u0014\u0016r\u001d��\u0011�u븎�\u001e55�ӧO�޽���rԨQ666-[�,..NLL�p�Ÿ���\u000f?�\u001f?��G\u001f8\u0010G���)�\u001c��\u001b��UL��ƢE\b\b���A�ڝ;wLMM��t��)n�\u000e\u001d���>|��D�\u001dUI#y\u0005�?����^\u0003&Bbbb\f�̡w����v�eJ\n~�\u0015W���\u0000������7�8\u0011\u0003\u0006�pr99�%K����\\�x�ȑ#��Ɋ�����C�\f���PTT�������\u0001yy�>��\t�ɘ:\u0015\u001b6���ND�WTT��\u0003�G\\]]\u0001\u0004\u0005\u0005U9����޽{�}�\u001d\u001b�DC�\n���¬�o�\u0010\u0019���]ŻN����\u0018����h\u0011�.��*\u00000\f�݃�?���o\u001f\f\fX\b������������UQAp0V��3pu��9��Kw����a\\��={Э[\u0003����ӧ��Fz:TTЮ\u001d\u0006\rB]\u001aҊBZZZ�^�j?___�͛7���\u0002�+�\b!D�\u0014\u0016��\u0011C����r�<\u001ez�B�^x�\u0010��ؿ\u001fݻs\u0014�!(*b�\u000e<}��\u0007��\u000199�x��Ѵ)ƍ���W�:ЄeAA��g�m��\u0003ѵ+��p�>��ѵ+֮E��\\�RUU���s���Y[[[tyX@\u0005\u0016!�|��\u000b1n\u001c�L�v��\t~�\u001d��#$\u0004M���L\u0004:u–-\\� �(,ļy��Dp0*,F�z5\"\"��\u0000oov�YWֺu�\u0017/^X[[�r�������E\u001aI���\u001c�\u0010R_7o��/W]\u0005\u0007�sg����\n����\u0006\u0006��G�]�IF\"\u0013\u0018\u00063gb� ��Y��*am��P�[�۷Y\u000f\u0007\u0000666����0�ݻw{��!�H�F\u0005\u0016!��ז-�Z\u0018��a�T�� 5\u0015\u0016\u0016pt\u0014�\u001a<\u0018����`=\"�\r\u0007\u000e�cG�[\bU\u0016�����7,^��ܪk(͚5SQQ�����������Z��%���\u0010™�\u001c\u0014\u0016�{z=*\n&&��C�F������޽\u0018;\u0016R��\u001a\u0011#�?��Q�ZU�YC�߬\u0019�́�/'17nܸdɒ\nObUn�����s��\u0015+V����Q�E\b!���Y��֭�Q�Q=*\nFF\u0010��ӫ\u0017���؋GdǥK\u00189\u0012e���\\�O���PNbv��aѢE\u0013'N��ͭnNJJ����={455��&\nT`\u0011BH���\no9ijBO\u000f\f��`L���;!�`mӦt������\u00182D�Ys���\b\u001d\u001d�{�j�988̛7oȐ!���\f�\b�***���0až={z���I��Eo\u0011\u0012BH�hk�������pqAR\u0012��*����\u001dtuYKGd���h�J���\tMM0\fBB�`\u0001��-W�\u0003h�\u001a))\\�i\u001c6lX߾}�lٲiӦ\u000e\u001d:�n��˗/���)))�G����PQQ�$X��\u0002�\u0010B�}{<~\\n��\u000066��ũS�V�e\u001e<@�.��#2��C��A5\u0015�\u0000\u0018�b��.mm�7\u0003����捜�������>��D��\u0002��B��*<�F\b!\u0012�qc�xx�\u0016͚��\u0004\u0005��\u0018..HN.\u001d14\u0014TZg��ߟ��D�l�W�\u0004\u000ek.�\u0001�z���\u0002��m۶m�wup6\n�\u00193fDGG���iUjΑ���B\u0000B\b\u0011�e���={J7���Çh�F0!#��F�_AO��>�D�Y[��E��S�Ys�_P�\u000f\u001f���AN\u0019��C�3gΜ9sfJ%,��\u0010BDe�\u0010dg�l�Zoo0L�OIu��\u000177l��aR\"ͬ�\u0011\u0016&�nUV�}��\"<r\u0004�Gs\u0012SְQ`�x<'''#Ze�\u0010\"}~�\u0005{�\" ��\tϟc�\u0018�؁\u0016-X�Ed��2������\u0015�\u0000^�Ʊc�7���2��6\r��֮��윋\u0010Bأ��s�p�6��q�:��\u0005�^���;��\u001eG�\bn�\u0010\"\nӧ##\u0003{��4'=\u001d�'c�^A�,\"J���z��u(G��\b!�!))a�Nl݊�0X[c� |�\u001d\u0006\rºu03ß�}{�#\u0012\u0019�?\u001e?���HO�b�s\u0018=\u001a[��ؘ�d2��6\r���3f̨���3g��a�ٳgS�LY_v!�\u0010@OO\u000f'O���� D�(�[��);u���l���2\n\n��ş��\t�ڰ���\u0001rs��)�_G߾8��u�+��Gf&tt --�8��JU�-[��֭[���\u000f�A�\u0018y��U��}���u\u0010\"Fz��޾}��\u0014�p$)\t�n��k4j\u0004##��CI鿿+9\u0019;w\"2\u0012�\u001aAK\u000b����B�>X�\u0014R�\u0014��ٳ���۵k'���z\u0005������jhhH�\u0012ل\u0010B��jժ\\o�����\u000b����e\u000b�~G����/̙\u0003++�Z�m{R��F�����nݺ�\u001d;*++7n�XII�C�\u000e���\u0005\u0005\u0005,��\u0010B\b!5Y�\u0004YY�|\u0019�}\u0007�+ rr\u00188\u0010��(.Ɯ9��Hl\u0014Xs�̉����_���\n\u000b\u000b��ӏ\u001e=\u001a\u0013\u00133�|\u0016�N\b!��j\u001d8\u0000EEl�P�\u0005*\u001e\u000fk֠E\u000bl��n2���-�����\u0016�����633\u000b\b\bhݺ5\u000bg'�\u0010BH�>|�ѣ�~]0\u0012\u001c��+���>}��'X@��\u0013VV�4�\u0016$�%6�`\u0019\u0019\u0019]�x��`xx���!\u000bg'�\u0010BH�J��*�{�%-\rS���\u0007�������`��\u001c\u0016/��ÜĔDl\\����߶m[�n�455srrbcc333CBBX8;!�\u0010B�\u0016\u001e��@�fT\u0014LL`g\u0007\u0000\u001e\u001eظ\u0011YY��\u000eÆa�>��s�S\u0002�Q`���&%%]�v->>>++KKK������RA��.\\�\u0010B\bA^\u001e�4\u0011lZ[�̬��(\u0018\u0019�۫���\"V�I2�J\u001c\u0005\u0005��\u0007�s.B\b!���\b99h҄:\u000bԍ�&45�0\b\t�\u0005ػ��\u0003�\u001b]C\"�\u0010\"-^���/�܁�2�4�����1x0\u0016,�m\u0013s��\t\u0017\u0017$%!(\b��\\��`T`\u0011B\b�||><=q�6V������SA\u0001ΝÈ\u0011X�\u0000�'s\u001a��|��\u000b\u0017p�\nRR�0�ׇ�\u0015��ШQ}�f`�\u0017/\u0004�e\u0016\u0014��\u0006��8u\n��\u0015'�y\u0003m�/K��:!�\u0010\t��c�T4i��0\f\u0018P�U��2ƍÕ+���-�El\b\f\u0003??\f\u0019��$,X�\u0013'���X�\f\u0019\u0019\u00186\f>>���|L\u0007\u0007\u0004\u0004\b6��P\\\f\u0017\u0017$'#1\u0011��(.\u0016�\r\f��C\u0003� ��\n,B\b!\u0012��\u000b�z�\u001f����\f<|\b�}{��\u001789!#\u0003ׯc�rt�\u0006uu���K\u0017,^�����c�X����F��U�yS�y�\u001e\u001e>D�6�OVV鮌\f\u0004\u0007c„����\u001a\u0015X�\u0010B$YB\u0002���UW����\u0019�갲Bll� �����i\u0013$t���\u000b1d\b֭��b\u0015{\u0015\u0014�b\u0005�L��3\u0018�\u000e���Î\u001d�:��2��\u0006Ô���\u0002@A\u0001�L�֭���k�\n,B\b!���\u000f+W\n6kh���\u0001\u0007\u0007\u0004\u0005���k]�\byy̜)\u0018���\u001c;\u0016FF8y�n\u0007��\u0013?���Ñ�P��d��a�\\��_��2�\n,B\b!�,:\u001a\u0003\u0007\n6�Ze6j\u0004\u000f\u000f<~,��\u0005��\u0001�ϳ��km݊��\u0005�5\u0014��Wc��:\u001f��\u000e�wc�\\,Z������\u0000����(,[�\u00193�m\u001b=}UWt��\u0010B����T�}��[e�k��dV\u0013~��$��iS�H\r��55��7x�\bݻ��,ݻ��%��7���i\u0013>}��\u001a:w�����g�U\u000f�W`YZZ�\u0017.������ɓ(,�:\b\u0011#J��q\u001d��\"/\u000f���F��U�;07/7Rs\u0011ia�;w�\\`�07�x.R_�W`]�v�~�:\u0005\u0011#�^�j5a\u0002�Ҹ\u000eB�H!5H�\u0011\u001a\u001a�ͭ8XC�L>�\\\u0013\u0007���-�7/7Rs\u0011٢\u0005n�f9#�L�\n,B\b!D@N\u000e�>A]�t��V�w�[7�\u0003~��\u0016�99��d-\u001d���\u0015�\u0010B��a���\u001f�M�k�ٶ-��ʍ�\u0014�]� :���l��Ю\u001dk�Hu��\"�\u0010\"��΅�_�o��U�˗��ŠA\\%���}��_�[�\\D��',-YOI*�\u0002�\u0010B�$�Ԅ�\u001b��K\u0017���UfN\u000ef��Ν܆�\u000f\u0005\u0005X[��i�H\rEdx8�w��\u001a'I�0*�\b!�H�ѣan�����C�\u0013^���\u001d֭C���&k +V`�v�~]�Y]\u0011��\u001d֯��\u0007�II\u0019zȝ\u0010B\bK\n\n\n��矤������͛��ׯ�p{���`\u0001:v��\u001d�\rØ1��\u0015<\u001e�|���7<�_~A�N\rs.�5j�}�0a\u0002~�\u0015m�T=��k89��\u0007\r�|\u001d*�\b!���۷o���\u001e=z4hР����?{���\u0003\u0000<<<���S�ݹ�3gp�>\n\n��M\u001b\f\u001f��#��T��!C`e���s'^�@q1\u0014\u0015ab�\t\u0013`a!�\u001f�\u0015�����ԩpp�ܹ��&\u0001|��Ç\u0011\u0018\b??��p����=�d\u001b\u0015X�\u0010BD��ի����������#<�|��\u0004WW�\u001e=z�Y��'��)1\u0011K��iS89��\u0013��`\u0018<}�?��AX�\u001a#GVq&\u0005\u0005�\u001a�Q�D�\u0003q�sg\\��Ç1z4��a`\u000099����g�\u001d��W��;E*?\u001f�\u000f#$���ka!�|A�>�7\u000f\u001d:�\u001dF�0\u0012e�ҥfe�k\t\u0001\u0000�z�iޜ\u0001�C�����)�]�R7n�\u0018<xpVVVu\u0013�|�������`(:��ߟy��o����<�ٴ���J��<��s&.���\fW�0��1~~�����������ጛ\u001bST�Y��qvv~�ⅈ\u000eN\u000f�\u0013B\b\u0011�\u000f\u001f>�\\���ɓM��r)���yyy�y�&,,\f\u0000^�²e\b\t��#��&\u0002\u0002����GE�Z\u0012���}{t���\u000b�'O��\u0007aa���r\u000b���a�@�?�6m0n\u001c�|�&�\u0018�\u0002�\u0010B��lݺ���U[[[x�a�~��ŕo������O?1\f�\u001f~�޽���\u0001\b\u000eF��PW��\u0015bcK\u0007y<����\u001f\u0019\u0019l�\u0018���wq� ΞE�u3��È\u0011X���X�\n,B\b!\"�0̕+Wƌ\u0019#<\u0018\u0011\u0011���\u001c\u001d\u001d]a������ɽ\u0013'��\u0001c��Ѵ4L�\n\u001f\u001f����\u0002���oPT�ʕ\u0012��J�1\fV�ġC�G��,�\u00018;#-\r\u000f\u001ep\u0012�sT`\u0011B\b\u0011�gϞu�֭ܣ��������Ԫ��ekk\u001bq�\u0010��\u0004CQQ01��\u001d\u001a5��\u0007\u001e?\u0016t�\u0004`k���E��T'2\u0012]���t��\"\u0018�ڵ�7o>z���ٳ���.\\\u0018\u001c\u001c����~p�Q�E\b!D$RRRZ�n]a������WKK��|##��/ѯ�`��\u001agΔ~\u001d\u0015\u0005#�r�\u0014\u0014��\u0001\u0019�U-^Νøq����/_�x�=;:,�s^�ʕ+O�>\u001d\u0018\u00188{��'O�XYY\u001d;v���l�\u0002�\u0010B�H��|9�:������\u0017\u0016�Q#��&���0\b\u000e���ع\u0013寇AO\u000f��U\u001f.3\u0013�\u001f#)\t\u0005\u0005�\bO����\u001e.�-����G�\u001c٬Y�kC��\u001b;�C�\u000e������=z�pww�r��Ç\u000f�͛�/Y�H\u001aQ\u001f,B\b!\"Ѳe�3e�zk�իW\u0006��\u0015�Uff��\u0005II\b\n��i����B��a��a�v\\����Ѣ\u0005>}Br2��1w.�����\u0010���E��&\u0018\u0006!!X�\u0000{��+..�2e���ˇ\f\u0019���\u0005==�c������������{{{��#�B�\n,KK����s���\u0011===�<��B��\u00101��n\u001d�\u0011\b:w������Ͽt��D\u0013\u0013<y�^�J�\n\n`c\u0003[[�:\u0005y�*�'3\u0013����S��c\u0007����Un~Z\u001a��q�\u0000�\u001c�X�����Żw�\n�JE�\u0003\u0007\u0006\u000e\u001c8d�\u0010\u0000x�\u0016͚1\fӿ�#G�t\u0016Z\u000er���\u0013'N����'|_XZH^�u��~���\u0014D��z�Մ\tHK�:\b\u0011#��/u\u0010���ə�����\r\u001b6�?'gggߺu�g�Z�=+(���P\\\f\u0017\u0017$'��\u0018\u001a\n*��\u000fѵ��\u0010����\rDD@E��ћ7���\u001d#G\"$\u0004��F��16ƭ[\u00181�t�R\u0011\\\\\\|����%�\u001f0\f��#��\r\f\f���(\u0000oo�\u000b\u0017�;w���l�g�\b!�������\r\u001brrr�s��ի]]]�\u0006\u000f�͛x�t��=<|�6m\u0004\u001f�\b�\u0011�\u0017�~���8\u001eǎUQ]�\u00194\b�6a����<\u0004�����7�p\u0011����Ŀoܰ��TVV\u0006�\u001b7лw\r���n��˗/���l�g\u000f\u0015X�\u0010\"�\u001e=zt��q??��Ǐ���4��uuu=<<�������SRR�o\u0015�CNNn̘1��dž\rpvFq1\u0000x{�a�}�\u001a�\u001e<\bCCt�\u000e\u0000\f�u����Vu��\u0006\f@�.\b\u000en�\u001fS�|�\r\n\u000bq�~�f�\"��n�477\u0007\u0000>\u001f^^X���WG\u0001�����V���\u0002�\u0010BdQQQ���������ٓ��ӴiӜ���{�������Ndkk;k֬aÆݹs������Y�f%%%��th�@\f\u001f\u000e''������ǹsغ�t��-t�\u0016-J7k��������ǒm>>X�\u0010%��*\u0015���͛7\u0007�ի1j\u0014\f\rk>X�\u0016-Ҥ�\u0019\u000f�{\u0006�\u0010B�W���prr����z�j魜\u0015\u0014\u0014���\u000e\u001b6,00P���_�6z�hcc�k�fff��شo�^QQ1555\"\"�͛7���OC��;\u0017͛c�`,\\�1c\u0004/\u00152\fn��O?�];�>\r��]��ѣ\u0005�^֙\t��\u00076n,�.������*~R�U+����\u001e���ҥ�N\r\r�ܬ,,\\\bUU�=�����\u0016d҅\n,B\b�-999cǎݲeK��n)++/_�|�\u0001\u000e\u000e\u000e\u0017.\\h$�B�Wh۶m@@@VV֕+W^�x���g``�x�oc\u0000\u0000\u0017�IDAT��پ}���a�(|�\u001d������񠭍�\u001c|�\u0004\u0013\u0013l�T�z|<\\\\\u0004���03+��r{R\u0000m�\"9\u0019�:5ȏ&���ñcX�\bm�`�4��go޴���;z��˫\\S�������ڊ6-\u0017��\"�\u0010ٲx��իW��b|�>}֮]�`�_��\u0001O���5v�����Ԅ�\u001b���0��\u0018�_l\u0013�ͅ�F�o�ԙ��k��=�\u000f��\u0005��\u0017N���;\u0000����\u001bja1#-�UWEEE�\u001f?�*�6���\u0002�\u0010BdHLLL^^^�\u000b\u0006U�(���9r�����{���z��x<��Uj�\fii�.S�ܞ45\u0015�xO�\u001b\u0016\u0016��\u0010\u001eh\nhݺ\u0015\u0019\u0019ٿ���n�:��\u0012�\u001er'�\u0010\u0019r�رE�\u0016\t�DDD8;;W٣hѢE\r{\u0005KTz��͛�͒�L]� :���\n@B\u0002Z�d-�\fڸq���[��\u001c\u0015^\u001d\u0005�������\u0005\u000b\u0016���%T`\u0011B�\f�{�n��\n5�(�۷�{�؊�\u0015F��ɓ��J��J�>��v\r��\u0015o\u001a�\u0006պuk\u000f\u000f��cǾ+kiVɓ'O�M�v��\u0011����J8�EH\b!�E���3���\u0000���*ϔ���ID!���\u001e=p�,\u001c\u001c\u0000��Le22Jo2~�\u0002OO\u001c?�MNYbcc���1bĈy��M�4I�����޽{�+WN�8Ѻuk\u000eC�\u0014\u0015X�\u0010B$��'�\u000fGǎ��\r�ިr�`��E�6\r����EfffW�\\���\u001b:t������aaaarr�����)S._�,''ͷѨ�\"�\u0010\u0019�0\f�ϯ�/��ɢ��044\u0010\u0010\u0000''��bԨ*&������5��p�KMM������5777%%EIII___��匤�4\u0017��\u0010B*���o�|��J�o��ѣ�H�4�V�p�\u0002�\\��-�\u001eEb\"\n\n����(����\u001e��ps�:������ܹs۶me��\u0002]�\"�\u0010����cǎڼ?\u000f���o�����Ԑ45�s'޼AH\b<=��-TUѮ\u001dlm�a\u0003�?|F�HQ�E\b!2�W�^|>��իVVV5ϼ~�z~~~�>}�\t֐��1o\u001e���:\u0007�iT`\u0011B�lٳg���������I�`JJ��G�\u001e�^�:44��t�H\t�+�lllv�u\n\"F�7o��p|��u\u0010\"F�j�Ĭ�jҤ������4q��ٳg+(��EPTTt�С�Ǐ�<yR�l�dBH\u001dI^�u��%OOO�S\u00101��իVC�\"-�� D�\u0014Vٿ���e˖��ι�\u0003\u0006\f����ٳ���^zz��\u0007\u000fnܸ1nܸ��pim�H\b;$��\"�\u0010���/_�t�Ҩ��Ǐ\u001f'%%iii���oڴI�\u001e\u0006'�Q�E\b!�K^^�����ܜ� �H\u001b*�\b!�T!###--MQQ���P]]��8�H\u0018*�\b!�\bdggo߾��?�lѢE˖-\u000b\n\n\u0012\u0013\u0013�|��i�&O�,�k�\u0010Ҁ��\"�\u0010R*<<���s���\u001e\u001e\u001e�Ob}��q�Ν�\u0007\u000f>z�!�\t\t�\u0014T`\u0011B\b\u0001�S�N\u0005\u0004\u0004\\�tISS�®F�\u001ayxx�\u001e=�����~322�\"�����ILL|��^�6m��ԸND\u001a\u001e\u0015X�\u0010B��ɓ���ְT\\���\u000f\u001d:4mڴ��\bEEE6�I��W�����\u0005\u0005\u0005]�t���z����Ǐ�4i���ַo_�ӑ�D\u0005\u0016!�\u0010������\nWW\f�����ȑ#�;w.\u001b�ҥ����/��\"ak\u0014�����9s横��߿____xWBBš5k���v��Q��+�\\�\"!�Ⱥ��D\u0015\u0015\u0015�B*\"\"���9::��������~c1�4��勃����}��\n@�6m\u0002\u0003\u0003{��9i�$>��IB���\"�\u0010Y\u0017\u0016\u0016foo/<r��}55�*�\rRVVnժիW��J'\rV�\\9q��q���0��ٹ��\u001b7nd-\u0015\u0011)*�\b!D�%$$t��Qx�����׷��\b;u�\u0014\u001f\u001f�J4i��ٳ�ϟO�6Mx�a�~�����\t\u000f.[��ʕ+o޼a7 \u0011\t*�\b!D����֩����znn���H�C�\u000e���\u000f�#�݁��x\u000b\u0017.\f\b\b`1\u001d\u0011\u0015*�\b!D�5o�<�.˥����h�Bty�LTTԀ\u0001\u0003�Gj�\u0003kkk\u001b\u0011\u0011�V4\"BT`\u0011B���ӧύ\u001b7j?��ݻݺu\u0013]\u001e)���*�\u001bX�\u001dXuu���B��\u0011\u0011�\u0002�\u0010Bd���UxxxQQQm&?~��E�\u00165��\"��\n,B\b!���\u0013&Lسg��d\u0018�����Ã�TR�N�\u0017\u0018�a\u0018Fta\bk$���������NAĈ��\u001eN�\u0004]T'B�֭�:��Y�p���������e�`JJJ�ik֬\u00194hP�.]X\r'����\u0013\u0012\u0012ڴiS����ݣۯ�A�\n�k׮���O\\� b�իW�&L@]\u001e�%R��Ԕ�\b\u0012FAA!00p„\tϟ?wvv���x��Ǐ˖-k֬���\u001b'\t%�����Ç���j3���Î����DX@�\b\t!�\u0000���Vhhhjj����={�<y������\u001e\u0015\u0015���akk;j�(��m=�\u001e=��͛\t\t\t�9�ѣG���\u0003\u0007\u000ed!\u0015\u00115ɻ�E\b!DD���֮]�hѢ����޽����***�[����Y�v--�\\?<\u001eo�޽ӧO\u000f\n\n���.\u001b�p\u0007655u�ܹ'O�d=`\u0003������� *�\b!�����5eʔ)S�p\u001dDzt��yӦM#F�عsg�޽+O�v�ի���\f\r\rُ��\u001e>|�������*���7m����q�ر2[lQ�E\b!�������\u0013'������ƍ\u001bgbb�����ݻ۷o�9sF__?((HOO��u����E�\u0016}�����u׮]<\u001e�d<%%�СCVVV���ͷ\"��\"�\u0010B�ЪU������䐐�\u0003\u0007\u000eddd���}��7���\u0012�\u0019?''gԨQ\u000b\u0017.tpp�����`�ӦM�6mڦM����9I�!*�\b!�Ȇϟq�\u0012�^E��O\u0006\u0006����\rTU�Lahh�`�\u00026�(:3g�tss����n����\u001f�1r��������l���;��\u0010Bd\b�`�~|�\u001dbc1}:��}�>\u001dO���p�\u0000��gݝ;w��ȨBu�0L�~�����Fttt~���իW�\u001e�cT`\u0011B\b�j���2\u0005o���u�Z��=��\u000b]]��\tww\\���dL�J͊�j�������#\u0011\u0011\u0011������\u0015f���/+++55��t�c�����\u001f?~�Ӣ\u0001�\u0010B�WY�\u0000�\u0007c�z()U�WY\u0019?�\bkkH�m;v��^YYYGGGx����jjjjjj��;88�?��tb��\u0002+??ݺu\u001d;vTVVnܸ���R�\u000e\u001d<==\u000b\n\nX8;!�\u0010�\u0015\u001a\n\u0015\u0015̜)\u0018\t\u000eF��PW��\u0015bcK\u0007g΄�\u0012BC9�(��?��7�T\u0018tuu�����Ҫ<���X���,`��3gNdd�/�����VXX���~��ј�����pvB\b!���\u0007���ʹ4L�\n\u001f\u001f����\u0002‹�xy�LJ�|��Ç\u000fM�4��|--���ߋ.�\u0018b�-����زwP������\u0002\u0002\u0002Z�n���\t!�Ȩ�/a`\u0000��XQQ01��\u001d\u0000xx`�Fde�䊋�\u000e����9:t�&�D���}��]���7k�Lty�\u0010\u001bW����.^�Xa0<<\\B��\u0012B\b�\f�n�¢܈�5Μ)�:*\nFF\u0010�\f3p ��a/�$�رcLLL��s�[�n��#�ظ����ooo�m۶nݺijj������fff����pvB\b!2*-\r�\u001b�Ԅ�&\u0018\u0006!!X�\u0000{�����\u0000Т\u0005^�d9�����TUUMJJjժUm����\u001f�O�\u0016u*��F�ejj���t������,---\u0017\u0017\u0017KKK\u0005\u0005jsJ\b!Dd����S���L�� )\tAA05-���'����Nҭ\\������ѣ�9�ܹs&&&U>�.�X*q\u0014\u0014\u0014\u0006\u000f\u001e,<�������\u00181��\u0000�\u0010BdN�6��r#\u0005\u0005����-N���|��O�V��H�gffv���C�\u000e͚5Kx<��Q��\u0012\u0012\u00126o�,k=\u001a\u0000�\u0018��מ>}zƌ\u0019����M8s�̾}�*\f&$$���Vh�Ad���\u0002����\u0014D�<���޽;�)\b��|ܻWr�*33377���\n\u0012\u0013al,���\"�Kx�.z�\u001c��-�a\u001e=zԸq���Z���~���7�|Ses,�%''_�rE___\u0014\u0007��\"_i���\u0003\u0007\u000e����:\b\u0011#VVVW�^�:\u0005!���1��BO�ts�Jl�RnBF\u0006tu\u0001 =\u001d\u0017/b�4�\u0013J8>����׬Y�q���\u001fh\u0003\u001e?~|��Ʌ\u000b\u0017���%�\u0016X|>?77WCCC��}�ը�\"�Q�E\b!b�:�\u0013B\b!�40��N\b!�\u0010���;!�\u0010BH\u0003�N�\u0010B\b!\r�:�K*yyy��M\\�l�潄\u0010\"&Xz����H��{۶m���W���SQQ��1����\u001cMMM�S\u0010B\b�>X�\u0010B\b!\r��\u0010B\b!�40*�\b!�\u0010B\u001a\u0018\u0015X�\u0010B\b!\r�\n,B\b!��\u0006F\u0005\u0016!�\u0010BH\u0003�\u0002�\u0010B\b!��Q�E\b!�\u0010���H\f����/..�� D\\\u0004\u0007\u0007w��Y]]���*66��8D&����x�\u001d;v�����ZZZ��h\u0001\u0001\u0001S�Li�dBV�X������^�iiiɫ$%%���[3\u001b\u001b\u001b��\u001c9�d��ݻ�~����֌\u00193\n\n\nX�D\u001a\u001c\u0015X�'\"\"���9::�� D\\���M�:���'55�����ё�DDV�x<///�\u000b��������+�\f\r\r������244<w�\\�����,�z��iXX؃\u0007\u000f\u001e<x���\u0007�{�\u0016\u0012U��q|똒�s�&�c\u0007�F\u000b;\bZ)H\u0017����\u0010��f�\u0014�t�Vd\u0007\b\f���D\u0018Hei��\u0004�Q�\u0005��(��y\u001a�i�\u0011L�q��\r�4�<��z3����5���\u000f\u001b���5�d�Z\r\u0006CAAAGG�������qK\u0010������������{�\u001b��%&&f���*��������l6/uS�#xzz���\u001c=z�zKKK\\\\�w㞞������B�N�����ܼy�f__��Ǐ�3gff233�ju\\\\\\{{�\\|��ņ\r\u001b���\u000e\u001c80::*IRWWWbb�ٳg���\u0017o�����\b�Z�w�^�-�������-[�����s�J�F��h4���qMM�w\u000bm6ۑ#G�Z�N�+--uYqٛ�iJ����ǎ>�����ƶm�\u0016\u0019\u0019\u0019\u0019\u0019\u0019\u0014\u0014$IRSS�Z�>x�`@@@qqqUU��\u001b��d��\u0014\u0018\u0018��ٹ�]�055566&�������\u0016\u0016\u0016��%�\tFGG���,\u0016KPPP]]��n���߱c��nonn޺u�<�1���vss���0�L����V�\u001a\u0018\u0018x��$I&����R��۷oOMM\u0015\u0017\u0017GFFZ�։�\t??����/_����%''���N�Z}��ᶶ6G3���j���ӧ&�);;;##C���j����|HH�����n����ׯ_��ӧw��yyy���8W\\��<M.\u000e\r\r9�����h4)))��ᙙ����v��ƍ\u001b��'&&<<<l6��ۅ_��[\u0006�=______��^WW����77��n\n\n�Ry���������\u001fN�j�YYY\u001e\u001e\u001e��������������SSS�$���feeI�t�ԩ�ׯwww���&%%ɧ�.]����\u0016\u0016\u0016$I��l��垞��+��ե��&''K�t��ŀ�\u0000�ͦP(~ؒ˅V�uaa�b�lܸqhhH�R�}��JUU�so�\u000b%IJOO_���h���yyyk֬�p�BFF��ׯ�f���U*��j�����c�\"`\u0001�\u0006&�)77���ϵ���6mZ�v�g1\u0018\f�n�:}���\u0013�v��1������$���C���E�\"IRhh��\u0012\u001c\u001c<66688����P(���$I���ӕ$IF�ѱ������s||ܱ�\u001f�\\���>::j0\u0018������\u000b\n\n�+.{s��c||��(W�^U�T���Z��b��E�ŢP(�J�\u000f���3X�7;;�s�Ψ����V�\u0015�Dyy�͛7���\u001c\u0015��*\u000f~�\b|__�<������\u000f\n\n������7\u001a�F�qdd���]\u000e4�oM�����\u0001yl2����t:��l�r����}����\u001e>|x�Ν��\u001a��ޜ�9�������(�===\u0015\nŊ\u0015+���\u001d����+44�ݝ?��\u001b�\u000fX�jkkm6[nn���`��f[��g\t\u000e\u000e>y��s��\u001a������f��ʕ+?y�\u000f\u001f>TTT��梢��k׆�����������ׯgΜ�������)))555Ϟ=3�ͅ��\u0006�����?s�����`0���h�Z�B1==�\\qٛ�4I�������\u001d;��̤���|�rrr���$!!A��$&&�L�G�\u001e��̔���?�c\u0005~��>\u0004��\u0012���p�ĉ�~���Ǘ�)��ɇ�\u001d/���cbb�C�\u000b\u000b\u000bǎ\u001dS*����w��u\u001cr����'\u0017\u0015\u0015����㐐�������C�\u000e����T������?}��ITT�ʕ+����3㝝���,v�޽u������ٳ�h4��\u001f\u001erw�prr2%%���G��������:W\\��r���O}}������V�^-�8<<,\u0017߼y\u0013\u001d\u001d��������v�w�f_�t\u001c\u0000\u0000\u0000�;\u001e\u0011\u0002\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\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��\u0005h�7\u0011o��\u000f\u0000\u0000\u0000\u0000IEND�B`�",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:42 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:48 GMT",
         "Content-Type": "image/png",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=ddee2d358affbad7806b4f1f66f0577f91499110602; expires=Tue, 03-Jul-18 19:36:42 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=da2763a1097eb0c8273298fbb993484111499196948; expires=Wed, 04-Jul-18 19:35:48 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 +25,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 19:36:42 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:48 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b900da82bee-AMS"
+        "CF-RAY": "379487a158b872e9-AMS"
       },
       "status_code": 200,
       "type": "ok"
@@ -40,18 +42,20 @@
       "body": "",
       "headers": [],
       "method": "get",
-      "options": [],
+      "options": {
+        "follow_redirect": "true"
+      },
       "request_body": "",
-      "url": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/graphics/50/svg"
+      "url": "https://public.opencpu.org/ocpu/tmp/x0450cd4d4d/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.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",
+      "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.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-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 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-9\">\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-10\">\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-11\">\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-12\">\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-13\">\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-14\">\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-15\">\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-16\">\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-17\">\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-18\">\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-19\">\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 741 507 L 759 507 L 759 522.558594 L 741 522.558594 Z M 741 507 \"/>\n</clipPath>\n<clipPath id=\"clip3\">\n  <path d=\"M 618 510 L 636 510 L 636 522.558594 L 618 522.558594 Z M 618 510 \"/>\n</clipPath>\n<clipPath id=\"clip4\">\n  <path d=\"M 623 514 L 630 514 L 630 522.558594 L 623 522.558594 Z M 623 514 \"/>\n</clipPath>\n<clipPath id=\"clip5\">\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=\"clip6\">\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=\"clip7\">\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=\"clip8\">\n  <path d=\"M 59.039062 503 L 436 503 L 436 505 L 59.039062 505 Z M 59.039062 503 \"/>\n</clipPath>\n<clipPath id=\"clip9\">\n  <path d=\"M 59.039062 485 L 436 485 L 436 487 L 59.039062 487 Z M 59.039062 485 \"/>\n</clipPath>\n<clipPath id=\"clip10\">\n  <path d=\"M 59.039062 467 L 436 467 L 436 469 L 59.039062 469 Z M 59.039062 467 \"/>\n</clipPath>\n<clipPath id=\"clip11\">\n  <path d=\"M 59.039062 450 L 436 450 L 436 451 L 59.039062 451 Z M 59.039062 450 \"/>\n</clipPath>\n<clipPath id=\"clip12\">\n  <path d=\"M 59.039062 432 L 436 432 L 436 433 L 59.039062 433 Z M 59.039062 432 \"/>\n</clipPath>\n<clipPath id=\"clip13\">\n  <path d=\"M 59.039062 414 L 436 414 L 436 416 L 59.039062 416 Z M 59.039062 414 \"/>\n</clipPath>\n<clipPath id=\"clip14\">\n  <path d=\"M 59.039062 396 L 436 396 L 436 398 L 59.039062 398 Z M 59.039062 396 \"/>\n</clipPath>\n<clipPath id=\"clip15\">\n  <path d=\"M 59.039062 378 L 436 378 L 436 380 L 59.039062 380 Z M 59.039062 378 \"/>\n</clipPath>\n<clipPath id=\"clip16\">\n  <path d=\"M 59.039062 361 L 436 361 L 436 362 L 59.039062 362 Z M 59.039062 361 \"/>\n</clipPath>\n<clipPath id=\"clip17\">\n  <path d=\"M 59.039062 343 L 436 343 L 436 345 L 59.039062 345 Z M 59.039062 343 \"/>\n</clipPath>\n<clipPath id=\"clip18\">\n  <path d=\"M 59.039062 325 L 436 325 L 436 327 L 59.039062 327 Z M 59.039062 325 \"/>\n</clipPath>\n<clipPath id=\"clip19\">\n  <path d=\"M 59.039062 307 L 436 307 L 436 309 L 59.039062 309 Z M 59.039062 307 \"/>\n</clipPath>\n<clipPath id=\"clip20\">\n  <path d=\"M 59.039062 289 L 436 289 L 436 291 L 59.039062 291 Z M 59.039062 289 \"/>\n</clipPath>\n<clipPath id=\"clip21\">\n  <path d=\"M 59.039062 272 L 436 272 L 436 273 L 59.039062 273 Z M 59.039062 272 \"/>\n</clipPath>\n<clipPath id=\"clip22\">\n  <path d=\"M 59.039062 254 L 436 254 L 436 256 L 59.039062 256 Z M 59.039062 254 \"/>\n</clipPath>\n<clipPath id=\"clip23\">\n  <path d=\"M 59.039062 236 L 436 236 L 436 238 L 59.039062 238 Z M 59.039062 236 \"/>\n</clipPath>\n<clipPath id=\"clip24\">\n  <path d=\"M 59.039062 218 L 436 218 L 436 220 L 59.039062 220 Z M 59.039062 218 \"/>\n</clipPath>\n<clipPath id=\"clip25\">\n  <path d=\"M 59.039062 200 L 436 200 L 436 202 L 59.039062 202 Z M 59.039062 200 \"/>\n</clipPath>\n<clipPath id=\"clip26\">\n  <path d=\"M 59.039062 183 L 436 183 L 436 184 L 59.039062 184 Z M 59.039062 183 \"/>\n</clipPath>\n<clipPath id=\"clip27\">\n  <path d=\"M 59.039062 165 L 436 165 L 436 167 L 59.039062 167 Z M 59.039062 165 \"/>\n</clipPath>\n<clipPath id=\"clip28\">\n  <path d=\"M 59.039062 147 L 436 147 L 436 149 L 59.039062 149 Z M 59.039062 147 \"/>\n</clipPath>\n<clipPath id=\"clip29\">\n  <path d=\"M 59.039062 129 L 436 129 L 436 131 L 59.039062 131 Z M 59.039062 129 \"/>\n</clipPath>\n<clipPath id=\"clip30\">\n  <path d=\"M 59.039062 112 L 436 112 L 436 113 L 59.039062 113 Z M 59.039062 112 \"/>\n</clipPath>\n<clipPath id=\"clip31\">\n  <path d=\"M 59.039062 94 L 436 94 L 436 95 L 59.039062 95 Z M 59.039062 94 \"/>\n</clipPath>\n<clipPath id=\"clip32\">\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=\"clip33\">\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 76.828125 \"/>\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 432.613281 L 51.839844 432.613281 \"/>\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 343.667969 L 51.839844 343.667969 \"/>\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 254.722656 L 51.839844 254.722656 \"/>\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 165.773438 L 51.839844 165.773438 \"/>\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 76.828125 L 51.839844 76.828125 \"/>\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=\"441.113281\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"434.441406\"/>\n  <use xlink:href=\"#glyph1-3\" x=\"41.538086\" y=\"431.105469\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"352.167969\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"345.496094\"/>\n  <use xlink:href=\"#glyph1-4\" x=\"41.538086\" y=\"342.160156\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"263.222656\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"256.550781\"/>\n  <use xlink:href=\"#glyph1-5\" x=\"41.538086\" y=\"253.214844\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"174.273438\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"167.601562\"/>\n  <use xlink:href=\"#glyph1-6\" x=\"41.538086\" y=\"164.265625\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph1-1\" x=\"41.538086\" y=\"85.328125\"/>\n  <use xlink:href=\"#glyph1-2\" x=\"41.538086\" y=\"78.65625\"/>\n  <use xlink:href=\"#glyph1-7\" x=\"41.538086\" y=\"75.320312\"/>\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 596.195312 297.429688 C 596.195312 301.902344 592.566406 305.527344 588.09375 305.527344 C 583.621094 305.527344 579.996094 301.902344 579.996094 297.429688 C 579.996094 292.957031 583.621094 289.328125 588.09375 289.328125 C 592.566406 289.328125 596.195312 292.957031 596.195312 297.429688 \"/>\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.285156 319.625 C 768.285156 324.097656 764.660156 327.726562 760.183594 327.726562 C 755.710938 327.726562 752.085938 324.097656 752.085938 319.625 C 752.085938 315.152344 755.710938 311.527344 760.183594 311.527344 C 764.660156 311.527344 768.285156 315.152344 768.285156 319.625 \"/>\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.328125 82.5625 C 548.328125 87.035156 544.703125 90.664062 540.226562 90.664062 C 535.753906 90.664062 532.128906 87.035156 532.128906 82.5625 C 532.128906 78.089844 535.753906 74.464844 540.226562 74.464844 C 544.703125 74.464844 548.328125 78.089844 548.328125 82.5625 \"/>\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 628.445312 392.320312 C 628.445312 396.792969 624.816406 400.421875 620.34375 400.421875 C 615.871094 400.421875 612.246094 396.792969 612.246094 392.320312 C 612.246094 387.847656 615.871094 384.21875 620.34375 384.21875 C 624.816406 384.21875 628.445312 387.847656 628.445312 392.320312 \"/>\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 677.796875 248.027344 C 677.796875 252.503906 674.171875 256.128906 669.695312 256.128906 C 665.222656 256.128906 661.597656 252.503906 661.597656 248.027344 C 661.597656 243.554688 665.222656 239.929688 669.695312 239.929688 C 674.171875 239.929688 677.796875 243.554688 677.796875 248.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 607.230469 466.230469 C 607.230469 470.703125 603.601562 474.332031 599.128906 474.332031 C 594.65625 474.332031 591.027344 470.703125 591.027344 466.230469 C 591.027344 461.757812 594.65625 458.132812 599.128906 458.132812 C 603.601562 458.132812 607.230469 461.757812 607.230469 466.230469 \"/>\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 609.789062 78.929688 C 609.789062 83.402344 606.160156 87.03125 601.6875 87.03125 C 597.214844 87.03125 593.585938 83.402344 593.585938 78.929688 C 593.585938 74.457031 597.214844 70.828125 601.6875 70.828125 C 606.160156 70.828125 609.789062 74.457031 609.789062 78.929688 \"/>\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 704.917969 451.476562 C 704.917969 455.953125 701.292969 459.578125 696.820312 459.578125 C 692.347656 459.578125 688.71875 455.953125 688.71875 451.476562 C 688.71875 447.003906 692.347656 443.378906 696.820312 443.378906 C 701.292969 443.378906 704.917969 447.003906 704.917969 451.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 629.238281 335.625 C 629.238281 340.097656 625.609375 343.722656 621.136719 343.722656 C 616.664062 343.722656 613.039062 340.097656 613.039062 335.625 C 613.039062 331.148438 616.664062 327.523438 621.136719 327.523438 C 625.609375 327.523438 629.238281 331.148438 629.238281 335.625 \"/>\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.460938 407.476562 C 533.460938 411.949219 529.835938 415.574219 525.363281 415.574219 C 520.886719 415.574219 517.261719 411.949219 517.261719 407.476562 C 517.261719 403.003906 520.886719 399.375 525.363281 399.375 C 529.835938 399.375 533.460938 403.003906 533.460938 407.476562 \"/>\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 726.753906 218.308594 C 726.753906 222.78125 723.125 226.40625 718.652344 226.40625 C 714.179688 226.40625 710.554688 222.78125 710.554688 218.308594 C 710.554688 213.832031 714.179688 210.207031 718.652344 210.207031 C 723.125 210.207031 726.753906 213.832031 726.753906 218.308594 \"/>\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 755.859375 292.699219 C 755.859375 297.171875 752.234375 300.796875 747.761719 300.796875 C 743.285156 300.796875 739.660156 297.171875 739.660156 292.699219 C 739.660156 288.226562 743.285156 284.597656 747.761719 284.597656 C 752.234375 284.597656 755.859375 288.226562 755.859375 292.699219 \"/>\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 485.492188 322.339844 C 485.492188 326.8125 481.867188 330.4375 477.390625 330.4375 C 472.917969 330.4375 469.292969 326.8125 469.292969 322.339844 C 469.292969 317.867188 472.917969 314.238281 477.390625 314.238281 C 481.867188 314.238281 485.492188 317.867188 485.492188 322.339844 \"/>\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 753.632812 146.707031 C 753.632812 151.183594 750.003906 154.808594 745.53125 154.808594 C 741.058594 154.808594 737.429688 151.183594 737.429688 146.707031 C 737.429688 142.234375 741.058594 138.609375 745.53125 138.609375 C 750.003906 138.609375 753.632812 142.234375 753.632812 146.707031 \"/>\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 577.085938 183.789062 C 577.085938 188.261719 573.460938 191.890625 568.988281 191.890625 C 564.511719 191.890625 560.886719 188.261719 560.886719 183.789062 C 560.886719 179.316406 564.511719 175.6875 568.988281 175.6875 C 573.460938 175.6875 577.085938 179.316406 577.085938 183.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 638.128906 331.070312 C 638.128906 335.542969 634.5 339.167969 630.027344 339.167969 C 625.554688 339.167969 621.925781 335.542969 621.925781 331.070312 C 621.925781 326.59375 625.554688 322.96875 630.027344 322.96875 C 634.5 322.96875 638.128906 326.59375 638.128906 331.070312 \"/>\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 757.949219 515.5 C 757.949219 519.972656 754.324219 523.601562 749.847656 523.601562 C 745.375 523.601562 741.75 519.972656 741.75 515.5 C 741.75 511.027344 745.375 507.402344 749.847656 507.402344 C 754.324219 507.402344 757.949219 511.027344 757.949219 515.5 \"/>\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 755.339844 467.007812 C 755.339844 471.480469 751.710938 475.105469 747.238281 475.105469 C 742.765625 475.105469 739.140625 471.480469 739.140625 467.007812 C 739.140625 462.53125 742.765625 458.90625 747.238281 458.90625 C 751.710938 458.90625 755.339844 462.53125 755.339844 467.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 487.097656 298.507812 C 487.097656 302.980469 483.472656 306.609375 478.996094 306.609375 C 474.523438 306.609375 470.898438 302.980469 470.898438 298.507812 C 470.898438 294.035156 474.523438 290.40625 478.996094 290.40625 C 483.472656 290.40625 487.097656 294.035156 487.097656 298.507812 \"/>\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 507.605469 306.3125 C 507.605469 310.785156 503.976562 314.414062 499.503906 314.414062 C 495.03125 314.414062 491.402344 310.785156 491.402344 306.3125 C 491.402344 301.839844 495.03125 298.214844 499.503906 298.214844 C 503.976562 298.214844 507.605469 301.839844 507.605469 306.3125 \"/>\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 737.167969 441.214844 C 737.167969 445.6875 733.542969 449.3125 729.070312 449.3125 C 724.59375 449.3125 720.96875 445.6875 720.96875 441.214844 C 720.96875 436.738281 724.59375 433.113281 729.070312 433.113281 C 733.542969 433.113281 737.167969 436.738281 737.167969 441.214844 \"/>\n<g clip-path=\"url(#clip3)\" 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 635.078125 518.78125 C 635.078125 523.257812 631.453125 526.882812 626.980469 526.882812 C 622.503906 526.882812 618.878906 523.257812 618.878906 518.78125 C 618.878906 514.308594 622.503906 510.683594 626.980469 510.683594 C 631.453125 510.683594 635.078125 514.308594 635.078125 518.78125 \"/>\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 692.878906 276.039062 C 692.878906 280.515625 689.253906 284.140625 684.777344 284.140625 C 680.304688 284.140625 676.679688 280.515625 676.679688 276.039062 C 676.679688 271.566406 680.304688 267.941406 684.777344 267.941406 C 689.253906 267.941406 692.878906 271.566406 692.878906 276.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 599.96875 315.953125 C 599.96875 320.429688 596.339844 324.054688 591.867188 324.054688 C 587.394531 324.054688 583.769531 320.429688 583.769531 315.953125 C 583.769531 311.480469 587.394531 307.855469 591.867188 307.855469 C 596.339844 307.855469 599.96875 311.480469 599.96875 315.953125 \"/>\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 558.769531 498.507812 C 558.769531 502.980469 555.144531 506.609375 550.671875 506.609375 C 546.195312 506.609375 542.570312 502.980469 542.570312 498.507812 C 542.570312 494.035156 546.195312 490.410156 550.671875 490.410156 C 555.144531 490.410156 558.769531 494.035156 558.769531 498.507812 \"/>\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 676.8125 355.808594 C 676.8125 360.28125 673.183594 363.910156 668.710938 363.910156 C 664.238281 363.910156 660.609375 360.28125 660.609375 355.808594 C 660.609375 351.335938 664.238281 347.710938 668.710938 347.710938 C 673.183594 347.710938 676.8125 351.335938 676.8125 355.808594 \"/>\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.246094 124.496094 C 703.246094 128.96875 699.617188 132.597656 695.144531 132.597656 C 690.671875 132.597656 687.042969 128.96875 687.042969 124.496094 C 687.042969 120.023438 690.671875 116.398438 695.144531 116.398438 C 699.617188 116.398438 703.246094 120.023438 703.246094 124.496094 \"/>\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 664.558594 275.214844 C 664.558594 279.6875 660.933594 283.3125 656.457031 283.3125 C 651.984375 283.3125 648.359375 279.6875 648.359375 275.214844 C 648.359375 270.742188 651.984375 267.113281 656.457031 267.113281 C 660.933594 267.113281 664.558594 270.742188 664.558594 275.214844 \"/>\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 675.414062 226.65625 C 675.414062 231.128906 671.785156 234.753906 667.3125 234.753906 C 662.839844 234.753906 659.210938 231.128906 659.210938 226.65625 C 659.210938 222.179688 662.839844 218.554688 667.3125 218.554688 C 671.785156 218.554688 675.414062 222.179688 675.414062 226.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 576.910156 197.875 C 576.910156 202.347656 573.285156 205.972656 568.808594 205.972656 C 564.335938 205.972656 560.710938 202.347656 560.710938 197.875 C 560.710938 193.398438 564.335938 189.773438 568.808594 189.773438 C 573.285156 189.773438 576.910156 193.398438 576.910156 197.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 745.261719 110.027344 C 745.261719 114.5 741.636719 118.125 737.164062 118.125 C 732.6875 118.125 729.0625 114.5 729.0625 110.027344 C 729.0625 105.554688 732.6875 101.925781 737.164062 101.925781 C 741.636719 101.925781 745.261719 105.554688 745.261719 110.027344 \"/>\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 774.605469 416.9375 C 774.605469 421.410156 770.980469 425.039062 766.507812 425.039062 C 762.03125 425.039062 758.40625 421.410156 758.40625 416.9375 C 758.40625 412.464844 762.03125 408.839844 766.507812 408.839844 C 770.980469 408.839844 774.605469 412.464844 774.605469 416.9375 \"/>\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 709.949219 82.253906 C 709.949219 86.726562 706.324219 90.355469 701.851562 90.355469 C 697.375 90.355469 693.75 86.726562 693.75 82.253906 C 693.75 77.78125 697.375 74.15625 701.851562 74.15625 C 706.324219 74.15625 709.949219 77.78125 709.949219 82.253906 \"/>\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 626.359375 474.785156 C 626.359375 479.257812 622.734375 482.886719 618.261719 482.886719 C 613.789062 482.886719 610.160156 479.257812 610.160156 474.785156 C 610.160156 470.3125 613.789062 466.683594 618.261719 466.683594 C 622.734375 466.683594 626.359375 470.3125 626.359375 474.785156 \"/>\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 527.753906 235.136719 C 527.753906 239.609375 524.128906 243.238281 519.65625 243.238281 C 515.179688 243.238281 511.554688 239.609375 511.554688 235.136719 C 511.554688 230.664062 515.179688 227.035156 519.65625 227.035156 C 524.128906 227.035156 527.753906 230.664062 527.753906 235.136719 \"/>\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 761.582031 297.929688 C 761.582031 302.402344 757.953125 306.03125 753.480469 306.03125 C 749.007812 306.03125 745.378906 302.402344 745.378906 297.929688 C 745.378906 293.457031 749.007812 289.828125 753.480469 289.828125 C 757.953125 289.828125 761.582031 293.457031 761.582031 297.929688 \"/>\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 665.558594 267.808594 C 665.558594 272.285156 661.933594 275.910156 657.460938 275.910156 C 652.988281 275.910156 649.359375 272.285156 649.359375 267.808594 C 649.359375 263.335938 652.988281 259.710938 657.460938 259.710938 C 661.933594 259.710938 665.558594 263.335938 665.558594 267.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 767.1875 472.253906 C 767.1875 476.726562 763.5625 480.355469 759.085938 480.355469 C 754.613281 480.355469 750.988281 476.726562 750.988281 472.253906 C 750.988281 467.78125 754.613281 464.152344 759.085938 464.152344 C 763.5625 464.152344 767.1875 467.78125 767.1875 472.253906 \"/>\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 682.109375 501.417969 C 682.109375 505.894531 678.484375 509.519531 674.011719 509.519531 C 669.535156 509.519531 665.910156 505.894531 665.910156 501.417969 C 665.910156 496.945312 669.535156 493.320312 674.011719 493.320312 C 678.484375 493.320312 682.109375 496.945312 682.109375 501.417969 \"/>\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 732.359375 334.835938 C 732.359375 339.3125 728.730469 342.9375 724.257812 342.9375 C 719.785156 342.9375 716.15625 339.3125 716.15625 334.835938 C 716.15625 330.363281 719.785156 326.738281 724.257812 326.738281 C 728.730469 326.738281 732.359375 330.363281 732.359375 334.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 676.234375 197.917969 C 676.234375 202.390625 672.605469 206.019531 668.132812 206.019531 C 663.660156 206.019531 660.035156 202.390625 660.035156 197.917969 C 660.035156 193.445312 663.660156 189.816406 668.132812 189.816406 C 672.605469 189.816406 676.234375 193.445312 676.234375 197.917969 \"/>\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 567.613281 409.765625 C 567.613281 414.238281 563.988281 417.863281 559.511719 417.863281 C 555.039062 417.863281 551.414062 414.238281 551.414062 409.765625 C 551.414062 405.289062 555.039062 401.664062 559.511719 401.664062 C 563.988281 401.664062 567.613281 405.289062 567.613281 409.765625 \"/>\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 487.191406 423.589844 C 487.191406 428.066406 483.5625 431.691406 479.089844 431.691406 C 474.617188 431.691406 470.988281 428.066406 470.988281 423.589844 C 470.988281 419.117188 474.617188 415.492188 479.089844 415.492188 C 483.5625 415.492188 487.191406 419.117188 487.191406 423.589844 \"/>\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 624.925781 450.148438 C 624.925781 454.621094 621.296875 458.25 616.824219 458.25 C 612.351562 458.25 608.722656 454.621094 608.722656 450.148438 C 608.722656 445.675781 612.351562 442.050781 616.824219 442.050781 C 621.296875 442.050781 624.925781 445.675781 624.925781 450.148438 \"/>\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 596.054688 176.4375 C 596.054688 180.910156 592.429688 184.539062 587.957031 184.539062 C 583.484375 184.539062 579.855469 180.910156 579.855469 176.4375 C 579.855469 171.964844 583.484375 168.335938 587.957031 168.335938 C 592.429688 168.335938 596.054688 171.964844 596.054688 176.4375 \"/>\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 522.855469 369.019531 C 522.855469 373.496094 519.230469 377.121094 514.753906 377.121094 C 510.28125 377.121094 506.65625 373.496094 506.65625 369.019531 C 506.65625 364.546875 510.28125 360.921875 514.753906 360.921875 C 519.230469 360.921875 522.855469 364.546875 522.855469 369.019531 \"/>\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.265625 425.027344 C 716.265625 429.5 712.640625 433.128906 708.167969 433.128906 C 703.695312 433.128906 700.066406 429.5 700.066406 425.027344 C 700.066406 420.554688 703.695312 416.929688 708.167969 416.929688 C 712.640625 416.929688 716.265625 420.554688 716.265625 425.027344 \"/>\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 479.484375 C 551 483.957031 547.375 487.582031 542.902344 487.582031 C 538.425781 487.582031 534.800781 483.957031 534.800781 479.484375 C 534.800781 475.007812 538.425781 471.382812 542.902344 471.382812 C 547.375 471.382812 551 475.007812 551 479.484375 \"/>\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 589.761719 465.644531 C 589.761719 470.117188 586.136719 473.742188 581.660156 473.742188 C 577.1875 473.742188 573.5625 470.117188 573.5625 465.644531 C 573.5625 461.171875 577.1875 457.542969 581.660156 457.542969 C 586.136719 457.542969 589.761719 461.171875 589.761719 465.644531 \"/>\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 713.332031 294.996094 C 713.332031 299.46875 709.707031 303.09375 705.234375 303.09375 C 700.757812 303.09375 697.132812 299.46875 697.132812 294.996094 C 697.132812 290.519531 700.757812 286.894531 705.234375 286.894531 C 709.707031 286.894531 713.332031 290.519531 713.332031 294.996094 \"/>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"584.59375\" y=\"301.706055\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"756.683594\" y=\"323.901367\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"536.726562\" y=\"86.838867\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"616.84375\" y=\"396.59668\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"666.195312\" y=\"252.303711\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"595.628906\" y=\"470.506836\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"598.1875\" y=\"83.206055\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"693.320312\" y=\"455.75293\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"617.636719\" y=\"339.901367\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"521.863281\" y=\"411.75293\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"715.152344\" y=\"222.584961\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"744.261719\" y=\"296.975586\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"473.890625\" y=\"326.616211\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"742.03125\" y=\"150.983398\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"565.488281\" y=\"188.06543\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"626.527344\" y=\"335.34668\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"746.347656\" y=\"519.776367\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"743.738281\" y=\"471.28418\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"475.496094\" y=\"302.78418\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"496.003906\" y=\"310.588867\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"725.570312\" y=\"445.491211\"/>\n</g>\n<g clip-path=\"url(#clip4)\" clip-rule=\"nonzero\">\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"623.480469\" y=\"523.057617\"/>\n</g>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"681.277344\" y=\"280.31543\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"588.367188\" y=\"320.229492\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"547.171875\" y=\"502.78418\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"665.210938\" y=\"360.084961\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"691.644531\" y=\"128.772461\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"652.957031\" y=\"279.491211\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"663.8125\" y=\"230.932617\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"565.308594\" y=\"202.151367\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"733.664062\" y=\"114.303711\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"763.007812\" y=\"421.213867\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"698.351562\" y=\"86.530273\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"614.761719\" y=\"479.061523\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"516.15625\" y=\"239.413086\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"749.980469\" y=\"302.206055\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"653.960938\" y=\"272.084961\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"755.585938\" y=\"476.530273\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"670.511719\" y=\"505.694336\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"720.757812\" y=\"339.112305\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"664.632812\" y=\"202.194336\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"556.011719\" y=\"414.041992\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"475.589844\" y=\"427.866211\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"613.324219\" y=\"454.424805\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"584.457031\" y=\"180.713867\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"511.253906\" y=\"373.295898\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"704.667969\" y=\"429.303711\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"539.402344\" y=\"483.760742\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-1\" x=\"578.160156\" y=\"469.920898\"/>\n</g>\n<g style=\"fill:rgb(100%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"701.734375\" y=\"299.272461\"/>\n</g>\n<g clip-path=\"url(#clip5)\" 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(#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 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 76.828125 L 246.96875 76.828125 Z M 246.96875 521.558594 \"/>\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 521.558594 L 434.898438 521.558594 \"/>\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 503.769531 L 434.898438 503.769531 \"/>\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 485.980469 L 434.898438 485.980469 \"/>\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 468.191406 L 434.898438 468.191406 \"/>\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 450.402344 L 434.898438 450.402344 \"/>\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 432.613281 L 434.898438 432.613281 \"/>\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 414.824219 L 434.898438 414.824219 \"/>\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 397.035156 L 434.898438 397.035156 \"/>\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 379.246094 L 434.898438 379.246094 \"/>\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 361.457031 L 434.898438 361.457031 \"/>\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 343.667969 L 434.898438 343.667969 \"/>\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 325.878906 L 434.898438 325.878906 \"/>\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 308.089844 L 434.898438 308.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 290.300781 L 434.898438 290.300781 \"/>\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 272.511719 L 434.898438 272.511719 \"/>\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 254.722656 L 434.898438 254.722656 \"/>\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 236.933594 L 434.898438 236.933594 \"/>\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.144531 L 434.898438 219.144531 \"/>\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 201.355469 L 434.898438 201.355469 \"/>\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 183.566406 L 434.898438 183.566406 \"/>\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 165.773438 L 434.898438 165.773438 \"/>\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 147.984375 L 434.898438 147.984375 \"/>\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 130.195312 L 434.898438 130.195312 \"/>\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 112.40625 L 434.898438 112.40625 \"/>\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 94.617188 L 434.898438 94.617188 \"/>\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 76.828125 L 434.898438 76.828125 \"/>\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(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=\"132.003906\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-3\" x=\"138.675781\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"145.347656\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-5\" x=\"148.683594\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"152.679688\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-7\" x=\"159.351562\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-3\" x=\"162.6875\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-8\" x=\"169.359375\" y=\"48.737305\"/>\n</g>\n<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n  <use xlink:href=\"#glyph0-2\" x=\"319.933594\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-3\" x=\"326.605469\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"333.277344\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-5\" x=\"336.613281\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-6\" x=\"340.609375\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-7\" x=\"347.28125\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-3\" x=\"350.617188\" y=\"48.737305\"/>\n  <use xlink:href=\"#glyph0-8\" x=\"357.289062\" 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-9\" x=\"564.328125\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-10\" x=\"572.992188\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-11\" x=\"579.664062\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-12\" x=\"589.660156\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-13\" x=\"596.332031\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-14\" x=\"603.003906\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"607\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-15\" x=\"610.335938\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-16\" x=\"617.007812\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"620.34375\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-17\" x=\"623.679688\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-15\" x=\"629.932617\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"636.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"642.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-13\" x=\"648.604492\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-18\" x=\"655.276367\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-19\" x=\"661.276367\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-4\" x=\"664.612305\" y=\"547.256836\"/>\n  <use xlink:href=\"#glyph0-3\" 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 19:36:42 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:48 GMT",
         "Content-Type": "image/svg+xml",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d9ad2c460e04dd4eb4366365885bc69f21499110602; expires=Tue, 03-Jul-18 19:36:42 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=da2763a1097eb0c8273298fbb993484111499196948; expires=Wed, 04-Jul-18 19:35:48 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 +63,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 19:36:42 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:48 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "MISS",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b8e8cf1147f-AMS"
+        "CF-RAY": "3794879fefc672e9-AMS"
       },
       "status_code": 200,
       "type": "ok"
@@ -83,29 +87,29 @@
       "url": "https://public.opencpu.org/ocpu/library/animation/R/flip.coin/"
     },
     "response": {
-      "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",
+      "body": "/ocpu/tmp/x0450cd4d4d/R/flip.coin\n/ocpu/tmp/x0450cd4d4d/R/.val\n/ocpu/tmp/x0450cd4d4d/graphics/1\n/ocpu/tmp/x0450cd4d4d/graphics/2\n/ocpu/tmp/x0450cd4d4d/graphics/3\n/ocpu/tmp/x0450cd4d4d/graphics/4\n/ocpu/tmp/x0450cd4d4d/graphics/5\n/ocpu/tmp/x0450cd4d4d/graphics/6\n/ocpu/tmp/x0450cd4d4d/graphics/7\n/ocpu/tmp/x0450cd4d4d/graphics/8\n/ocpu/tmp/x0450cd4d4d/graphics/9\n/ocpu/tmp/x0450cd4d4d/graphics/10\n/ocpu/tmp/x0450cd4d4d/graphics/11\n/ocpu/tmp/x0450cd4d4d/graphics/12\n/ocpu/tmp/x0450cd4d4d/graphics/13\n/ocpu/tmp/x0450cd4d4d/graphics/14\n/ocpu/tmp/x0450cd4d4d/graphics/15\n/ocpu/tmp/x0450cd4d4d/graphics/16\n/ocpu/tmp/x0450cd4d4d/graphics/17\n/ocpu/tmp/x0450cd4d4d/graphics/18\n/ocpu/tmp/x0450cd4d4d/graphics/19\n/ocpu/tmp/x0450cd4d4d/graphics/20\n/ocpu/tmp/x0450cd4d4d/graphics/21\n/ocpu/tmp/x0450cd4d4d/graphics/22\n/ocpu/tmp/x0450cd4d4d/graphics/23\n/ocpu/tmp/x0450cd4d4d/graphics/24\n/ocpu/tmp/x0450cd4d4d/graphics/25\n/ocpu/tmp/x0450cd4d4d/graphics/26\n/ocpu/tmp/x0450cd4d4d/graphics/27\n/ocpu/tmp/x0450cd4d4d/graphics/28\n/ocpu/tmp/x0450cd4d4d/graphics/29\n/ocpu/tmp/x0450cd4d4d/graphics/30\n/ocpu/tmp/x0450cd4d4d/graphics/31\n/ocpu/tmp/x0450cd4d4d/graphics/32\n/ocpu/tmp/x0450cd4d4d/graphics/33\n/ocpu/tmp/x0450cd4d4d/graphics/34\n/ocpu/tmp/x0450cd4d4d/graphics/35\n/ocpu/tmp/x0450cd4d4d/graphics/36\n/ocpu/tmp/x0450cd4d4d/graphics/37\n/ocpu/tmp/x0450cd4d4d/graphics/38\n/ocpu/tmp/x0450cd4d4d/graphics/39\n/ocpu/tmp/x0450cd4d4d/graphics/40\n/ocpu/tmp/x0450cd4d4d/graphics/41\n/ocpu/tmp/x0450cd4d4d/graphics/42\n/ocpu/tmp/x0450cd4d4d/graphics/43\n/ocpu/tmp/x0450cd4d4d/graphics/44\n/ocpu/tmp/x0450cd4d4d/graphics/45\n/ocpu/tmp/x0450cd4d4d/graphics/46\n/ocpu/tmp/x0450cd4d4d/graphics/47\n/ocpu/tmp/x0450cd4d4d/graphics/48\n/ocpu/tmp/x0450cd4d4d/graphics/49\n/ocpu/tmp/x0450cd4d4d/graphics/50\n/ocpu/tmp/x0450cd4d4d/source\n/ocpu/tmp/x0450cd4d4d/console\n/ocpu/tmp/x0450cd4d4d/info\n/ocpu/tmp/x0450cd4d4d/files/DESCRIPTION\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:41 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:48 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=dd5126e19d2b4d5443610c5da9b3705131499110601; expires=Tue, 03-Jul-18 19:36:41 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=ded028cd7004080f689a33f47932fae421499196947; expires=Wed, 04-Jul-18 19:35:47 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0f284ca594",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0f284ca594/",
+        "X-ocpu-session": "x0450cd4d4d",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0450cd4d4d/",
         "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 19:36:40 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:48 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
-        "X-ocpu-cache": "HIT",
+        "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b8c58ed2c36-AMS"
+        "CF-RAY": "3794879bfcfe72e9-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 37b733ee2e222f2d1e22e54a3ccb4571da254402..7231a55e460665738d41b5d9c8a38f6ebcaef459 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 19:36:39 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:45 GMT",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d2023565807c5b15fdc2b9a427b146be41499110598; expires=Tue, 03-Jul-18 19:36:38 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=dabb220c2e612da681742d63d917216541499196944; expires=Wed, 04-Jul-18 19:35:44 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x03895cb4dd",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x03895cb4dd/",
+        "X-ocpu-session": "x03fbcb6253",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x03fbcb6253/",
         "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 19:36:38 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:45 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b78f8be0755-AMS"
+        "CF-RAY": "379487894dfc72e9-AMS"
       },
       "status_code": 400,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/description.json b/test/fixtures/vcr_cassettes/description.json
index b8490a2eee2ed17e9397cf6ff4669454f30fd438..5fb1ad70657b29178d8f6c10bd8d29025428835f 100644
--- a/test/fixtures/vcr_cassettes/description.json
+++ b/test/fixtures/vcr_cassettes/description.json
@@ -1,7 +1,7 @@
 [
   {
     "request": {
-      "body": "null",
+      "body": "",
       "headers": {
         "Content-Type": "application/json"
       },
@@ -11,13 +11,13 @@
       "url": "https://public.opencpu.org/ocpu/library/ade4/info"
     },
     "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",
+      "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 19:36:36 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:47 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d83fd631290f02a0d4734ab7fa359ab871499110595; expires=Tue, 03-Jul-18 19:36:35 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=ded028cd7004080f689a33f47932fae421499196947; expires=Wed, 04-Jul-18 19:35:47 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",
@@ -25,13 +25,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 15:46:24 UTC",
+        "X-ocpu-time": "2017-07-04 19:18:54 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "HIT",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b68699b0c89-AMS"
+        "CF-RAY": "3794879aac1872e9-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 ca775c68b3cbe2b42e59700d338abb3b8954ecbe..63db61acc146d5da898df96046a1bcf8a5d29c62 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 19:36:39 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:46 GMT",
         "Content-Type": "application/json",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=df0f396fce3004ab7546281f469cdc3371499110599; expires=Tue, 03-Jul-18 19:36:39 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d706141c6ed9862b99f2e87fc99de91201499196945; expires=Wed, 04-Jul-18 19:35:45 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x004252601f",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x004252601f/",
+        "X-ocpu-session": "x03277d9e60",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x03277d9e60/",
         "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 19:36:39 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:46 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b7ccb6b72a7-AMS"
+        "CF-RAY": "3794878f0a4a72e9-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 9fb0b40183096339f0a6b8ac01ea873a3c4af86f..c7ed682a3fdff2126cc304c416bbe06dd9f731fa 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.42, 0.58],\n  \"nmax\": [50]\n}\n",
+      "body": "{\n  \"freq\": [0.52, 0.48],\n  \"nmax\": [50]\n}\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:37 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:47 GMT",
         "Content-Type": "application/json",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d43aa163da19b00be9313397c622fb7631499110596; expires=Tue, 03-Jul-18 19:36:36 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d4f5868ad2e6fbca08ef47c277bf920a81499196946; expires=Wed, 04-Jul-18 19:35:46 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0672b619eb",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0672b619eb/",
+        "X-ocpu-session": "x08d4179601",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x08d4179601/",
         "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 19:36:36 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:47 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b6bcf5f2bee-AMS"
+        "CF-RAY": "379487937dda72e9-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/github_package_not_found.json b/test/fixtures/vcr_cassettes/github_package_not_found.json
index c1536edff0ebcf18e9400238d2ab1ab6fdd3aa7a..98c77d090bc7c1f794bff75571e40e15d70314c4 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 19:36:38 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:44 GMT",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d612190d7791ef407bd7146b64583fedc1499110598; expires=Tue, 03-Jul-18 19:36:38 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=dafd6c65b3066d69cfa18ef656003e15d1499196941; expires=Wed, 04-Jul-18 19:35:41 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 19:36:38 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:44 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b773eed2bee-AMS"
+        "CF-RAY": "379487724dbe72e9-AMS"
       },
       "status_code": 404,
       "type": "ok"
diff --git a/test/fixtures/vcr_cassettes/prepare.json b/test/fixtures/vcr_cassettes/prepare.json
index b5c9058b6a6d3c694cc239641649bffe880df3c6..a11a3e608aaa9b36d09573060c862056acd89723 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/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",
+      "body": "/ocpu/tmp/x0962d8fd71/R/hmac\n/ocpu/tmp/x0962d8fd71/R/.val\n/ocpu/tmp/x0962d8fd71/stdout\n/ocpu/tmp/x0962d8fd71/source\n/ocpu/tmp/x0962d8fd71/console\n/ocpu/tmp/x0962d8fd71/info\n/ocpu/tmp/x0962d8fd71/files/DESCRIPTION\n",
       "headers": {
-        "Date": "Mon, 03 Jul 2017 19:36:38 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:47 GMT",
         "Content-Type": "text/plain; charset=utf-8",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d3d7f7600ff3235473a91fe8293cef1471499110597; expires=Tue, 03-Jul-18 19:36:37 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=ded028cd7004080f689a33f47932fae421499196947; expires=Wed, 04-Jul-18 19:35:47 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0fbb142632",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0fbb142632/",
+        "X-ocpu-session": "x0962d8fd71",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x0962d8fd71/",
         "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 19:36:37 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:47 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b73fb10147f-AMS"
+        "CF-RAY": "37948797f9d972e9-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 6e3b93c8de3ec8ef5dea1d923726b2ed8b8a79a8..d23aea5c41e644cc77a820052942e09a6009ea93 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 19:36:37 GMT",
+        "Date": "Tue, 04 Jul 2017 19:35:45 GMT",
         "Content-Type": "application/json",
         "Transfer-Encoding": "chunked",
         "Connection": "keep-alive",
-        "Set-Cookie": "__cfduid=d73a7efc4e863412cedb1424801778c1e1499110597; expires=Tue, 03-Jul-18 19:36:37 GMT; path=/; domain=.opencpu.org; HttpOnly",
+        "Set-Cookie": "__cfduid=d706141c6ed9862b99f2e87fc99de91201499196945; expires=Wed, 04-Jul-18 19:35:45 GMT; path=/; domain=.opencpu.org; HttpOnly",
         "Cache-Control": "max-age=300, public",
-        "X-ocpu-session": "x0ce45aacd6",
-        "Location": "https://public.opencpu.org/ocpu/tmp/x0ce45aacd6/",
+        "X-ocpu-session": "x00c2182bc5",
+        "Location": "https://public.opencpu.org/ocpu/tmp/x00c2182bc5/",
         "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 19:36:37 UTC",
+        "X-ocpu-time": "2017-07-04 19:35:45 UTC",
         "X-ocpu-version": "2.0.3.1",
         "X-ocpu-server": "rApache",
         "Vary": "Accept-Encoding",
         "X-ocpu-cache": "EXPIRED",
         "Server": "cloudflare-nginx",
-        "CF-RAY": "378c4b703ce92c36-AMS"
+        "CF-RAY": "3794878ce8c872e9-AMS"
       },
       "status_code": 201,
       "type": "ok"
diff --git a/test/opencpu/client_test.exs b/test/opencpu/client_test.exs
index 55eff6e7247da9d95773359d6ed4ebf893b9a08a..f6cff532faf97b9b3f279dfc7dc0af9c11c3fb38 100644
--- a/test/opencpu/client_test.exs
+++ b/test/opencpu/client_test.exs
@@ -1,11 +1,11 @@
 defmodule OpenCPU.ClientTest do
   use ExUnit.Case, async: false
-  use ExVCR.Mock
+  use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney
   alias OpenCPU.Client
 
   setup_all do
     ExVCR.Config.cassette_library_dir("test/fixtures/vcr_cassettes")
-    HTTPotion.start
+    HTTPoison.start
     :ok
   end
 
diff --git a/test/opencpu/delayed_calculation_test.exs b/test/opencpu/delayed_calculation_test.exs
index 2d89e63e1c58cc212a3259ac3be1d25161ed039a..dd5e0ec6ea095db729fb91691531091a95a90668 100644
--- a/test/opencpu/delayed_calculation_test.exs
+++ b/test/opencpu/delayed_calculation_test.exs
@@ -1,12 +1,12 @@
 defmodule OpenCPU.DelayedCalculationTest do
   use ExUnit.Case, async: false
-  use ExVCR.Mock
+  use ExVCR.Mock, adapter: ExVCR.Adapter.Hackney
   alias OpenCPU.{Client, DelayedCalculation}
 
   setup_all do
     Application.put_env(:opencpu, :endpoint_url, "https://public.opencpu.org/ocpu")
     ExVCR.Config.cassette_library_dir("test/fixtures/vcr_cassettes")
-    HTTPotion.start
+    HTTPoison.start
     :ok
   end