---
metadata:
  - name: generator
    content: Diplodoc Platform v5.19.6
alternate:
  - https://docs.routeq.com/doc/en/vrp/examples-of-settings.md
title: RouteQ — use cases — example settings for business cases
---
> **Documentation Index:** Fetch the complete configuration index at https://docs.routeq.com/doc/en/llms.txt


# Example settings for business cases

## Planning the loading of your own couriers {#own-couriers}

**When to use**

When planning the loading of your own couriers, it's important to:

- Involve all couriers.
- Distribute work more or less evenly.

In this case, the algorithm must build a route in such a way that all resources are used evenly. Minimizing the amount of resources isn't a goal.

**How to implement this scenario**

In RouteQ, there are several parameters that you can use to involve all couriers and ensure uniform loading:

1. `cost.fixed` reduces cost per use. The algorithm aims to reduce the total cost of the solution. If `cost.fixed` is specified, it also minimizes the number of couriers. For a scenario where all couriers must be involved, set this cost to 0 or the minimum. The choice of value depends on transport capacity:

    - If you use vehicles of the same capacity, `cost.fixed` = 0.

    - If you use vehicles with different carrying capacities, `cost.fixed` must be minimal, but proportional to the carrying capacity (see an example in [Vehicle or courier carrying capacity](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#vehicle-capacity)). In this case, `cost.fixed` can't equal 0. Otherwise, there may be situations with a load mismatch for different vehicles (for example, a vehicle with a capacity of 0.8 tons will be loaded to 700 kg, while a vehicle with a capacity of 1.5 tons will be loaded to 100 kg).

2. Sometimes, using `cost.fixed` = 0 isn't enough. Then you need to limit the minimum number of stops `minimal_stops` (for more information, see [Limit the number of stops per shift](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops)). Set `minimal_stops` to 1 and set big penalties `penalty.stop_lack.fixed` (for making fewer stops than the minimum number) and `penalty.stop_lack.per_stop` (for each stop missing under the minimum number).

3. For uniform distribution of orders among vehicles or couriers, use balancing settings (for more information, see [Balanced loading option](https://docs.routeq.com/doc/en/vrp/balanced-groups.md)).

{% note alert %}

The cost per use is set to `cost.fixed` = 3000 by default. That's why you must explicitly set 0 to specify a zero cost, instead of leaving an empty value.

{% endnote %}


**Example 1**

This example shows how the algorithm works without using uniform loading settings.

The task has 28 orders and 5 couriers. As a result of planning, only 4 couriers are used.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/2fe20b83-b5ee3bf0-5a770bdd-daf0e605) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/2fe20b83-b5ee3bf0-5a770bdd-daf0e605) ⋅ [View on map](https://yandex.com/courier/mvrp-map#2fe20b83-b5ee3bf0-5a770bdd-daf0e605)

**Example 2**

We solve the same task in example 1, but using `cost.fixed` = 0. The result is that all 5 couriers are used.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/96f9bb12-54374209-a382a97d-8d7dbd71) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/96f9bb12-54374209-a382a97d-8d7dbd71) ⋅ [View on map](https://yandex.com/courier/mvrp-map#96f9bb12-54374209-a382a97d-8d7dbd71)

**Example 3**

The task has 28 orders and 10 couriers. We use `minimal_stops` = 1 and penalties. As a result, the algorithm distributes orders among all 10 couriers.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/37093ab1-eaae3adc-91bfe244-38db46d9) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/37093ab1-eaae3adc-91bfe244-38db46d9) ⋅ [View on map](https://yandex.com/courier/mvrp-map#37093ab1-eaae3adc-91bfe244-38db46d9)


## Simultaneous planning for couriers who drive a vehicle and who use public transport {#simultaneous-planning-vehicle-and-public-transport}

**How to implement this scenario**

In case of simultaneous planning for couriers who travel by public transport and who drive, note that it's necessary to specify a different cost per kilometer and per hour for them. This is for the following reasons:

- **The cost of traveling by public transport**

    For couriers traveling by public transport, mileage in the service is counted only for the part of the route where the courier travels on foot.

    For couriers who travel by public transport, set the cost per kilometer of mileage `cost.km` higher than for couriers who drive. This is necessary so that the algorithm considers the route where couriers have to walk a lot (for example, if delivery points are far from public transport stops) to be more expensive than the route where delivery points are located near public transport stops. The algorithm will try to reduce the cost of the solution, so it'll tend to build routes with short walking sections.

- **Order distribution**

    Couriers on vehicles must carry out longer-distance orders, and couriers on public transport must carry out orders in the city center.

    You can only strictly distribute orders using tags (for more information, see [Vehicle tags](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#tags)), but this can be achieved indirectly by setting a different cost per hour of work `cost.hour` (you can't use cost per kilometer of mileage, because only the walking mileage is taken into account for couriers on public transport). This means that `cost.hour` must be higher for couriers on public transport so that the algorithm builds short routes for them.


**Example**

There are 4 couriers in the task: 2 couriers using public transport, 2 drivers, and 40 orders. For couriers using public transport, `cost.km` = 30 and `cost.hour` = 300. For couriers who drive, `cost.km` = 8 and `cost.hour` = 100.

As a result, 3 out of 4 couriers are used, 2 of them drive, and only 1 uses public transport. The total travel time for a courier using public transport is 3 hours 12 minutes. For couriers who drive, the time is 5 hours 53 minutes and 7 hours 5 minutes.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/9eba4d42-4e920863-1d318a9d-34ebdd7b) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/9eba4d42-4e920863-1d318a9d-34ebdd7b) ⋅ [View on map](https://yandex.com/courier/mvrp-map#9eba4d42-4e920863-1d318a9d-34ebdd7b)


## Simultaneous planning of current and next-day orders {#simultaneous-planning-current-and-next-day-orders}

**When to use**

The shipment period may sometimes take more than a day. For example, it may happen under the following conditions:

1. Planning is done in the daytime.
1. Shipment is carried out in the evening or at night of the same day and on the next morning.

**How to implement this scenario**

The scenario is implemented using the relative format of time windows. In the order, shift, and depot windows, use the [shift relative to the planning date](https://docs.routeq.com/doc/en/vrp/properties-of-time-window.md#relative-time-windows).

In the interface, set the planning date when you start the task. In the API request, do it in the `options.date` field.

It's important to specify the shift correctly for order windows, courier shift windows, and depot windows. Example of an order with an evening window of `21:00–23:00`:

- The morning window for the next day is set to `1.07:00–1.09:00`.

- Vehicles that deliver orders in the evening and at night have a `20:00–1.04:00` shift.

- Vehicles that deliver in the morning have a `1.05:00–1.18:00` shift.

- The specified depot window covers the entire delivery period: `20:00–1.20:00` (the return of the vehicle to the depot must also fall within the depot's operation window).

**Example**

In this example, there are orders that need to be delivered this evening and the next day. One courier works the night shift, and the other one works the morning and afternoon shift. The depot's operation window is set to cover the entire delivery period. As a result, current-day orders are delivered by the first courier, and next-day orders are delivered by the second one.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/33f30022-c950975f-62ff551-6e7cbb2b) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/33f30022-c950975f-62ff551-6e7cbb2b) ⋅ [View on map](https://yandex.com/courier/mvrp-map#33f30022-c950975f-62ff551-6e7cbb2b)


## Planning orders that can be rescheduled / Planning part of the orders {#part-of-orders}

**When to use**

Use this scenario in situations when, as a result of planning, some orders may be unassigned, for example:

- **There's a lot of orders**

    Planning involves more orders than can be shipped by the couriers available. The algorithm needs to plan routes in such a way that a maximum number of orders is carried out.

- **The possible delivery period is defined**

    Planning involves orders that can be delivered during a certain time period, not necessarily today. They can be delivered today, if this is the best option, or rescheduled for tomorrow.


**How to implement this scenario**

Change the non-delivery penalty for orders in the [penalty.drop](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#penalties-not-delivering) parameter. By default, it's set to 1,000,000. Such a large value is used because when planning, in the normal course of events, it's assumed that all orders must be delivered.

Also note the following:

- Set a `penalty.drop` penalty taking into account the number of orders at one point.

    In the data structure, the `penalty.drop` penalty is set per order (`location`), not per point. If there are multiple orders to the same point, the penalty for non-delivery to this point is several times higher than to other points. This may lead to situations where points with multiple orders will be included in routes, even if this is suboptimal in terms of mileage. When you have few multi-orders, the effect may be very slight, but for frequent multi-orders, set `penalty.drop` as a penalty for a single point, divided by the number of orders in it. For example, if `penalty.drop` is 10,000 for all orders, set `penalty.drop` for a point with four orders to `10,000 / 4 = 2500`.

- Range orders by priority.

    If it makes sense to deliver particular orders today or at a later date, implement it by setting different `penalty.drop` penalty values for high- and low-priority orders. Set a higher `penalty.drop` value for a high-priority order. If you make `penalty.drop` values the same, then when everything else is equal, long-distance orders that are far from the rest won't be delivered. To prevent long-distance orders from being included in unassigned orders, use the `max_drop_penalty_percentage` parameter (for more information, see [Allowable share of unassigned orders](https://docs.routeq.com/doc/en/vrp/routes-with-drops.md#drop-penalty-percentage)).

- Set the cost.

    Don't use the default `penalty.drop` value in this scenario, because the ratio of costs and penalties is very important for the algorithm when it builds routes. For example, if [cost](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-cost.md#cost) per km is 10, cost per hour is 100, and `penalty.drop` = 1000, then an order that's 2 hours and 81 km away will be unallocated. This will happen because the cost of delivery is `2 * 100 + 10 * 81`. That's more than the penalty for an unallocated order, which is 1000.


**Example 1**

Example with a small `penalty.drop` value for all orders. Some orders are close, some are far away. As a result, long-distance orders are unassigned.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/be3cd369-34a3c3b0-a80e82f3-5f76e1ac) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/be3cd369-34a3c3b0-a80e82f3-5f76e1ac) ⋅ [View on map](https://yandex.com/courier/mvrp-map#be3cd369-34a3c3b0-a80e82f3-5f76e1ac)

**Example 2**

An example of corporate client orders that can't be rescheduled, and individual orders that can be rescheduled for tomorrow.

For orders from corporate clients, `penalty.drop` = 1,000,000, and for individuals, `penalty.drop` is small. As a result, the algorithm plans all corporate orders, even if they're far away, as well as some individual orders.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/b6f019df-78d11dc3-f1fe18c9-7bd141a4) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/b6f019df-78d11dc3-f1fe18c9-7bd141a4) ⋅ [View on map](https://yandex.com/courier/mvrp-map#b6f019df-78d11dc3-f1fe18c9-7bd141a4)

**Example 3**

1. In this example, there are several orders and one long-distance multi-order. The same `penalty.drop` is specified for all of them. As a result, the algorithm plans the long-distance multi-order, despite the fact that this looks suboptimal on the map.

   [API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/d1d05020-4e7f880f-9370e8ac-38bbc3d8) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/d1d05020-4e7f880f-9370e8ac-38bbc3d8) ⋅ [View on map](https://yandex.com/courier/mvrp-map#d1d05020-4e7f880f-9370e8ac-38bbc3d8)

1. In this example, there are several orders and one long-distance multi-order. They have different `penalty.drop` values. As a result, the algorithm plans the nearby orders and doesn't allocate the long-distance multi-order.

   [API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/a96a2760-aaadc2e-b407863f-f0a9b3e5) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/a96a2760-aaadc2e-b407863f-f0a9b3e5) ⋅ [View on map](https://yandex.com/courier/mvrp-map#a96a2760-aaadc2e-b407863f-f0a9b3e5)


## Planning with uniform shift time violation for drivers {#uniform-violation-of-vehicle-shift}

**When to use**

In some cases, the order time window is wider than the time window for changing drivers. When planning, this causes a significant shift window violation for one driver, and no violation at all or a slight violation for the rest of the drivers.

If it's impossible to fulfill all orders without violating drivers' shifts, you need to ensure that the violation of working hours is fairly distributed among drivers (so that everyone has a violation, but it's a small one).

**How to implement this scenario**

For a more uniform shift violation, change the default value of penalties for a shift time window violation (for more information, see [Vehicle or courier work shifts](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shifts)).

Change the penalties:

1. Set a small or zero value for `shifts.penalty.out_of_time.fixed`.
1. Set a significantly larger value for `shifts.penalty.out_of_time.minute` (it can be based on the cost per km), for example, 3–10 times more than the cost per km.

Another way to implement a uniform shift violation for drivers is to set a [hard window around a soft one](https://docs.routeq.com/doc/en/vrp/properties-of-time-window.md#soft-inside-hard).

**Example 1**

In this example, there are several drivers and several dozen orders. Drivers have flexible shifts, penalty values are set by default, and orders have hard time windows. The shift window is 10:00–17:00, and the order window is 10:00–21:00. The service time and location of orders make it impossible to fulfill all orders without shift time violations. As a result, one driver has a significant shift time violation, but the rest of the drivers have no violation.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/2bfcccd3-35390b59-1530ffa0-6a03b372) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/2bfcccd3-35390b59-1530ffa0-6a03b372) ⋅ [View on map](https://yandex.com/courier/mvrp-map#2bfcccd3-35390b59-1530ffa0-6a03b372)

**Example 2**

The same example, but with a uniform shift violation. These are the penalty values for a shift window violation: `shifts.penalty.out_of_time.fixed` = 0 and `shifts.penalty.out_of_time.minute` = 800.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/12f484bf-f41b954-7910635a-61c6760d) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/12f484bf-f41b954-7910635a-61c6760d) ⋅ [View on map](https://yandex.com/courier/mvrp-map#12f484bf-f41b954-7910635a-61c6760d)

**Example 3**

The same example, but now the order windows are 10:00–17:00 and soft. The shift violation is also uniform, because the algorithm now takes into account a limit on order windows: the drivers who work after 17:00 violate both shift and order windows.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/79aa49ce-3e1b2d28-a3644118-d50667d2) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/79aa49ce-3e1b2d28-a3644118-d50667d2) ⋅ [View on map](https://yandex.com/courier/mvrp-map#79aa49ce-3e1b2d28-a3644118-d50667d2)

**Example 4**

The same as in example 1, but now in addition to the main time window `time_window`, couriers also have an external hard time window `hard_time_window`. It limits the allowed time of the main window violation from 09:45 to 19:00. As a result, all orders will be completed within the set limits.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/5fa3c20a-2ec50b83-80228af9-74386dad) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/5fa3c20a-2ec50b83-80228af9-74386dad) ⋅ [View on map](https://yandex.com/courier/mvrp-map#5fa3c20a-2ec50b83-80228af9-74386dad)


## Transport with different load capacities {#different-load-capacities}

**How to implement this scenario**

It's more expensive to use a large truck with a trailer than a small courier vehicle. That's why it's best to specify cost per use (`cost.fixed`) based on the load capacity (`weight_kg`): the bigger the tonnage, the higher the cost. This is usually a linear relationship like: `cost.fixed = X + weight_kg * Y`.

In most cases, we recommend setting the same cost per kilometer, per hour, and per ton-kilometer (`cost.km`, `cost.hour`, `cost.tonne_km`) for vehicles with different tonnage.

To calculate `cost.fixed`, we'll use the coefficient values `X` = 2000 and `Y` = 0.5. For these coefficients, the answers are as follows:

- What's cheaper: to use 2 vehicles with a load capacity of 1500 kg or 1 vehicle with a load capacity of 3000 kg?
    - 2 lightweight vehicles: `2 × (2000 + 1500 × 0.5) = 5500`.
    - 1 heavyweight vehicle: `2000 + 3000 × 0.5 = 3500`.
    - `5500 > 3500`, so it's cheaper to use 1 heavyweight vehicle.

- What's cheaper: to use 4 vehicles with a load capacity of 3000 kg or 3 vehicles with a load capacity of 5000 kg?
    - 4 lightweight vehicles: `4 × (2000 + 3000 × 0.5) = 14,000`.
    - 3 heavyweight vehicles: `3 × (2000 + 5000 × 0.5) = 13,500`.
    - `14,000 > 13,500`, so it's cheaper to use 3 heavyweight vehicles.

{% note alert %}

In your case, the coefficients may differ.

{% endnote %}


For this case, it's often necessary to limit the [minimum order size](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#min-stop-dimensions) for delivery to a single destination for large-capacity vehicles. You can also limit the maximum [number of stops on the route](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops) for such vehicles.

In some situations, use the `weighted_drop_penalty` parameter, which sets penalties for failure to deliver in proportion to the order weight/volume. For more information, see [Proportional penalty for not delivering an order](https://docs.routeq.com/doc/en/vrp/weighted-drop-penalty.md).

**Example 1**

Planning involves 3 vehicles with a load capacity of 1.5 t, 3 t, and 5 t. The cost per use is the same. All orders can be fulfilled by at least two couriers in one shift. As a result, the most heavyweight vehicles are loaded: 5 t and 3 t.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/32f696f9-4678c3a6-230a30eb-3503a75e) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/32f696f9-4678c3a6-230a30eb-3503a75e) ⋅ [View on map](https://yandex.com/courier/mvrp-map#32f696f9-4678c3a6-230a30eb-3503a75e)

**Example 2**

The same example, but cost per use is calculated using a formula. We get the values 2750, 3500, and 4500. As a result, the algorithm plans the most profitable vehicle combination: 5 t and 1.5 t.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/521979ef-5b0b4336-add33892-6c260c6b) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/521979ef-5b0b4336-add33892-6c260c6b) ⋅ [View on map](https://yandex.com/courier/mvrp-map#521979ef-5b0b4336-add33892-6c260c6b)


## Maximum delivery volume at minimum mileage {#maximum-volume-minimum-mileage}

**When to use**

To optimize logistics costs, you need to ensure that the courier can deliver maximum orders with minimal mileage while accounting for the volume of transported orders.

To enable the planning algorithm to determine whether it's more cost-effective to deliver a larger or smaller order first, use [advanced cost settings](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-cost.md#custom-route-cost).

If some orders have higher priority, set their [penalty for uncompleted visit](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#penalties-not-delivering) (`penalty.drop`) higher than for lower-priority orders.

**How to implement this scenario**

Follow these steps:

* On the **Vehicles** sheet, use the `cost.route field` (`vehicles.cost.route` in the API) to specify an arithmetic expression: 

    `cost.route = F + distance_km * 16 + duration_h * 100 + max(0, N - total_volume_cbm) * 80`, where:

    * `F` is a fixed cost-of-use for the vehicle.
    * `distance_km` is the total length of the route in km.
    * `duration_h` is the total duration of the route in hours.
    * `N` is the vehicle's maximum volume capacity, calculated as the product of its width, length, and height.
    * `total_volume_cbm` is the total volume of transported cargo.

* On the **Orders** sheet, use the `penalty.drop` field (`locations.penalty.drop` in the API) to specify a higher penalty for uncompleted visits for high-priority orders than for low-priority ones.

**Example**

A courier is assigned eight orders:

* Orders 1, 3, 5, and 7 have higher weight, volume, and priority.
* Orders 2, 4, 6, and 8 are more compact and lightweight and have lower priority.

The vehicle has six capacity units for transporting orders. Their number is indicated in the `capacity.units` field on the **Vehicles** sheet (`vehicles.capacity.units` in the API). The route cost (`cost.route`) isn't specified.

On the **Orders** sheet, the incompletion penalty is set to 100,000 for the small orders and to 1,000,000 for the large ones.  This incentivizes the algorithm to prioritize scheduling maximum high-volume orders and minimize the penalty. 
   
On the **Vehicles** sheet, the `cost.route field` (`vehicles.cost.route` in the API) contains the following arithmetic expression:

  `100 + distance_km * 16 + duration_h * 100 + max(0, (1.9*1.5*2.7) - total_volume_cbm) * 80`, where 1.9 is the vehicle's width, 2.7 is its length, and 2.7 is its height.

As a result, the planning minimizes the vehicle's mileage while maximizing the transported volume.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/225369ab-e65b9033-2e45ba0b-7dcda69) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/225369ab-e65b9033-2e45ba0b-7dcda69) ⋅ [View on map](https://yandex.com/courier/mvrp-map#225369ab-e65b9033-2e45ba0b-7dcda69)


## Experienced and novice couriers {#experienced-and-novice-couriers}

**When to use**

In most cases, experienced couriers complete tasks faster than novices. Experienced couriers can travel faster, spend less time on operations, and fulfill more orders. You can take this into account when planning to get more realistic results.

**How to implement this scenario**

There are two ways to implement this scenario:

- By [adjusting the vehicle's moving time](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#travel-time) and [adjusting the handling time](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#service-duration).

Adjusting the vehicle's moving time takes into account deviations that depend on vehicle type and the courier's driving style.

Adjusting the handling time takes into account the time needed to park the vehicle and hand over the order.

- By [limiting the maximum number of stops](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops).


Limiting the number of stops regulates the maximum load on a courier per day and allows you to put a courier on a route with a particular number of stops. This helps to limit the load on a novice courier and use an experienced courier on a long route, which they can complete faster.


## Priority couriers {#priority-couriers}

**When to use**

It's sometimes necessary to distribute orders between couriers unevenly. For example:

1. Some couriers need to be loaded as much as possible, so that the others only ship orders that are left over. For example, when some couriers are full-time workers and the rest are part-time workers.
1. All the couriers need to be loaded, but some must get more orders than others. For example, on peak days, the main staff can't cope and additional couriers come, but you need to minimize their load. Also, if couriers are paid by the piece, more loaded routes must be given to experienced couriers whom should the company wishes to retain.

**How to implement this scenario**

In the first situation, specify a lower `cost.fixed` value for higher-priority couriers. Then, where everything else is equal, they will be given preference (for more details, see [using your own and hired transport at the same time](https://docs.routeq.com/doc/en/vrp/examples-of-settings.md#own-and-hired-transport)).

In the latter case, use the ability to [limit the number of stops per shift](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops) to specify a higher `maximal_stops` value for priority couriers.

**Example 1**

There are 40 orders and 4 couriers, of which 2 are priority and 2 are additional. Different `cost.fixed` values are specified: 2500 for priority couriers and 3500 for additional couriers. As a result, all orders are distributed among priority couriers.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/b30db699-5ec9faa3-fedb0a95-8039533a) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/b30db699-5ec9faa3-fedb0a95-8039533a) ⋅ [View on map](https://yandex.com/courier/mvrp-map#b30db699-5ec9faa3-fedb0a95-8039533a)

**Example 2**

The data is the same as in example 1, but `maximal_stops` is set to 15 for priority couriers and 10 for additional couriers. Penalties for excessive stops are also specified. These penalties are mandatory when using the `maximal_stops` parameter. As a result, priority couriers get 15 orders each, and an additional courier gets 10 orders.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/c7956a7-80864d2a-9de41133-1bd64f6a) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/c7956a7-80864d2a-9de41133-1bd64f6a) ⋅ [View on map](https://yandex.com/courier/mvrp-map#c7956a7-80864d2a-9de41133-1bd64f6a)

## Restriction on arriving at the location early {#restriction-on-early-arrival}

**How to implement this scenario**

In situations where it's impossible to plan routes without planned order window violations, use [soft time windows](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-time-window). In this case, the algorithm may schedule the arrival both earlier and later than the time window. To allow delays but prohibit early arrivals, use different order penalties:

- Use larger values for penalties that regulate early arrival: ` penalty.early.fixed` and `penalty.early.minute`.

- Set the penalty for late arrival `penalty.late.fixed` to 0.

- For the penalty per minute of late arrival `penalty.late.minute`, specify a value that's comparable to the cost of use per hour or kilometer (for example, if 1 km costs 10, the recommended penalty value is between 20–100).

You can also set a [hard window around a soft one](https://docs.routeq.com/doc/en/vrp/properties-of-time-window.md#soft-inside-hard) using the `hard_time_window` parameter. To prohibit early arrivals and allow delays, the left limit of the hard window must match the soft one, and the right limit must exceed the soft one.

**Example 1**

Order windows are soft and short, and penalties for early and late arrivals are the same. The courier doesn't always arrive on time.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/3dfd123b-8f332a56-239c2ac9-3c3dec4f) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/3dfd123b-8f332a56-239c2ac9-3c3dec4f) ⋅ [View on map](https://yandex.com/courier/mvrp-map#3dfd123b-8f332a56-239c2ac9-3c3dec4f)

**Example 2**

The same as example 1, but penalties for early arrival are significantly higher, and the penalty for late arrival is set to zero. As a result, the average time window violation is smaller, but the mileage, route time, driving time, and waiting time metrics deteriorate.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/3d5d34b-85fdf179-d926b868-516205b8) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/3d5d34b-85fdf179-d926b868-516205b8) ⋅ [View on map](https://yandex.com/courier/mvrp-map#3d5d34b-85fdf179-d926b868-516205b8)

**Example 3**

The same as in example 1, but hard windows are set around soft windows for orders. As a result, the average waiting time will increase, and the travel and route time will decrease.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/8e0722ef-c790a581-1fd74be9-ac6a7f55) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/8e0722ef-c790a581-1fd74be9-ac6a7f55) ⋅ [View on map](https://yandex.com/courier/mvrp-map#8e0722ef-c790a581-1fd74be9-ac6a7f55)


## Using your own and hired transport at the same time {#own-and-hired-transport}

**When to use**

For a situation where you use your own and hired transport at the same time, the following requirements are typical:

1. Prioritize using your own transport and do it as efficiently as possible, while minimizing the use of hired transport.
1. Your own transport must [return to the depot](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-depot.md#return-to-depot), and hired transport mustn't.

**How to implement this scenario**

To prioritize the use of your own vehicles, use the recommendations given in [Planning the loading of your own couriers](https://docs.routeq.com/doc/en/vrp/examples-of-settings.md#own-couriers).

- For your own vehicles, it is a good idea to reduce the utilization cost in `cost.fixed` (for more information, see [Transport with different load capacities](https://docs.routeq.com/doc/en/vrp/examples-of-settings.md#different-load-capacities)).

    Vehicle cost must increase proportionally to load capacity, and the cost of your own vehicle must be lower than the cost of a hired one with the same load capacity.

- If lowering `cost.fixed` doesn't help, set a [limit on the minimum number of stops](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops).

    Specify `minimal_stops` = 1 and heavy penalties for violations (`penalty.stop_lack.fixed` and `penalty.stop_lack.per_stop`) for your own vehicles.

- If your own vehicles must return to the depot at the end of the shift, and hired vehicles don't have to do that, we recommend lowering the cost per hour and/or per km for your own vehicles (`cost.km` and `cost.hour`). The values of these parameters for your own transport must be approximately 10–80% of the values for hired transport.


**Example 1**

There are 3 orders weighing 1.5 t and 3 of your own and hired vehicles with a load capacity of 1.5 t, 3 t, and 5 t. Each order takes up one place, and there's one place available in each vehicle. The cost per use is lower for your own vehicles and increases with tonnage. The cost per 1 km is lower for your own vehicles. As a result, your own vehicle with a load capacity of 5 t stays in the garage, and a hired vehicle with a load capacity of 1.5 t does the run, because this costs less.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/7fe7893b-6a3a1988-801f3a85-57adb90a) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/7fe7893b-6a3a1988-801f3a85-57adb90a) ⋅ [View on map](https://yandex.com/courier/mvrp-map#7fe7893b-6a3a1988-801f3a85-57adb90a) 

**Example 2**

The same example, but with the added condition `minimal_stops` = 1 for your own vehicles and penalties for violating the minimum number of stops. As a result, all of your own cars do the run, and all hired ones stay in the garage.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/7ea38e3e-23863344-ce09038b-e6ddcce9) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/7ea38e3e-23863344-ce09038b-e6ddcce9) ⋅ [View on map](https://yandex.com/courier/mvrp-map#7ea38e3e-23863344-ce09038b-e6ddcce9)


## Minimizing waiting time for couriers {#minimizing-waiting-time-for-couriers}

**When to use**

When you plan many orders that have narrow time windows, there may be some waiting times for the courier on the route. Waiting means that the courier arrived at the location earlier than the time window and has to wait for it to start.

- If time windows are soft (`hard_window` = `false`) and there are waiting times, the algorithm has a choice that depends on the courier's cost per hour of work (`cost.hour`) and the penalties for violating the order time window:

    - **To violate the time window:** to start service before the time window starts.

    - **To create downtime for the courier:** to wait for the time window to start.

- If time windows are hard (`hard_window` = `true`), there's no choice, so the courier waits for the window to start.

For example, consider a situation where a courier arrives 10 minutes before the start of the order time window. Given that:

- The cost per hour of work `cost.hour` = 300.

- The fixed penalty for window violation `penalty.out_of_time.fixed` (or `penalty.early.fixed`) = 100.

- The penalty per minute of time window violation `penalty.out_of_time.minute` (or `penalty.early.minute`) = 20.

The algorithm will choose to wait, because the cost of additional courier downtime is `300 * 10 / 60 = 50`, which is less than the cost of violating the time window by  10 minutes, which is `100 + 10 * 20 = 300`.

{% note info %}

In real-life planning, the situation may not be so clear: sometimes, a time window violation for one order lets you avoid violating several more time windows in the next part of the route.

{% endnote %}


**How to implement this scenario**

You can reduce your couriers' waiting time in two ways (which can be used separately or in combination):

- Increase the courier's cost per hour of work.

- Set up soft time windows and reduce penalties for their violation.

Note that many route characteristics depend on one another, and improving one indicator is often achieved at the cost of others. The interdependent characteristics are:

- Number and total time of window violations.

- Total waiting time.

- Total mileage.

- Route density.


**Example 1**

There are a lot of orders with narrow time windows, and the courier's cost per hour of work is `cost.hour` = 100. As a result, the total waiting time is 4 hours 27 minutes.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/8255b724-87659a0f-409b4203-83f4ffca) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/8255b724-87659a0f-409b4203-83f4ffca) ⋅ [View on map](https://yandex.com/courier/mvrp-map#8255b724-87659a0f-409b4203-83f4ffca)

**Example 2**

Let's increase the courier's cost per hour of work to 300. The waiting time is significantly reduced and is now 1 hour 2 minutes. At the same time, the total mileage increased.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/c21357e2-65ae7f51-c121bdcf-ef983a78) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/c21357e2-65ae7f51-c121bdcf-ef983a78) ⋅ [View on map](https://yandex.com/courier/mvrp-map#c21357e2-65ae7f51-c121bdcf-ef983a78)

**Example 3**

We set the courier's cost per hour of work to the default `cost.hour` = 100. We reduce the penalties for violation of the time window. Now, `location.penalty.early.fixed` = 0 and `location.penalty.late.fixed` = 0, `location.penalty.early.minute` = 10 and `location.penalty.late.minute` = 10. There are now 2 violations of time windows in the route, but the couriers' waiting time is only 8 minutes.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/eb704db6-878dddf-2956609e-71798eb3) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/eb704db6-878dddf-2956609e-71798eb3) ⋅ [View on map](https://yandex.com/courier/mvrp-map#eb704db6-878dddf-2956609e-71798eb3)


## Minimizing the number of couriers {#minimizing-the-number-of-couriers}

**When to use**

A common task when building routes is to minimize the amount of resources used. The main setting for regulating the number of couriers is a fixed cost `cost.fixed` (for more information, see [Vehicle or courier cost](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-cost.md#cost)). The higher the value, the more expensive it is for the algorithm to use another courier, which is why fewer couriers will be involved as a result.

{% note alert %}

The ratio of costs and penalties used is important for the algorithm. That's why you can reduce the number of couriers if you leave `cost.fixed` unchanged, but lower the values of all other costs and penalties.

{% endnote %}


**How to implement this scenario**

As a rule, you can reduce the number of couriers by changing other route characteristics:

- Working hours (10 couriers work for 8 hours each. If you want to use 9 couriers, they must all work 8.5 hours).

- Order window violations (10 couriers can fulfill all orders without delays. If you use 9 couriers, they'll have to arrive half an hour late to 10 clients).

- Route density.

Settings that may increase the number of couriers in the solution too much:

- [proximity_factor](https://docs.routeq.com/doc/en/vrp/grouping-routes.md) and [global_proximity_factor](https://docs.routeq.com/doc/en/vrp/grouping-routes.md), if you set their values too high (more than 1).

- [balanced-groups](https://docs.routeq.com/doc/en/vrp/balanced-groups.md), if you set balancing penalties too high. In this case, the algorithm aims to build uniform routes even if it has to use more couriers.

- [minimal_stops](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops), if you use it without taking into account the [ignore_min_stops_for_unused](https://docs.routeq.com/doc/en/vrp/optimization-count.md) option.


**Example 1**

In this example, there are 150 orders with 5 -hour time windows. Parameter settings:

- For windows:

    - Order windows are soft (`hard_window` = `false`).

    - Couriers' shift windows are soft (`shifts.0.hard_window` = `false`).

- For penalties:

    - No penalty for a window violation (`locations.penalty.out_of_time.fixed` = 0).

    - The penalty per minute of violation is 30 (`location.penalty.out_of_time.minute` = 30).

    - No penalty for a window violation (` vehicles.shifts.penalty.out_of_time.fixed ` = 0).

    - The penalty per minute of violation is 100 (`vehicles.shifts.penalty.out_of_time.minute` = 100).

- For route densening:

    - Routes must be dense, so `proximity_factor` = 1.

- For costs:

    - The cost per kilometer of mileage `cost.km = 16`.

    - The fixed cost per use of vehicle `cost.fixed` = 3000 (default value).


The algorithm distributed the orders in such a way that there are 7 well-grouped routes in the solution. There are no time window violations.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/156fbbd0-374e775c-86fcc69-d6fe85c3) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/156fbbd0-374e775c-86fcc69-d6fe85c3) ⋅ [View on map](https://yandex.com/courier/mvrp-map#156fbbd0-374e775c-86fcc69-d6fe85c3)

**Example 2**

The same as in example 1, but the cost per use of the vehicle is different. Now, `cost.fixed` = 5000.

As a result, the number of couriers is smaller: now there are 6 of them, but time windows are violated twice. The total mileage and moving time increased.

{% note info %}

Such reallocation of orders among a smaller number of couriers is possible if other restrictions don't interfere:

- Courier capacity.

- Shift window.

- Limits on [the maximum number of stops](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-stops).

- Limits on [the maximum mileage](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-mileage).

{% endnote %}

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/fb844fed-b72f31ef-d5de2fb-193b1c3e) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/fb844fed-b72f31ef-d5de2fb-193b1c3e) ⋅ [View on map](https://yandex.com/courier/mvrp-map#fb844fed-b72f31ef-d5de2fb-193b1c3e)

**Example 3**

The same as in example 1, but the fixed cost per use is even higher. In this example, `cost.fixed` = 30000.

The number of couriers is even smaller: now there are 5 of them, but the number of time window violations has increased to 3. The total mileage and driving time increased even more.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/18306f50-2aee9c42-2500c379-d8d16c47) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/18306f50-2aee9c42-2500c379-d8d16c47) ⋅ [View on map](https://yandex.com/courier/mvrp-map#18306f50-2aee9c42-2500c379-d8d16c47)

## Priority orders {#priority-orders}

**How to implement this scenario**

Depending on what is meant by order priority, different recommended settings are used. Possible options:

1. **Fulfill a priority order in the specified time window, without delay**

    Set a [hard time window](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-time-window) for the priority order. Sometimes, you need to use additional parameters: [penalty for service outside of the time window](https://docs.routeq.com/doc/en/vrp/penalize-late.md) and [minimizing the risk of late arrivals](https://docs.routeq.com/doc/en/vrp/minimize-lateness-risk.md).

1. **Fulfill the priority order in any case, and fulfill the rest of the orders if possible**

    For more information, see [Planning orders that can be rescheduled / Planning part of the orders](https://docs.routeq.com/doc/en/vrp/examples-of-settings.md#part-of-orders).

You can also use the `sequence_order` parameter to set a [sequence order within a specific route](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#sequence-order). The sequence order is set end-to-end for all of the vehicle's runs. As part of overall planning for different routes, there may be a situation when an order with a greater `sequence_order` parameter value in one route will be delivered earlier than an order with a lower parameter value in another route. Orders with identical `sequence_order` values are completed out of sequence. If no sequence is set, orders can be placed in any order and anywhere on the route.

**Example 1**

The route is built for one vehicle that fulfills 7 orders. The order windows partially overlap. Four orders are high priority, and a hard time window is set for them. As a result of planning, the routes for orders with a hard time window contain no violations, but two orders with a soft time window are delayed.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/1862ff2-286de7f2-22a07308-f4373ad7) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/1862ff2-286de7f2-22a07308-f4373ad7) ⋅ [View on map](https://yandex.com/courier/mvrp-map#1862ff2-286de7f2-22a07308-f4373ad7)

**Example 2**

The route is built for two vehicles that must complete 7 orders. There are two orders that must be delivered early in the morning to remote locations. Their sequence is set using the `sequence_order` parameter (Orders 1 and 4). Drivers need to go to these locations first, although while they're on their way, they may fulfill other orders to optimize the route.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/f13e89ef-9c12e38d-eaaee4ba-5d98a681) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/f13e89ef-9c12e38d-eaaee4ba-5d98a681) ⋅ [View on map](https://yandex.com/courier/mvrp-map#f13e89ef-9c12e38d-eaaee4ba-5d98a681)


## Priority delivery of expensive goods {#expensive-orders}

**When to use**

Some planning scenarios prioritize the delivery of orders containing expensive goods.

**How to implement this scenario**

We recommend the following:

* When planning in an Excel spreadsheet, set the penalty value for each order in the **Undelivery penalty** (`penalty.drop`) field on the **Orders** sheet. Penalties for expensive orders should be higher than for other orders. You can set a penalty value as a number or with an Excel formula.

    To calculate the penalty value using an Excel formula, go to the **Orders** sheet:

    * In the [additional field](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#custom-value) `custom_value`, specify the order cost.
    * In the `penalty.drop` field, multiply the order cost by an arbitrary numerical coefficient `k`: `penalty.drop = custom_value * k`. The penalty value increases when the coefficient is greater than 1, and decreases when the coefficient is less than 1.

* When planning [via the API](https://yandex.ru/routing/doc/en/vrp/redoc/index.html#operation/addMVRPTask), specify the non-delivery penalty for each order in the `locations.penalty.drop` parameter under `locations`.  

Expensive orders will be delivered first because the penalty for not delivering them is higher than for other orders.

**Example 1**

The courier is assigned 30 orders, and 12 of them are expensive. The non-delivery penalty for all orders is `penalty.drop` = 100,000.

The cheap and expensive orders on the planned route are delivered in random sequence. Some of the expensive orders remain unassigned.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/3d5377c0-aad97138-e0a6f926-1c6ce4d1) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/3d5377c0-aad97138-e0a6f926-1c6ce4d1) ⋅ [View on map](https://yandex.com/courier/mvrp-map#3d5377c0-aad97138-e0a6f926-1c6ce4d1)

**Example 2**

This example uses the same conditions as Example 1, except the non-delivery penalty for every order is calculated using the Excel formula `penalty.drop = custom_value * 1`. The penalties for expensive orders are higher than for other orders.

The planned route includes all expensive orders from 1 to 12.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/339f66d0-d964c0e4-c4ce354e-a27fa228) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/339f66d0-d964c0e4-c4ce354e-a27fa228) ⋅ [View on map](https://yandex.com/courier/mvrp-map#339f66d0-d964c0e4-c4ce354e-a27fa228)


## Dense routes {#grouping-routes}

**When to use**

Routes usually need densening in the following cases:

- The time of order pickup from the client is highly likely to change.
- There's a large margin of error in determining the planned handling time.
- Convenience of work for couriers in familiar areas and when delivering to regular clients.

**How to implement this scenario**

#### Option 1

Use the following options:

- [proximity_factor](https://docs.routeq.com/doc/en/vrp/grouping-routes.md): To build routes that are more resistant to time window changes.

- [global_proximity_factor](https://docs.routeq.com/doc/en/vrp/grouping-routes.md): To build more geographically localized routes.

- [use_in_proximity](https://docs.routeq.com/doc/en/vrp/grouping-routes.md): To exclude certain orders and depots when building dense routes.


In some cases, you can separately increase the cost per kilometer `cost.km`.

For individual couriers, you can plan routes that are geographically grouped around "hotspots" (see [Route density](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#route-proximity)).

#### Option 2

Use the [cost calculation](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-cost.md#custom-route-cost) formula (`vehicles.cost`) with the `max_edge_duration_h` and `max_edge_distance_m` parameters. These parameters set clear restrictions on the proximity of adjacent consecutive points on routes.

The `proximity_factor` and `global_proximity_factor` parameters affect the average length of individual route segments between orders, while the `max_edge_distance_m` and `max_edge_duration_h` parameters limit the maximum length or maximum time for each of the consecutive route segments between orders.

**Example 1**

`cost.km = 8` (the default value), and the `proximity_factor` and `global_proximity_factor` values are set to zero.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/8d046942-569cab2-f10cc3cb-66228c9e) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/8d046942-569cab2-f10cc3cb-66228c9e) ⋅ [View on map](https://yandex.com/courier/mvrp-map#8d046942-569cab2-f10cc3cb-66228c9e)

**Example 2**

The same as example 1, but the `proximity_factor` and `global_proximity_factor` values are set to 0.5. Routes have become more grouped, the distance between all the points decreased.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/72d64768-e8a09d3c-36ac7db2-316fa0f9) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/72d64768-e8a09d3c-36ac7db2-316fa0f9) ⋅ [View on map](https://yandex.com/courier/mvrp-map#72d64768-e8a09d3c-36ac7db2-316fa0f9)

**Example 3**

The same as example 1, but `proximity_factor` = 0.5, and `global_proximity_factor` = 0. Routes are less grouped geographically, but the distance between neighboring consecutive points decreased.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/ea627a86-2096b0c8-cc16c577-506a67bb) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/ea627a86-2096b0c8-cc16c577-506a67bb) ⋅ [View on map](https://yandex.com/courier/mvrp-map#ea627a86-2096b0c8-cc16c577-506a67bb)

**Example 4**

The same as example 1, but advanced cost settings `vehicles.cost.run` are used for the run:

- 3000 for starting a route.
- 8 for every kilometer traveled.
- 1000 penalty if the maximum length of segments between orders `max_edge_distance_m` exceeds 3 km.

Calculation formula:

`vehicles.cost.run` = `3000 + distance_km * 8 + (max_edge_distance_m > 3000) * 1000`

As a result of planning, the distance between neighboring consecutive points on the route decreased.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/de61dfd9-6675eac7-5ea8721d-43d52f0b) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/de61dfd9-6675eac7-5ea8721d-43d52f0b) ⋅ [View on map](https://yandex.com/courier/mvrp-map#de61dfd9-6675eac7-5ea8721d-43d52f0b)

## Reducing the number of delays {#reducing-the-number-of-late-arrivals}

**How to implement this scenario**

If you use soft [time windows](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-time-window), the algorithm can plan a route that violates these windows. To reduce the number of window violations, you can change the `penalty.out_of_time` penalty group or the `penalty.late` and `penalty.early` penalty groups separately (see also the [Restriction on arriving at the location early](https://docs.routeq.com/doc/en/vrp/examples-of-settings.md#restriction-on-early-arrival) scenario — in some cases, you need to make these penalties different).

We recommend the following scenario for changing settings:

- Penalty for violation: Set to 0 or a small value.

- Penalty per minute of violation: Set a value greater than the default value. The higher the value, the fewer window violations you'll have.

Another way to reduce the number of window violations is to set a [hard window around a soft one](https://docs.routeq.com/doc/en/vrp/properties-of-time-window.md#soft-inside-hard) using the `hard_time_window` parameter.

All route characteristics are interconnected. In most cases, window violations result from building more dense routes, building routes that are more optimal in terms of mileage, or using fewer couriers. That's why decreasing the number of window violations is likely to lead to a deterioration of other route characteristics.

**Example 1**

11 couriers serve 149 orders, and delivery windows are soft. The penalties are set by default: 1000 for a window violation and 17 per minute of violation. This results in 6 delays, over 5 hours in total. There are 4 big delays, each of which lasts over an hour.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/6d1845b-18c65d1-cc58a6f9-5e05c4dc) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/6d1845b-18c65d1-cc58a6f9-5e05c4dc) ⋅ [View on map](https://yandex.com/courier/mvrp-map#6d1845b-18c65d1-cc58a6f9-5e05c4dc)

**Example 2**

The same as in example 1, but now there's no penalty for a window violation, and the penalty per minute of violation is set to 100. As a result, there are more window violations (19 delays), but the total violation time is reduced to 2 hours. In this example, we managed to get rid of long delays : most delays last less than 10 minutes now.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/5d700fe-aa895fe3-be4a1e21-e1ead4ed) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/5d700fe-aa895fe3-be4a1e21-e1ead4ed) ⋅ [View on map](https://yandex.com/courier/mvrp-map#5d700fe-aa895fe3-be4a1e21-e1ead4ed)

**Example 3**

The same as in example 1, but now orders have a hard window around a soft one — `hard_time_window`. The left limit of the hard window matches the soft one, and the right limit is 1 hour later than the soft window. As a result, the average delay and waiting time decreased, and mileage increased.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/799d9a29-1e6eb34e-6c8de26e-f30b5df2) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/799d9a29-1e6eb34e-6c8de26e-f30b5df2) ⋅ [View on map](https://yandex.com/courier/mvrp-map#799d9a29-1e6eb34e-6c8de26e-f30b5df2)


## Planning routes by zone {#zoning}

**When to use**

When planning, it may be necessary to distribute routes so that specific vehicles or couriers work only in certain territories, or so that certain territories don't overlap within the same route. To do this , use [geofences](https://docs.routeq.com/doc/en/vrp/interface-geozones.md#geozones-usage).

Advantages of using geofences:

- It's easier to mark up geofences, since visualization on the map is used for this.
- Geofences can overlap.

At the same time, geofences set a hard restriction that the algorithm can't violate.

We recommend the following:

1. Don't make your zones too small. In practice, the best are enlarged geofences, where several couriers can travel. The algorithm will thus be able to smooth out possible unevennesses in orders on a specific day. You can use the [Dense routes](#grouping-routes) function along with the zones.
1. Don't leave delivery areas between zones where the order can theoretically fit.

In addition to hard geofencing restrictions for order distribution, you can use:

- [Optional geofences](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#optional-geozones)

- [Order incompatibility](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-incompatibility)

- [Order and vehicle compatibility](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#tags)

- [Route density settings](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#route-proximity)

{% note alert %}

If you use order incompatibility, order and vehicle compatibility, or optional tags, perform the initial mapping between an order and a zone outside of the service.

{% endnote %}

**How to implement this scenario**

Geofences can be used both when planning via the RouteQ interface and when working via the API. For more information, see [Geofences](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#geozones).

The zones that the courier or the vehicle can deliver orders to are set by the `vehicles.allowed_zones` parameter. The zones forbidden for this vehicle or courier are set by the `vehicle.forbidden_zones` parameter.

**Example 1**

Saint Petersburg is divided into 7 geofences. For each vehicle, a delivery zone is set in the `allowed_zones` field. Coordinates automatically determine how orders pertain to geofences. As a result, each courier delivers orders only in one zone and doesn't go to the adjacent ones.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/fff1a844-202e0d2d-3f69ae1c-8eb2f09b) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/fff1a844-202e0d2d-3f69ae1c-8eb2f09b) ⋅ [View on map](https://yandex.com/courier/mvrp-map#fff1a844-202e0d2d-3f69ae1c-8eb2f09b)

**Example 2**

The example describes 2 couriers — staff and third-party. 2 geofences are set: "north" and "south". The staff courier must deliver only in the northern part of the Moscow region.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/e5923a07-ebc97295-fedb0a5b-ab8b49b8) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/e5923a07-ebc97295-fedb0a5b-ab8b49b8) ⋅ [View on map](https://yandex.com/courier/mvrp-map#e5923a07-ebc97295-fedb0a5b-ab8b49b8)

{% note info %}

To reproduce the examples described in Excel, add the used geofences to the [geofence master data](https://docs.routeq.com/doc/en/vrp/interface-geozones.md#geozones-adding).

{% endnote %}

**Example 3**

St. Petersburg is divided into [7 zones](https://yandex.ru/maps/-/CCUMjPQ~DB), and each zone corresponds to 1 type (`load_type`). For each order, a type is specified and its incompatibility with other types is described. As a result, each courier delivers orders only in one zone and doesn't go to the adjacent ones.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/9d4a98c7-b7effc7-c9b64672-c6aa7dbf) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/9d4a98c7-b7effc7-c9b64672-c6aa7dbf) ⋅ [View on map](https://yandex.com/courier/mvrp-map#9d4a98c7-b7effc7-c9b64672-c6aa7dbf)


## Priority areas for couriers {#priority-areas-for-couriers}

**How to implement this scenario**

To set up priority areas for couriers, we recommend using [optional tags](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#optional-tags) or [geofences](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#geozones).

## Planning orders for multiple days {#planning-several-days}

**When to use**

In in some tasks, planning covers several days. For example, when an order is expected over the next few days but at a specific time.

**How to implement this scenario**

Use an order with [multiple time windows](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-multiple-time-windows) to define the days and times for your order delivery. Specify the time windows:

- For the orders, specify several windows, a single window for each delivery day, such as `08:00 – 16:00` and `1.08:00 – 1.16:00`, respectively. For more information, see [Relative format of time windows](https://docs.routeq.com/doc/en/vrp/properties-of-time-window.md#relative-time-windows).

- For the couriers, also specify several shifts, such as `07:00 – 18:00` for the first day, `1.07:00 – 1.18:00` for the second day, and so on.

- For the depot, specify one large window to cover the entire delivery period, such as `08:00 – 22:00`.


**Example**

In the following three days, many orders need to be delivered between 08:00 and 16:00. This is why three time windows are specified for each order, three shifts for the couriers (one per day), and the depot's total business hours from the first to the third day for the depot.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/6892b511-596ea77-8a2d58f4-eb0f02df) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/6892b511-596ea77-8a2d58f4-eb0f02df) ⋅ [View on map](https://yandex.com/courier/mvrp-map#6892b511-596ea77-8a2d58f4-eb0f02df)


## Multi-day routes {#multi-days-routes}

**How to implement this scenario**

To plan a multi-day route, you need to specify:

- For orders:
    - [Multiple time windows](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-multiple-time-windows) (delivery is possible on any day, but at a certain time).
    - Window in [relative format](https://docs.routeq.com/doc/en/vrp/properties-of-time-window.md#relative-time-windows) (delivery is needed on a certain day, for example, two days after the planning date).

- For vehicles: [work hours](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-rest-schedule.md#rest-schedule) and [shifts for couriers](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shifts) with explicit indication of their [maximum duration](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shift-duration) `vehicle.shifts.max_duration_s`.
- For a depot, one of the following options:
    - One wide [time window](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md#depot-time-window) if the courier completes the route at the depot.
    - [Multiple time windows](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md#depot-multiple-time-windows) if there are breaks in the depot working hours.


**Example**

There are 8 orders in the planning task that need to be delivered in 3 days. This is why three time windows are specified for each order, three shifts for the couriers, and the depot's total working hours from the first to the third day for the depot. The schedule for breaks is set. After the shift, one of the two couriers returns to the depot.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/a196ff0e-7b8b7217-9de694e1-e6998aec) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/a196ff0e-7b8b7217-9de694e1-e6998aec) ⋅ [View on map](https://yandex.com/courier/mvrp-map#a196ff0e-7b8b7217-9de694e1-e6998aec)

## Vehicle with multiple compartments {#vehicle-with-multiple-sections}


{% note alert %}

This business case implies that this type of cargo can only be placed in a certain compartment. There is no variability that this type of cargo can be placed in one of several compartments to choose from.

It's also assumed that the compartments are set initially (the scenario with dynamic movement of the partition to change the size of the compartments isn't supported).

{% endnote %}


**When to use**

Apply the scenario when the fleet has vehicles with several compartments where different types of cargo can be transported. For example, vehicles that can transport frozen and ordinary products at the same time. At the same time, each compartment has its own capacity that must be taken into account when planning.

**How to implement this scenario**

To describe such a vehicle in the planning task, you can use:

- [Custom units](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#custom-units) for orders.

- [Custom capacity units](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#capacity-custom-units) for a vehicle.


Both options must be applied simultaneously.

**Example**

A vehicle with a body divided into 2 compartments is used in the planning:

- A cold compartment for products requiring low temperature.

- A standard compartment for products that don't require special transportation conditions.


The capacity is set for each compartment using paired parameters:

#|
||   **Parameters** | **What is set**  ||
||   `capacity.custom.0.name`
`capacity.custom.0.size` | Weight capacity for the cold compartment, kg    ||
||   `capacity.custom.1.name`
`capacity.custom.1.size` | Capacity by volume for the cold compartment, m<sup>3</sup>   ||
||   `capacity.custom.2.name`
`capacity.custom.2.size` | Capacity by weight for the standard compartment, kg ||
||   `capacity.custom.3.name`
`capacity.custom.3.size` | Capacity by volume for the standard compartment, m<sup>3</sup>    ||
|#

Order 1 must be placed only in the cold compartment, order 2 only in the standard one, and order 3 must be divided into two parts in different compartments. Orders are described using custom capacity parameters:

#|
||   **Parameters** | **What is set**  |||
||   `shipment_size.custom.0.name`
`shipment_size.custom.0.size` | Weight of cargo for the cold compartment, kg    ||
||   `shipment_size.custom.1.name`
`shipment_size.custom.1.size` | Volume of cargo for the cold compartment, m<sup>3</sup>   ||
||   `shipment_size.custom.2.name`
`shipment_size.custom.2.size` | Weight of cargo for the standard compartment, kg ||
||   `shipment_size.custom.3.name`
`shipment_size.custom.3.size` | Volume of cargo for the standard compartment, m<sup>3</sup>    ||
|#

All orders in the solution are distributed to the necessary compartments to fully load them.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/7fff80d9-d9cd593d-7653690a-fee8f6ba) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/7fff80d9-d9cd593d-7653690a-fee8f6ba) ⋅ [View on map](https://yandex.com/courier/mvrp-map#7fff80d9-d9cd593d-7653690a-fee8f6ba)


## Depot departure time {#departure-time-from-the-depot}

**When to use**

To build an optimal route, it's important to select the optimal time for the courier to leave the depot. Depending on the settings, the departure time can be determined by the depot's and courier's work schedule or automatically selected by an algorithm during planning.

**How to implement this scenario**

If the value of the `depot.flexible_start_time` ([flexible start time](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md#depot-flexible-start-time)) parameter is `false`, the departure time is determined by the courier's work schedule and number of shifts. For example, the depot is open from 7:00 to 22:00, and the courier works from 8:00 to 20:00. The loading time at the depot is 30 minutes. In this case, the courier leaves the depot at 8:30. This is the latest possible start of the window (from the depot and shift windows), taking into account the loading time at the depot. If the courier has two shifts from 8:00 to 20:00 and from 10:00 to 22:00, they leave the depot at either 8:30 or 10:30. In this case, the departure time is selected from two options by an algorithm, taking into account the loading time at the depot.

The depot departure time depends on the following settings:

- [Depot loading windows](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md#additional-time-windows) `depot.time_windows_loading` (if they are set) or [depot working hours](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md#depot-time-window) `depot.time_window` (if no loading windows are set).

- [Vehicle or courier shifts](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-routes.md#shifts) `vehicle.shifts`.

- Depot loading time, which consists of the following parameters:

    - [Handling time at the depot](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md#depot-service-duration): `depot.preliminary_service_duration_s`, `depot.service_duration_s`, and `depot.finish_service_duration_s`.
    - [Time to load every order](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-service-duration-load): `location.depot_duration_s`.
    - [Time to load orders into a vehicle or give them to a courier](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-depot.md#depot-extra-service-duration): `vehicle.depot_extra_service_duration_s`.


When determining the depot departure time, all the handling times set for the depot, orders, and courier are added together.

If `depot.flexible_start_time`=`false` and the [time when the order is ready at the depot](https://docs.routeq.com/doc/en/vrp/properties-of-orders.md#order-time-depot-ready) is set, the departure time is also affected by the `options.load_when_ready` ([load when ready](https://docs.routeq.com/doc/en/vrp/load-when-ready.md)) option.

If `depot.flexible_start_time`=`true`, the departure time is determined by the algorithm. At the same time, the [loading window](https://docs.routeq.com/doc/en/vrp/properties-of-depot.md) sets the timeframe when items can be unloaded at the depot. Note that the departure time is affected by external factors (such as traffic), order location, time windows, and planning settings:

- `options.penalize_late_service`: [Penalty for order handling outside the time window](https://docs.routeq.com/doc/en/vrp/penalize-late.md).

- `options.minimize_lateness_risk`: [Minimizing risk of delays](https://docs.routeq.com/doc/en/vrp/minimize-lateness-risk.md).


To move the depot departure time to the beginning of the time window, use the [Prompt delivery](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#as-soon-as-possible) function.

**Diagram**

<svg width="700" height="270" viewBox="0 0 700 270" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(#rnd-f03e116__clip0_1_2)"><rect width="700" height="270" fill="white"/><path d="M336 79V146" stroke="#67B0F8"/><path d="M416 79V208" stroke="#B4B4B4"/><path d="M276 79V115" stroke="#5282FF"/><path d="M240 57L235 54.1132V59.8868L240 57ZM139 57.5L235.5 57.5V56.5L139 56.5V57.5Z" fill="black"/><path d="M511 79V146" stroke="#C0E6F6"/><path d="M541 79V177" stroke="#DAF6C0"/><path d="M571 79V208" stroke="#A1D77E"/><path d="M58 79V146" stroke="#C0E6F6"/><path d="M88 79V177" stroke="#DAF6C0"/><path d="M118 79V208" stroke="#A1D77E"/><rect x="6.5" y="146.5" width="128" height="20" rx="2.5" fill="white"/><rect x="6.5" y="146.5" width="128" height="20" rx="2.5" stroke="#C1E6F6"/><rect x="6.5" y="115.5" width="184" height="20" rx="2.5" fill="white"/><rect x="6.5" y="115.5" width="184" height="20" rx="2.5" stroke="#23A7DA"/><rect x="6.5" y="177.5" width="191" height="20" rx="2.5" fill="white"/><rect x="6.5" y="177.5" width="191" height="20" rx="2.5" stroke="#DAF6C0"/><rect x="6.5" y="208.5" width="145" height="33" rx="2.5" fill="white"/><rect x="6.5" y="208.5" width="145" height="33" rx="2.5" stroke="#A1D77E"/><rect x="457.5" y="146.5" width="132" height="20" rx="2.5" fill="white"/><rect x="457.5" y="146.5" width="132" height="20" rx="2.5" stroke="#C1E6F6"/><rect x="457.5" y="115.5" width="188" height="20" rx="2.5" fill="white"/><rect x="457.5" y="115.5" width="188" height="20" rx="2.5" stroke="#23A7DA"/><rect x="457.5" y="177.5" width="195" height="20" rx="2.5" fill="white"/><rect x="457.5" y="177.5" width="195" height="20" rx="2.5" stroke="#DAF6C0"/><rect x="457.5" y="208.5" width="150" height="33" rx="2.5" fill="white"/><rect x="457.5" y="208.5" width="150" height="33" rx="2.5" stroke="#A1D77E"/><rect x="238.5" y="146.5" width="151" height="33" rx="2.5" fill="white"/><rect x="238.5" y="146.5" width="151" height="33" rx="2.5" stroke="#67B0F8"/><rect x="238.5" y="115.5" width="161" height="20" rx="2.5" fill="white"/><rect x="238.5" y="115.5" width="161" height="20" rx="2.5" stroke="#5282FF"/><rect x="238.5" y="208.5" width="207" height="47" rx="2.5" fill="white"/><rect x="238.5" y="208.5" width="207" height="47" rx="2.5" stroke="#B4B4B4"/><path d="M15.83 128.49C16.05 128.49 16.26 128.45 16.46 128.37C16.66 128.29 16.8367 128.17 16.99 128.01C17.1433 127.843 17.2633 127.637 17.35 127.39C17.4433 127.137 17.49 126.84 17.49 126.5C17.49 126.16 17.4433 125.867 17.35 125.62C17.2633 125.367 17.1433 125.157 16.99 124.99C16.8367 124.817 16.66 124.69 16.46 124.61C16.26 124.523 16.05 124.48 15.83 124.48C15.63 124.48 15.4367 124.523 15.25 124.61C15.07 124.697 14.91 124.823 14.77 124.99C14.63 125.157 14.5167 125.367 14.43 125.62C14.35 125.867 14.31 126.153 14.31 126.48C14.31 126.813 14.35 127.107 14.43 127.36C14.5167 127.613 14.63 127.823 14.77 127.99C14.91 128.157 15.07 128.283 15.25 128.37C15.4367 128.45 15.63 128.49 15.83 128.49ZM17.42 128.03C17.26 128.35 17.0367 128.61 16.75 128.81C16.47 129.003 16.12 129.1 15.7 129.1C15.42 129.1 15.1433 129.047 14.87 128.94C14.6033 128.833 14.3633 128.673 14.15 128.46C13.9367 128.24 13.7633 127.967 13.63 127.64C13.5033 127.307 13.44 126.92 13.44 126.48C13.44 126.04 13.5033 125.657 13.63 125.33C13.7633 124.997 13.9367 124.723 14.15 124.51C14.3633 124.297 14.6067 124.137 14.88 124.03C15.1533 123.923 15.43 123.87 15.71 123.87C16.0833 123.87 16.41 123.947 16.69 124.1C16.97 124.247 17.1967 124.46 17.37 124.74V121.75H18.22V129H17.52L17.42 128.03ZM21.6477 124.48C21.2877 124.48 20.9777 124.607 20.7177 124.86C20.4644 125.113 20.3044 125.497 20.2377 126.01H22.7877C22.8277 125.49 22.7377 125.107 22.5177 124.86C22.3044 124.607 22.0144 124.48 21.6477 124.48ZM23.4977 128.57C23.3177 128.723 23.0844 128.85 22.7977 128.95C22.5111 129.05 22.1844 129.1 21.8177 129.1C21.0177 129.1 20.4044 128.873 19.9777 128.42C19.5511 127.96 19.3377 127.313 19.3377 126.48C19.3377 126.073 19.3977 125.71 19.5177 125.39C19.6377 125.063 19.8011 124.787 20.0077 124.56C20.2211 124.333 20.4677 124.163 20.7477 124.05C21.0344 123.93 21.3411 123.87 21.6677 123.87C22.0077 123.87 22.3111 123.93 22.5777 124.05C22.8511 124.163 23.0744 124.337 23.2477 124.57C23.4277 124.797 23.5477 125.083 23.6077 125.43C23.6744 125.77 23.6744 126.163 23.6077 126.61H20.2077C20.2477 127.817 20.8111 128.42 21.8977 128.42C22.1844 128.42 22.4411 128.377 22.6677 128.29C22.8944 128.203 23.1044 128.093 23.2977 127.96L23.4977 128.57ZM27.1745 128.49C27.6211 128.49 27.9811 128.333 28.2545 128.02C28.5345 127.7 28.6745 127.187 28.6745 126.48C28.6745 125.787 28.5345 125.28 28.2545 124.96C27.9811 124.633 27.6211 124.47 27.1745 124.47C26.9545 124.47 26.7445 124.51 26.5445 124.59C26.3445 124.663 26.1678 124.783 26.0145 124.95C25.8678 125.11 25.7511 125.317 25.6645 125.57C25.5778 125.823 25.5345 126.127 25.5345 126.48C25.5345 126.84 25.5778 127.147 25.6645 127.4C25.7511 127.653 25.8678 127.86 26.0145 128.02C26.1678 128.18 26.3445 128.3 26.5445 128.38C26.7445 128.453 26.9545 128.49 27.1745 128.49ZM27.3045 129.1C26.9311 129.1 26.6011 129.02 26.3145 128.86C26.0345 128.693 25.8045 128.467 25.6245 128.18V130.87H24.7745V123.97H25.5245L25.5845 124.86C25.7645 124.56 25.9978 124.32 26.2845 124.14C26.5778 123.96 26.9311 123.87 27.3445 123.87C27.6378 123.87 27.9178 123.923 28.1845 124.03C28.4511 124.137 28.6845 124.297 28.8845 124.51C29.0911 124.723 29.2545 124.997 29.3745 125.33C29.4945 125.657 29.5545 126.04 29.5545 126.48C29.5545 126.92 29.4911 127.307 29.3645 127.64C29.2445 127.967 29.0811 128.24 28.8745 128.46C28.6678 128.673 28.4278 128.833 28.1545 128.94C27.8878 129.047 27.6045 129.1 27.3045 129.1ZM32.7929 129.1C32.4662 129.1 32.1562 129.043 31.8629 128.93C31.5696 128.81 31.3129 128.64 31.0929 128.42C30.8729 128.193 30.6962 127.92 30.5629 127.6C30.4362 127.273 30.3729 126.9 30.3729 126.48C30.3729 126.06 30.4362 125.69 30.5629 125.37C30.6962 125.043 30.8729 124.77 31.0929 124.55C31.3129 124.33 31.5696 124.163 31.8629 124.05C32.1562 123.93 32.4662 123.87 32.7929 123.87C33.1196 123.87 33.4296 123.93 33.7229 124.05C34.0229 124.163 34.2829 124.33 34.5029 124.55C34.7296 124.77 34.9096 125.043 35.0429 125.37C35.1762 125.69 35.2429 126.06 35.2429 126.48C35.2429 126.9 35.1762 127.273 35.0429 127.6C34.9096 127.92 34.7296 128.193 34.5029 128.42C34.2829 128.64 34.0229 128.81 33.7229 128.93C33.4296 129.043 33.1196 129.1 32.7929 129.1ZM32.7929 128.47C32.9929 128.47 33.1862 128.437 33.3729 128.37C33.5662 128.297 33.7362 128.18 33.8829 128.02C34.0296 127.86 34.1462 127.653 34.2329 127.4C34.3262 127.147 34.3729 126.84 34.3729 126.48C34.3729 126.12 34.3262 125.817 34.2329 125.57C34.1462 125.317 34.0296 125.11 33.8829 124.95C33.7362 124.79 33.5662 124.677 33.3729 124.61C33.1862 124.537 32.9929 124.5 32.7929 124.5C32.5929 124.5 32.3996 124.537 32.2129 124.61C32.0329 124.677 31.8696 124.79 31.7229 124.95C31.5762 125.11 31.4596 125.317 31.3729 125.57C31.2862 125.817 31.2429 126.12 31.2429 126.48C31.2429 126.84 31.2862 127.147 31.3729 127.4C31.4596 127.653 31.5762 127.86 31.7229 128.02C31.8696 128.18 32.0329 128.297 32.2129 128.37C32.3996 128.437 32.5929 128.47 32.7929 128.47ZM38.8463 128.91C38.7396 128.963 38.6096 129.007 38.4563 129.04C38.3029 129.08 38.1329 129.1 37.9463 129.1C37.4729 129.1 37.1229 128.977 36.8963 128.73C36.6696 128.477 36.5563 128.11 36.5563 127.63V124.59H35.9563V123.97H36.5563V123.01H37.4163V123.97H38.6763V124.59H37.4163V127.59C37.4163 127.863 37.4596 128.07 37.5463 128.21C37.6329 128.343 37.7929 128.41 38.0263 128.41C38.1396 128.41 38.2563 128.397 38.3763 128.37C38.4963 128.343 38.6029 128.307 38.6963 128.26L38.8463 128.91ZM40.3202 129.06C40.1536 129.06 40.0136 129.007 39.9002 128.9C39.7936 128.787 39.7402 128.653 39.7402 128.5C39.7402 128.333 39.7936 128.197 39.9002 128.09C40.0136 127.983 40.1536 127.93 40.3202 127.93C40.4869 127.93 40.6236 127.983 40.7302 128.09C40.8369 128.197 40.8902 128.333 40.8902 128.5C40.8902 128.653 40.8369 128.787 40.7302 128.9C40.6236 129.007 40.4869 129.06 40.3202 129.06ZM44.4987 128.49C44.9453 128.49 45.3053 128.333 45.5787 128.02C45.8587 127.7 45.9987 127.187 45.9987 126.48C45.9987 125.787 45.8587 125.28 45.5787 124.96C45.3053 124.633 44.9453 124.47 44.4987 124.47C44.2787 124.47 44.0687 124.51 43.8687 124.59C43.6687 124.663 43.492 124.783 43.3387 124.95C43.192 125.11 43.0753 125.317 42.9887 125.57C42.902 125.823 42.8587 126.127 42.8587 126.48C42.8587 126.84 42.902 127.147 42.9887 127.4C43.0753 127.653 43.192 127.86 43.3387 128.02C43.492 128.18 43.6687 128.3 43.8687 128.38C44.0687 128.453 44.2787 128.49 44.4987 128.49ZM44.6287 129.1C44.2553 129.1 43.9253 129.02 43.6387 128.86C43.3587 128.693 43.1287 128.467 42.9487 128.18V130.87H42.0987V123.97H42.8487L42.9087 124.86C43.0887 124.56 43.322 124.32 43.6087 124.14C43.902 123.96 44.2553 123.87 44.6687 123.87C44.962 123.87 45.242 123.923 45.5087 124.03C45.7753 124.137 46.0087 124.297 46.2087 124.51C46.4153 124.723 46.5787 124.997 46.6987 125.33C46.8187 125.657 46.8787 126.04 46.8787 126.48C46.8787 126.92 46.8153 127.307 46.6887 127.64C46.5687 127.967 46.4053 128.24 46.1987 128.46C45.992 128.673 45.752 128.833 45.4787 128.94C45.212 129.047 44.9287 129.1 44.6287 129.1ZM50.4871 124.77C50.3138 124.757 50.1438 124.77 49.9771 124.81C49.8104 124.85 49.6538 124.913 49.5071 125C49.3671 125.087 49.2371 125.193 49.1171 125.32C49.0038 125.447 48.9138 125.587 48.8471 125.74V129H47.9971V123.97H48.7471L48.8271 125.06H48.8471C48.9138 124.913 48.9971 124.773 49.0971 124.64C49.2038 124.5 49.3238 124.38 49.4571 124.28C49.5971 124.173 49.7504 124.087 49.9171 124.02C50.0904 123.953 50.2804 123.92 50.4871 123.92V124.77ZM53.4641 124.48C53.1041 124.48 52.7941 124.607 52.5341 124.86C52.2808 125.113 52.1208 125.497 52.0541 126.01H54.6041C54.6441 125.49 54.5541 125.107 54.3341 124.86C54.1208 124.607 53.8308 124.48 53.4641 124.48ZM55.3141 128.57C55.1341 128.723 54.9008 128.85 54.6141 128.95C54.3275 129.05 54.0008 129.1 53.6341 129.1C52.8341 129.1 52.2208 128.873 51.7941 128.42C51.3675 127.96 51.1541 127.313 51.1541 126.48C51.1541 126.073 51.2141 125.71 51.3341 125.39C51.4541 125.063 51.6175 124.787 51.8241 124.56C52.0375 124.333 52.2841 124.163 52.5641 124.05C52.8508 123.93 53.1575 123.87 53.4841 123.87C53.8241 123.87 54.1275 123.93 54.3941 124.05C54.6675 124.163 54.8908 124.337 55.0641 124.57C55.2441 124.797 55.3641 125.083 55.4241 125.43C55.4908 125.77 55.4908 126.163 55.4241 126.61H52.0241C52.0641 127.817 52.6275 128.42 53.7141 128.42C54.0008 128.42 54.2575 128.377 54.4841 128.29C54.7108 128.203 54.9208 128.093 55.1141 127.96L55.3141 128.57ZM57.4409 121.75V129H56.5909V121.75H57.4409ZM59.2765 123.21C59.1098 123.21 58.9765 123.16 58.8765 123.06C58.7832 122.96 58.7365 122.833 58.7365 122.68C58.7365 122.527 58.7832 122.397 58.8765 122.29C58.9765 122.183 59.1098 122.13 59.2765 122.13C59.4365 122.13 59.5665 122.183 59.6665 122.29C59.7665 122.397 59.8165 122.527 59.8165 122.68C59.8165 122.833 59.7665 122.96 59.6665 123.06C59.5665 123.16 59.4365 123.21 59.2765 123.21ZM59.7065 123.97V129H58.8565V123.97H59.7065ZM61.9623 129H61.1123V123.97H61.8623L61.9423 124.87H61.9623C62.0957 124.59 62.299 124.353 62.5723 124.16C62.8457 123.967 63.2023 123.87 63.6423 123.87C64.0223 123.87 64.339 123.963 64.5923 124.15C64.8523 124.33 65.019 124.61 65.0923 124.99C65.239 124.637 65.459 124.363 65.7523 124.17C66.0457 123.97 66.4023 123.87 66.8223 123.87C67.2823 123.87 67.649 124.003 67.9223 124.27C68.1957 124.53 68.3323 124.93 68.3323 125.47V129H67.4723V125.58C67.4723 125.22 67.3923 124.96 67.2323 124.8C67.0723 124.64 66.8523 124.56 66.5723 124.56C66.3857 124.56 66.219 124.59 66.0723 124.65C65.9323 124.71 65.8057 124.79 65.6923 124.89C65.579 124.99 65.479 125.11 65.3923 125.25C65.3057 125.383 65.2223 125.527 65.1423 125.68V129H64.2923V125.48C64.2923 125.127 64.2123 124.887 64.0523 124.76C63.8923 124.627 63.6723 124.56 63.3923 124.56C63.0257 124.56 62.7357 124.653 62.5223 124.84C62.309 125.027 62.1223 125.277 61.9623 125.59V129ZM70.1261 123.21C69.9594 123.21 69.8261 123.16 69.7261 123.06C69.6328 122.96 69.5861 122.833 69.5861 122.68C69.5861 122.527 69.6328 122.397 69.7261 122.29C69.8261 122.183 69.9594 122.13 70.1261 122.13C70.2861 122.13 70.4161 122.183 70.5161 122.29C70.6161 122.397 70.6661 122.527 70.6661 122.68C70.6661 122.833 70.6161 122.96 70.5161 123.06C70.4161 123.16 70.2861 123.21 70.1261 123.21ZM70.5561 123.97V129H69.7061V123.97H70.5561ZM74.342 124.55C73.9553 124.55 73.642 124.643 73.402 124.83C73.162 125.017 72.9653 125.25 72.812 125.53V129H71.962V123.97H72.762L72.792 124.87H72.812C72.9453 124.583 73.1586 124.347 73.452 124.16C73.7453 123.967 74.1153 123.87 74.562 123.87C75.062 123.87 75.4586 124.003 75.752 124.27C76.0453 124.53 76.192 124.93 76.192 125.47V129H75.332V125.51C75.332 125.15 75.2453 124.9 75.072 124.76C74.8986 124.62 74.6553 124.55 74.342 124.55ZM79.0477 128.48C79.401 128.48 79.681 128.393 79.8877 128.22C80.101 128.04 80.2577 127.837 80.3577 127.61V126.66H79.9177C79.271 126.66 78.8043 126.73 78.5177 126.87C78.2377 127.003 78.0977 127.263 78.0977 127.65C78.0977 127.923 78.191 128.13 78.3777 128.27C78.571 128.41 78.7943 128.48 79.0477 128.48ZM80.5177 129C80.491 128.907 80.4677 128.797 80.4477 128.67C80.4277 128.543 80.411 128.407 80.3977 128.26C80.3377 128.36 80.2643 128.46 80.1777 128.56C80.0977 128.66 79.9977 128.75 79.8777 128.83C79.7577 128.91 79.6143 128.973 79.4477 129.02C79.281 129.073 79.0877 129.1 78.8677 129.1C78.6477 129.1 78.441 129.07 78.2477 129.01C78.0543 128.95 77.881 128.86 77.7277 128.74C77.581 128.62 77.4643 128.473 77.3777 128.3C77.291 128.127 77.2477 127.927 77.2477 127.7C77.2477 127.153 77.4643 126.757 77.8977 126.51C78.3377 126.257 78.9843 126.13 79.8377 126.13H80.3577V125.72C80.3577 125.313 80.271 125.01 80.0977 124.81C79.9243 124.61 79.6177 124.51 79.1777 124.51C78.8777 124.51 78.6043 124.567 78.3577 124.68C78.1177 124.787 77.9043 124.917 77.7177 125.07L77.4877 124.37C77.5677 124.31 77.671 124.25 77.7977 124.19C77.9243 124.13 78.0677 124.077 78.2277 124.03C78.3877 123.983 78.5577 123.947 78.7377 123.92C78.9177 123.887 79.101 123.87 79.2877 123.87C79.921 123.87 80.3977 124.01 80.7177 124.29C81.0443 124.563 81.2077 125 81.2077 125.6V128.19C81.2077 128.303 81.2143 128.447 81.2277 128.62C81.241 128.787 81.2577 128.913 81.2777 129H80.5177ZM85.0672 124.77C84.8939 124.757 84.7239 124.77 84.5572 124.81C84.3905 124.85 84.2339 124.913 84.0872 125C83.9472 125.087 83.8172 125.193 83.6972 125.32C83.5839 125.447 83.4939 125.587 83.4272 125.74V129H82.5772V123.97H83.3272L83.4072 125.06H83.4272C83.4939 124.913 83.5772 124.773 83.6772 124.64C83.7839 124.5 83.9039 124.38 84.0372 124.28C84.1772 124.173 84.3305 124.087 84.4972 124.02C84.6705 123.953 84.8605 123.92 85.0672 123.92V124.77ZM86.6795 130.96C86.5262 130.96 86.3862 130.947 86.2595 130.92C86.1395 130.9 86.0329 130.873 85.9395 130.84L86.0495 130.15C86.1295 130.183 86.2195 130.213 86.3195 130.24C86.4195 130.267 86.5262 130.28 86.6395 130.28C86.8262 130.28 86.9962 130.22 87.1495 130.1C87.3029 129.98 87.4695 129.767 87.6495 129.46L85.6595 123.97H86.5795L88.1095 128.36L89.6395 123.97H90.4095L88.6295 128.94C88.5095 129.267 88.3862 129.553 88.2595 129.8C88.1329 130.053 87.9929 130.263 87.8395 130.43C87.6862 130.603 87.5129 130.733 87.3195 130.82C87.1329 130.913 86.9195 130.96 86.6795 130.96ZM90.5588 129.47H94.5388V130.12H90.5588V129.47ZM96.5827 129.1C96.3361 129.1 96.1227 129.087 95.9427 129.06C95.7627 129.04 95.6027 129.013 95.4627 128.98C95.3227 128.94 95.1994 128.897 95.0927 128.85C94.9927 128.803 94.8994 128.753 94.8127 128.7L95.0927 127.99C95.1394 128.03 95.2061 128.077 95.2927 128.13C95.3794 128.177 95.4861 128.227 95.6127 128.28C95.7394 128.327 95.8827 128.367 96.0427 128.4C96.2094 128.433 96.3894 128.45 96.5827 128.45C96.9427 128.45 97.2161 128.38 97.4027 128.24C97.5894 128.093 97.6827 127.893 97.6827 127.64C97.6827 127.427 97.6061 127.257 97.4527 127.13C97.2994 127.003 97.0361 126.883 96.6627 126.77C96.4494 126.703 96.2427 126.637 96.0427 126.57C95.8494 126.497 95.6761 126.407 95.5227 126.3C95.3694 126.187 95.2461 126.05 95.1527 125.89C95.0594 125.723 95.0127 125.513 95.0127 125.26C95.0127 124.793 95.1761 124.447 95.5027 124.22C95.8294 123.987 96.2794 123.87 96.8527 123.87C97.1994 123.87 97.4961 123.9 97.7427 123.96C97.9894 124.013 98.1894 124.077 98.3427 124.15L98.1427 124.85C98.0094 124.777 97.8427 124.7 97.6427 124.62C97.4427 124.54 97.1894 124.5 96.8827 124.5C96.5627 124.5 96.3027 124.553 96.1027 124.66C95.9094 124.76 95.8127 124.943 95.8127 125.21C95.8127 125.33 95.8427 125.433 95.9027 125.52C95.9627 125.607 96.0427 125.683 96.1427 125.75C96.2494 125.81 96.3694 125.863 96.5027 125.91C96.6427 125.957 96.7861 126 96.9327 126.04C97.1261 126.1 97.3194 126.167 97.5127 126.24C97.7061 126.307 97.8761 126.397 98.0227 126.51C98.1761 126.623 98.2994 126.767 98.3927 126.94C98.4861 127.107 98.5327 127.32 98.5327 127.58C98.5327 127.853 98.4761 128.087 98.3627 128.28C98.2561 128.467 98.1127 128.623 97.9327 128.75C97.7527 128.87 97.5461 128.957 97.3127 129.01C97.0794 129.07 96.8361 129.1 96.5827 129.1ZM101.618 124.48C101.258 124.48 100.948 124.607 100.688 124.86C100.435 125.113 100.275 125.497 100.208 126.01H102.758C102.798 125.49 102.708 125.107 102.488 124.86C102.275 124.607 101.985 124.48 101.618 124.48ZM103.468 128.57C103.288 128.723 103.055 128.85 102.768 128.95C102.482 129.05 102.155 129.1 101.788 129.1C100.988 129.1 100.375 128.873 99.9484 128.42C99.5218 127.96 99.3084 127.313 99.3084 126.48C99.3084 126.073 99.3684 125.71 99.4884 125.39C99.6084 125.063 99.7718 124.787 99.9784 124.56C100.192 124.333 100.438 124.163 100.718 124.05C101.005 123.93 101.312 123.87 101.638 123.87C101.978 123.87 102.282 123.93 102.548 124.05C102.822 124.163 103.045 124.337 103.218 124.57C103.398 124.797 103.518 125.083 103.578 125.43C103.645 125.77 103.645 126.163 103.578 126.61H100.178C100.218 127.817 100.782 128.42 101.868 128.42C102.155 128.42 102.412 128.377 102.638 128.29C102.865 128.203 103.075 128.093 103.268 127.96L103.468 128.57ZM107.235 124.77C107.062 124.757 106.892 124.77 106.725 124.81C106.558 124.85 106.402 124.913 106.255 125C106.115 125.087 105.985 125.193 105.865 125.32C105.752 125.447 105.662 125.587 105.595 125.74V129H104.745V123.97H105.495L105.575 125.06H105.595C105.662 124.913 105.745 124.773 105.845 124.64C105.952 124.5 106.072 124.38 106.205 124.28C106.345 124.173 106.498 124.087 106.665 124.02C106.838 123.953 107.028 123.92 107.235 123.92V124.77ZM107.876 123.97H108.766L110.216 128.42L111.646 123.97H112.436L110.756 129H109.546L107.876 123.97ZM113.71 123.21C113.543 123.21 113.41 123.16 113.31 123.06C113.217 122.96 113.17 122.833 113.17 122.68C113.17 122.527 113.217 122.397 113.31 122.29C113.41 122.183 113.543 122.13 113.71 122.13C113.87 122.13 114 122.183 114.1 122.29C114.2 122.397 114.25 122.527 114.25 122.68C114.25 122.833 114.2 122.96 114.1 123.06C114 123.16 113.87 123.21 113.71 123.21ZM114.14 123.97V129H113.29V123.97H114.14ZM117.736 129.1C117.389 129.1 117.063 129.043 116.756 128.93C116.456 128.81 116.193 128.637 115.966 128.41C115.746 128.183 115.569 127.91 115.436 127.59C115.309 127.263 115.246 126.893 115.246 126.48C115.246 126.073 115.309 125.71 115.436 125.39C115.569 125.063 115.749 124.787 115.976 124.56C116.209 124.333 116.483 124.163 116.796 124.05C117.109 123.93 117.446 123.87 117.806 123.87C118.106 123.87 118.376 123.9 118.616 123.96C118.856 124.02 119.056 124.103 119.216 124.21L118.966 124.97C118.773 124.83 118.583 124.723 118.396 124.65C118.216 124.57 117.999 124.53 117.746 124.53C117.526 124.53 117.316 124.573 117.116 124.66C116.916 124.74 116.743 124.863 116.596 125.03C116.449 125.19 116.333 125.393 116.246 125.64C116.159 125.88 116.116 126.16 116.116 126.48C116.116 127.133 116.273 127.62 116.586 127.94C116.899 128.26 117.326 128.42 117.866 128.42C118.046 128.42 118.239 128.387 118.446 128.32C118.659 128.253 118.853 128.157 119.026 128.03L119.216 128.66C119.043 128.793 118.829 128.9 118.576 128.98C118.329 129.06 118.049 129.1 117.736 129.1ZM122.243 124.48C121.883 124.48 121.573 124.607 121.313 124.86C121.06 125.113 120.9 125.497 120.833 126.01H123.383C123.423 125.49 123.333 125.107 123.113 124.86C122.9 124.607 122.61 124.48 122.243 124.48ZM124.093 128.57C123.913 128.723 123.68 128.85 123.393 128.95C123.107 129.05 122.78 129.1 122.413 129.1C121.613 129.1 121 128.873 120.573 128.42C120.147 127.96 119.933 127.313 119.933 126.48C119.933 126.073 119.993 125.71 120.113 125.39C120.233 125.063 120.397 124.787 120.603 124.56C120.817 124.333 121.063 124.163 121.343 124.05C121.63 123.93 121.937 123.87 122.263 123.87C122.603 123.87 122.907 123.93 123.173 124.05C123.447 124.163 123.67 124.337 123.843 124.57C124.023 124.797 124.143 125.083 124.203 125.43C124.27 125.77 124.27 126.163 124.203 126.61H120.803C120.843 127.817 121.407 128.42 122.493 128.42C122.78 128.42 123.037 128.377 123.263 128.29C123.49 128.203 123.7 128.093 123.893 127.96L124.093 128.57ZM124.67 129.47H128.65V130.12H124.67V129.47ZM131.494 128.49C131.714 128.49 131.924 128.45 132.124 128.37C132.324 128.29 132.501 128.17 132.654 128.01C132.807 127.843 132.927 127.637 133.014 127.39C133.107 127.137 133.154 126.84 133.154 126.5C133.154 126.16 133.107 125.867 133.014 125.62C132.927 125.367 132.807 125.157 132.654 124.99C132.501 124.817 132.324 124.69 132.124 124.61C131.924 124.523 131.714 124.48 131.494 124.48C131.294 124.48 131.101 124.523 130.914 124.61C130.734 124.697 130.574 124.823 130.434 124.99C130.294 125.157 130.181 125.367 130.094 125.62C130.014 125.867 129.974 126.153 129.974 126.48C129.974 126.813 130.014 127.107 130.094 127.36C130.181 127.613 130.294 127.823 130.434 127.99C130.574 128.157 130.734 128.283 130.914 128.37C131.101 128.45 131.294 128.49 131.494 128.49ZM133.084 128.03C132.924 128.35 132.701 128.61 132.414 128.81C132.134 129.003 131.784 129.1 131.364 129.1C131.084 129.1 130.807 129.047 130.534 128.94C130.267 128.833 130.027 128.673 129.814 128.46C129.601 128.24 129.427 127.967 129.294 127.64C129.167 127.307 129.104 126.92 129.104 126.48C129.104 126.04 129.167 125.657 129.294 125.33C129.427 124.997 129.601 124.723 129.814 124.51C130.027 124.297 130.271 124.137 130.544 124.03C130.817 123.923 131.094 123.87 131.374 123.87C131.747 123.87 132.074 123.947 132.354 124.1C132.634 124.247 132.861 124.46 133.034 124.74V121.75H133.884V129H133.184L133.084 128.03ZM138.542 128.1C138.408 128.38 138.198 128.617 137.912 128.81C137.632 129.003 137.265 129.1 136.812 129.1C136.345 129.1 135.968 128.96 135.682 128.68C135.395 128.393 135.252 127.953 135.252 127.36V123.97H136.112V127.36C136.112 127.56 136.135 127.727 136.182 127.86C136.228 127.993 136.295 128.1 136.382 128.18C136.468 128.26 136.568 128.317 136.682 128.35C136.795 128.383 136.918 128.4 137.052 128.4C137.425 128.4 137.725 128.31 137.952 128.13C138.185 127.95 138.382 127.703 138.542 127.39V123.97H139.392V129H138.642L138.562 128.1H138.542ZM143.3 124.77C143.126 124.757 142.956 124.77 142.79 124.81C142.623 124.85 142.466 124.913 142.32 125C142.18 125.087 142.05 125.193 141.93 125.32C141.816 125.447 141.726 125.587 141.66 125.74V129H140.81V123.97H141.56L141.64 125.06H141.66C141.726 124.913 141.81 124.773 141.91 124.64C142.016 124.5 142.136 124.38 142.27 124.28C142.41 124.173 142.563 124.087 142.73 124.02C142.903 123.953 143.093 123.92 143.3 123.92V124.77ZM145.708 128.48C146.061 128.48 146.341 128.393 146.548 128.22C146.761 128.04 146.918 127.837 147.018 127.61V126.66H146.578C145.931 126.66 145.464 126.73 145.178 126.87C144.898 127.003 144.758 127.263 144.758 127.65C144.758 127.923 144.851 128.13 145.038 128.27C145.231 128.41 145.454 128.48 145.708 128.48ZM147.178 129C147.151 128.907 147.128 128.797 147.108 128.67C147.088 128.543 147.071 128.407 147.058 128.26C146.998 128.36 146.924 128.46 146.838 128.56C146.758 128.66 146.658 128.75 146.538 128.83C146.418 128.91 146.274 128.973 146.108 129.02C145.941 129.073 145.748 129.1 145.528 129.1C145.308 129.1 145.101 129.07 144.908 129.01C144.714 128.95 144.541 128.86 144.388 128.74C144.241 128.62 144.124 128.473 144.038 128.3C143.951 128.127 143.908 127.927 143.908 127.7C143.908 127.153 144.124 126.757 144.558 126.51C144.998 126.257 145.644 126.13 146.498 126.13H147.018V125.72C147.018 125.313 146.931 125.01 146.758 124.81C146.584 124.61 146.278 124.51 145.838 124.51C145.538 124.51 145.264 124.567 145.018 124.68C144.778 124.787 144.564 124.917 144.378 125.07L144.148 124.37C144.228 124.31 144.331 124.25 144.458 124.19C144.584 124.13 144.728 124.077 144.888 124.03C145.048 123.983 145.218 123.947 145.398 123.92C145.578 123.887 145.761 123.87 145.948 123.87C146.581 123.87 147.058 124.01 147.378 124.29C147.704 124.563 147.868 125 147.868 125.6V128.19C147.868 128.303 147.874 128.447 147.888 128.62C147.901 128.787 147.918 128.913 147.938 129H147.178ZM151.717 128.91C151.611 128.963 151.481 129.007 151.327 129.04C151.174 129.08 151.004 129.1 150.817 129.1C150.344 129.1 149.994 128.977 149.767 128.73C149.541 128.477 149.427 128.11 149.427 127.63V124.59H148.827V123.97H149.427V123.01H150.287V123.97H151.547V124.59H150.287V127.59C150.287 127.863 150.331 128.07 150.417 128.21C150.504 128.343 150.664 128.41 150.897 128.41C151.011 128.41 151.127 128.397 151.247 128.37C151.367 128.343 151.474 128.307 151.567 128.26L151.717 128.91ZM153.144 123.21C152.977 123.21 152.844 123.16 152.744 123.06C152.65 122.96 152.604 122.833 152.604 122.68C152.604 122.527 152.65 122.397 152.744 122.29C152.844 122.183 152.977 122.13 153.144 122.13C153.304 122.13 153.434 122.183 153.534 122.29C153.634 122.397 153.684 122.527 153.684 122.68C153.684 122.833 153.634 122.96 153.534 123.06C153.434 123.16 153.304 123.21 153.144 123.21ZM153.574 123.97V129H152.724V123.97H153.574ZM157.1 129.1C156.773 129.1 156.463 129.043 156.17 128.93C155.876 128.81 155.62 128.64 155.4 128.42C155.18 128.193 155.003 127.92 154.87 127.6C154.743 127.273 154.68 126.9 154.68 126.48C154.68 126.06 154.743 125.69 154.87 125.37C155.003 125.043 155.18 124.77 155.4 124.55C155.62 124.33 155.876 124.163 156.17 124.05C156.463 123.93 156.773 123.87 157.1 123.87C157.426 123.87 157.736 123.93 158.03 124.05C158.33 124.163 158.59 124.33 158.81 124.55C159.036 124.77 159.216 125.043 159.35 125.37C159.483 125.69 159.55 126.06 159.55 126.48C159.55 126.9 159.483 127.273 159.35 127.6C159.216 127.92 159.036 128.193 158.81 128.42C158.59 128.64 158.33 128.81 158.03 128.93C157.736 129.043 157.426 129.1 157.1 129.1ZM157.1 128.47C157.3 128.47 157.493 128.437 157.68 128.37C157.873 128.297 158.043 128.18 158.19 128.02C158.336 127.86 158.453 127.653 158.54 127.4C158.633 127.147 158.68 126.84 158.68 126.48C158.68 126.12 158.633 125.817 158.54 125.57C158.453 125.317 158.336 125.11 158.19 124.95C158.043 124.79 157.873 124.677 157.68 124.61C157.493 124.537 157.3 124.5 157.1 124.5C156.9 124.5 156.706 124.537 156.52 124.61C156.34 124.677 156.176 124.79 156.03 124.95C155.883 125.11 155.766 125.317 155.68 125.57C155.593 125.817 155.55 126.12 155.55 126.48C155.55 126.84 155.593 127.147 155.68 127.4C155.766 127.653 155.883 127.86 156.03 128.02C156.176 128.18 156.34 128.297 156.52 128.37C156.706 128.437 156.9 128.47 157.1 128.47ZM163.053 124.55C162.666 124.55 162.353 124.643 162.113 124.83C161.873 125.017 161.676 125.25 161.523 125.53V129H160.673V123.97H161.473L161.503 124.87H161.523C161.656 124.583 161.87 124.347 162.163 124.16C162.456 123.967 162.826 123.87 163.273 123.87C163.773 123.87 164.17 124.003 164.463 124.27C164.756 124.53 164.903 124.93 164.903 125.47V129H164.043V125.51C164.043 125.15 163.956 124.9 163.783 124.76C163.61 124.62 163.366 124.55 163.053 124.55ZM165.569 129.47H169.549V130.12H165.569V129.47ZM171.593 129.1C171.346 129.1 171.133 129.087 170.953 129.06C170.773 129.04 170.613 129.013 170.473 128.98C170.333 128.94 170.209 128.897 170.103 128.85C170.003 128.803 169.909 128.753 169.823 128.7L170.103 127.99C170.149 128.03 170.216 128.077 170.303 128.13C170.389 128.177 170.496 128.227 170.623 128.28C170.749 128.327 170.893 128.367 171.053 128.4C171.219 128.433 171.399 128.45 171.593 128.45C171.953 128.45 172.226 128.38 172.413 128.24C172.599 128.093 172.693 127.893 172.693 127.64C172.693 127.427 172.616 127.257 172.463 127.13C172.309 127.003 172.046 126.883 171.673 126.77C171.459 126.703 171.253 126.637 171.053 126.57C170.859 126.497 170.686 126.407 170.533 126.3C170.379 126.187 170.256 126.05 170.163 125.89C170.069 125.723 170.023 125.513 170.023 125.26C170.023 124.793 170.186 124.447 170.513 124.22C170.839 123.987 171.289 123.87 171.863 123.87C172.209 123.87 172.506 123.9 172.753 123.96C172.999 124.013 173.199 124.077 173.353 124.15L173.153 124.85C173.019 124.777 172.853 124.7 172.653 124.62C172.453 124.54 172.199 124.5 171.893 124.5C171.573 124.5 171.313 124.553 171.113 124.66C170.919 124.76 170.823 124.943 170.823 125.21C170.823 125.33 170.853 125.433 170.913 125.52C170.973 125.607 171.053 125.683 171.153 125.75C171.259 125.81 171.379 125.863 171.513 125.91C171.653 125.957 171.796 126 171.943 126.04C172.136 126.1 172.329 126.167 172.523 126.24C172.716 126.307 172.886 126.397 173.033 126.51C173.186 126.623 173.309 126.767 173.403 126.94C173.496 127.107 173.543 127.32 173.543 127.58C173.543 127.853 173.486 128.087 173.373 128.28C173.266 128.467 173.123 128.623 172.943 128.75C172.763 128.87 172.556 128.957 172.323 129.01C172.089 129.07 171.846 129.1 171.593 129.1Z" fill="black"/><path d="M179.138 43.73V46.7H180.268C180.515 46.7 180.738 46.67 180.938 46.61C181.138 46.5433 181.308 46.4433 181.448 46.31C181.595 46.1767 181.708 46.01 181.788 45.81C181.868 45.6033 181.908 45.36 181.908 45.08C181.908 44.6133 181.772 44.2733 181.498 44.06C181.232 43.84 180.848 43.73 180.348 43.73H179.138ZM179.138 47.38V50H178.218V43.05H180.348C181.168 43.05 181.792 43.22 182.218 43.56C182.645 43.9 182.858 44.4133 182.858 45.1C182.858 45.6867 182.725 46.1533 182.458 46.5C182.198 46.84 181.845 47.08 181.398 47.22L183.168 50H182.138L180.468 47.38H180.268H179.138ZM187.432 49.1C187.299 49.38 187.089 49.6167 186.802 49.81C186.522 50.0033 186.156 50.1 185.702 50.1C185.236 50.1 184.859 49.96 184.572 49.68C184.286 49.3933 184.142 48.9533 184.142 48.36V44.97H185.002V48.36C185.002 48.56 185.026 48.7267 185.072 48.86C185.119 48.9933 185.186 49.1 185.272 49.18C185.359 49.26 185.459 49.3167 185.572 49.35C185.686 49.3833 185.809 49.4 185.942 49.4C186.316 49.4 186.616 49.31 186.842 49.13C187.076 48.95 187.272 48.7033 187.432 48.39V44.97H188.282V50H187.532L187.452 49.1H187.432ZM192.08 45.55C191.694 45.55 191.38 45.6433 191.14 45.83C190.9 46.0167 190.704 46.25 190.55 46.53V50H189.7V44.97H190.5L190.53 45.87H190.55C190.684 45.5833 190.897 45.3467 191.19 45.16C191.484 44.9667 191.854 44.87 192.3 44.87C192.8 44.87 193.197 45.0033 193.49 45.27C193.784 45.53 193.93 45.93 193.93 46.47V50H193.07V46.51C193.07 46.15 192.984 45.9 192.81 45.76C192.637 45.62 192.394 45.55 192.08 45.55ZM198.694 50V43.89L197.324 45.29L197.014 44.66L198.654 43.05H199.584V50H198.694Z" fill="black"/><path d="M693 57L688 54.1132V59.8868L693 57ZM592 57.5L688.5 57.5V56.5L592 56.5V57.5Z" fill="black"/><path d="M631.167 43.73V46.7H632.297C632.543 46.7 632.767 46.67 632.967 46.61C633.167 46.5433 633.337 46.4433 633.477 46.31C633.623 46.1767 633.737 46.01 633.817 45.81C633.897 45.6033 633.937 45.36 633.937 45.08C633.937 44.6133 633.8 44.2733 633.527 44.06C633.26 43.84 632.877 43.73 632.377 43.73H631.167ZM631.167 47.38V50H630.247V43.05H632.377C633.197 43.05 633.82 43.22 634.247 43.56C634.673 43.9 634.887 44.4133 634.887 45.1C634.887 45.6867 634.753 46.1533 634.487 46.5C634.227 46.84 633.873 47.08 633.427 47.22L635.197 50H634.167L632.497 47.38H632.297H631.167ZM639.461 49.1C639.327 49.38 639.117 49.6167 638.831 49.81C638.551 50.0033 638.184 50.1 637.731 50.1C637.264 50.1 636.887 49.96 636.601 49.68C636.314 49.3933 636.171 48.9533 636.171 48.36V44.97H637.031V48.36C637.031 48.56 637.054 48.7267 637.101 48.86C637.147 48.9933 637.214 49.1 637.301 49.18C637.387 49.26 637.487 49.3167 637.601 49.35C637.714 49.3833 637.837 49.4 637.971 49.4C638.344 49.4 638.644 49.31 638.871 49.13C639.104 48.95 639.301 48.7033 639.461 48.39V44.97H640.311V50H639.561L639.481 49.1H639.461ZM644.109 45.55C643.722 45.55 643.409 45.6433 643.169 45.83C642.929 46.0167 642.732 46.25 642.579 46.53V50H641.729V44.97H642.529L642.559 45.87H642.579C642.712 45.5833 642.925 45.3467 643.219 45.16C643.512 44.9667 643.882 44.87 644.329 44.87C644.829 44.87 645.225 45.0033 645.519 45.27C645.812 45.53 645.959 45.93 645.959 46.47V50H645.099V46.51C645.099 46.15 645.012 45.9 644.839 45.76C644.665 45.62 644.422 45.55 644.109 45.55ZM649.362 50V49.2C649.882 48.74 650.342 48.3267 650.742 47.96C651.149 47.5933 651.489 47.25 651.762 46.93C652.036 46.6033 652.242 46.2867 652.382 45.98C652.522 45.6733 652.592 45.3533 652.592 45.02C652.592 44.5933 652.486 44.2533 652.272 44C652.059 43.74 651.716 43.61 651.242 43.61C650.942 43.61 650.659 43.6633 650.392 43.77C650.132 43.87 649.882 43.9967 649.642 44.15L649.422 43.44C649.662 43.2867 649.946 43.17 650.272 43.09C650.606 43.0033 650.952 42.96 651.312 42.96C652.039 42.96 652.586 43.14 652.952 43.5C653.319 43.8533 653.502 44.3333 653.502 44.94C653.502 45.3733 653.412 45.7767 653.232 46.15C653.059 46.5167 652.819 46.8767 652.512 47.23C652.212 47.5767 651.859 47.92 651.452 48.26C651.046 48.6 650.612 48.9533 650.152 49.32H653.572V50H649.362Z" fill="black"/><path d="M15.83 159.49C16.05 159.49 16.26 159.45 16.46 159.37C16.66 159.29 16.8367 159.17 16.99 159.01C17.1433 158.843 17.2633 158.637 17.35 158.39C17.4433 158.137 17.49 157.84 17.49 157.5C17.49 157.16 17.4433 156.867 17.35 156.62C17.2633 156.367 17.1433 156.157 16.99 155.99C16.8367 155.817 16.66 155.69 16.46 155.61C16.26 155.523 16.05 155.48 15.83 155.48C15.63 155.48 15.4367 155.523 15.25 155.61C15.07 155.697 14.91 155.823 14.77 155.99C14.63 156.157 14.5167 156.367 14.43 156.62C14.35 156.867 14.31 157.153 14.31 157.48C14.31 157.813 14.35 158.107 14.43 158.36C14.5167 158.613 14.63 158.823 14.77 158.99C14.91 159.157 15.07 159.283 15.25 159.37C15.4367 159.45 15.63 159.49 15.83 159.49ZM17.42 159.03C17.26 159.35 17.0367 159.61 16.75 159.81C16.47 160.003 16.12 160.1 15.7 160.1C15.42 160.1 15.1433 160.047 14.87 159.94C14.6033 159.833 14.3633 159.673 14.15 159.46C13.9367 159.24 13.7633 158.967 13.63 158.64C13.5033 158.307 13.44 157.92 13.44 157.48C13.44 157.04 13.5033 156.657 13.63 156.33C13.7633 155.997 13.9367 155.723 14.15 155.51C14.3633 155.297 14.6067 155.137 14.88 155.03C15.1533 154.923 15.43 154.87 15.71 154.87C16.0833 154.87 16.41 154.947 16.69 155.1C16.97 155.247 17.1967 155.46 17.37 155.74V152.75H18.22V160H17.52L17.42 159.03ZM21.6477 155.48C21.2877 155.48 20.9777 155.607 20.7177 155.86C20.4644 156.113 20.3044 156.497 20.2377 157.01H22.7877C22.8277 156.49 22.7377 156.107 22.5177 155.86C22.3044 155.607 22.0144 155.48 21.6477 155.48ZM23.4977 159.57C23.3177 159.723 23.0844 159.85 22.7977 159.95C22.5111 160.05 22.1844 160.1 21.8177 160.1C21.0177 160.1 20.4044 159.873 19.9777 159.42C19.5511 158.96 19.3377 158.313 19.3377 157.48C19.3377 157.073 19.3977 156.71 19.5177 156.39C19.6377 156.063 19.8011 155.787 20.0077 155.56C20.2211 155.333 20.4677 155.163 20.7477 155.05C21.0344 154.93 21.3411 154.87 21.6677 154.87C22.0077 154.87 22.3111 154.93 22.5777 155.05C22.8511 155.163 23.0744 155.337 23.2477 155.57C23.4277 155.797 23.5477 156.083 23.6077 156.43C23.6744 156.77 23.6744 157.163 23.6077 157.61H20.2077C20.2477 158.817 20.8111 159.42 21.8977 159.42C22.1844 159.42 22.4411 159.377 22.6677 159.29C22.8944 159.203 23.1044 159.093 23.2977 158.96L23.4977 159.57ZM27.1745 159.49C27.6211 159.49 27.9811 159.333 28.2545 159.02C28.5345 158.7 28.6745 158.187 28.6745 157.48C28.6745 156.787 28.5345 156.28 28.2545 155.96C27.9811 155.633 27.6211 155.47 27.1745 155.47C26.9545 155.47 26.7445 155.51 26.5445 155.59C26.3445 155.663 26.1678 155.783 26.0145 155.95C25.8678 156.11 25.7511 156.317 25.6645 156.57C25.5778 156.823 25.5345 157.127 25.5345 157.48C25.5345 157.84 25.5778 158.147 25.6645 158.4C25.7511 158.653 25.8678 158.86 26.0145 159.02C26.1678 159.18 26.3445 159.3 26.5445 159.38C26.7445 159.453 26.9545 159.49 27.1745 159.49ZM27.3045 160.1C26.9311 160.1 26.6011 160.02 26.3145 159.86C26.0345 159.693 25.8045 159.467 25.6245 159.18V161.87H24.7745V154.97H25.5245L25.5845 155.86C25.7645 155.56 25.9978 155.32 26.2845 155.14C26.5778 154.96 26.9311 154.87 27.3445 154.87C27.6378 154.87 27.9178 154.923 28.1845 155.03C28.4511 155.137 28.6845 155.297 28.8845 155.51C29.0911 155.723 29.2545 155.997 29.3745 156.33C29.4945 156.657 29.5545 157.04 29.5545 157.48C29.5545 157.92 29.4911 158.307 29.3645 158.64C29.2445 158.967 29.0811 159.24 28.8745 159.46C28.6678 159.673 28.4278 159.833 28.1545 159.94C27.8878 160.047 27.6045 160.1 27.3045 160.1ZM32.7929 160.1C32.4662 160.1 32.1562 160.043 31.8629 159.93C31.5696 159.81 31.3129 159.64 31.0929 159.42C30.8729 159.193 30.6962 158.92 30.5629 158.6C30.4362 158.273 30.3729 157.9 30.3729 157.48C30.3729 157.06 30.4362 156.69 30.5629 156.37C30.6962 156.043 30.8729 155.77 31.0929 155.55C31.3129 155.33 31.5696 155.163 31.8629 155.05C32.1562 154.93 32.4662 154.87 32.7929 154.87C33.1196 154.87 33.4296 154.93 33.7229 155.05C34.0229 155.163 34.2829 155.33 34.5029 155.55C34.7296 155.77 34.9096 156.043 35.0429 156.37C35.1762 156.69 35.2429 157.06 35.2429 157.48C35.2429 157.9 35.1762 158.273 35.0429 158.6C34.9096 158.92 34.7296 159.193 34.5029 159.42C34.2829 159.64 34.0229 159.81 33.7229 159.93C33.4296 160.043 33.1196 160.1 32.7929 160.1ZM32.7929 159.47C32.9929 159.47 33.1862 159.437 33.3729 159.37C33.5662 159.297 33.7362 159.18 33.8829 159.02C34.0296 158.86 34.1462 158.653 34.2329 158.4C34.3262 158.147 34.3729 157.84 34.3729 157.48C34.3729 157.12 34.3262 156.817 34.2329 156.57C34.1462 156.317 34.0296 156.11 33.8829 155.95C33.7362 155.79 33.5662 155.677 33.3729 155.61C33.1862 155.537 32.9929 155.5 32.7929 155.5C32.5929 155.5 32.3996 155.537 32.2129 155.61C32.0329 155.677 31.8696 155.79 31.7229 155.95C31.5762 156.11 31.4596 156.317 31.3729 156.57C31.2862 156.817 31.2429 157.12 31.2429 157.48C31.2429 157.84 31.2862 158.147 31.3729 158.4C31.4596 158.653 31.5762 158.86 31.7229 159.02C31.8696 159.18 32.0329 159.297 32.2129 159.37C32.3996 159.437 32.5929 159.47 32.7929 159.47ZM38.8463 159.91C38.7396 159.963 38.6096 160.007 38.4563 160.04C38.3029 160.08 38.1329 160.1 37.9463 160.1C37.4729 160.1 37.1229 159.977 36.8963 159.73C36.6696 159.477 36.5563 159.11 36.5563 158.63V155.59H35.9563V154.97H36.5563V154.01H37.4163V154.97H38.6763V155.59H37.4163V158.59C37.4163 158.863 37.4596 159.07 37.5463 159.21C37.6329 159.343 37.7929 159.41 38.0263 159.41C38.1396 159.41 38.2563 159.397 38.3763 159.37C38.4963 159.343 38.6029 159.307 38.6963 159.26L38.8463 159.91ZM40.3202 160.06C40.1536 160.06 40.0136 160.007 39.9002 159.9C39.7936 159.787 39.7402 159.653 39.7402 159.5C39.7402 159.333 39.7936 159.197 39.9002 159.09C40.0136 158.983 40.1536 158.93 40.3202 158.93C40.4869 158.93 40.6236 158.983 40.7302 159.09C40.8369 159.197 40.8902 159.333 40.8902 159.5C40.8902 159.653 40.8369 159.787 40.7302 159.9C40.6236 160.007 40.4869 160.06 40.3202 160.06ZM43.4187 160.1C43.172 160.1 42.9587 160.087 42.7787 160.06C42.5987 160.04 42.4387 160.013 42.2987 159.98C42.1587 159.94 42.0353 159.897 41.9287 159.85C41.8287 159.803 41.7353 159.753 41.6487 159.7L41.9287 158.99C41.9753 159.03 42.042 159.077 42.1287 159.13C42.2153 159.177 42.322 159.227 42.4487 159.28C42.5753 159.327 42.7187 159.367 42.8787 159.4C43.0453 159.433 43.2253 159.45 43.4187 159.45C43.7787 159.45 44.052 159.38 44.2387 159.24C44.4253 159.093 44.5187 158.893 44.5187 158.64C44.5187 158.427 44.442 158.257 44.2887 158.13C44.1353 158.003 43.872 157.883 43.4987 157.77C43.2853 157.703 43.0787 157.637 42.8787 157.57C42.6853 157.497 42.512 157.407 42.3587 157.3C42.2053 157.187 42.082 157.05 41.9887 156.89C41.8953 156.723 41.8487 156.513 41.8487 156.26C41.8487 155.793 42.012 155.447 42.3387 155.22C42.6653 154.987 43.1153 154.87 43.6887 154.87C44.0353 154.87 44.332 154.9 44.5787 154.96C44.8253 155.013 45.0253 155.077 45.1787 155.15L44.9787 155.85C44.8453 155.777 44.6787 155.7 44.4787 155.62C44.2787 155.54 44.0253 155.5 43.7187 155.5C43.3987 155.5 43.1387 155.553 42.9387 155.66C42.7453 155.76 42.6487 155.943 42.6487 156.21C42.6487 156.33 42.6787 156.433 42.7387 156.52C42.7987 156.607 42.8787 156.683 42.9787 156.75C43.0853 156.81 43.2053 156.863 43.3387 156.91C43.4787 156.957 43.622 157 43.7687 157.04C43.962 157.1 44.1553 157.167 44.3487 157.24C44.542 157.307 44.712 157.397 44.8587 157.51C45.012 157.623 45.1353 157.767 45.2287 157.94C45.322 158.107 45.3687 158.32 45.3687 158.58C45.3687 158.853 45.312 159.087 45.1987 159.28C45.092 159.467 44.9487 159.623 44.7687 159.75C44.5887 159.87 44.382 159.957 44.1487 160.01C43.9153 160.07 43.672 160.1 43.4187 160.1ZM48.4544 155.48C48.0944 155.48 47.7844 155.607 47.5244 155.86C47.271 156.113 47.111 156.497 47.0444 157.01H49.5944C49.6344 156.49 49.5444 156.107 49.3244 155.86C49.111 155.607 48.821 155.48 48.4544 155.48ZM50.3044 159.57C50.1244 159.723 49.891 159.85 49.6044 159.95C49.3177 160.05 48.991 160.1 48.6244 160.1C47.8244 160.1 47.211 159.873 46.7844 159.42C46.3577 158.96 46.1444 158.313 46.1444 157.48C46.1444 157.073 46.2044 156.71 46.3244 156.39C46.4444 156.063 46.6077 155.787 46.8144 155.56C47.0277 155.333 47.2744 155.163 47.5544 155.05C47.841 154.93 48.1477 154.87 48.4744 154.87C48.8144 154.87 49.1177 154.93 49.3844 155.05C49.6577 155.163 49.881 155.337 50.0544 155.57C50.2344 155.797 50.3544 156.083 50.4144 156.43C50.481 156.77 50.481 157.163 50.4144 157.61H47.0144C47.0544 158.817 47.6177 159.42 48.7044 159.42C48.991 159.42 49.2477 159.377 49.4744 159.29C49.701 159.203 49.911 159.093 50.1044 158.96L50.3044 159.57ZM54.0711 155.77C53.8978 155.757 53.7278 155.77 53.5611 155.81C53.3944 155.85 53.2378 155.913 53.0911 156C52.9511 156.087 52.8211 156.193 52.7011 156.32C52.5878 156.447 52.4978 156.587 52.4311 156.74V160H51.5811V154.97H52.3311L52.4111 156.06H52.4311C52.4978 155.913 52.5811 155.773 52.6811 155.64C52.7878 155.5 52.9078 155.38 53.0411 155.28C53.1811 155.173 53.3344 155.087 53.5011 155.02C53.6744 154.953 53.8644 154.92 54.0711 154.92V155.77ZM54.7123 154.97H55.6023L57.0523 159.42L58.4823 154.97H59.2723L57.5923 160H56.3823L54.7123 154.97ZM60.546 154.21C60.3793 154.21 60.246 154.16 60.146 154.06C60.0527 153.96 60.006 153.833 60.006 153.68C60.006 153.527 60.0527 153.397 60.146 153.29C60.246 153.183 60.3793 153.13 60.546 153.13C60.706 153.13 60.836 153.183 60.936 153.29C61.036 153.397 61.086 153.527 61.086 153.68C61.086 153.833 61.036 153.96 60.936 154.06C60.836 154.16 60.706 154.21 60.546 154.21ZM60.976 154.97V160H60.126V154.97H60.976ZM64.5719 160.1C64.2252 160.1 63.8985 160.043 63.5919 159.93C63.2919 159.81 63.0285 159.637 62.8019 159.41C62.5819 159.183 62.4052 158.91 62.2719 158.59C62.1452 158.263 62.0819 157.893 62.0819 157.48C62.0819 157.073 62.1452 156.71 62.2719 156.39C62.4052 156.063 62.5852 155.787 62.8119 155.56C63.0452 155.333 63.3185 155.163 63.6319 155.05C63.9452 154.93 64.2819 154.87 64.6419 154.87C64.9419 154.87 65.2119 154.9 65.4519 154.96C65.6919 155.02 65.8919 155.103 66.0519 155.21L65.8019 155.97C65.6085 155.83 65.4185 155.723 65.2319 155.65C65.0519 155.57 64.8352 155.53 64.5819 155.53C64.3619 155.53 64.1519 155.573 63.9519 155.66C63.7519 155.74 63.5785 155.863 63.4319 156.03C63.2852 156.19 63.1685 156.393 63.0819 156.64C62.9952 156.88 62.9519 157.16 62.9519 157.48C62.9519 158.133 63.1085 158.62 63.4219 158.94C63.7352 159.26 64.1619 159.42 64.7019 159.42C64.8819 159.42 65.0752 159.387 65.2819 159.32C65.4952 159.253 65.6885 159.157 65.8619 159.03L66.0519 159.66C65.8785 159.793 65.6652 159.9 65.4119 159.98C65.1652 160.06 64.8852 160.1 64.5719 160.1ZM69.0794 155.48C68.7194 155.48 68.4094 155.607 68.1494 155.86C67.896 156.113 67.736 156.497 67.6694 157.01H70.2194C70.2594 156.49 70.1694 156.107 69.9494 155.86C69.736 155.607 69.446 155.48 69.0794 155.48ZM70.9294 159.57C70.7494 159.723 70.516 159.85 70.2294 159.95C69.9427 160.05 69.616 160.1 69.2494 160.1C68.4494 160.1 67.836 159.873 67.4094 159.42C66.9827 158.96 66.7694 158.313 66.7694 157.48C66.7694 157.073 66.8294 156.71 66.9494 156.39C67.0694 156.063 67.2327 155.787 67.4394 155.56C67.6527 155.333 67.8994 155.163 68.1794 155.05C68.466 154.93 68.7727 154.87 69.0994 154.87C69.4394 154.87 69.7427 154.93 70.0094 155.05C70.2827 155.163 70.506 155.337 70.6794 155.57C70.8594 155.797 70.9794 156.083 71.0394 156.43C71.106 156.77 71.106 157.163 71.0394 157.61H67.6394C67.6794 158.817 68.2427 159.42 69.3294 159.42C69.616 159.42 69.8727 159.377 70.0994 159.29C70.326 159.203 70.536 159.093 70.7294 158.96L70.9294 159.57ZM71.5061 160.47H75.4861V161.12H71.5061V160.47ZM78.33 159.49C78.55 159.49 78.76 159.45 78.96 159.37C79.16 159.29 79.3367 159.17 79.49 159.01C79.6433 158.843 79.7633 158.637 79.85 158.39C79.9433 158.137 79.99 157.84 79.99 157.5C79.99 157.16 79.9433 156.867 79.85 156.62C79.7633 156.367 79.6433 156.157 79.49 155.99C79.3367 155.817 79.16 155.69 78.96 155.61C78.76 155.523 78.55 155.48 78.33 155.48C78.13 155.48 77.9367 155.523 77.75 155.61C77.57 155.697 77.41 155.823 77.27 155.99C77.13 156.157 77.0167 156.367 76.93 156.62C76.85 156.867 76.81 157.153 76.81 157.48C76.81 157.813 76.85 158.107 76.93 158.36C77.0167 158.613 77.13 158.823 77.27 158.99C77.41 159.157 77.57 159.283 77.75 159.37C77.9367 159.45 78.13 159.49 78.33 159.49ZM79.92 159.03C79.76 159.35 79.5367 159.61 79.25 159.81C78.97 160.003 78.62 160.1 78.2 160.1C77.92 160.1 77.6433 160.047 77.37 159.94C77.1033 159.833 76.8633 159.673 76.65 159.46C76.4367 159.24 76.2633 158.967 76.13 158.64C76.0033 158.307 75.94 157.92 75.94 157.48C75.94 157.04 76.0033 156.657 76.13 156.33C76.2633 155.997 76.4367 155.723 76.65 155.51C76.8633 155.297 77.1067 155.137 77.38 155.03C77.6533 154.923 77.93 154.87 78.21 154.87C78.5833 154.87 78.91 154.947 79.19 155.1C79.47 155.247 79.6967 155.46 79.87 155.74V152.75H80.72V160H80.02L79.92 159.03ZM85.3777 159.1C85.2444 159.38 85.0344 159.617 84.7477 159.81C84.4677 160.003 84.1011 160.1 83.6477 160.1C83.1811 160.1 82.8044 159.96 82.5177 159.68C82.2311 159.393 82.0877 158.953 82.0877 158.36V154.97H82.9477V158.36C82.9477 158.56 82.9711 158.727 83.0177 158.86C83.0644 158.993 83.1311 159.1 83.2177 159.18C83.3044 159.26 83.4044 159.317 83.5177 159.35C83.6311 159.383 83.7544 159.4 83.8877 159.4C84.2611 159.4 84.5611 159.31 84.7877 159.13C85.0211 158.95 85.2177 158.703 85.3777 158.39V154.97H86.2277V160H85.4777L85.3977 159.1H85.3777ZM90.1355 155.77C89.9622 155.757 89.7922 155.77 89.6255 155.81C89.4589 155.85 89.3022 155.913 89.1555 156C89.0155 156.087 88.8855 156.193 88.7655 156.32C88.6522 156.447 88.5622 156.587 88.4955 156.74V160H87.6455V154.97H88.3955L88.4755 156.06H88.4955C88.5622 155.913 88.6455 155.773 88.7455 155.64C88.8522 155.5 88.9722 155.38 89.1055 155.28C89.2455 155.173 89.3989 155.087 89.5655 155.02C89.7389 154.953 89.9289 154.92 90.1355 154.92V155.77ZM92.5438 159.48C92.8971 159.48 93.1771 159.393 93.3838 159.22C93.5971 159.04 93.7538 158.837 93.8538 158.61V157.66H93.4138C92.7671 157.66 92.3004 157.73 92.0138 157.87C91.7338 158.003 91.5938 158.263 91.5938 158.65C91.5938 158.923 91.6871 159.13 91.8738 159.27C92.0671 159.41 92.2904 159.48 92.5438 159.48ZM94.0138 160C93.9871 159.907 93.9638 159.797 93.9438 159.67C93.9238 159.543 93.9071 159.407 93.8938 159.26C93.8338 159.36 93.7604 159.46 93.6738 159.56C93.5938 159.66 93.4938 159.75 93.3738 159.83C93.2538 159.91 93.1104 159.973 92.9438 160.02C92.7771 160.073 92.5838 160.1 92.3638 160.1C92.1438 160.1 91.9371 160.07 91.7438 160.01C91.5504 159.95 91.3771 159.86 91.2238 159.74C91.0771 159.62 90.9604 159.473 90.8738 159.3C90.7871 159.127 90.7438 158.927 90.7438 158.7C90.7438 158.153 90.9604 157.757 91.3938 157.51C91.8338 157.257 92.4804 157.13 93.3338 157.13H93.8538V156.72C93.8538 156.313 93.7671 156.01 93.5938 155.81C93.4204 155.61 93.1138 155.51 92.6738 155.51C92.3738 155.51 92.1004 155.567 91.8538 155.68C91.6138 155.787 91.4004 155.917 91.2138 156.07L90.9838 155.37C91.0638 155.31 91.1671 155.25 91.2938 155.19C91.4204 155.13 91.5638 155.077 91.7238 155.03C91.8838 154.983 92.0538 154.947 92.2338 154.92C92.4138 154.887 92.5971 154.87 92.7838 154.87C93.4171 154.87 93.8938 155.01 94.2138 155.29C94.5404 155.563 94.7038 156 94.7038 156.6V159.19C94.7038 159.303 94.7104 159.447 94.7238 159.62C94.7371 159.787 94.7538 159.913 94.7738 160H94.0138ZM98.5533 159.91C98.4466 159.963 98.3166 160.007 98.1633 160.04C98.0099 160.08 97.8399 160.1 97.6533 160.1C97.1799 160.1 96.8299 159.977 96.6033 159.73C96.3766 159.477 96.2633 159.11 96.2633 158.63V155.59H95.6633V154.97H96.2633V154.01H97.1233V154.97H98.3833V155.59H97.1233V158.59C97.1233 158.863 97.1666 159.07 97.2533 159.21C97.3399 159.343 97.4999 159.41 97.7333 159.41C97.8466 159.41 97.9633 159.397 98.0833 159.37C98.2033 159.343 98.3099 159.307 98.4033 159.26L98.5533 159.91ZM99.9796 154.21C99.8129 154.21 99.6796 154.16 99.5796 154.06C99.4863 153.96 99.4396 153.833 99.4396 153.68C99.4396 153.527 99.4863 153.397 99.5796 153.29C99.6796 153.183 99.8129 153.13 99.9796 153.13C100.14 153.13 100.27 153.183 100.37 153.29C100.47 153.397 100.52 153.527 100.52 153.68C100.52 153.833 100.47 153.96 100.37 154.06C100.27 154.16 100.14 154.21 99.9796 154.21ZM100.41 154.97V160H99.5596V154.97H100.41ZM103.935 160.1C103.609 160.1 103.299 160.043 103.005 159.93C102.712 159.81 102.455 159.64 102.235 159.42C102.015 159.193 101.839 158.92 101.705 158.6C101.579 158.273 101.515 157.9 101.515 157.48C101.515 157.06 101.579 156.69 101.705 156.37C101.839 156.043 102.015 155.77 102.235 155.55C102.455 155.33 102.712 155.163 103.005 155.05C103.299 154.93 103.609 154.87 103.935 154.87C104.262 154.87 104.572 154.93 104.865 155.05C105.165 155.163 105.425 155.33 105.645 155.55C105.872 155.77 106.052 156.043 106.185 156.37C106.319 156.69 106.385 157.06 106.385 157.48C106.385 157.9 106.319 158.273 106.185 158.6C106.052 158.92 105.872 159.193 105.645 159.42C105.425 159.64 105.165 159.81 104.865 159.93C104.572 160.043 104.262 160.1 103.935 160.1ZM103.935 159.47C104.135 159.47 104.329 159.437 104.515 159.37C104.709 159.297 104.879 159.18 105.025 159.02C105.172 158.86 105.289 158.653 105.375 158.4C105.469 158.147 105.515 157.84 105.515 157.48C105.515 157.12 105.469 156.817 105.375 156.57C105.289 156.317 105.172 156.11 105.025 155.95C104.879 155.79 104.709 155.677 104.515 155.61C104.329 155.537 104.135 155.5 103.935 155.5C103.735 155.5 103.542 155.537 103.355 155.61C103.175 155.677 103.012 155.79 102.865 155.95C102.719 156.11 102.602 156.317 102.515 156.57C102.429 156.817 102.385 157.12 102.385 157.48C102.385 157.84 102.429 158.147 102.515 158.4C102.602 158.653 102.719 158.86 102.865 159.02C103.012 159.18 103.175 159.297 103.355 159.37C103.542 159.437 103.735 159.47 103.935 159.47ZM109.889 155.55C109.502 155.55 109.189 155.643 108.949 155.83C108.709 156.017 108.512 156.25 108.359 156.53V160H107.509V154.97H108.309L108.339 155.87H108.359C108.492 155.583 108.705 155.347 108.999 155.16C109.292 154.967 109.662 154.87 110.109 154.87C110.609 154.87 111.005 155.003 111.299 155.27C111.592 155.53 111.739 155.93 111.739 156.47V160H110.879V156.51C110.879 156.15 110.792 155.9 110.619 155.76C110.445 155.62 110.202 155.55 109.889 155.55ZM112.405 160.47H116.385V161.12H112.405V160.47ZM118.428 160.1C118.182 160.1 117.968 160.087 117.788 160.06C117.608 160.04 117.448 160.013 117.308 159.98C117.168 159.94 117.045 159.897 116.938 159.85C116.838 159.803 116.745 159.753 116.658 159.7L116.938 158.99C116.985 159.03 117.052 159.077 117.138 159.13C117.225 159.177 117.332 159.227 117.458 159.28C117.585 159.327 117.728 159.367 117.888 159.4C118.055 159.433 118.235 159.45 118.428 159.45C118.788 159.45 119.062 159.38 119.248 159.24C119.435 159.093 119.528 158.893 119.528 158.64C119.528 158.427 119.452 158.257 119.298 158.13C119.145 158.003 118.882 157.883 118.508 157.77C118.295 157.703 118.088 157.637 117.888 157.57C117.695 157.497 117.522 157.407 117.368 157.3C117.215 157.187 117.092 157.05 116.998 156.89C116.905 156.723 116.858 156.513 116.858 156.26C116.858 155.793 117.022 155.447 117.348 155.22C117.675 154.987 118.125 154.87 118.698 154.87C119.045 154.87 119.342 154.9 119.588 154.96C119.835 155.013 120.035 155.077 120.188 155.15L119.988 155.85C119.855 155.777 119.688 155.7 119.488 155.62C119.288 155.54 119.035 155.5 118.728 155.5C118.408 155.5 118.148 155.553 117.948 155.66C117.755 155.76 117.658 155.943 117.658 156.21C117.658 156.33 117.688 156.433 117.748 156.52C117.808 156.607 117.888 156.683 117.988 156.75C118.095 156.81 118.215 156.863 118.348 156.91C118.488 156.957 118.632 157 118.778 157.04C118.972 157.1 119.165 157.167 119.358 157.24C119.552 157.307 119.722 157.397 119.868 157.51C120.022 157.623 120.145 157.767 120.238 157.94C120.332 158.107 120.378 158.32 120.378 158.58C120.378 158.853 120.322 159.087 120.208 159.28C120.102 159.467 119.958 159.623 119.778 159.75C119.598 159.87 119.392 159.957 119.158 160.01C118.925 160.07 118.682 160.1 118.428 160.1Z" fill="black"/><path d="M13.14 185.97H14.03L15.48 190.42L16.91 185.97H17.7L16.02 191H14.81L13.14 185.97ZM20.4661 186.48C20.1061 186.48 19.7961 186.607 19.5361 186.86C19.2828 187.113 19.1228 187.497 19.0561 188.01H21.6061C21.6461 187.49 21.5561 187.107 21.3361 186.86C21.1228 186.607 20.8328 186.48 20.4661 186.48ZM22.3161 190.57C22.1361 190.723 21.9028 190.85 21.6161 190.95C21.3294 191.05 21.0028 191.1 20.6361 191.1C19.8361 191.1 19.2228 190.873 18.7961 190.42C18.3694 189.96 18.1561 189.313 18.1561 188.48C18.1561 188.073 18.2161 187.71 18.3361 187.39C18.4561 187.063 18.6194 186.787 18.8261 186.56C19.0394 186.333 19.2861 186.163 19.5661 186.05C19.8528 185.93 20.1594 185.87 20.4861 185.87C20.8261 185.87 21.1294 185.93 21.3961 186.05C21.6694 186.163 21.8928 186.337 22.0661 186.57C22.2461 186.797 22.3661 187.083 22.4261 187.43C22.4928 187.77 22.4928 188.163 22.4261 188.61H19.0261C19.0661 189.817 19.6294 190.42 20.7161 190.42C21.0028 190.42 21.2594 190.377 21.4861 190.29C21.7128 190.203 21.9228 190.093 22.1161 189.96L22.3161 190.57ZM24.4428 191H23.5928V183.75H24.4428V186.85H24.4628C24.5961 186.57 24.8061 186.337 25.0928 186.15C25.3795 185.963 25.7461 185.87 26.1928 185.87C26.6861 185.87 27.0795 186.003 27.3728 186.27C27.6661 186.53 27.8128 186.93 27.8128 187.47V191H26.9628V187.51C26.9628 187.15 26.8761 186.9 26.7028 186.76C26.5295 186.62 26.2861 186.55 25.9728 186.55C25.5861 186.55 25.2728 186.643 25.0328 186.83C24.7928 187.017 24.5961 187.25 24.4428 187.53V191ZM29.5988 185.21C29.4321 185.21 29.2988 185.16 29.1988 185.06C29.1054 184.96 29.0588 184.833 29.0588 184.68C29.0588 184.527 29.1054 184.397 29.1988 184.29C29.2988 184.183 29.4321 184.13 29.5988 184.13C29.7588 184.13 29.8888 184.183 29.9888 184.29C30.0888 184.397 30.1388 184.527 30.1388 184.68C30.1388 184.833 30.0888 184.96 29.9888 185.06C29.8888 185.16 29.7588 185.21 29.5988 185.21ZM30.0288 185.97V191H29.1788V185.97H30.0288ZM33.6246 191.1C33.2779 191.1 32.9513 191.043 32.6446 190.93C32.3446 190.81 32.0813 190.637 31.8546 190.41C31.6346 190.183 31.4579 189.91 31.3246 189.59C31.1979 189.263 31.1346 188.893 31.1346 188.48C31.1346 188.073 31.1979 187.71 31.3246 187.39C31.4579 187.063 31.6379 186.787 31.8646 186.56C32.0979 186.333 32.3713 186.163 32.6846 186.05C32.9979 185.93 33.3346 185.87 33.6946 185.87C33.9946 185.87 34.2646 185.9 34.5046 185.96C34.7446 186.02 34.9446 186.103 35.1046 186.21L34.8546 186.97C34.6613 186.83 34.4713 186.723 34.2846 186.65C34.1046 186.57 33.8879 186.53 33.6346 186.53C33.4146 186.53 33.2046 186.573 33.0046 186.66C32.8046 186.74 32.6313 186.863 32.4846 187.03C32.3379 187.19 32.2213 187.393 32.1346 187.64C32.0479 187.88 32.0046 188.16 32.0046 188.48C32.0046 189.133 32.1613 189.62 32.4746 189.94C32.7879 190.26 33.2146 190.42 33.7546 190.42C33.9346 190.42 34.1279 190.387 34.3346 190.32C34.5479 190.253 34.7413 190.157 34.9146 190.03L35.1046 190.66C34.9313 190.793 34.7179 190.9 34.4646 190.98C34.2179 191.06 33.9379 191.1 33.6246 191.1ZM36.9721 183.75V191H36.1221V183.75H36.9721ZM40.3977 186.48C40.0377 186.48 39.7277 186.607 39.4677 186.86C39.2144 187.113 39.0544 187.497 38.9877 188.01H41.5377C41.5777 187.49 41.4877 187.107 41.2677 186.86C41.0544 186.607 40.7644 186.48 40.3977 186.48ZM42.2477 190.57C42.0677 190.723 41.8344 190.85 41.5477 190.95C41.2611 191.05 40.9344 191.1 40.5677 191.1C39.7677 191.1 39.1544 190.873 38.7277 190.42C38.3011 189.96 38.0877 189.313 38.0877 188.48C38.0877 188.073 38.1477 187.71 38.2677 187.39C38.3877 187.063 38.5511 186.787 38.7577 186.56C38.9711 186.333 39.2177 186.163 39.4977 186.05C39.7844 185.93 40.0911 185.87 40.4177 185.87C40.7577 185.87 41.0611 185.93 41.3277 186.05C41.6011 186.163 41.8244 186.337 41.9977 186.57C42.1777 186.797 42.2977 187.083 42.3577 187.43C42.4244 187.77 42.4244 188.163 42.3577 188.61H38.9577C38.9977 189.817 39.5611 190.42 40.6477 190.42C40.9344 190.42 41.1911 190.377 41.4177 190.29C41.6444 190.203 41.8544 190.093 42.0477 189.96L42.2477 190.57ZM43.8945 191.06C43.7278 191.06 43.5878 191.007 43.4745 190.9C43.3678 190.787 43.3145 190.653 43.3145 190.5C43.3145 190.333 43.3678 190.197 43.4745 190.09C43.5878 189.983 43.7278 189.93 43.8945 189.93C44.0611 189.93 44.1978 189.983 44.3045 190.09C44.4111 190.197 44.4645 190.333 44.4645 190.5C44.4645 190.653 44.4111 190.787 44.3045 190.9C44.1978 191.007 44.0611 191.06 43.8945 191.06ZM47.6464 190.49C47.8664 190.49 48.0764 190.45 48.2764 190.37C48.4764 190.29 48.6531 190.17 48.8064 190.01C48.9597 189.843 49.0797 189.637 49.1664 189.39C49.2597 189.137 49.3064 188.84 49.3064 188.5C49.3064 188.16 49.2597 187.867 49.1664 187.62C49.0797 187.367 48.9597 187.157 48.8064 186.99C48.6531 186.817 48.4764 186.69 48.2764 186.61C48.0764 186.523 47.8664 186.48 47.6464 186.48C47.4464 186.48 47.2531 186.523 47.0664 186.61C46.8864 186.697 46.7264 186.823 46.5864 186.99C46.4464 187.157 46.3331 187.367 46.2464 187.62C46.1664 187.867 46.1264 188.153 46.1264 188.48C46.1264 188.813 46.1664 189.107 46.2464 189.36C46.3331 189.613 46.4464 189.823 46.5864 189.99C46.7264 190.157 46.8864 190.283 47.0664 190.37C47.2531 190.45 47.4464 190.49 47.6464 190.49ZM49.2364 190.03C49.0764 190.35 48.8531 190.61 48.5664 190.81C48.2864 191.003 47.9364 191.1 47.5164 191.1C47.2364 191.1 46.9597 191.047 46.6864 190.94C46.4197 190.833 46.1797 190.673 45.9664 190.46C45.7531 190.24 45.5797 189.967 45.4464 189.64C45.3197 189.307 45.2564 188.92 45.2564 188.48C45.2564 188.04 45.3197 187.657 45.4464 187.33C45.5797 186.997 45.7531 186.723 45.9664 186.51C46.1797 186.297 46.4231 186.137 46.6964 186.03C46.9697 185.923 47.2464 185.87 47.5264 185.87C47.8997 185.87 48.2264 185.947 48.5064 186.1C48.7864 186.247 49.0131 186.46 49.1864 186.74V183.75H50.0364V191H49.3364L49.2364 190.03ZM53.4641 186.48C53.1041 186.48 52.7941 186.607 52.5341 186.86C52.2808 187.113 52.1208 187.497 52.0541 188.01H54.6041C54.6441 187.49 54.5541 187.107 54.3341 186.86C54.1208 186.607 53.8308 186.48 53.4641 186.48ZM55.3141 190.57C55.1341 190.723 54.9008 190.85 54.6141 190.95C54.3275 191.05 54.0008 191.1 53.6341 191.1C52.8341 191.1 52.2208 190.873 51.7941 190.42C51.3675 189.96 51.1541 189.313 51.1541 188.48C51.1541 188.073 51.2141 187.71 51.3341 187.39C51.4541 187.063 51.6175 186.787 51.8241 186.56C52.0375 186.333 52.2841 186.163 52.5641 186.05C52.8508 185.93 53.1575 185.87 53.4841 185.87C53.8241 185.87 54.1275 185.93 54.3941 186.05C54.6675 186.163 54.8908 186.337 55.0641 186.57C55.2441 186.797 55.3641 187.083 55.4241 187.43C55.4908 187.77 55.4908 188.163 55.4241 188.61H52.0241C52.0641 189.817 52.6275 190.42 53.7141 190.42C54.0008 190.42 54.2575 190.377 54.4841 190.29C54.7108 190.203 54.9208 190.093 55.1141 189.96L55.3141 190.57ZM58.9909 190.49C59.4375 190.49 59.7975 190.333 60.0709 190.02C60.3509 189.7 60.4909 189.187 60.4909 188.48C60.4909 187.787 60.3509 187.28 60.0709 186.96C59.7975 186.633 59.4375 186.47 58.9909 186.47C58.7709 186.47 58.5609 186.51 58.3609 186.59C58.1609 186.663 57.9842 186.783 57.8309 186.95C57.6842 187.11 57.5675 187.317 57.4809 187.57C57.3942 187.823 57.3509 188.127 57.3509 188.48C57.3509 188.84 57.3942 189.147 57.4809 189.4C57.5675 189.653 57.6842 189.86 57.8309 190.02C57.9842 190.18 58.1609 190.3 58.3609 190.38C58.5609 190.453 58.7709 190.49 58.9909 190.49ZM59.1209 191.1C58.7475 191.1 58.4175 191.02 58.1309 190.86C57.8509 190.693 57.6209 190.467 57.4409 190.18V192.87H56.5909V185.97H57.3409L57.4009 186.86C57.5809 186.56 57.8142 186.32 58.1009 186.14C58.3942 185.96 58.7475 185.87 59.1609 185.87C59.4542 185.87 59.7342 185.923 60.0009 186.03C60.2675 186.137 60.5009 186.297 60.7009 186.51C60.9075 186.723 61.0709 186.997 61.1909 187.33C61.3109 187.657 61.3709 188.04 61.3709 188.48C61.3709 188.92 61.3075 189.307 61.1809 189.64C61.0609 189.967 60.8975 190.24 60.6909 190.46C60.4842 190.673 60.2442 190.833 59.9709 190.94C59.7042 191.047 59.4209 191.1 59.1209 191.1ZM64.6093 191.1C64.2826 191.1 63.9726 191.043 63.6793 190.93C63.386 190.81 63.1293 190.64 62.9093 190.42C62.6893 190.193 62.5126 189.92 62.3793 189.6C62.2526 189.273 62.1893 188.9 62.1893 188.48C62.1893 188.06 62.2526 187.69 62.3793 187.37C62.5126 187.043 62.6893 186.77 62.9093 186.55C63.1293 186.33 63.386 186.163 63.6793 186.05C63.9726 185.93 64.2826 185.87 64.6093 185.87C64.936 185.87 65.246 185.93 65.5393 186.05C65.8393 186.163 66.0993 186.33 66.3193 186.55C66.546 186.77 66.726 187.043 66.8593 187.37C66.9926 187.69 67.0593 188.06 67.0593 188.48C67.0593 188.9 66.9926 189.273 66.8593 189.6C66.726 189.92 66.546 190.193 66.3193 190.42C66.0993 190.64 65.8393 190.81 65.5393 190.93C65.246 191.043 64.936 191.1 64.6093 191.1ZM64.6093 190.47C64.8093 190.47 65.0026 190.437 65.1893 190.37C65.3826 190.297 65.5526 190.18 65.6993 190.02C65.846 189.86 65.9626 189.653 66.0493 189.4C66.1426 189.147 66.1893 188.84 66.1893 188.48C66.1893 188.12 66.1426 187.817 66.0493 187.57C65.9626 187.317 65.846 187.11 65.6993 186.95C65.5526 186.79 65.3826 186.677 65.1893 186.61C65.0026 186.537 64.8093 186.5 64.6093 186.5C64.4093 186.5 64.216 186.537 64.0293 186.61C63.8493 186.677 63.686 186.79 63.5393 186.95C63.3926 187.11 63.276 187.317 63.1893 187.57C63.1026 187.817 63.0593 188.12 63.0593 188.48C63.0593 188.84 63.1026 189.147 63.1893 189.4C63.276 189.653 63.3926 189.86 63.5393 190.02C63.686 190.18 63.8493 190.297 64.0293 190.37C64.216 190.437 64.4093 190.47 64.6093 190.47ZM70.6627 190.91C70.556 190.963 70.426 191.007 70.2727 191.04C70.1193 191.08 69.9493 191.1 69.7627 191.1C69.2893 191.1 68.9393 190.977 68.7127 190.73C68.486 190.477 68.3727 190.11 68.3727 189.63V186.59H67.7727V185.97H68.3727V185.01H69.2327V185.97H70.4927V186.59H69.2327V189.59C69.2327 189.863 69.276 190.07 69.3627 190.21C69.4493 190.343 69.6093 190.41 69.8427 190.41C69.956 190.41 70.0727 190.397 70.1927 190.37C70.3127 190.343 70.4193 190.307 70.5127 190.26L70.6627 190.91ZM70.969 191.47H74.949V192.12H70.969V191.47ZM77.6829 186.48C77.3229 186.48 77.0129 186.607 76.7529 186.86C76.4996 187.113 76.3396 187.497 76.2729 188.01H78.8229C78.8629 187.49 78.7729 187.107 78.5529 186.86C78.3396 186.607 78.0496 186.48 77.6829 186.48ZM79.5329 190.57C79.3529 190.723 79.1196 190.85 78.8329 190.95C78.5462 191.05 78.2196 191.1 77.8529 191.1C77.0529 191.1 76.4396 190.873 76.0129 190.42C75.5862 189.96 75.3729 189.313 75.3729 188.48C75.3729 188.073 75.4329 187.71 75.5529 187.39C75.6729 187.063 75.8362 186.787 76.0429 186.56C76.2562 186.333 76.5029 186.163 76.7829 186.05C77.0696 185.93 77.3762 185.87 77.7029 185.87C78.0429 185.87 78.3462 185.93 78.6129 186.05C78.8862 186.163 79.1096 186.337 79.2829 186.57C79.4629 186.797 79.5829 187.083 79.6429 187.43C79.7096 187.77 79.7096 188.163 79.6429 188.61H76.2429C76.2829 189.817 76.8462 190.42 77.9329 190.42C78.2196 190.42 78.4762 190.377 78.7029 190.29C78.9296 190.203 79.1396 190.093 79.3329 189.96L79.5329 190.57ZM82.4108 188.96L81.0108 191H80.2108L82.0308 188.39L80.4208 185.97H81.4408L82.6608 187.79L83.9108 185.97H84.7108L83.0408 188.37L84.7908 191H83.7808L82.4108 188.96ZM88.1431 190.91C88.0365 190.963 87.9065 191.007 87.7531 191.04C87.5998 191.08 87.4298 191.1 87.2431 191.1C86.7698 191.1 86.4198 190.977 86.1931 190.73C85.9665 190.477 85.8531 190.11 85.8531 189.63V186.59H85.2531V185.97H85.8531V185.01H86.7131V185.97H87.9731V186.59H86.7131V189.59C86.7131 189.863 86.7565 190.07 86.8431 190.21C86.9298 190.343 87.0898 190.41 87.3231 190.41C87.4365 190.41 87.5531 190.397 87.6731 190.37C87.7931 190.343 87.8998 190.307 87.9931 190.26L88.1431 190.91ZM91.6395 186.77C91.4661 186.757 91.2961 186.77 91.1295 186.81C90.9628 186.85 90.8061 186.913 90.6595 187C90.5195 187.087 90.3895 187.193 90.2695 187.32C90.1561 187.447 90.0661 187.587 89.9995 187.74V191H89.1495V185.97H89.8995L89.9795 187.06H89.9995C90.0661 186.913 90.1495 186.773 90.2495 186.64C90.3561 186.5 90.4761 186.38 90.6095 186.28C90.7495 186.173 90.9028 186.087 91.0695 186.02C91.2428 185.953 91.4328 185.92 91.6395 185.92V186.77ZM94.0477 190.48C94.401 190.48 94.681 190.393 94.8877 190.22C95.101 190.04 95.2577 189.837 95.3577 189.61V188.66H94.9177C94.271 188.66 93.8043 188.73 93.5177 188.87C93.2377 189.003 93.0977 189.263 93.0977 189.65C93.0977 189.923 93.191 190.13 93.3777 190.27C93.571 190.41 93.7943 190.48 94.0477 190.48ZM95.5177 191C95.491 190.907 95.4677 190.797 95.4477 190.67C95.4277 190.543 95.411 190.407 95.3977 190.26C95.3377 190.36 95.2643 190.46 95.1777 190.56C95.0977 190.66 94.9977 190.75 94.8777 190.83C94.7577 190.91 94.6143 190.973 94.4477 191.02C94.281 191.073 94.0877 191.1 93.8677 191.1C93.6477 191.1 93.441 191.07 93.2477 191.01C93.0543 190.95 92.881 190.86 92.7277 190.74C92.581 190.62 92.4643 190.473 92.3777 190.3C92.291 190.127 92.2477 189.927 92.2477 189.7C92.2477 189.153 92.4643 188.757 92.8977 188.51C93.3377 188.257 93.9843 188.13 94.8377 188.13H95.3577V187.72C95.3577 187.313 95.271 187.01 95.0977 186.81C94.9243 186.61 94.6177 186.51 94.1777 186.51C93.8777 186.51 93.6043 186.567 93.3577 186.68C93.1177 186.787 92.9043 186.917 92.7177 187.07L92.4877 186.37C92.5677 186.31 92.671 186.25 92.7977 186.19C92.9243 186.13 93.0677 186.077 93.2277 186.03C93.3877 185.983 93.5577 185.947 93.7377 185.92C93.9177 185.887 94.101 185.87 94.2877 185.87C94.921 185.87 95.3977 186.01 95.7177 186.29C96.0443 186.563 96.2077 187 96.2077 187.6V190.19C96.2077 190.303 96.2143 190.447 96.2277 190.62C96.241 190.787 96.2577 190.913 96.2777 191H95.5177ZM96.8772 191.47H100.857V192.12H96.8772V191.47ZM102.901 191.1C102.654 191.1 102.441 191.087 102.261 191.06C102.081 191.04 101.921 191.013 101.781 190.98C101.641 190.94 101.518 190.897 101.411 190.85C101.311 190.803 101.218 190.753 101.131 190.7L101.411 189.99C101.458 190.03 101.524 190.077 101.611 190.13C101.698 190.177 101.804 190.227 101.931 190.28C102.058 190.327 102.201 190.367 102.361 190.4C102.528 190.433 102.708 190.45 102.901 190.45C103.261 190.45 103.534 190.38 103.721 190.24C103.908 190.093 104.001 189.893 104.001 189.64C104.001 189.427 103.924 189.257 103.771 189.13C103.618 189.003 103.354 188.883 102.981 188.77C102.768 188.703 102.561 188.637 102.361 188.57C102.168 188.497 101.994 188.407 101.841 188.3C101.688 188.187 101.564 188.05 101.471 187.89C101.378 187.723 101.331 187.513 101.331 187.26C101.331 186.793 101.494 186.447 101.821 186.22C102.148 185.987 102.598 185.87 103.171 185.87C103.518 185.87 103.814 185.9 104.061 185.96C104.308 186.013 104.508 186.077 104.661 186.15L104.461 186.85C104.328 186.777 104.161 186.7 103.961 186.62C103.761 186.54 103.508 186.5 103.201 186.5C102.881 186.5 102.621 186.553 102.421 186.66C102.228 186.76 102.131 186.943 102.131 187.21C102.131 187.33 102.161 187.433 102.221 187.52C102.281 187.607 102.361 187.683 102.461 187.75C102.568 187.81 102.688 187.863 102.821 187.91C102.961 187.957 103.104 188 103.251 188.04C103.444 188.1 103.638 188.167 103.831 188.24C104.024 188.307 104.194 188.397 104.341 188.51C104.494 188.623 104.618 188.767 104.711 188.94C104.804 189.107 104.851 189.32 104.851 189.58C104.851 189.853 104.794 190.087 104.681 190.28C104.574 190.467 104.431 190.623 104.251 190.75C104.071 190.87 103.864 190.957 103.631 191.01C103.398 191.07 103.154 191.1 102.901 191.1ZM107.937 186.48C107.577 186.48 107.267 186.607 107.007 186.86C106.753 187.113 106.593 187.497 106.527 188.01H109.077C109.117 187.49 109.027 187.107 108.807 186.86C108.593 186.607 108.303 186.48 107.937 186.48ZM109.787 190.57C109.607 190.723 109.373 190.85 109.087 190.95C108.8 191.05 108.473 191.1 108.107 191.1C107.307 191.1 106.693 190.873 106.267 190.42C105.84 189.96 105.627 189.313 105.627 188.48C105.627 188.073 105.687 187.71 105.807 187.39C105.927 187.063 106.09 186.787 106.297 186.56C106.51 186.333 106.757 186.163 107.037 186.05C107.323 185.93 107.63 185.87 107.957 185.87C108.297 185.87 108.6 185.93 108.867 186.05C109.14 186.163 109.363 186.337 109.537 186.57C109.717 186.797 109.837 187.083 109.897 187.43C109.963 187.77 109.963 188.163 109.897 188.61H106.497C106.537 189.817 107.1 190.42 108.187 190.42C108.473 190.42 108.73 190.377 108.957 190.29C109.183 190.203 109.393 190.093 109.587 189.96L109.787 190.57ZM113.554 186.77C113.38 186.757 113.21 186.77 113.044 186.81C112.877 186.85 112.72 186.913 112.574 187C112.434 187.087 112.304 187.193 112.184 187.32C112.07 187.447 111.98 187.587 111.914 187.74V191H111.064V185.97H111.814L111.894 187.06H111.914C111.98 186.913 112.064 186.773 112.164 186.64C112.27 186.5 112.39 186.38 112.524 186.28C112.664 186.173 112.817 186.087 112.984 186.02C113.157 185.953 113.347 185.92 113.554 185.92V186.77ZM114.195 185.97H115.085L116.535 190.42L117.965 185.97H118.755L117.075 191H115.865L114.195 185.97ZM120.028 185.21C119.862 185.21 119.728 185.16 119.628 185.06C119.535 184.96 119.488 184.833 119.488 184.68C119.488 184.527 119.535 184.397 119.628 184.29C119.728 184.183 119.862 184.13 120.028 184.13C120.188 184.13 120.318 184.183 120.418 184.29C120.518 184.397 120.568 184.527 120.568 184.68C120.568 184.833 120.518 184.96 120.418 185.06C120.318 185.16 120.188 185.21 120.028 185.21ZM120.458 185.97V191H119.608V185.97H120.458ZM124.054 191.1C123.708 191.1 123.381 191.043 123.074 190.93C122.774 190.81 122.511 190.637 122.284 190.41C122.064 190.183 121.888 189.91 121.754 189.59C121.628 189.263 121.564 188.893 121.564 188.48C121.564 188.073 121.628 187.71 121.754 187.39C121.888 187.063 122.068 186.787 122.294 186.56C122.528 186.333 122.801 186.163 123.114 186.05C123.428 185.93 123.764 185.87 124.124 185.87C124.424 185.87 124.694 185.9 124.934 185.96C125.174 186.02 125.374 186.103 125.534 186.21L125.284 186.97C125.091 186.83 124.901 186.723 124.714 186.65C124.534 186.57 124.318 186.53 124.064 186.53C123.844 186.53 123.634 186.573 123.434 186.66C123.234 186.74 123.061 186.863 122.914 187.03C122.768 187.19 122.651 187.393 122.564 187.64C122.478 187.88 122.434 188.16 122.434 188.48C122.434 189.133 122.591 189.62 122.904 189.94C123.218 190.26 123.644 190.42 124.184 190.42C124.364 190.42 124.558 190.387 124.764 190.32C124.978 190.253 125.171 190.157 125.344 190.03L125.534 190.66C125.361 190.793 125.148 190.9 124.894 190.98C124.648 191.06 124.368 191.1 124.054 191.1ZM128.562 186.48C128.202 186.48 127.892 186.607 127.632 186.86C127.378 187.113 127.218 187.497 127.152 188.01H129.702C129.742 187.49 129.652 187.107 129.432 186.86C129.218 186.607 128.928 186.48 128.562 186.48ZM130.412 190.57C130.232 190.723 129.998 190.85 129.712 190.95C129.425 191.05 129.098 191.1 128.732 191.1C127.932 191.1 127.318 190.873 126.892 190.42C126.465 189.96 126.252 189.313 126.252 188.48C126.252 188.073 126.312 187.71 126.432 187.39C126.552 187.063 126.715 186.787 126.922 186.56C127.135 186.333 127.382 186.163 127.662 186.05C127.948 185.93 128.255 185.87 128.582 185.87C128.922 185.87 129.225 185.93 129.492 186.05C129.765 186.163 129.988 186.337 130.162 186.57C130.342 186.797 130.462 187.083 130.522 187.43C130.588 187.77 130.588 188.163 130.522 188.61H127.122C127.162 189.817 127.725 190.42 128.812 190.42C129.098 190.42 129.355 190.377 129.582 190.29C129.808 190.203 130.018 190.093 130.212 189.96L130.412 190.57ZM130.989 191.47H134.969V192.12H130.989V191.47ZM137.812 190.49C138.032 190.49 138.242 190.45 138.442 190.37C138.642 190.29 138.819 190.17 138.972 190.01C139.126 189.843 139.246 189.637 139.332 189.39C139.426 189.137 139.472 188.84 139.472 188.5C139.472 188.16 139.426 187.867 139.332 187.62C139.246 187.367 139.126 187.157 138.972 186.99C138.819 186.817 138.642 186.69 138.442 186.61C138.242 186.523 138.032 186.48 137.812 186.48C137.612 186.48 137.419 186.523 137.232 186.61C137.052 186.697 136.892 186.823 136.752 186.99C136.612 187.157 136.499 187.367 136.412 187.62C136.332 187.867 136.292 188.153 136.292 188.48C136.292 188.813 136.332 189.107 136.412 189.36C136.499 189.613 136.612 189.823 136.752 189.99C136.892 190.157 137.052 190.283 137.232 190.37C137.419 190.45 137.612 190.49 137.812 190.49ZM139.402 190.03C139.242 190.35 139.019 190.61 138.732 190.81C138.452 191.003 138.102 191.1 137.682 191.1C137.402 191.1 137.126 191.047 136.852 190.94C136.586 190.833 136.346 190.673 136.132 190.46C135.919 190.24 135.746 189.967 135.612 189.64C135.486 189.307 135.422 188.92 135.422 188.48C135.422 188.04 135.486 187.657 135.612 187.33C135.746 186.997 135.919 186.723 136.132 186.51C136.346 186.297 136.589 186.137 136.862 186.03C137.136 185.923 137.412 185.87 137.692 185.87C138.066 185.87 138.392 185.947 138.672 186.1C138.952 186.247 139.179 186.46 139.352 186.74V183.75H140.202V191H139.502L139.402 190.03ZM144.86 190.1C144.727 190.38 144.517 190.617 144.23 190.81C143.95 191.003 143.583 191.1 143.13 191.1C142.663 191.1 142.287 190.96 142 190.68C141.713 190.393 141.57 189.953 141.57 189.36V185.97H142.43V189.36C142.43 189.56 142.453 189.727 142.5 189.86C142.547 189.993 142.613 190.1 142.7 190.18C142.787 190.26 142.887 190.317 143 190.35C143.113 190.383 143.237 190.4 143.37 190.4C143.743 190.4 144.043 190.31 144.27 190.13C144.503 189.95 144.7 189.703 144.86 189.39V185.97H145.71V191H144.96L144.88 190.1H144.86ZM149.618 186.77C149.445 186.757 149.275 186.77 149.108 186.81C148.941 186.85 148.785 186.913 148.638 187C148.498 187.087 148.368 187.193 148.248 187.32C148.135 187.447 148.045 187.587 147.978 187.74V191H147.128V185.97H147.878L147.958 187.06H147.978C148.045 186.913 148.128 186.773 148.228 186.64C148.335 186.5 148.455 186.38 148.588 186.28C148.728 186.173 148.881 186.087 149.048 186.02C149.221 185.953 149.411 185.92 149.618 185.92V186.77ZM152.026 190.48C152.38 190.48 152.66 190.393 152.866 190.22C153.08 190.04 153.236 189.837 153.336 189.61V188.66H152.896C152.25 188.66 151.783 188.73 151.496 188.87C151.216 189.003 151.076 189.263 151.076 189.65C151.076 189.923 151.17 190.13 151.356 190.27C151.55 190.41 151.773 190.48 152.026 190.48ZM153.496 191C153.47 190.907 153.446 190.797 153.426 190.67C153.406 190.543 153.39 190.407 153.376 190.26C153.316 190.36 153.243 190.46 153.156 190.56C153.076 190.66 152.976 190.75 152.856 190.83C152.736 190.91 152.593 190.973 152.426 191.02C152.26 191.073 152.066 191.1 151.846 191.1C151.626 191.1 151.42 191.07 151.226 191.01C151.033 190.95 150.86 190.86 150.706 190.74C150.56 190.62 150.443 190.473 150.356 190.3C150.27 190.127 150.226 189.927 150.226 189.7C150.226 189.153 150.443 188.757 150.876 188.51C151.316 188.257 151.963 188.13 152.816 188.13H153.336V187.72C153.336 187.313 153.25 187.01 153.076 186.81C152.903 186.61 152.596 186.51 152.156 186.51C151.856 186.51 151.583 186.567 151.336 186.68C151.096 186.787 150.883 186.917 150.696 187.07L150.466 186.37C150.546 186.31 150.65 186.25 150.776 186.19C150.903 186.13 151.046 186.077 151.206 186.03C151.366 185.983 151.536 185.947 151.716 185.92C151.896 185.887 152.08 185.87 152.266 185.87C152.9 185.87 153.376 186.01 153.696 186.29C154.023 186.563 154.186 187 154.186 187.6V190.19C154.186 190.303 154.193 190.447 154.206 190.62C154.22 190.787 154.236 190.913 154.256 191H153.496ZM158.036 190.91C157.929 190.963 157.799 191.007 157.646 191.04C157.492 191.08 157.322 191.1 157.136 191.1C156.662 191.1 156.312 190.977 156.086 190.73C155.859 190.477 155.746 190.11 155.746 189.63V186.59H155.146V185.97H155.746V185.01H156.606V185.97H157.866V186.59H156.606V189.59C156.606 189.863 156.649 190.07 156.736 190.21C156.822 190.343 156.982 190.41 157.216 190.41C157.329 190.41 157.446 190.397 157.566 190.37C157.686 190.343 157.792 190.307 157.886 190.26L158.036 190.91ZM159.462 185.21C159.295 185.21 159.162 185.16 159.062 185.06C158.969 184.96 158.922 184.833 158.922 184.68C158.922 184.527 158.969 184.397 159.062 184.29C159.162 184.183 159.295 184.13 159.462 184.13C159.622 184.13 159.752 184.183 159.852 184.29C159.952 184.397 160.002 184.527 160.002 184.68C160.002 184.833 159.952 184.96 159.852 185.06C159.752 185.16 159.622 185.21 159.462 185.21ZM159.892 185.97V191H159.042V185.97H159.892ZM163.418 191.1C163.091 191.1 162.781 191.043 162.488 190.93C162.195 190.81 161.938 190.64 161.718 190.42C161.498 190.193 161.321 189.92 161.188 189.6C161.061 189.273 160.998 188.9 160.998 188.48C160.998 188.06 161.061 187.69 161.188 187.37C161.321 187.043 161.498 186.77 161.718 186.55C161.938 186.33 162.195 186.163 162.488 186.05C162.781 185.93 163.091 185.87 163.418 185.87C163.745 185.87 164.055 185.93 164.348 186.05C164.648 186.163 164.908 186.33 165.128 186.55C165.355 186.77 165.535 187.043 165.668 187.37C165.801 187.69 165.868 188.06 165.868 188.48C165.868 188.9 165.801 189.273 165.668 189.6C165.535 189.92 165.355 190.193 165.128 190.42C164.908 190.64 164.648 190.81 164.348 190.93C164.055 191.043 163.745 191.1 163.418 191.1ZM163.418 190.47C163.618 190.47 163.811 190.437 163.998 190.37C164.191 190.297 164.361 190.18 164.508 190.02C164.655 189.86 164.771 189.653 164.858 189.4C164.951 189.147 164.998 188.84 164.998 188.48C164.998 188.12 164.951 187.817 164.858 187.57C164.771 187.317 164.655 187.11 164.508 186.95C164.361 186.79 164.191 186.677 163.998 186.61C163.811 186.537 163.618 186.5 163.418 186.5C163.218 186.5 163.025 186.537 162.838 186.61C162.658 186.677 162.495 186.79 162.348 186.95C162.201 187.11 162.085 187.317 161.998 187.57C161.911 187.817 161.868 188.12 161.868 188.48C161.868 188.84 161.911 189.147 161.998 189.4C162.085 189.653 162.201 189.86 162.348 190.02C162.495 190.18 162.658 190.297 162.838 190.37C163.025 190.437 163.218 190.47 163.418 190.47ZM169.371 186.55C168.985 186.55 168.671 186.643 168.431 186.83C168.191 187.017 167.995 187.25 167.841 187.53V191H166.991V185.97H167.791L167.821 186.87H167.841C167.975 186.583 168.188 186.347 168.481 186.16C168.775 185.967 169.145 185.87 169.591 185.87C170.091 185.87 170.488 186.003 170.781 186.27C171.075 186.53 171.221 186.93 171.221 187.47V191H170.361V187.51C170.361 187.15 170.275 186.9 170.101 186.76C169.928 186.62 169.685 186.55 169.371 186.55ZM171.887 191.47H175.867V192.12H171.887V191.47ZM177.911 191.1C177.664 191.1 177.451 191.087 177.271 191.06C177.091 191.04 176.931 191.013 176.791 190.98C176.651 190.94 176.528 190.897 176.421 190.85C176.321 190.803 176.228 190.753 176.141 190.7L176.421 189.99C176.468 190.03 176.534 190.077 176.621 190.13C176.708 190.177 176.814 190.227 176.941 190.28C177.068 190.327 177.211 190.367 177.371 190.4C177.538 190.433 177.718 190.45 177.911 190.45C178.271 190.45 178.544 190.38 178.731 190.24C178.918 190.093 179.011 189.893 179.011 189.64C179.011 189.427 178.934 189.257 178.781 189.13C178.628 189.003 178.364 188.883 177.991 188.77C177.778 188.703 177.571 188.637 177.371 188.57C177.178 188.497 177.004 188.407 176.851 188.3C176.698 188.187 176.574 188.05 176.481 187.89C176.388 187.723 176.341 187.513 176.341 187.26C176.341 186.793 176.504 186.447 176.831 186.22C177.158 185.987 177.608 185.87 178.181 185.87C178.528 185.87 178.824 185.9 179.071 185.96C179.318 186.013 179.518 186.077 179.671 186.15L179.471 186.85C179.338 186.777 179.171 186.7 178.971 186.62C178.771 186.54 178.518 186.5 178.211 186.5C177.891 186.5 177.631 186.553 177.431 186.66C177.238 186.76 177.141 186.943 177.141 187.21C177.141 187.33 177.171 187.433 177.231 187.52C177.291 187.607 177.371 187.683 177.471 187.75C177.578 187.81 177.698 187.863 177.831 187.91C177.971 187.957 178.114 188 178.261 188.04C178.454 188.1 178.648 188.167 178.841 188.24C179.034 188.307 179.204 188.397 179.351 188.51C179.504 188.623 179.628 188.767 179.721 188.94C179.814 189.107 179.861 189.32 179.861 189.58C179.861 189.853 179.804 190.087 179.691 190.28C179.584 190.467 179.441 190.623 179.261 190.75C179.081 190.87 178.874 190.957 178.641 191.01C178.408 191.07 178.164 191.1 177.911 191.1Z" fill="black"/><path d="M13.6787 214.72H19.7188V215.521H14.8945L17.8584 219.305L14.6895 223.318H19.7676V224.104H13.5957V223.191L16.623 219.344L13.6787 215.574V214.72ZM24.4721 214.75V222H23.6221V214.75H24.4721ZM28.0077 222.1C27.6811 222.1 27.3711 222.043 27.0777 221.93C26.7844 221.81 26.5277 221.64 26.3077 221.42C26.0877 221.193 25.9111 220.92 25.7777 220.6C25.6511 220.273 25.5877 219.9 25.5877 219.48C25.5877 219.06 25.6511 218.69 25.7777 218.37C25.9111 218.043 26.0877 217.77 26.3077 217.55C26.5277 217.33 26.7844 217.163 27.0777 217.05C27.3711 216.93 27.6811 216.87 28.0077 216.87C28.3344 216.87 28.6444 216.93 28.9377 217.05C29.2377 217.163 29.4977 217.33 29.7177 217.55C29.9444 217.77 30.1244 218.043 30.2577 218.37C30.3911 218.69 30.4577 219.06 30.4577 219.48C30.4577 219.9 30.3911 220.273 30.2577 220.6C30.1244 220.92 29.9444 221.193 29.7177 221.42C29.4977 221.64 29.2377 221.81 28.9377 221.93C28.6444 222.043 28.3344 222.1 28.0077 222.1ZM28.0077 221.47C28.2077 221.47 28.4011 221.437 28.5877 221.37C28.7811 221.297 28.9511 221.18 29.0977 221.02C29.2444 220.86 29.3611 220.653 29.4477 220.4C29.5411 220.147 29.5877 219.84 29.5877 219.48C29.5877 219.12 29.5411 218.817 29.4477 218.57C29.3611 218.317 29.2444 218.11 29.0977 217.95C28.9511 217.79 28.7811 217.677 28.5877 217.61C28.4011 217.537 28.2077 217.5 28.0077 217.5C27.8077 217.5 27.6144 217.537 27.4277 217.61C27.2477 217.677 27.0844 217.79 26.9377 217.95C26.7911 218.11 26.6744 218.317 26.5877 218.57C26.5011 218.817 26.4577 219.12 26.4577 219.48C26.4577 219.84 26.5011 220.147 26.5877 220.4C26.6744 220.653 26.7911 220.86 26.9377 221.02C27.0844 221.18 27.2477 221.297 27.4277 221.37C27.6144 221.437 27.8077 221.47 28.0077 221.47ZM33.7711 222.1C33.4244 222.1 33.0978 222.043 32.7911 221.93C32.4911 221.81 32.2278 221.637 32.0011 221.41C31.7811 221.183 31.6044 220.91 31.4711 220.59C31.3444 220.263 31.2811 219.893 31.2811 219.48C31.2811 219.073 31.3444 218.71 31.4711 218.39C31.6044 218.063 31.7844 217.787 32.0111 217.56C32.2444 217.333 32.5178 217.163 32.8311 217.05C33.1444 216.93 33.4811 216.87 33.8411 216.87C34.1411 216.87 34.4111 216.9 34.6511 216.96C34.8911 217.02 35.0911 217.103 35.2511 217.21L35.0011 217.97C34.8078 217.83 34.6178 217.723 34.4311 217.65C34.2511 217.57 34.0344 217.53 33.7811 217.53C33.5611 217.53 33.3511 217.573 33.1511 217.66C32.9511 217.74 32.7778 217.863 32.6311 218.03C32.4844 218.19 32.3678 218.393 32.2811 218.64C32.1944 218.88 32.1511 219.16 32.1511 219.48C32.1511 220.133 32.3078 220.62 32.6211 220.94C32.9344 221.26 33.3611 221.42 33.9011 221.42C34.0811 221.42 34.2744 221.387 34.4811 221.32C34.6944 221.253 34.8878 221.157 35.0611 221.03L35.2511 221.66C35.0778 221.793 34.8644 221.9 34.6111 221.98C34.3644 222.06 34.0844 222.1 33.7711 222.1ZM37.7586 221.48C38.1119 221.48 38.3919 221.393 38.5986 221.22C38.8119 221.04 38.9686 220.837 39.0686 220.61V219.66H38.6286C37.9819 219.66 37.5153 219.73 37.2286 219.87C36.9486 220.003 36.8086 220.263 36.8086 220.65C36.8086 220.923 36.9019 221.13 37.0886 221.27C37.2819 221.41 37.5053 221.48 37.7586 221.48ZM39.2286 222C39.2019 221.907 39.1786 221.797 39.1586 221.67C39.1386 221.543 39.1219 221.407 39.1086 221.26C39.0486 221.36 38.9753 221.46 38.8886 221.56C38.8086 221.66 38.7086 221.75 38.5886 221.83C38.4686 221.91 38.3253 221.973 38.1586 222.02C37.9919 222.073 37.7986 222.1 37.5786 222.1C37.3586 222.1 37.1519 222.07 36.9586 222.01C36.7653 221.95 36.5919 221.86 36.4386 221.74C36.2919 221.62 36.1753 221.473 36.0886 221.3C36.0019 221.127 35.9586 220.927 35.9586 220.7C35.9586 220.153 36.1753 219.757 36.6086 219.51C37.0486 219.257 37.6953 219.13 38.5486 219.13H39.0686V218.72C39.0686 218.313 38.9819 218.01 38.8086 217.81C38.6353 217.61 38.3286 217.51 37.8886 217.51C37.5886 217.51 37.3153 217.567 37.0686 217.68C36.8286 217.787 36.6153 217.917 36.4286 218.07L36.1986 217.37C36.2786 217.31 36.3819 217.25 36.5086 217.19C36.6353 217.13 36.7786 217.077 36.9386 217.03C37.0986 216.983 37.2686 216.947 37.4486 216.92C37.6286 216.887 37.8119 216.87 37.9986 216.87C38.6319 216.87 39.1086 217.01 39.4286 217.29C39.7553 217.563 39.9186 218 39.9186 218.6V221.19C39.9186 221.303 39.9253 221.447 39.9386 221.62C39.9519 221.787 39.9686 221.913 39.9886 222H39.2286ZM43.7681 221.91C43.6615 221.963 43.5315 222.007 43.3781 222.04C43.2248 222.08 43.0548 222.1 42.8681 222.1C42.3948 222.1 42.0448 221.977 41.8181 221.73C41.5915 221.477 41.4781 221.11 41.4781 220.63V217.59H40.8781V216.97H41.4781V216.01H42.3381V216.97H43.5981V217.59H42.3381V220.59C42.3381 220.863 42.3815 221.07 42.4681 221.21C42.5548 221.343 42.7148 221.41 42.9481 221.41C43.0615 221.41 43.1781 221.397 43.2981 221.37C43.4181 221.343 43.5248 221.307 43.6181 221.26L43.7681 221.91ZM45.1945 216.21C45.0278 216.21 44.8945 216.16 44.7945 216.06C44.7011 215.96 44.6545 215.833 44.6545 215.68C44.6545 215.527 44.7011 215.397 44.7945 215.29C44.8945 215.183 45.0278 215.13 45.1945 215.13C45.3545 215.13 45.4845 215.183 45.5845 215.29C45.6845 215.397 45.7345 215.527 45.7345 215.68C45.7345 215.833 45.6845 215.96 45.5845 216.06C45.4845 216.16 45.3545 216.21 45.1945 216.21ZM45.6245 216.97V222H44.7745V216.97H45.6245ZM49.1503 222.1C48.8236 222.1 48.5136 222.043 48.2203 221.93C47.927 221.81 47.6703 221.64 47.4503 221.42C47.2303 221.193 47.0536 220.92 46.9203 220.6C46.7936 220.273 46.7303 219.9 46.7303 219.48C46.7303 219.06 46.7936 218.69 46.9203 218.37C47.0536 218.043 47.2303 217.77 47.4503 217.55C47.6703 217.33 47.927 217.163 48.2203 217.05C48.5136 216.93 48.8236 216.87 49.1503 216.87C49.477 216.87 49.787 216.93 50.0803 217.05C50.3803 217.163 50.6403 217.33 50.8603 217.55C51.087 217.77 51.267 218.043 51.4003 218.37C51.5336 218.69 51.6003 219.06 51.6003 219.48C51.6003 219.9 51.5336 220.273 51.4003 220.6C51.267 220.92 51.087 221.193 50.8603 221.42C50.6403 221.64 50.3803 221.81 50.0803 221.93C49.787 222.043 49.477 222.1 49.1503 222.1ZM49.1503 221.47C49.3503 221.47 49.5436 221.437 49.7303 221.37C49.9236 221.297 50.0936 221.18 50.2403 221.02C50.387 220.86 50.5036 220.653 50.5903 220.4C50.6836 220.147 50.7303 219.84 50.7303 219.48C50.7303 219.12 50.6836 218.817 50.5903 218.57C50.5036 218.317 50.387 218.11 50.2403 217.95C50.0936 217.79 49.9236 217.677 49.7303 217.61C49.5436 217.537 49.3503 217.5 49.1503 217.5C48.9503 217.5 48.757 217.537 48.5703 217.61C48.3903 217.677 48.227 217.79 48.0803 217.95C47.9336 218.11 47.817 218.317 47.7303 218.57C47.6436 218.817 47.6003 219.12 47.6003 219.48C47.6003 219.84 47.6436 220.147 47.7303 220.4C47.817 220.653 47.9336 220.86 48.0803 221.02C48.227 221.18 48.3903 221.297 48.5703 221.37C48.757 221.437 48.9503 221.47 49.1503 221.47ZM55.1037 217.55C54.717 217.55 54.4037 217.643 54.1637 217.83C53.9237 218.017 53.727 218.25 53.5737 218.53V222H52.7237V216.97H53.5237L53.5537 217.87H53.5737C53.707 217.583 53.9203 217.347 54.2137 217.16C54.507 216.967 54.877 216.87 55.3237 216.87C55.8237 216.87 56.2203 217.003 56.5137 217.27C56.807 217.53 56.9537 217.93 56.9537 218.47V222H56.0937V218.51C56.0937 218.15 56.007 217.9 55.8337 217.76C55.6603 217.62 55.417 217.55 55.1037 217.55ZM58.6894 222.06C58.5227 222.06 58.3827 222.007 58.2694 221.9C58.1627 221.787 58.1094 221.653 58.1094 221.5C58.1094 221.333 58.1627 221.197 58.2694 221.09C58.3827 220.983 58.5227 220.93 58.6894 220.93C58.856 220.93 58.9927 220.983 59.0994 221.09C59.206 221.197 59.2594 221.333 59.2594 221.5C59.2594 221.653 59.206 221.787 59.0994 221.9C58.9927 222.007 58.856 222.06 58.6894 222.06ZM64.746 221.49C64.966 221.49 65.176 221.45 65.376 221.37C65.576 221.29 65.7527 221.17 65.906 221.01C66.0593 220.843 66.1793 220.637 66.266 220.39C66.3593 220.137 66.406 219.84 66.406 219.5C66.406 219.16 66.3593 218.867 66.266 218.62C66.1793 218.367 66.0593 218.157 65.906 217.99C65.7527 217.817 65.576 217.69 65.376 217.61C65.176 217.523 64.966 217.48 64.746 217.48C64.546 217.48 64.3527 217.523 64.166 217.61C63.986 217.697 63.826 217.823 63.686 217.99C63.546 218.157 63.4327 218.367 63.346 218.62C63.266 218.867 63.226 219.153 63.226 219.48C63.226 219.813 63.266 220.107 63.346 220.36C63.4327 220.613 63.546 220.823 63.686 220.99C63.826 221.157 63.986 221.283 64.166 221.37C64.3527 221.45 64.546 221.49 64.746 221.49ZM66.336 221.03C66.176 221.35 65.9527 221.61 65.666 221.81C65.386 222.003 65.036 222.1 64.616 222.1C64.336 222.1 64.0593 222.047 63.786 221.94C63.5193 221.833 63.2793 221.673 63.066 221.46C62.8527 221.24 62.6793 220.967 62.546 220.64C62.4193 220.307 62.356 219.92 62.356 219.48C62.356 219.04 62.4193 218.657 62.546 218.33C62.6793 217.997 62.8527 217.723 63.066 217.51C63.2793 217.297 63.5227 217.137 63.796 217.03C64.0693 216.923 64.346 216.87 64.626 216.87C64.9993 216.87 65.326 216.947 65.606 217.1C65.886 217.247 66.1127 217.46 66.286 217.74V214.75H67.136V222H66.436L66.336 221.03ZM70.5638 217.48C70.2038 217.48 69.8938 217.607 69.6338 217.86C69.3804 218.113 69.2204 218.497 69.1538 219.01H71.7038C71.7438 218.49 71.6538 218.107 71.4338 217.86C71.2204 217.607 70.9304 217.48 70.5638 217.48ZM72.4138 221.57C72.2338 221.723 72.0004 221.85 71.7138 221.95C71.4271 222.05 71.1004 222.1 70.7338 222.1C69.9338 222.1 69.3204 221.873 68.8938 221.42C68.4671 220.96 68.2538 220.313 68.2538 219.48C68.2538 219.073 68.3138 218.71 68.4338 218.39C68.5538 218.063 68.7171 217.787 68.9238 217.56C69.1371 217.333 69.3838 217.163 69.6638 217.05C69.9504 216.93 70.2571 216.87 70.5838 216.87C70.9238 216.87 71.2271 216.93 71.4938 217.05C71.7671 217.163 71.9904 217.337 72.1638 217.57C72.3438 217.797 72.4638 218.083 72.5238 218.43C72.5904 218.77 72.5904 219.163 72.5238 219.61H69.1238C69.1638 220.817 69.7271 221.42 70.8138 221.42C71.1004 221.42 71.3571 221.377 71.5838 221.29C71.8104 221.203 72.0204 221.093 72.2138 220.96L72.4138 221.57ZM76.0905 221.49C76.5371 221.49 76.8971 221.333 77.1705 221.02C77.4505 220.7 77.5905 220.187 77.5905 219.48C77.5905 218.787 77.4505 218.28 77.1705 217.96C76.8971 217.633 76.5371 217.47 76.0905 217.47C75.8705 217.47 75.6605 217.51 75.4605 217.59C75.2605 217.663 75.0838 217.783 74.9305 217.95C74.7838 218.11 74.6671 218.317 74.5805 218.57C74.4938 218.823 74.4505 219.127 74.4505 219.48C74.4505 219.84 74.4938 220.147 74.5805 220.4C74.6671 220.653 74.7838 220.86 74.9305 221.02C75.0838 221.18 75.2605 221.3 75.4605 221.38C75.6605 221.453 75.8705 221.49 76.0905 221.49ZM76.2205 222.1C75.8471 222.1 75.5171 222.02 75.2305 221.86C74.9505 221.693 74.7205 221.467 74.5405 221.18V223.87H73.6905V216.97H74.4405L74.5005 217.86C74.6805 217.56 74.9138 217.32 75.2005 217.14C75.4938 216.96 75.8471 216.87 76.2605 216.87C76.5538 216.87 76.8338 216.923 77.1005 217.03C77.3671 217.137 77.6005 217.297 77.8005 217.51C78.0071 217.723 78.1705 217.997 78.2905 218.33C78.4105 218.657 78.4705 219.04 78.4705 219.48C78.4705 219.92 78.4071 220.307 78.2805 220.64C78.1605 220.967 77.9971 221.24 77.7905 221.46C77.5838 221.673 77.3438 221.833 77.0705 221.94C76.8038 222.047 76.5205 222.1 76.2205 222.1ZM81.7089 222.1C81.3822 222.1 81.0722 222.043 80.7789 221.93C80.4856 221.81 80.2289 221.64 80.0089 221.42C79.7889 221.193 79.6122 220.92 79.4789 220.6C79.3522 220.273 79.2889 219.9 79.2889 219.48C79.2889 219.06 79.3522 218.69 79.4789 218.37C79.6122 218.043 79.7889 217.77 80.0089 217.55C80.2289 217.33 80.4856 217.163 80.7789 217.05C81.0722 216.93 81.3822 216.87 81.7089 216.87C82.0356 216.87 82.3456 216.93 82.6389 217.05C82.9389 217.163 83.1989 217.33 83.4189 217.55C83.6456 217.77 83.8256 218.043 83.9589 218.37C84.0922 218.69 84.1589 219.06 84.1589 219.48C84.1589 219.9 84.0922 220.273 83.9589 220.6C83.8256 220.92 83.6456 221.193 83.4189 221.42C83.1989 221.64 82.9389 221.81 82.6389 221.93C82.3456 222.043 82.0356 222.1 81.7089 222.1ZM81.7089 221.47C81.9089 221.47 82.1022 221.437 82.2889 221.37C82.4822 221.297 82.6522 221.18 82.7989 221.02C82.9456 220.86 83.0622 220.653 83.1489 220.4C83.2422 220.147 83.2889 219.84 83.2889 219.48C83.2889 219.12 83.2422 218.817 83.1489 218.57C83.0622 218.317 82.9456 218.11 82.7989 217.95C82.6522 217.79 82.4822 217.677 82.2889 217.61C82.1022 217.537 81.9089 217.5 81.7089 217.5C81.5089 217.5 81.3156 217.537 81.1289 217.61C80.9489 217.677 80.7856 217.79 80.6389 217.95C80.4922 218.11 80.3756 218.317 80.2889 218.57C80.2022 218.817 80.1589 219.12 80.1589 219.48C80.1589 219.84 80.2022 220.147 80.2889 220.4C80.3756 220.653 80.4922 220.86 80.6389 221.02C80.7856 221.18 80.9489 221.297 81.1289 221.37C81.3156 221.437 81.5089 221.47 81.7089 221.47ZM87.7623 221.91C87.6556 221.963 87.5256 222.007 87.3723 222.04C87.2189 222.08 87.0489 222.1 86.8623 222.1C86.3889 222.1 86.0389 221.977 85.8123 221.73C85.5856 221.477 85.4723 221.11 85.4723 220.63V217.59H84.8723V216.97H85.4723V216.01H86.3323V216.97H87.5923V217.59H86.3323V220.59C86.3323 220.863 86.3756 221.07 86.4623 221.21C86.5489 221.343 86.7089 221.41 86.9423 221.41C87.0556 221.41 87.1723 221.397 87.2923 221.37C87.4123 221.343 87.5189 221.307 87.6123 221.26L87.7623 221.91ZM88.0686 222.47H92.0486V223.12H88.0686V222.47ZM94.8925 221.49C95.1125 221.49 95.3225 221.45 95.5225 221.37C95.7225 221.29 95.8992 221.17 96.0525 221.01C96.2058 220.843 96.3258 220.637 96.4125 220.39C96.5058 220.137 96.5525 219.84 96.5525 219.5C96.5525 219.16 96.5058 218.867 96.4125 218.62C96.3258 218.367 96.2058 218.157 96.0525 217.99C95.8992 217.817 95.7225 217.69 95.5225 217.61C95.3225 217.523 95.1125 217.48 94.8925 217.48C94.6925 217.48 94.4992 217.523 94.3125 217.61C94.1325 217.697 93.9725 217.823 93.8325 217.99C93.6925 218.157 93.5792 218.367 93.4925 218.62C93.4125 218.867 93.3725 219.153 93.3725 219.48C93.3725 219.813 93.4125 220.107 93.4925 220.36C93.5792 220.613 93.6925 220.823 93.8325 220.99C93.9725 221.157 94.1325 221.283 94.3125 221.37C94.4992 221.45 94.6925 221.49 94.8925 221.49ZM96.4825 221.03C96.3225 221.35 96.0992 221.61 95.8125 221.81C95.5325 222.003 95.1825 222.1 94.7625 222.1C94.4825 222.1 94.2058 222.047 93.9325 221.94C93.6658 221.833 93.4258 221.673 93.2125 221.46C92.9992 221.24 92.8258 220.967 92.6925 220.64C92.5658 220.307 92.5025 219.92 92.5025 219.48C92.5025 219.04 92.5658 218.657 92.6925 218.33C92.8258 217.997 92.9992 217.723 93.2125 217.51C93.4258 217.297 93.6692 217.137 93.9425 217.03C94.2158 216.923 94.4925 216.87 94.7725 216.87C95.1458 216.87 95.4725 216.947 95.7525 217.1C96.0325 217.247 96.2592 217.46 96.4325 217.74V214.75H97.2825V222H96.5825L96.4825 221.03ZM101.94 221.1C101.807 221.38 101.597 221.617 101.31 221.81C101.03 222.003 100.664 222.1 100.21 222.1C99.7436 222.1 99.3669 221.96 99.0802 221.68C98.7936 221.393 98.6502 220.953 98.6502 220.36V216.97H99.5102V220.36C99.5102 220.56 99.5336 220.727 99.5802 220.86C99.6269 220.993 99.6936 221.1 99.7802 221.18C99.8669 221.26 99.9669 221.317 100.08 221.35C100.194 221.383 100.317 221.4 100.45 221.4C100.824 221.4 101.124 221.31 101.35 221.13C101.584 220.95 101.78 220.703 101.94 220.39V216.97H102.79V222H102.04L101.96 221.1H101.94ZM106.698 217.77C106.525 217.757 106.355 217.77 106.188 217.81C106.021 217.85 105.865 217.913 105.718 218C105.578 218.087 105.448 218.193 105.328 218.32C105.215 218.447 105.125 218.587 105.058 218.74V222H104.208V216.97H104.958L105.038 218.06H105.058C105.125 217.913 105.208 217.773 105.308 217.64C105.415 217.5 105.535 217.38 105.668 217.28C105.808 217.173 105.961 217.087 106.128 217.02C106.301 216.953 106.491 216.92 106.698 216.92V217.77ZM109.106 221.48C109.46 221.48 109.74 221.393 109.946 221.22C110.16 221.04 110.316 220.837 110.416 220.61V219.66H109.976C109.33 219.66 108.863 219.73 108.576 219.87C108.296 220.003 108.156 220.263 108.156 220.65C108.156 220.923 108.25 221.13 108.436 221.27C108.63 221.41 108.853 221.48 109.106 221.48ZM110.576 222C110.55 221.907 110.526 221.797 110.506 221.67C110.486 221.543 110.47 221.407 110.456 221.26C110.396 221.36 110.323 221.46 110.236 221.56C110.156 221.66 110.056 221.75 109.936 221.83C109.816 221.91 109.673 221.973 109.506 222.02C109.34 222.073 109.146 222.1 108.926 222.1C108.706 222.1 108.5 222.07 108.306 222.01C108.113 221.95 107.94 221.86 107.786 221.74C107.64 221.62 107.523 221.473 107.436 221.3C107.35 221.127 107.306 220.927 107.306 220.7C107.306 220.153 107.523 219.757 107.956 219.51C108.396 219.257 109.043 219.13 109.896 219.13H110.416V218.72C110.416 218.313 110.33 218.01 110.156 217.81C109.983 217.61 109.676 217.51 109.236 217.51C108.936 217.51 108.663 217.567 108.416 217.68C108.176 217.787 107.963 217.917 107.776 218.07L107.546 217.37C107.626 217.31 107.73 217.25 107.856 217.19C107.983 217.13 108.126 217.077 108.286 217.03C108.446 216.983 108.616 216.947 108.796 216.92C108.976 216.887 109.16 216.87 109.346 216.87C109.98 216.87 110.456 217.01 110.776 217.29C111.103 217.563 111.266 218 111.266 218.6V221.19C111.266 221.303 111.273 221.447 111.286 221.62C111.3 221.787 111.316 221.913 111.336 222H110.576ZM115.116 221.91C115.009 221.963 114.879 222.007 114.726 222.04C114.572 222.08 114.402 222.1 114.216 222.1C113.742 222.1 113.392 221.977 113.166 221.73C112.939 221.477 112.826 221.11 112.826 220.63V217.59H112.226V216.97H112.826V216.01H113.686V216.97H114.946V217.59H113.686V220.59C113.686 220.863 113.729 221.07 113.816 221.21C113.902 221.343 114.062 221.41 114.296 221.41C114.409 221.41 114.526 221.397 114.646 221.37C114.766 221.343 114.872 221.307 114.966 221.26L115.116 221.91ZM116.542 216.21C116.375 216.21 116.242 216.16 116.142 216.06C116.049 215.96 116.002 215.833 116.002 215.68C116.002 215.527 116.049 215.397 116.142 215.29C116.242 215.183 116.375 215.13 116.542 215.13C116.702 215.13 116.832 215.183 116.932 215.29C117.032 215.397 117.082 215.527 117.082 215.68C117.082 215.833 117.032 215.96 116.932 216.06C116.832 216.16 116.702 216.21 116.542 216.21ZM116.972 216.97V222H116.122V216.97H116.972ZM120.498 222.1C120.171 222.1 119.861 222.043 119.568 221.93C119.275 221.81 119.018 221.64 118.798 221.42C118.578 221.193 118.401 220.92 118.268 220.6C118.141 220.273 118.078 219.9 118.078 219.48C118.078 219.06 118.141 218.69 118.268 218.37C118.401 218.043 118.578 217.77 118.798 217.55C119.018 217.33 119.275 217.163 119.568 217.05C119.861 216.93 120.171 216.87 120.498 216.87C120.825 216.87 121.135 216.93 121.428 217.05C121.728 217.163 121.988 217.33 122.208 217.55C122.435 217.77 122.615 218.043 122.748 218.37C122.881 218.69 122.948 219.06 122.948 219.48C122.948 219.9 122.881 220.273 122.748 220.6C122.615 220.92 122.435 221.193 122.208 221.42C121.988 221.64 121.728 221.81 121.428 221.93C121.135 222.043 120.825 222.1 120.498 222.1ZM120.498 221.47C120.698 221.47 120.891 221.437 121.078 221.37C121.271 221.297 121.441 221.18 121.588 221.02C121.735 220.86 121.851 220.653 121.938 220.4C122.031 220.147 122.078 219.84 122.078 219.48C122.078 219.12 122.031 218.817 121.938 218.57C121.851 218.317 121.735 218.11 121.588 217.95C121.441 217.79 121.271 217.677 121.078 217.61C120.891 217.537 120.698 217.5 120.498 217.5C120.298 217.5 120.105 217.537 119.918 217.61C119.738 217.677 119.575 217.79 119.428 217.95C119.281 218.11 119.165 218.317 119.078 218.57C118.991 218.817 118.948 219.12 118.948 219.48C118.948 219.84 118.991 220.147 119.078 220.4C119.165 220.653 119.281 220.86 119.428 221.02C119.575 221.18 119.738 221.297 119.918 221.37C120.105 221.437 120.298 221.47 120.498 221.47ZM126.451 217.55C126.065 217.55 125.751 217.643 125.511 217.83C125.271 218.017 125.075 218.25 124.921 218.53V222H124.071V216.97H124.871L124.901 217.87H124.921C125.055 217.583 125.268 217.347 125.561 217.16C125.855 216.967 126.225 216.87 126.671 216.87C127.171 216.87 127.568 217.003 127.861 217.27C128.155 217.53 128.301 217.93 128.301 218.47V222H127.441V218.51C127.441 218.15 127.355 217.9 127.181 217.76C127.008 217.62 126.765 217.55 126.451 217.55ZM128.967 222.47H132.947V223.12H128.967V222.47ZM134.991 222.1C134.744 222.1 134.531 222.087 134.351 222.06C134.171 222.04 134.011 222.013 133.871 221.98C133.731 221.94 133.608 221.897 133.501 221.85C133.401 221.803 133.308 221.753 133.221 221.7L133.501 220.99C133.548 221.03 133.614 221.077 133.701 221.13C133.788 221.177 133.894 221.227 134.021 221.28C134.148 221.327 134.291 221.367 134.451 221.4C134.618 221.433 134.798 221.45 134.991 221.45C135.351 221.45 135.624 221.38 135.811 221.24C135.998 221.093 136.091 220.893 136.091 220.64C136.091 220.427 136.014 220.257 135.861 220.13C135.708 220.003 135.444 219.883 135.071 219.77C134.858 219.703 134.651 219.637 134.451 219.57C134.258 219.497 134.084 219.407 133.931 219.3C133.778 219.187 133.654 219.05 133.561 218.89C133.468 218.723 133.421 218.513 133.421 218.26C133.421 217.793 133.584 217.447 133.911 217.22C134.238 216.987 134.688 216.87 135.261 216.87C135.608 216.87 135.904 216.9 136.151 216.96C136.398 217.013 136.598 217.077 136.751 217.15L136.551 217.85C136.418 217.777 136.251 217.7 136.051 217.62C135.851 217.54 135.598 217.5 135.291 217.5C134.971 217.5 134.711 217.553 134.511 217.66C134.318 217.76 134.221 217.943 134.221 218.21C134.221 218.33 134.251 218.433 134.311 218.52C134.371 218.607 134.451 218.683 134.551 218.75C134.658 218.81 134.778 218.863 134.911 218.91C135.051 218.957 135.194 219 135.341 219.04C135.534 219.1 135.728 219.167 135.921 219.24C136.114 219.307 136.284 219.397 136.431 219.51C136.584 219.623 136.708 219.767 136.801 219.94C136.894 220.107 136.941 220.32 136.941 220.58C136.941 220.853 136.884 221.087 136.771 221.28C136.664 221.467 136.521 221.623 136.341 221.75C136.161 221.87 135.954 221.957 135.721 222.01C135.488 222.07 135.244 222.1 134.991 222.1ZM15.4 236.35C15.1 236.063 14.8433 235.753 14.63 235.42C14.4233 235.087 14.2533 234.737 14.12 234.37C13.9933 234.003 13.9 233.623 13.84 233.23C13.7867 232.837 13.76 232.433 13.76 232.02C13.76 231.613 13.7867 231.207 13.84 230.8C13.9 230.387 13.9933 229.993 14.12 229.62C14.2533 229.247 14.4233 228.893 14.63 228.56C14.8433 228.227 15.1 227.93 15.4 227.67H16.09C15.83 227.923 15.6033 228.217 15.41 228.55C15.2233 228.877 15.0667 229.227 14.94 229.6C14.82 229.973 14.73 230.363 14.67 230.77C14.61 231.177 14.58 231.583 14.58 231.99C14.58 232.817 14.7 233.603 14.94 234.35C15.1867 235.097 15.57 235.763 16.09 236.35H15.4ZM19.1308 234.49C19.3508 234.49 19.5608 234.45 19.7608 234.37C19.9608 234.29 20.1374 234.17 20.2908 234.01C20.4441 233.843 20.5641 233.637 20.6508 233.39C20.7441 233.137 20.7908 232.84 20.7908 232.5C20.7908 232.16 20.7441 231.867 20.6508 231.62C20.5641 231.367 20.4441 231.157 20.2908 230.99C20.1374 230.817 19.9608 230.69 19.7608 230.61C19.5608 230.523 19.3508 230.48 19.1308 230.48C18.9308 230.48 18.7374 230.523 18.5508 230.61C18.3708 230.697 18.2108 230.823 18.0708 230.99C17.9308 231.157 17.8174 231.367 17.7308 231.62C17.6508 231.867 17.6108 232.153 17.6108 232.48C17.6108 232.813 17.6508 233.107 17.7308 233.36C17.8174 233.613 17.9308 233.823 18.0708 233.99C18.2108 234.157 18.3708 234.283 18.5508 234.37C18.7374 234.45 18.9308 234.49 19.1308 234.49ZM20.7208 234.03C20.5608 234.35 20.3374 234.61 20.0508 234.81C19.7708 235.003 19.4208 235.1 19.0008 235.1C18.7208 235.1 18.4441 235.047 18.1708 234.94C17.9041 234.833 17.6641 234.673 17.4508 234.46C17.2374 234.24 17.0641 233.967 16.9308 233.64C16.8041 233.307 16.7408 232.92 16.7408 232.48C16.7408 232.04 16.8041 231.657 16.9308 231.33C17.0641 230.997 17.2374 230.723 17.4508 230.51C17.6641 230.297 17.9074 230.137 18.1808 230.03C18.4541 229.923 18.7308 229.87 19.0108 229.87C19.3841 229.87 19.7108 229.947 19.9908 230.1C20.2708 230.247 20.4974 230.46 20.6708 230.74V227.75H21.5208V235H20.8208L20.7208 234.03ZM24.9485 230.48C24.5885 230.48 24.2785 230.607 24.0185 230.86C23.7652 231.113 23.6052 231.497 23.5385 232.01H26.0885C26.1285 231.49 26.0385 231.107 25.8185 230.86C25.6052 230.607 25.3152 230.48 24.9485 230.48ZM26.7985 234.57C26.6185 234.723 26.3852 234.85 26.0985 234.95C25.8118 235.05 25.4852 235.1 25.1185 235.1C24.3185 235.1 23.7052 234.873 23.2785 234.42C22.8518 233.96 22.6385 233.313 22.6385 232.48C22.6385 232.073 22.6985 231.71 22.8185 231.39C22.9385 231.063 23.1018 230.787 23.3085 230.56C23.5218 230.333 23.7685 230.163 24.0485 230.05C24.3352 229.93 24.6418 229.87 24.9685 229.87C25.3085 229.87 25.6118 229.93 25.8785 230.05C26.1518 230.163 26.3752 230.337 26.5485 230.57C26.7285 230.797 26.8485 231.083 26.9085 231.43C26.9752 231.77 26.9752 232.163 26.9085 232.61H23.5085C23.5485 233.817 24.1118 234.42 25.1985 234.42C25.4852 234.42 25.7418 234.377 25.9685 234.29C26.1952 234.203 26.4052 234.093 26.5985 233.96L26.7985 234.57ZM28.9252 227.75V235H28.0752V227.75H28.9252ZM30.7609 229.21C30.5942 229.21 30.4609 229.16 30.3609 229.06C30.2675 228.96 30.2209 228.833 30.2209 228.68C30.2209 228.527 30.2675 228.397 30.3609 228.29C30.4609 228.183 30.5942 228.13 30.7609 228.13C30.9209 228.13 31.0509 228.183 31.1509 228.29C31.2509 228.397 31.3009 228.527 31.3009 228.68C31.3009 228.833 31.2509 228.96 31.1509 229.06C31.0509 229.16 30.9209 229.21 30.7609 229.21ZM31.1909 229.97V235H30.3409V229.97H31.1909ZM32.0267 229.97H32.9167L34.3667 234.42L35.7967 229.97H36.5867L34.9067 235H33.6967L32.0267 229.97ZM39.3528 230.48C38.9928 230.48 38.6828 230.607 38.4228 230.86C38.1695 231.113 38.0095 231.497 37.9428 232.01H40.4928C40.5328 231.49 40.4428 231.107 40.2228 230.86C40.0095 230.607 39.7195 230.48 39.3528 230.48ZM41.2028 234.57C41.0228 234.723 40.7895 234.85 40.5028 234.95C40.2161 235.05 39.8895 235.1 39.5228 235.1C38.7228 235.1 38.1095 234.873 37.6828 234.42C37.2561 233.96 37.0428 233.313 37.0428 232.48C37.0428 232.073 37.1028 231.71 37.2228 231.39C37.3428 231.063 37.5061 230.787 37.7128 230.56C37.9261 230.333 38.1728 230.163 38.4528 230.05C38.7395 229.93 39.0461 229.87 39.3728 229.87C39.7128 229.87 40.0161 229.93 40.2828 230.05C40.5561 230.163 40.7795 230.337 40.9528 230.57C41.1328 230.797 41.2528 231.083 41.3128 231.43C41.3795 231.77 41.3795 232.163 41.3128 232.61H37.9128C37.9528 233.817 38.5161 234.42 39.6028 234.42C39.8895 234.42 40.1461 234.377 40.3728 234.29C40.5995 234.203 40.8095 234.093 41.0028 233.96L41.2028 234.57ZM44.9695 230.77C44.7962 230.757 44.6262 230.77 44.4595 230.81C44.2929 230.85 44.1362 230.913 43.9895 231C43.8495 231.087 43.7195 231.193 43.5995 231.32C43.4862 231.447 43.3962 231.587 43.3295 231.74V235H42.4795V229.97H43.2295L43.3095 231.06H43.3295C43.3962 230.913 43.4795 230.773 43.5795 230.64C43.6862 230.5 43.8062 230.38 43.9395 230.28C44.0795 230.173 44.2329 230.087 44.3995 230.02C44.5729 229.953 44.7629 229.92 44.9695 229.92V230.77ZM46.5819 236.96C46.4285 236.96 46.2885 236.947 46.1619 236.92C46.0419 236.9 45.9352 236.873 45.8419 236.84L45.9519 236.15C46.0319 236.183 46.1219 236.213 46.2219 236.24C46.3219 236.267 46.4285 236.28 46.5419 236.28C46.7285 236.28 46.8985 236.22 47.0519 236.1C47.2052 235.98 47.3719 235.767 47.5519 235.46L45.5619 229.97H46.4819L48.0119 234.36L49.5419 229.97H50.3119L48.5319 234.94C48.4119 235.267 48.2885 235.553 48.1619 235.8C48.0352 236.053 47.8952 236.263 47.7419 236.43C47.5885 236.603 47.4152 236.733 47.2219 236.82C47.0352 236.913 46.8219 236.96 46.5819 236.96ZM55.4394 235.1C55.1127 235.1 54.8027 235.043 54.5094 234.93C54.216 234.81 53.9594 234.64 53.7394 234.42C53.5194 234.193 53.3427 233.92 53.2094 233.6C53.0827 233.273 53.0194 232.9 53.0194 232.48C53.0194 232.06 53.0827 231.69 53.2094 231.37C53.3427 231.043 53.5194 230.77 53.7394 230.55C53.9594 230.33 54.216 230.163 54.5094 230.05C54.8027 229.93 55.1127 229.87 55.4394 229.87C55.766 229.87 56.076 229.93 56.3694 230.05C56.6694 230.163 56.9294 230.33 57.1494 230.55C57.376 230.77 57.556 231.043 57.6894 231.37C57.8227 231.69 57.8894 232.06 57.8894 232.48C57.8894 232.9 57.8227 233.273 57.6894 233.6C57.556 233.92 57.376 234.193 57.1494 234.42C56.9294 234.64 56.6694 234.81 56.3694 234.93C56.076 235.043 55.766 235.1 55.4394 235.1ZM55.4394 234.47C55.6394 234.47 55.8327 234.437 56.0194 234.37C56.2127 234.297 56.3827 234.18 56.5294 234.02C56.676 233.86 56.7927 233.653 56.8794 233.4C56.9727 233.147 57.0194 232.84 57.0194 232.48C57.0194 232.12 56.9727 231.817 56.8794 231.57C56.7927 231.317 56.676 231.11 56.5294 230.95C56.3827 230.79 56.2127 230.677 56.0194 230.61C55.8327 230.537 55.6394 230.5 55.4394 230.5C55.2394 230.5 55.046 230.537 54.8594 230.61C54.6794 230.677 54.516 230.79 54.3694 230.95C54.2227 231.11 54.106 231.317 54.0194 231.57C53.9327 231.817 53.8894 232.12 53.8894 232.48C53.8894 232.84 53.9327 233.147 54.0194 233.4C54.106 233.653 54.2227 233.86 54.3694 234.02C54.516 234.18 54.6794 234.297 54.8594 234.37C55.046 234.437 55.2394 234.47 55.4394 234.47ZM61.5027 230.77C61.3294 230.757 61.1594 230.77 60.9927 230.81C60.8261 230.85 60.6694 230.913 60.5227 231C60.3827 231.087 60.2527 231.193 60.1327 231.32C60.0194 231.447 59.9294 231.587 59.8627 231.74V235H59.0127V229.97H59.7627L59.8427 231.06H59.8627C59.9294 230.913 60.0127 230.773 60.1127 230.64C60.2194 230.5 60.3394 230.38 60.4727 230.28C60.6127 230.173 60.7661 230.087 60.9327 230.02C61.1061 229.953 61.2961 229.92 61.5027 229.92V230.77ZM64.6386 234.49C64.8586 234.49 65.0686 234.45 65.2686 234.37C65.4686 234.29 65.6453 234.17 65.7986 234.01C65.9519 233.843 66.0719 233.637 66.1586 233.39C66.2519 233.137 66.2986 232.84 66.2986 232.5C66.2986 232.16 66.2519 231.867 66.1586 231.62C66.0719 231.367 65.9519 231.157 65.7986 230.99C65.6453 230.817 65.4686 230.69 65.2686 230.61C65.0686 230.523 64.8586 230.48 64.6386 230.48C64.4386 230.48 64.2453 230.523 64.0586 230.61C63.8786 230.697 63.7186 230.823 63.5786 230.99C63.4386 231.157 63.3253 231.367 63.2386 231.62C63.1586 231.867 63.1186 232.153 63.1186 232.48C63.1186 232.813 63.1586 233.107 63.2386 233.36C63.3253 233.613 63.4386 233.823 63.5786 233.99C63.7186 234.157 63.8786 234.283 64.0586 234.37C64.2453 234.45 64.4386 234.49 64.6386 234.49ZM66.2286 234.03C66.0686 234.35 65.8453 234.61 65.5586 234.81C65.2786 235.003 64.9286 235.1 64.5086 235.1C64.2286 235.1 63.9519 235.047 63.6786 234.94C63.4119 234.833 63.1719 234.673 62.9586 234.46C62.7453 234.24 62.5719 233.967 62.4386 233.64C62.3119 233.307 62.2486 232.92 62.2486 232.48C62.2486 232.04 62.3119 231.657 62.4386 231.33C62.5719 230.997 62.7453 230.723 62.9586 230.51C63.1719 230.297 63.4153 230.137 63.6886 230.03C63.9619 229.923 64.2386 229.87 64.5186 229.87C64.8919 229.87 65.2186 229.947 65.4986 230.1C65.7786 230.247 66.0053 230.46 66.1786 230.74V227.75H67.0286V235H66.3286L66.2286 234.03ZM70.4563 230.48C70.0963 230.48 69.7863 230.607 69.5263 230.86C69.273 231.113 69.113 231.497 69.0463 232.01H71.5963C71.6363 231.49 71.5463 231.107 71.3263 230.86C71.113 230.607 70.823 230.48 70.4563 230.48ZM72.3063 234.57C72.1263 234.723 71.893 234.85 71.6063 234.95C71.3197 235.05 70.993 235.1 70.6263 235.1C69.8263 235.1 69.213 234.873 68.7863 234.42C68.3597 233.96 68.1463 233.313 68.1463 232.48C68.1463 232.073 68.2063 231.71 68.3263 231.39C68.4463 231.063 68.6097 230.787 68.8163 230.56C69.0297 230.333 69.2763 230.163 69.5563 230.05C69.843 229.93 70.1497 229.87 70.4763 229.87C70.8163 229.87 71.1197 229.93 71.3863 230.05C71.6597 230.163 71.883 230.337 72.0563 230.57C72.2363 230.797 72.3563 231.083 72.4163 231.43C72.483 231.77 72.483 232.163 72.4163 232.61H69.0163C69.0563 233.817 69.6197 234.42 70.7063 234.42C70.993 234.42 71.2497 234.377 71.4763 234.29C71.703 234.203 71.913 234.093 72.1063 233.96L72.3063 234.57ZM76.073 230.77C75.8997 230.757 75.7297 230.77 75.563 230.81C75.3964 230.85 75.2397 230.913 75.093 231C74.953 231.087 74.823 231.193 74.703 231.32C74.5897 231.447 74.4997 231.587 74.433 231.74V235H73.583V229.97H74.333L74.413 231.06H74.433C74.4997 230.913 74.583 230.773 74.683 230.64C74.7897 230.5 74.9097 230.38 75.043 230.28C75.183 230.173 75.3364 230.087 75.503 230.02C75.6764 229.953 75.8664 229.92 76.073 229.92V230.77ZM78.4577 235.1C78.2111 235.1 77.9977 235.087 77.8177 235.06C77.6377 235.04 77.4777 235.013 77.3377 234.98C77.1977 234.94 77.0744 234.897 76.9677 234.85C76.8677 234.803 76.7744 234.753 76.6877 234.7L76.9677 233.99C77.0144 234.03 77.0811 234.077 77.1677 234.13C77.2544 234.177 77.3611 234.227 77.4877 234.28C77.6144 234.327 77.7577 234.367 77.9177 234.4C78.0844 234.433 78.2644 234.45 78.4577 234.45C78.8177 234.45 79.0911 234.38 79.2777 234.24C79.4644 234.093 79.5577 233.893 79.5577 233.64C79.5577 233.427 79.4811 233.257 79.3277 233.13C79.1744 233.003 78.9111 232.883 78.5377 232.77C78.3244 232.703 78.1177 232.637 77.9177 232.57C77.7244 232.497 77.5511 232.407 77.3977 232.3C77.2444 232.187 77.1211 232.05 77.0277 231.89C76.9344 231.723 76.8877 231.513 76.8877 231.26C76.8877 230.793 77.0511 230.447 77.3777 230.22C77.7044 229.987 78.1544 229.87 78.7277 229.87C79.0744 229.87 79.3711 229.9 79.6177 229.96C79.8644 230.013 80.0644 230.077 80.2177 230.15L80.0177 230.85C79.8844 230.777 79.7177 230.7 79.5177 230.62C79.3177 230.54 79.0644 230.5 78.7577 230.5C78.4377 230.5 78.1777 230.553 77.9777 230.66C77.7844 230.76 77.6877 230.943 77.6877 231.21C77.6877 231.33 77.7177 231.433 77.7777 231.52C77.8377 231.607 77.9177 231.683 78.0177 231.75C78.1244 231.81 78.2444 231.863 78.3777 231.91C78.5177 231.957 78.6611 232 78.8077 232.04C79.0011 232.1 79.1944 232.167 79.3877 232.24C79.5811 232.307 79.7511 232.397 79.8977 232.51C80.0511 232.623 80.1744 232.767 80.2677 232.94C80.3611 233.107 80.4077 233.32 80.4077 233.58C80.4077 233.853 80.3511 234.087 80.2377 234.28C80.1311 234.467 79.9877 234.623 79.8077 234.75C79.6277 234.87 79.4211 234.957 79.1877 235.01C78.9544 235.07 78.7111 235.1 78.4577 235.1ZM81.5534 236.35C81.8534 236.063 82.1068 235.753 82.3134 235.42C82.5268 235.087 82.6968 234.737 82.8234 234.37C82.9568 234.003 83.0501 233.623 83.1034 233.23C83.1634 232.837 83.1934 232.433 83.1934 232.02C83.1934 231.613 83.1634 231.207 83.1034 230.8C83.0501 230.387 82.9568 229.993 82.8234 229.62C82.6968 229.247 82.5268 228.893 82.3134 228.56C82.1068 228.227 81.8534 227.93 81.5534 227.67H80.8634C81.1234 227.923 81.3468 228.217 81.5334 228.55C81.7268 228.877 81.8834 229.227 82.0034 229.6C82.1301 229.973 82.2234 230.363 82.2834 230.77C82.3434 231.177 82.3734 231.583 82.3734 231.99C82.3734 232.817 82.2501 233.603 82.0034 234.35C81.7634 235.097 81.3834 235.763 80.8634 236.35H81.5534Z" fill="black"/><path d="M248.83 128.49C249.05 128.49 249.26 128.45 249.46 128.37C249.66 128.29 249.837 128.17 249.99 128.01C250.143 127.843 250.263 127.637 250.35 127.39C250.443 127.137 250.49 126.84 250.49 126.5C250.49 126.16 250.443 125.867 250.35 125.62C250.263 125.367 250.143 125.157 249.99 124.99C249.837 124.817 249.66 124.69 249.46 124.61C249.26 124.523 249.05 124.48 248.83 124.48C248.63 124.48 248.437 124.523 248.25 124.61C248.07 124.697 247.91 124.823 247.77 124.99C247.63 125.157 247.517 125.367 247.43 125.62C247.35 125.867 247.31 126.153 247.31 126.48C247.31 126.813 247.35 127.107 247.43 127.36C247.517 127.613 247.63 127.823 247.77 127.99C247.91 128.157 248.07 128.283 248.25 128.37C248.437 128.45 248.63 128.49 248.83 128.49ZM250.42 128.03C250.26 128.35 250.037 128.61 249.75 128.81C249.47 129.003 249.12 129.1 248.7 129.1C248.42 129.1 248.143 129.047 247.87 128.94C247.603 128.833 247.363 128.673 247.15 128.46C246.937 128.24 246.763 127.967 246.63 127.64C246.503 127.307 246.44 126.92 246.44 126.48C246.44 126.04 246.503 125.657 246.63 125.33C246.763 124.997 246.937 124.723 247.15 124.51C247.363 124.297 247.607 124.137 247.88 124.03C248.153 123.923 248.43 123.87 248.71 123.87C249.083 123.87 249.41 123.947 249.69 124.1C249.97 124.247 250.197 124.46 250.37 124.74V121.75H251.22V129H250.52L250.42 128.03ZM254.648 124.48C254.288 124.48 253.978 124.607 253.718 124.86C253.464 125.113 253.304 125.497 253.238 126.01H255.788C255.828 125.49 255.738 125.107 255.518 124.86C255.304 124.607 255.014 124.48 254.648 124.48ZM256.498 128.57C256.318 128.723 256.084 128.85 255.798 128.95C255.511 129.05 255.184 129.1 254.818 129.1C254.018 129.1 253.404 128.873 252.978 128.42C252.551 127.96 252.338 127.313 252.338 126.48C252.338 126.073 252.398 125.71 252.518 125.39C252.638 125.063 252.801 124.787 253.008 124.56C253.221 124.333 253.468 124.163 253.748 124.05C254.034 123.93 254.341 123.87 254.668 123.87C255.008 123.87 255.311 123.93 255.578 124.05C255.851 124.163 256.074 124.337 256.248 124.57C256.428 124.797 256.548 125.083 256.608 125.43C256.674 125.77 256.674 126.163 256.608 126.61H253.208C253.248 127.817 253.811 128.42 254.898 128.42C255.184 128.42 255.441 128.377 255.668 128.29C255.894 128.203 256.104 128.093 256.298 127.96L256.498 128.57ZM260.174 128.49C260.621 128.49 260.981 128.333 261.254 128.02C261.534 127.7 261.674 127.187 261.674 126.48C261.674 125.787 261.534 125.28 261.254 124.96C260.981 124.633 260.621 124.47 260.174 124.47C259.954 124.47 259.744 124.51 259.544 124.59C259.344 124.663 259.168 124.783 259.014 124.95C258.868 125.11 258.751 125.317 258.664 125.57C258.578 125.823 258.534 126.127 258.534 126.48C258.534 126.84 258.578 127.147 258.664 127.4C258.751 127.653 258.868 127.86 259.014 128.02C259.168 128.18 259.344 128.3 259.544 128.38C259.744 128.453 259.954 128.49 260.174 128.49ZM260.304 129.1C259.931 129.1 259.601 129.02 259.314 128.86C259.034 128.693 258.804 128.467 258.624 128.18V130.87H257.774V123.97H258.524L258.584 124.86C258.764 124.56 258.998 124.32 259.284 124.14C259.578 123.96 259.931 123.87 260.344 123.87C260.638 123.87 260.918 123.923 261.184 124.03C261.451 124.137 261.684 124.297 261.884 124.51C262.091 124.723 262.254 124.997 262.374 125.33C262.494 125.657 262.554 126.04 262.554 126.48C262.554 126.92 262.491 127.307 262.364 127.64C262.244 127.967 262.081 128.24 261.874 128.46C261.668 128.673 261.428 128.833 261.154 128.94C260.888 129.047 260.604 129.1 260.304 129.1ZM265.793 129.1C265.466 129.1 265.156 129.043 264.863 128.93C264.57 128.81 264.313 128.64 264.093 128.42C263.873 128.193 263.696 127.92 263.563 127.6C263.436 127.273 263.373 126.9 263.373 126.48C263.373 126.06 263.436 125.69 263.563 125.37C263.696 125.043 263.873 124.77 264.093 124.55C264.313 124.33 264.57 124.163 264.863 124.05C265.156 123.93 265.466 123.87 265.793 123.87C266.12 123.87 266.43 123.93 266.723 124.05C267.023 124.163 267.283 124.33 267.503 124.55C267.73 124.77 267.91 125.043 268.043 125.37C268.176 125.69 268.243 126.06 268.243 126.48C268.243 126.9 268.176 127.273 268.043 127.6C267.91 127.92 267.73 128.193 267.503 128.42C267.283 128.64 267.023 128.81 266.723 128.93C266.43 129.043 266.12 129.1 265.793 129.1ZM265.793 128.47C265.993 128.47 266.186 128.437 266.373 128.37C266.566 128.297 266.736 128.18 266.883 128.02C267.03 127.86 267.146 127.653 267.233 127.4C267.326 127.147 267.373 126.84 267.373 126.48C267.373 126.12 267.326 125.817 267.233 125.57C267.146 125.317 267.03 125.11 266.883 124.95C266.736 124.79 266.566 124.677 266.373 124.61C266.186 124.537 265.993 124.5 265.793 124.5C265.593 124.5 265.4 124.537 265.213 124.61C265.033 124.677 264.87 124.79 264.723 124.95C264.576 125.11 264.46 125.317 264.373 125.57C264.286 125.817 264.243 126.12 264.243 126.48C264.243 126.84 264.286 127.147 264.373 127.4C264.46 127.653 264.576 127.86 264.723 128.02C264.87 128.18 265.033 128.297 265.213 128.37C265.4 128.437 265.593 128.47 265.793 128.47ZM271.846 128.91C271.74 128.963 271.61 129.007 271.456 129.04C271.303 129.08 271.133 129.1 270.946 129.1C270.473 129.1 270.123 128.977 269.896 128.73C269.67 128.477 269.556 128.11 269.556 127.63V124.59H268.956V123.97H269.556V123.01H270.416V123.97H271.676V124.59H270.416V127.59C270.416 127.863 270.46 128.07 270.546 128.21C270.633 128.343 270.793 128.41 271.026 128.41C271.14 128.41 271.256 128.397 271.376 128.37C271.496 128.343 271.603 128.307 271.696 128.26L271.846 128.91ZM273.32 129.06C273.154 129.06 273.014 129.007 272.9 128.9C272.794 128.787 272.74 128.653 272.74 128.5C272.74 128.333 272.794 128.197 272.9 128.09C273.014 127.983 273.154 127.93 273.32 127.93C273.487 127.93 273.624 127.983 273.73 128.09C273.837 128.197 273.89 128.333 273.89 128.5C273.89 128.653 273.837 128.787 273.73 128.9C273.624 129.007 273.487 129.06 273.32 129.06ZM278.407 124.59V129H277.557V124.59H276.947V123.97H277.557V123.5C277.557 122.907 277.704 122.453 277.997 122.14C278.297 121.82 278.707 121.66 279.227 121.66C279.44 121.66 279.607 121.673 279.727 121.7C279.854 121.727 279.947 121.757 280.007 121.79L279.817 122.43C279.764 122.397 279.687 122.37 279.587 122.35C279.487 122.323 279.36 122.31 279.207 122.31C278.94 122.31 278.74 122.413 278.607 122.62C278.474 122.82 278.407 123.113 278.407 123.5V123.97H279.867V124.59H278.407ZM281.31 123.21C281.143 123.21 281.01 123.16 280.91 123.06C280.816 122.96 280.77 122.833 280.77 122.68C280.77 122.527 280.816 122.397 280.91 122.29C281.01 122.183 281.143 122.13 281.31 122.13C281.47 122.13 281.6 122.183 281.7 122.29C281.8 122.397 281.85 122.527 281.85 122.68C281.85 122.833 281.8 122.96 281.7 123.06C281.6 123.16 281.47 123.21 281.31 123.21ZM281.74 123.97V129H280.89V123.97H281.74ZM285.526 124.55C285.139 124.55 284.826 124.643 284.586 124.83C284.346 125.017 284.149 125.25 283.996 125.53V129H283.146V123.97H283.946L283.976 124.87H283.996C284.129 124.583 284.342 124.347 284.636 124.16C284.929 123.967 285.299 123.87 285.746 123.87C286.246 123.87 286.642 124.003 286.936 124.27C287.229 124.53 287.376 124.93 287.376 125.47V129H286.516V125.51C286.516 125.15 286.429 124.9 286.256 124.76C286.082 124.62 285.839 124.55 285.526 124.55ZM289.161 123.21C288.995 123.21 288.861 123.16 288.761 123.06C288.668 122.96 288.621 122.833 288.621 122.68C288.621 122.527 288.668 122.397 288.761 122.29C288.861 122.183 288.995 122.13 289.161 122.13C289.321 122.13 289.451 122.183 289.551 122.29C289.651 122.397 289.701 122.527 289.701 122.68C289.701 122.833 289.651 122.96 289.551 123.06C289.451 123.16 289.321 123.21 289.161 123.21ZM289.591 123.97V129H288.741V123.97H289.591ZM292.317 129.1C292.07 129.1 291.857 129.087 291.677 129.06C291.497 129.04 291.337 129.013 291.197 128.98C291.057 128.94 290.934 128.897 290.827 128.85C290.727 128.803 290.634 128.753 290.547 128.7L290.827 127.99C290.874 128.03 290.94 128.077 291.027 128.13C291.114 128.177 291.22 128.227 291.347 128.28C291.474 128.327 291.617 128.367 291.777 128.4C291.944 128.433 292.124 128.45 292.317 128.45C292.677 128.45 292.95 128.38 293.137 128.24C293.324 128.093 293.417 127.893 293.417 127.64C293.417 127.427 293.34 127.257 293.187 127.13C293.034 127.003 292.77 126.883 292.397 126.77C292.184 126.703 291.977 126.637 291.777 126.57C291.584 126.497 291.41 126.407 291.257 126.3C291.104 126.187 290.98 126.05 290.887 125.89C290.794 125.723 290.747 125.513 290.747 125.26C290.747 124.793 290.91 124.447 291.237 124.22C291.564 123.987 292.014 123.87 292.587 123.87C292.934 123.87 293.23 123.9 293.477 123.96C293.724 124.013 293.924 124.077 294.077 124.15L293.877 124.85C293.744 124.777 293.577 124.7 293.377 124.62C293.177 124.54 292.924 124.5 292.617 124.5C292.297 124.5 292.037 124.553 291.837 124.66C291.644 124.76 291.547 124.943 291.547 125.21C291.547 125.33 291.577 125.433 291.637 125.52C291.697 125.607 291.777 125.683 291.877 125.75C291.984 125.81 292.104 125.863 292.237 125.91C292.377 125.957 292.52 126 292.667 126.04C292.86 126.1 293.054 126.167 293.247 126.24C293.44 126.307 293.61 126.397 293.757 126.51C293.91 126.623 294.034 126.767 294.127 126.94C294.22 127.107 294.267 127.32 294.267 127.58C294.267 127.853 294.21 128.087 294.097 128.28C293.99 128.467 293.847 128.623 293.667 128.75C293.487 128.87 293.28 128.957 293.047 129.01C292.814 129.07 292.57 129.1 292.317 129.1ZM296.193 129H295.343V121.75H296.193V124.85H296.213C296.346 124.57 296.556 124.337 296.843 124.15C297.129 123.963 297.496 123.87 297.943 123.87C298.436 123.87 298.829 124.003 299.123 124.27C299.416 124.53 299.563 124.93 299.563 125.47V129H298.713V125.51C298.713 125.15 298.626 124.9 298.453 124.76C298.279 124.62 298.036 124.55 297.723 124.55C297.336 124.55 297.023 124.643 296.783 124.83C296.543 125.017 296.346 125.25 296.193 125.53V129ZM300.229 129.47H304.209V130.12H300.229V129.47ZM306.253 129.1C306.006 129.1 305.793 129.087 305.613 129.06C305.433 129.04 305.273 129.013 305.133 128.98C304.993 128.94 304.869 128.897 304.763 128.85C304.663 128.803 304.569 128.753 304.483 128.7L304.763 127.99C304.809 128.03 304.876 128.077 304.963 128.13C305.049 128.177 305.156 128.227 305.283 128.28C305.409 128.327 305.553 128.367 305.713 128.4C305.879 128.433 306.059 128.45 306.253 128.45C306.613 128.45 306.886 128.38 307.073 128.24C307.259 128.093 307.353 127.893 307.353 127.64C307.353 127.427 307.276 127.257 307.123 127.13C306.969 127.003 306.706 126.883 306.333 126.77C306.119 126.703 305.913 126.637 305.713 126.57C305.519 126.497 305.346 126.407 305.193 126.3C305.039 126.187 304.916 126.05 304.823 125.89C304.729 125.723 304.683 125.513 304.683 125.26C304.683 124.793 304.846 124.447 305.173 124.22C305.499 123.987 305.949 123.87 306.523 123.87C306.869 123.87 307.166 123.9 307.413 123.96C307.659 124.013 307.859 124.077 308.013 124.15L307.813 124.85C307.679 124.777 307.513 124.7 307.313 124.62C307.113 124.54 306.859 124.5 306.553 124.5C306.233 124.5 305.973 124.553 305.773 124.66C305.579 124.76 305.483 124.943 305.483 125.21C305.483 125.33 305.513 125.433 305.573 125.52C305.633 125.607 305.713 125.683 305.813 125.75C305.919 125.81 306.039 125.863 306.173 125.91C306.313 125.957 306.456 126 306.603 126.04C306.796 126.1 306.989 126.167 307.183 126.24C307.376 126.307 307.546 126.397 307.693 126.51C307.846 126.623 307.969 126.767 308.063 126.94C308.156 127.107 308.203 127.32 308.203 127.58C308.203 127.853 308.146 128.087 308.033 128.28C307.926 128.467 307.783 128.623 307.603 128.75C307.423 128.87 307.216 128.957 306.983 129.01C306.749 129.07 306.506 129.1 306.253 129.1ZM311.288 124.48C310.928 124.48 310.618 124.607 310.358 124.86C310.105 125.113 309.945 125.497 309.878 126.01H312.428C312.468 125.49 312.378 125.107 312.158 124.86C311.945 124.607 311.655 124.48 311.288 124.48ZM313.138 128.57C312.958 128.723 312.725 128.85 312.438 128.95C312.152 129.05 311.825 129.1 311.458 129.1C310.658 129.1 310.045 128.873 309.618 128.42C309.192 127.96 308.978 127.313 308.978 126.48C308.978 126.073 309.038 125.71 309.158 125.39C309.278 125.063 309.442 124.787 309.648 124.56C309.862 124.333 310.108 124.163 310.388 124.05C310.675 123.93 310.982 123.87 311.308 123.87C311.648 123.87 311.952 123.93 312.218 124.05C312.492 124.163 312.715 124.337 312.888 124.57C313.068 124.797 313.188 125.083 313.248 125.43C313.315 125.77 313.315 126.163 313.248 126.61H309.848C309.888 127.817 310.452 128.42 311.538 128.42C311.825 128.42 312.082 128.377 312.308 128.29C312.535 128.203 312.745 128.093 312.938 127.96L313.138 128.57ZM316.905 124.77C316.732 124.757 316.562 124.77 316.395 124.81C316.228 124.85 316.072 124.913 315.925 125C315.785 125.087 315.655 125.193 315.535 125.32C315.422 125.447 315.332 125.587 315.265 125.74V129H314.415V123.97H315.165L315.245 125.06H315.265C315.332 124.913 315.415 124.773 315.515 124.64C315.622 124.5 315.742 124.38 315.875 124.28C316.015 124.173 316.168 124.087 316.335 124.02C316.508 123.953 316.698 123.92 316.905 123.92V124.77ZM317.546 123.97H318.436L319.886 128.42L321.316 123.97H322.106L320.426 129H319.216L317.546 123.97ZM323.38 123.21C323.213 123.21 323.08 123.16 322.98 123.06C322.887 122.96 322.84 122.833 322.84 122.68C322.84 122.527 322.887 122.397 322.98 122.29C323.08 122.183 323.213 122.13 323.38 122.13C323.54 122.13 323.67 122.183 323.77 122.29C323.87 122.397 323.92 122.527 323.92 122.68C323.92 122.833 323.87 122.96 323.77 123.06C323.67 123.16 323.54 123.21 323.38 123.21ZM323.81 123.97V129H322.96V123.97H323.81ZM327.406 129.1C327.059 129.1 326.733 129.043 326.426 128.93C326.126 128.81 325.863 128.637 325.636 128.41C325.416 128.183 325.239 127.91 325.106 127.59C324.979 127.263 324.916 126.893 324.916 126.48C324.916 126.073 324.979 125.71 325.106 125.39C325.239 125.063 325.419 124.787 325.646 124.56C325.879 124.333 326.153 124.163 326.466 124.05C326.779 123.93 327.116 123.87 327.476 123.87C327.776 123.87 328.046 123.9 328.286 123.96C328.526 124.02 328.726 124.103 328.886 124.21L328.636 124.97C328.443 124.83 328.253 124.723 328.066 124.65C327.886 124.57 327.669 124.53 327.416 124.53C327.196 124.53 326.986 124.573 326.786 124.66C326.586 124.74 326.413 124.863 326.266 125.03C326.119 125.19 326.003 125.393 325.916 125.64C325.829 125.88 325.786 126.16 325.786 126.48C325.786 127.133 325.943 127.62 326.256 127.94C326.569 128.26 326.996 128.42 327.536 128.42C327.716 128.42 327.909 128.387 328.116 128.32C328.329 128.253 328.523 128.157 328.696 128.03L328.886 128.66C328.713 128.793 328.499 128.9 328.246 128.98C327.999 129.06 327.719 129.1 327.406 129.1ZM331.913 124.48C331.553 124.48 331.243 124.607 330.983 124.86C330.73 125.113 330.57 125.497 330.503 126.01H333.053C333.093 125.49 333.003 125.107 332.783 124.86C332.57 124.607 332.28 124.48 331.913 124.48ZM333.763 128.57C333.583 128.723 333.35 128.85 333.063 128.95C332.777 129.05 332.45 129.1 332.083 129.1C331.283 129.1 330.67 128.873 330.243 128.42C329.817 127.96 329.603 127.313 329.603 126.48C329.603 126.073 329.663 125.71 329.783 125.39C329.903 125.063 330.067 124.787 330.273 124.56C330.487 124.333 330.733 124.163 331.013 124.05C331.3 123.93 331.607 123.87 331.933 123.87C332.273 123.87 332.577 123.93 332.843 124.05C333.117 124.163 333.34 124.337 333.513 124.57C333.693 124.797 333.813 125.083 333.873 125.43C333.94 125.77 333.94 126.163 333.873 126.61H330.473C330.513 127.817 331.077 128.42 332.163 128.42C332.45 128.42 332.707 128.377 332.933 128.29C333.16 128.203 333.37 128.093 333.563 127.96L333.763 128.57ZM334.34 129.47H338.32V130.12H334.34V129.47ZM341.164 128.49C341.384 128.49 341.594 128.45 341.794 128.37C341.994 128.29 342.171 128.17 342.324 128.01C342.477 127.843 342.597 127.637 342.684 127.39C342.777 127.137 342.824 126.84 342.824 126.5C342.824 126.16 342.777 125.867 342.684 125.62C342.597 125.367 342.477 125.157 342.324 124.99C342.171 124.817 341.994 124.69 341.794 124.61C341.594 124.523 341.384 124.48 341.164 124.48C340.964 124.48 340.771 124.523 340.584 124.61C340.404 124.697 340.244 124.823 340.104 124.99C339.964 125.157 339.851 125.367 339.764 125.62C339.684 125.867 339.644 126.153 339.644 126.48C339.644 126.813 339.684 127.107 339.764 127.36C339.851 127.613 339.964 127.823 340.104 127.99C340.244 128.157 340.404 128.283 340.584 128.37C340.771 128.45 340.964 128.49 341.164 128.49ZM342.754 128.03C342.594 128.35 342.371 128.61 342.084 128.81C341.804 129.003 341.454 129.1 341.034 129.1C340.754 129.1 340.477 129.047 340.204 128.94C339.937 128.833 339.697 128.673 339.484 128.46C339.271 128.24 339.097 127.967 338.964 127.64C338.837 127.307 338.774 126.92 338.774 126.48C338.774 126.04 338.837 125.657 338.964 125.33C339.097 124.997 339.271 124.723 339.484 124.51C339.697 124.297 339.941 124.137 340.214 124.03C340.487 123.923 340.764 123.87 341.044 123.87C341.417 123.87 341.744 123.947 342.024 124.1C342.304 124.247 342.531 124.46 342.704 124.74V121.75H343.554V129H342.854L342.754 128.03ZM348.212 128.1C348.078 128.38 347.868 128.617 347.582 128.81C347.302 129.003 346.935 129.1 346.482 129.1C346.015 129.1 345.638 128.96 345.352 128.68C345.065 128.393 344.922 127.953 344.922 127.36V123.97H345.782V127.36C345.782 127.56 345.805 127.727 345.852 127.86C345.898 127.993 345.965 128.1 346.052 128.18C346.138 128.26 346.238 128.317 346.352 128.35C346.465 128.383 346.588 128.4 346.722 128.4C347.095 128.4 347.395 128.31 347.622 128.13C347.855 127.95 348.052 127.703 348.212 127.39V123.97H349.062V129H348.312L348.232 128.1H348.212ZM352.97 124.77C352.796 124.757 352.626 124.77 352.46 124.81C352.293 124.85 352.136 124.913 351.99 125C351.85 125.087 351.72 125.193 351.6 125.32C351.486 125.447 351.396 125.587 351.33 125.74V129H350.48V123.97H351.23L351.31 125.06H351.33C351.396 124.913 351.48 124.773 351.58 124.64C351.686 124.5 351.806 124.38 351.94 124.28C352.08 124.173 352.233 124.087 352.4 124.02C352.573 123.953 352.763 123.92 352.97 123.92V124.77ZM355.378 128.48C355.731 128.48 356.011 128.393 356.218 128.22C356.431 128.04 356.588 127.837 356.688 127.61V126.66H356.248C355.601 126.66 355.134 126.73 354.848 126.87C354.568 127.003 354.428 127.263 354.428 127.65C354.428 127.923 354.521 128.13 354.708 128.27C354.901 128.41 355.124 128.48 355.378 128.48ZM356.848 129C356.821 128.907 356.798 128.797 356.778 128.67C356.758 128.543 356.741 128.407 356.728 128.26C356.668 128.36 356.594 128.46 356.508 128.56C356.428 128.66 356.328 128.75 356.208 128.83C356.088 128.91 355.944 128.973 355.778 129.02C355.611 129.073 355.418 129.1 355.198 129.1C354.978 129.1 354.771 129.07 354.578 129.01C354.384 128.95 354.211 128.86 354.058 128.74C353.911 128.62 353.794 128.473 353.708 128.3C353.621 128.127 353.578 127.927 353.578 127.7C353.578 127.153 353.794 126.757 354.228 126.51C354.668 126.257 355.314 126.13 356.168 126.13H356.688V125.72C356.688 125.313 356.601 125.01 356.428 124.81C356.254 124.61 355.948 124.51 355.508 124.51C355.208 124.51 354.934 124.567 354.688 124.68C354.448 124.787 354.234 124.917 354.048 125.07L353.818 124.37C353.898 124.31 354.001 124.25 354.128 124.19C354.254 124.13 354.398 124.077 354.558 124.03C354.718 123.983 354.888 123.947 355.068 123.92C355.248 123.887 355.431 123.87 355.618 123.87C356.251 123.87 356.728 124.01 357.048 124.29C357.374 124.563 357.538 125 357.538 125.6V128.19C357.538 128.303 357.544 128.447 357.558 128.62C357.571 128.787 357.588 128.913 357.608 129H356.848ZM361.387 128.91C361.281 128.963 361.151 129.007 360.997 129.04C360.844 129.08 360.674 129.1 360.487 129.1C360.014 129.1 359.664 128.977 359.437 128.73C359.211 128.477 359.097 128.11 359.097 127.63V124.59H358.497V123.97H359.097V123.01H359.957V123.97H361.217V124.59H359.957V127.59C359.957 127.863 360.001 128.07 360.087 128.21C360.174 128.343 360.334 128.41 360.567 128.41C360.681 128.41 360.797 128.397 360.917 128.37C361.037 128.343 361.144 128.307 361.237 128.26L361.387 128.91ZM362.814 123.21C362.647 123.21 362.514 123.16 362.414 123.06C362.32 122.96 362.274 122.833 362.274 122.68C362.274 122.527 362.32 122.397 362.414 122.29C362.514 122.183 362.647 122.13 362.814 122.13C362.974 122.13 363.104 122.183 363.204 122.29C363.304 122.397 363.354 122.527 363.354 122.68C363.354 122.833 363.304 122.96 363.204 123.06C363.104 123.16 362.974 123.21 362.814 123.21ZM363.244 123.97V129H362.394V123.97H363.244ZM366.769 129.1C366.443 129.1 366.133 129.043 365.839 128.93C365.546 128.81 365.289 128.64 365.069 128.42C364.849 128.193 364.673 127.92 364.539 127.6C364.413 127.273 364.349 126.9 364.349 126.48C364.349 126.06 364.413 125.69 364.539 125.37C364.673 125.043 364.849 124.77 365.069 124.55C365.289 124.33 365.546 124.163 365.839 124.05C366.133 123.93 366.443 123.87 366.769 123.87C367.096 123.87 367.406 123.93 367.699 124.05C367.999 124.163 368.259 124.33 368.479 124.55C368.706 124.77 368.886 125.043 369.019 125.37C369.153 125.69 369.219 126.06 369.219 126.48C369.219 126.9 369.153 127.273 369.019 127.6C368.886 127.92 368.706 128.193 368.479 128.42C368.259 128.64 367.999 128.81 367.699 128.93C367.406 129.043 367.096 129.1 366.769 129.1ZM366.769 128.47C366.969 128.47 367.163 128.437 367.349 128.37C367.543 128.297 367.713 128.18 367.859 128.02C368.006 127.86 368.123 127.653 368.209 127.4C368.303 127.147 368.349 126.84 368.349 126.48C368.349 126.12 368.303 125.817 368.209 125.57C368.123 125.317 368.006 125.11 367.859 124.95C367.713 124.79 367.543 124.677 367.349 124.61C367.163 124.537 366.969 124.5 366.769 124.5C366.569 124.5 366.376 124.537 366.189 124.61C366.009 124.677 365.846 124.79 365.699 124.95C365.553 125.11 365.436 125.317 365.349 125.57C365.263 125.817 365.219 126.12 365.219 126.48C365.219 126.84 365.263 127.147 365.349 127.4C365.436 127.653 365.553 127.86 365.699 128.02C365.846 128.18 366.009 128.297 366.189 128.37C366.376 128.437 366.569 128.47 366.769 128.47ZM372.723 124.55C372.336 124.55 372.023 124.643 371.783 124.83C371.543 125.017 371.346 125.25 371.193 125.53V129H370.343V123.97H371.143L371.173 124.87H371.193C371.326 124.583 371.539 124.347 371.833 124.16C372.126 123.967 372.496 123.87 372.943 123.87C373.443 123.87 373.839 124.003 374.133 124.27C374.426 124.53 374.573 124.93 374.573 125.47V129H373.713V125.51C373.713 125.15 373.626 124.9 373.453 124.76C373.279 124.62 373.036 124.55 372.723 124.55ZM375.239 129.47H379.219V130.12H375.239V129.47ZM381.262 129.1C381.016 129.1 380.802 129.087 380.622 129.06C380.442 129.04 380.282 129.013 380.142 128.98C380.002 128.94 379.879 128.897 379.772 128.85C379.672 128.803 379.579 128.753 379.492 128.7L379.772 127.99C379.819 128.03 379.886 128.077 379.972 128.13C380.059 128.177 380.166 128.227 380.292 128.28C380.419 128.327 380.562 128.367 380.722 128.4C380.889 128.433 381.069 128.45 381.262 128.45C381.622 128.45 381.896 128.38 382.082 128.24C382.269 128.093 382.362 127.893 382.362 127.64C382.362 127.427 382.286 127.257 382.132 127.13C381.979 127.003 381.716 126.883 381.342 126.77C381.129 126.703 380.922 126.637 380.722 126.57C380.529 126.497 380.356 126.407 380.202 126.3C380.049 126.187 379.926 126.05 379.832 125.89C379.739 125.723 379.692 125.513 379.692 125.26C379.692 124.793 379.856 124.447 380.182 124.22C380.509 123.987 380.959 123.87 381.532 123.87C381.879 123.87 382.176 123.9 382.422 123.96C382.669 124.013 382.869 124.077 383.022 124.15L382.822 124.85C382.689 124.777 382.522 124.7 382.322 124.62C382.122 124.54 381.869 124.5 381.562 124.5C381.242 124.5 380.982 124.553 380.782 124.66C380.589 124.76 380.492 124.943 380.492 125.21C380.492 125.33 380.522 125.433 380.582 125.52C380.642 125.607 380.722 125.683 380.822 125.75C380.929 125.81 381.049 125.863 381.182 125.91C381.322 125.957 381.466 126 381.612 126.04C381.806 126.1 381.999 126.167 382.192 126.24C382.386 126.307 382.556 126.397 382.702 126.51C382.856 126.623 382.979 126.767 383.072 126.94C383.166 127.107 383.212 127.32 383.212 127.58C383.212 127.853 383.156 128.087 383.042 128.28C382.936 128.467 382.792 128.623 382.612 128.75C382.432 128.87 382.226 128.957 381.992 129.01C381.759 129.07 381.516 129.1 381.262 129.1Z" fill="black"/><path d="M249.25 157.05V159.11H248.45V157.05H246.51V156.41H248.45V154.35H249.25V156.41H251.19V157.05H249.25ZM252.382 152.72H258.422V153.521H253.598L256.562 157.305L253.393 161.318H258.471V162.104H252.299V161.191L255.326 157.344L252.382 153.574V152.72ZM263.175 152.75V160H262.325V152.75H263.175ZM266.711 160.1C266.384 160.1 266.074 160.043 265.781 159.93C265.488 159.81 265.231 159.64 265.011 159.42C264.791 159.193 264.614 158.92 264.481 158.6C264.354 158.273 264.291 157.9 264.291 157.48C264.291 157.06 264.354 156.69 264.481 156.37C264.614 156.043 264.791 155.77 265.011 155.55C265.231 155.33 265.488 155.163 265.781 155.05C266.074 154.93 266.384 154.87 266.711 154.87C267.038 154.87 267.348 154.93 267.641 155.05C267.941 155.163 268.201 155.33 268.421 155.55C268.648 155.77 268.828 156.043 268.961 156.37C269.094 156.69 269.161 157.06 269.161 157.48C269.161 157.9 269.094 158.273 268.961 158.6C268.828 158.92 268.648 159.193 268.421 159.42C268.201 159.64 267.941 159.81 267.641 159.93C267.348 160.043 267.038 160.1 266.711 160.1ZM266.711 159.47C266.911 159.47 267.104 159.437 267.291 159.37C267.484 159.297 267.654 159.18 267.801 159.02C267.948 158.86 268.064 158.653 268.151 158.4C268.244 158.147 268.291 157.84 268.291 157.48C268.291 157.12 268.244 156.817 268.151 156.57C268.064 156.317 267.948 156.11 267.801 155.95C267.654 155.79 267.484 155.677 267.291 155.61C267.104 155.537 266.911 155.5 266.711 155.5C266.511 155.5 266.318 155.537 266.131 155.61C265.951 155.677 265.788 155.79 265.641 155.95C265.494 156.11 265.378 156.317 265.291 156.57C265.204 156.817 265.161 157.12 265.161 157.48C265.161 157.84 265.204 158.147 265.291 158.4C265.378 158.653 265.494 158.86 265.641 159.02C265.788 159.18 265.951 159.297 266.131 159.37C266.318 159.437 266.511 159.47 266.711 159.47ZM272.474 160.1C272.128 160.1 271.801 160.043 271.494 159.93C271.194 159.81 270.931 159.637 270.704 159.41C270.484 159.183 270.308 158.91 270.174 158.59C270.048 158.263 269.984 157.893 269.984 157.48C269.984 157.073 270.048 156.71 270.174 156.39C270.308 156.063 270.488 155.787 270.714 155.56C270.948 155.333 271.221 155.163 271.534 155.05C271.848 154.93 272.184 154.87 272.544 154.87C272.844 154.87 273.114 154.9 273.354 154.96C273.594 155.02 273.794 155.103 273.954 155.21L273.704 155.97C273.511 155.83 273.321 155.723 273.134 155.65C272.954 155.57 272.738 155.53 272.484 155.53C272.264 155.53 272.054 155.573 271.854 155.66C271.654 155.74 271.481 155.863 271.334 156.03C271.188 156.19 271.071 156.393 270.984 156.64C270.898 156.88 270.854 157.16 270.854 157.48C270.854 158.133 271.011 158.62 271.324 158.94C271.638 159.26 272.064 159.42 272.604 159.42C272.784 159.42 272.978 159.387 273.184 159.32C273.398 159.253 273.591 159.157 273.764 159.03L273.954 159.66C273.781 159.793 273.568 159.9 273.314 159.98C273.068 160.06 272.788 160.1 272.474 160.1ZM276.462 159.48C276.815 159.48 277.095 159.393 277.302 159.22C277.515 159.04 277.672 158.837 277.772 158.61V157.66H277.332C276.685 157.66 276.218 157.73 275.932 157.87C275.652 158.003 275.512 158.263 275.512 158.65C275.512 158.923 275.605 159.13 275.792 159.27C275.985 159.41 276.208 159.48 276.462 159.48ZM277.932 160C277.905 159.907 277.882 159.797 277.862 159.67C277.842 159.543 277.825 159.407 277.812 159.26C277.752 159.36 277.678 159.46 277.592 159.56C277.512 159.66 277.412 159.75 277.292 159.83C277.172 159.91 277.028 159.973 276.862 160.02C276.695 160.073 276.502 160.1 276.282 160.1C276.062 160.1 275.855 160.07 275.662 160.01C275.468 159.95 275.295 159.86 275.142 159.74C274.995 159.62 274.878 159.473 274.792 159.3C274.705 159.127 274.662 158.927 274.662 158.7C274.662 158.153 274.878 157.757 275.312 157.51C275.752 157.257 276.398 157.13 277.252 157.13H277.772V156.72C277.772 156.313 277.685 156.01 277.512 155.81C277.338 155.61 277.032 155.51 276.592 155.51C276.292 155.51 276.018 155.567 275.772 155.68C275.532 155.787 275.318 155.917 275.132 156.07L274.902 155.37C274.982 155.31 275.085 155.25 275.212 155.19C275.338 155.13 275.482 155.077 275.642 155.03C275.802 154.983 275.972 154.947 276.152 154.92C276.332 154.887 276.515 154.87 276.702 154.87C277.335 154.87 277.812 155.01 278.132 155.29C278.458 155.563 278.622 156 278.622 156.6V159.19C278.622 159.303 278.628 159.447 278.642 159.62C278.655 159.787 278.672 159.913 278.692 160H277.932ZM282.471 159.91C282.365 159.963 282.235 160.007 282.081 160.04C281.928 160.08 281.758 160.1 281.571 160.1C281.098 160.1 280.748 159.977 280.521 159.73C280.295 159.477 280.181 159.11 280.181 158.63V155.59H279.581V154.97H280.181V154.01H281.041V154.97H282.301V155.59H281.041V158.59C281.041 158.863 281.085 159.07 281.171 159.21C281.258 159.343 281.418 159.41 281.651 159.41C281.765 159.41 281.881 159.397 282.001 159.37C282.121 159.343 282.228 159.307 282.321 159.26L282.471 159.91ZM283.898 154.21C283.731 154.21 283.598 154.16 283.498 154.06C283.404 153.96 283.358 153.833 283.358 153.68C283.358 153.527 283.404 153.397 283.498 153.29C283.598 153.183 283.731 153.13 283.898 153.13C284.058 153.13 284.188 153.183 284.288 153.29C284.388 153.397 284.438 153.527 284.438 153.68C284.438 153.833 284.388 153.96 284.288 154.06C284.188 154.16 284.058 154.21 283.898 154.21ZM284.328 154.97V160H283.478V154.97H284.328ZM287.853 160.1C287.527 160.1 287.217 160.043 286.923 159.93C286.63 159.81 286.373 159.64 286.153 159.42C285.933 159.193 285.757 158.92 285.623 158.6C285.497 158.273 285.433 157.9 285.433 157.48C285.433 157.06 285.497 156.69 285.623 156.37C285.757 156.043 285.933 155.77 286.153 155.55C286.373 155.33 286.63 155.163 286.923 155.05C287.217 154.93 287.527 154.87 287.853 154.87C288.18 154.87 288.49 154.93 288.783 155.05C289.083 155.163 289.343 155.33 289.563 155.55C289.79 155.77 289.97 156.043 290.103 156.37C290.237 156.69 290.303 157.06 290.303 157.48C290.303 157.9 290.237 158.273 290.103 158.6C289.97 158.92 289.79 159.193 289.563 159.42C289.343 159.64 289.083 159.81 288.783 159.93C288.49 160.043 288.18 160.1 287.853 160.1ZM287.853 159.47C288.053 159.47 288.247 159.437 288.433 159.37C288.627 159.297 288.797 159.18 288.943 159.02C289.09 158.86 289.207 158.653 289.293 158.4C289.387 158.147 289.433 157.84 289.433 157.48C289.433 157.12 289.387 156.817 289.293 156.57C289.207 156.317 289.09 156.11 288.943 155.95C288.797 155.79 288.627 155.677 288.433 155.61C288.247 155.537 288.053 155.5 287.853 155.5C287.653 155.5 287.46 155.537 287.273 155.61C287.093 155.677 286.93 155.79 286.783 155.95C286.637 156.11 286.52 156.317 286.433 156.57C286.347 156.817 286.303 157.12 286.303 157.48C286.303 157.84 286.347 158.147 286.433 158.4C286.52 158.653 286.637 158.86 286.783 159.02C286.93 159.18 287.093 159.297 287.273 159.37C287.46 159.437 287.653 159.47 287.853 159.47ZM293.807 155.55C293.42 155.55 293.107 155.643 292.867 155.83C292.627 156.017 292.43 156.25 292.277 156.53V160H291.427V154.97H292.227L292.257 155.87H292.277C292.41 155.583 292.623 155.347 292.917 155.16C293.21 154.967 293.58 154.87 294.027 154.87C294.527 154.87 294.923 155.003 295.217 155.27C295.51 155.53 295.657 155.93 295.657 156.47V160H294.797V156.51C294.797 156.15 294.71 155.9 294.537 155.76C294.363 155.62 294.12 155.55 293.807 155.55ZM297.393 160.06C297.226 160.06 297.086 160.007 296.972 159.9C296.866 159.787 296.813 159.653 296.813 159.5C296.813 159.333 296.866 159.197 296.972 159.09C297.086 158.983 297.226 158.93 297.393 158.93C297.559 158.93 297.696 158.983 297.803 159.09C297.909 159.197 297.963 159.333 297.963 159.5C297.963 159.653 297.909 159.787 297.803 159.9C297.696 160.007 297.559 160.06 297.393 160.06ZM303.449 159.49C303.669 159.49 303.879 159.45 304.079 159.37C304.279 159.29 304.456 159.17 304.609 159.01C304.762 158.843 304.882 158.637 304.969 158.39C305.062 158.137 305.109 157.84 305.109 157.5C305.109 157.16 305.062 156.867 304.969 156.62C304.882 156.367 304.762 156.157 304.609 155.99C304.456 155.817 304.279 155.69 304.079 155.61C303.879 155.523 303.669 155.48 303.449 155.48C303.249 155.48 303.056 155.523 302.869 155.61C302.689 155.697 302.529 155.823 302.389 155.99C302.249 156.157 302.136 156.367 302.049 156.62C301.969 156.867 301.929 157.153 301.929 157.48C301.929 157.813 301.969 158.107 302.049 158.36C302.136 158.613 302.249 158.823 302.389 158.99C302.529 159.157 302.689 159.283 302.869 159.37C303.056 159.45 303.249 159.49 303.449 159.49ZM305.039 159.03C304.879 159.35 304.656 159.61 304.369 159.81C304.089 160.003 303.739 160.1 303.319 160.1C303.039 160.1 302.762 160.047 302.489 159.94C302.222 159.833 301.982 159.673 301.769 159.46C301.556 159.24 301.382 158.967 301.249 158.64C301.122 158.307 301.059 157.92 301.059 157.48C301.059 157.04 301.122 156.657 301.249 156.33C301.382 155.997 301.556 155.723 301.769 155.51C301.982 155.297 302.226 155.137 302.499 155.03C302.772 154.923 303.049 154.87 303.329 154.87C303.702 154.87 304.029 154.947 304.309 155.1C304.589 155.247 304.816 155.46 304.989 155.74V152.75H305.839V160H305.139L305.039 159.03ZM309.267 155.48C308.907 155.48 308.597 155.607 308.337 155.86C308.084 156.113 307.924 156.497 307.857 157.01H310.407C310.447 156.49 310.357 156.107 310.137 155.86C309.924 155.607 309.634 155.48 309.267 155.48ZM311.117 159.57C310.937 159.723 310.704 159.85 310.417 159.95C310.13 160.05 309.804 160.1 309.437 160.1C308.637 160.1 308.024 159.873 307.597 159.42C307.17 158.96 306.957 158.313 306.957 157.48C306.957 157.073 307.017 156.71 307.137 156.39C307.257 156.063 307.42 155.787 307.627 155.56C307.84 155.333 308.087 155.163 308.367 155.05C308.654 154.93 308.96 154.87 309.287 154.87C309.627 154.87 309.93 154.93 310.197 155.05C310.47 155.163 310.694 155.337 310.867 155.57C311.047 155.797 311.167 156.083 311.227 156.43C311.294 156.77 311.294 157.163 311.227 157.61H307.827C307.867 158.817 308.43 159.42 309.517 159.42C309.804 159.42 310.06 159.377 310.287 159.29C310.514 159.203 310.724 159.093 310.917 158.96L311.117 159.57ZM314.794 159.49C315.24 159.49 315.6 159.333 315.874 159.02C316.154 158.7 316.294 158.187 316.294 157.48C316.294 156.787 316.154 156.28 315.874 155.96C315.6 155.633 315.24 155.47 314.794 155.47C314.574 155.47 314.364 155.51 314.164 155.59C313.964 155.663 313.787 155.783 313.634 155.95C313.487 156.11 313.37 156.317 313.284 156.57C313.197 156.823 313.154 157.127 313.154 157.48C313.154 157.84 313.197 158.147 313.284 158.4C313.37 158.653 313.487 158.86 313.634 159.02C313.787 159.18 313.964 159.3 314.164 159.38C314.364 159.453 314.574 159.49 314.794 159.49ZM314.924 160.1C314.55 160.1 314.22 160.02 313.934 159.86C313.654 159.693 313.424 159.467 313.244 159.18V161.87H312.394V154.97H313.144L313.204 155.86C313.384 155.56 313.617 155.32 313.904 155.14C314.197 154.96 314.55 154.87 314.964 154.87C315.257 154.87 315.537 154.923 315.804 155.03C316.07 155.137 316.304 155.297 316.504 155.51C316.71 155.723 316.874 155.997 316.994 156.33C317.114 156.657 317.174 157.04 317.174 157.48C317.174 157.92 317.11 158.307 316.984 158.64C316.864 158.967 316.7 159.24 316.494 159.46C316.287 159.673 316.047 159.833 315.774 159.94C315.507 160.047 315.224 160.1 314.924 160.1ZM320.412 160.1C320.085 160.1 319.775 160.043 319.482 159.93C319.189 159.81 318.932 159.64 318.712 159.42C318.492 159.193 318.315 158.92 318.182 158.6C318.055 158.273 317.992 157.9 317.992 157.48C317.992 157.06 318.055 156.69 318.182 156.37C318.315 156.043 318.492 155.77 318.712 155.55C318.932 155.33 319.189 155.163 319.482 155.05C319.775 154.93 320.085 154.87 320.412 154.87C320.739 154.87 321.049 154.93 321.342 155.05C321.642 155.163 321.902 155.33 322.122 155.55C322.349 155.77 322.529 156.043 322.662 156.37C322.795 156.69 322.862 157.06 322.862 157.48C322.862 157.9 322.795 158.273 322.662 158.6C322.529 158.92 322.349 159.193 322.122 159.42C321.902 159.64 321.642 159.81 321.342 159.93C321.049 160.043 320.739 160.1 320.412 160.1ZM320.412 159.47C320.612 159.47 320.805 159.437 320.992 159.37C321.185 159.297 321.355 159.18 321.502 159.02C321.649 158.86 321.765 158.653 321.852 158.4C321.945 158.147 321.992 157.84 321.992 157.48C321.992 157.12 321.945 156.817 321.852 156.57C321.765 156.317 321.649 156.11 321.502 155.95C321.355 155.79 321.185 155.677 320.992 155.61C320.805 155.537 320.612 155.5 320.412 155.5C320.212 155.5 320.019 155.537 319.832 155.61C319.652 155.677 319.489 155.79 319.342 155.95C319.195 156.11 319.079 156.317 318.992 156.57C318.905 156.817 318.862 157.12 318.862 157.48C318.862 157.84 318.905 158.147 318.992 158.4C319.079 158.653 319.195 158.86 319.342 159.02C319.489 159.18 319.652 159.297 319.832 159.37C320.019 159.437 320.212 159.47 320.412 159.47ZM326.465 159.91C326.359 159.963 326.229 160.007 326.075 160.04C325.922 160.08 325.752 160.1 325.565 160.1C325.092 160.1 324.742 159.977 324.515 159.73C324.289 159.477 324.175 159.11 324.175 158.63V155.59H323.575V154.97H324.175V154.01H325.035V154.97H326.295V155.59H325.035V158.59C325.035 158.863 325.079 159.07 325.165 159.21C325.252 159.343 325.412 159.41 325.645 159.41C325.759 159.41 325.875 159.397 325.995 159.37C326.115 159.343 326.222 159.307 326.315 159.26L326.465 159.91ZM326.772 160.47H330.752V161.12H326.772V160.47ZM333.596 159.49C333.816 159.49 334.026 159.45 334.226 159.37C334.426 159.29 334.602 159.17 334.756 159.01C334.909 158.843 335.029 158.637 335.116 158.39C335.209 158.137 335.256 157.84 335.256 157.5C335.256 157.16 335.209 156.867 335.116 156.62C335.029 156.367 334.909 156.157 334.756 155.99C334.602 155.817 334.426 155.69 334.226 155.61C334.026 155.523 333.816 155.48 333.596 155.48C333.396 155.48 333.202 155.523 333.016 155.61C332.836 155.697 332.676 155.823 332.536 155.99C332.396 156.157 332.282 156.367 332.196 156.62C332.116 156.867 332.076 157.153 332.076 157.48C332.076 157.813 332.116 158.107 332.196 158.36C332.282 158.613 332.396 158.823 332.536 158.99C332.676 159.157 332.836 159.283 333.016 159.37C333.202 159.45 333.396 159.49 333.596 159.49ZM335.186 159.03C335.026 159.35 334.802 159.61 334.516 159.81C334.236 160.003 333.886 160.1 333.466 160.1C333.186 160.1 332.909 160.047 332.636 159.94C332.369 159.833 332.129 159.673 331.916 159.46C331.702 159.24 331.529 158.967 331.396 158.64C331.269 158.307 331.206 157.92 331.206 157.48C331.206 157.04 331.269 156.657 331.396 156.33C331.529 155.997 331.702 155.723 331.916 155.51C332.129 155.297 332.372 155.137 332.646 155.03C332.919 154.923 333.196 154.87 333.476 154.87C333.849 154.87 334.176 154.947 334.456 155.1C334.736 155.247 334.962 155.46 335.136 155.74V152.75H335.986V160H335.286L335.186 159.03ZM340.643 159.1C340.51 159.38 340.3 159.617 340.013 159.81C339.733 160.003 339.367 160.1 338.913 160.1C338.447 160.1 338.07 159.96 337.783 159.68C337.497 159.393 337.353 158.953 337.353 158.36V154.97H338.213V158.36C338.213 158.56 338.237 158.727 338.283 158.86C338.33 158.993 338.397 159.1 338.483 159.18C338.57 159.26 338.67 159.317 338.783 159.35C338.897 159.383 339.02 159.4 339.153 159.4C339.527 159.4 339.827 159.31 340.053 159.13C340.287 158.95 340.483 158.703 340.643 158.39V154.97H341.493V160H340.743L340.663 159.1H340.643ZM345.401 155.77C345.228 155.757 345.058 155.77 344.891 155.81C344.725 155.85 344.568 155.913 344.421 156C344.281 156.087 344.151 156.193 344.031 156.32C343.918 156.447 343.828 156.587 343.761 156.74V160H342.911V154.97H343.661L343.741 156.06H343.761C343.828 155.913 343.911 155.773 344.011 155.64C344.118 155.5 344.238 155.38 344.371 155.28C344.511 155.173 344.665 155.087 344.831 155.02C345.005 154.953 345.195 154.92 345.401 154.92V155.77ZM347.809 159.48C348.163 159.48 348.443 159.393 348.649 159.22C348.863 159.04 349.019 158.837 349.119 158.61V157.66H348.679C348.033 157.66 347.566 157.73 347.279 157.87C346.999 158.003 346.859 158.263 346.859 158.65C346.859 158.923 346.953 159.13 347.139 159.27C347.333 159.41 347.556 159.48 347.809 159.48ZM349.279 160C349.253 159.907 349.229 159.797 349.209 159.67C349.189 159.543 349.173 159.407 349.159 159.26C349.099 159.36 349.026 159.46 348.939 159.56C348.859 159.66 348.759 159.75 348.639 159.83C348.519 159.91 348.376 159.973 348.209 160.02C348.043 160.073 347.849 160.1 347.629 160.1C347.409 160.1 347.203 160.07 347.009 160.01C346.816 159.95 346.643 159.86 346.489 159.74C346.343 159.62 346.226 159.473 346.139 159.3C346.053 159.127 346.009 158.927 346.009 158.7C346.009 158.153 346.226 157.757 346.659 157.51C347.099 157.257 347.746 157.13 348.599 157.13H349.119V156.72C349.119 156.313 349.033 156.01 348.859 155.81C348.686 155.61 348.379 155.51 347.939 155.51C347.639 155.51 347.366 155.567 347.119 155.68C346.879 155.787 346.666 155.917 346.479 156.07L346.249 155.37C346.329 155.31 346.433 155.25 346.559 155.19C346.686 155.13 346.829 155.077 346.989 155.03C347.149 154.983 347.319 154.947 347.499 154.92C347.679 154.887 347.863 154.87 348.049 154.87C348.683 154.87 349.159 155.01 349.479 155.29C349.806 155.563 349.969 156 349.969 156.6V159.19C349.969 159.303 349.976 159.447 349.989 159.62C350.003 159.787 350.019 159.913 350.039 160H349.279ZM353.819 159.91C353.712 159.963 353.582 160.007 353.429 160.04C353.276 160.08 353.106 160.1 352.919 160.1C352.446 160.1 352.096 159.977 351.869 159.73C351.642 159.477 351.529 159.11 351.529 158.63V155.59H350.929V154.97H351.529V154.01H352.389V154.97H353.649V155.59H352.389V158.59C352.389 158.863 352.432 159.07 352.519 159.21C352.606 159.343 352.766 159.41 352.999 159.41C353.112 159.41 353.229 159.397 353.349 159.37C353.469 159.343 353.576 159.307 353.669 159.26L353.819 159.91ZM355.245 154.21C355.079 154.21 354.945 154.16 354.845 154.06C354.752 153.96 354.705 153.833 354.705 153.68C354.705 153.527 354.752 153.397 354.845 153.29C354.945 153.183 355.079 153.13 355.245 153.13C355.405 153.13 355.535 153.183 355.635 153.29C355.735 153.397 355.785 153.527 355.785 153.68C355.785 153.833 355.735 153.96 355.635 154.06C355.535 154.16 355.405 154.21 355.245 154.21ZM355.675 154.97V160H354.825V154.97H355.675ZM359.201 160.1C358.874 160.1 358.564 160.043 358.271 159.93C357.978 159.81 357.721 159.64 357.501 159.42C357.281 159.193 357.104 158.92 356.971 158.6C356.844 158.273 356.781 157.9 356.781 157.48C356.781 157.06 356.844 156.69 356.971 156.37C357.104 156.043 357.281 155.77 357.501 155.55C357.721 155.33 357.978 155.163 358.271 155.05C358.564 154.93 358.874 154.87 359.201 154.87C359.528 154.87 359.838 154.93 360.131 155.05C360.431 155.163 360.691 155.33 360.911 155.55C361.138 155.77 361.318 156.043 361.451 156.37C361.584 156.69 361.651 157.06 361.651 157.48C361.651 157.9 361.584 158.273 361.451 158.6C361.318 158.92 361.138 159.193 360.911 159.42C360.691 159.64 360.431 159.81 360.131 159.93C359.838 160.043 359.528 160.1 359.201 160.1ZM359.201 159.47C359.401 159.47 359.594 159.437 359.781 159.37C359.974 159.297 360.144 159.18 360.291 159.02C360.438 158.86 360.554 158.653 360.641 158.4C360.734 158.147 360.781 157.84 360.781 157.48C360.781 157.12 360.734 156.817 360.641 156.57C360.554 156.317 360.438 156.11 360.291 155.95C360.144 155.79 359.974 155.677 359.781 155.61C359.594 155.537 359.401 155.5 359.201 155.5C359.001 155.5 358.808 155.537 358.621 155.61C358.441 155.677 358.278 155.79 358.131 155.95C357.984 156.11 357.868 156.317 357.781 156.57C357.694 156.817 357.651 157.12 357.651 157.48C357.651 157.84 357.694 158.147 357.781 158.4C357.868 158.653 357.984 158.86 358.131 159.02C358.278 159.18 358.441 159.297 358.621 159.37C358.808 159.437 359.001 159.47 359.201 159.47ZM365.154 155.55C364.768 155.55 364.454 155.643 364.214 155.83C363.974 156.017 363.778 156.25 363.624 156.53V160H362.774V154.97H363.574L363.604 155.87H363.624C363.758 155.583 363.971 155.347 364.264 155.16C364.558 154.967 364.928 154.87 365.374 154.87C365.874 154.87 366.271 155.003 366.564 155.27C366.858 155.53 367.004 155.93 367.004 156.47V160H366.144V156.51C366.144 156.15 366.058 155.9 365.884 155.76C365.711 155.62 365.468 155.55 365.154 155.55ZM367.67 160.47H371.65V161.12H367.67V160.47ZM373.694 160.1C373.447 160.1 373.234 160.087 373.054 160.06C372.874 160.04 372.714 160.013 372.574 159.98C372.434 159.94 372.311 159.897 372.204 159.85C372.104 159.803 372.011 159.753 371.924 159.7L372.204 158.99C372.251 159.03 372.317 159.077 372.404 159.13C372.491 159.177 372.597 159.227 372.724 159.28C372.851 159.327 372.994 159.367 373.154 159.4C373.321 159.433 373.501 159.45 373.694 159.45C374.054 159.45 374.327 159.38 374.514 159.24C374.701 159.093 374.794 158.893 374.794 158.64C374.794 158.427 374.717 158.257 374.564 158.13C374.411 158.003 374.147 157.883 373.774 157.77C373.561 157.703 373.354 157.637 373.154 157.57C372.961 157.497 372.787 157.407 372.634 157.3C372.481 157.187 372.357 157.05 372.264 156.89C372.171 156.723 372.124 156.513 372.124 156.26C372.124 155.793 372.287 155.447 372.614 155.22C372.941 154.987 373.391 154.87 373.964 154.87C374.311 154.87 374.607 154.9 374.854 154.96C375.101 155.013 375.301 155.077 375.454 155.15L375.254 155.85C375.121 155.777 374.954 155.7 374.754 155.62C374.554 155.54 374.301 155.5 373.994 155.5C373.674 155.5 373.414 155.553 373.214 155.66C373.021 155.76 372.924 155.943 372.924 156.21C372.924 156.33 372.954 156.433 373.014 156.52C373.074 156.607 373.154 156.683 373.254 156.75C373.361 156.81 373.481 156.863 373.614 156.91C373.754 156.957 373.897 157 374.044 157.04C374.237 157.1 374.431 157.167 374.624 157.24C374.817 157.307 374.987 157.397 375.134 157.51C375.287 157.623 375.411 157.767 375.504 157.94C375.597 158.107 375.644 158.32 375.644 158.58C375.644 158.853 375.587 159.087 375.474 159.28C375.367 159.467 375.224 159.623 375.044 159.75C374.864 159.87 374.657 159.957 374.424 160.01C374.191 160.07 373.947 160.1 373.694 160.1ZM248.4 174.35C248.1 174.063 247.843 173.753 247.63 173.42C247.423 173.087 247.253 172.737 247.12 172.37C246.993 172.003 246.9 171.623 246.84 171.23C246.787 170.837 246.76 170.433 246.76 170.02C246.76 169.613 246.787 169.207 246.84 168.8C246.9 168.387 246.993 167.993 247.12 167.62C247.253 167.247 247.423 166.893 247.63 166.56C247.843 166.227 248.1 165.93 248.4 165.67H249.09C248.83 165.923 248.603 166.217 248.41 166.55C248.223 166.877 248.067 167.227 247.94 167.6C247.82 167.973 247.73 168.363 247.67 168.77C247.61 169.177 247.58 169.583 247.58 169.99C247.58 170.817 247.7 171.603 247.94 172.35C248.187 173.097 248.57 173.763 249.09 174.35H248.4ZM252.508 172.49C252.955 172.49 253.315 172.333 253.588 172.02C253.868 171.7 254.008 171.187 254.008 170.48C254.008 169.787 253.868 169.28 253.588 168.96C253.315 168.633 252.955 168.47 252.508 168.47C252.288 168.47 252.078 168.51 251.878 168.59C251.678 168.663 251.502 168.783 251.348 168.95C251.202 169.11 251.085 169.317 250.998 169.57C250.912 169.823 250.868 170.127 250.868 170.48C250.868 170.84 250.912 171.147 250.998 171.4C251.085 171.653 251.202 171.86 251.348 172.02C251.502 172.18 251.678 172.3 251.878 172.38C252.078 172.453 252.288 172.49 252.508 172.49ZM252.638 173.1C252.265 173.1 251.935 173.02 251.648 172.86C251.368 172.693 251.138 172.467 250.958 172.18V174.87H250.108V167.97H250.858L250.918 168.86C251.098 168.56 251.332 168.32 251.618 168.14C251.912 167.96 252.265 167.87 252.678 167.87C252.972 167.87 253.252 167.923 253.518 168.03C253.785 168.137 254.018 168.297 254.218 168.51C254.425 168.723 254.588 168.997 254.708 169.33C254.828 169.657 254.888 170.04 254.888 170.48C254.888 170.92 254.825 171.307 254.698 171.64C254.578 171.967 254.415 172.24 254.208 172.46C254.002 172.673 253.762 172.833 253.488 172.94C253.222 173.047 252.938 173.1 252.638 173.1ZM256.427 167.21C256.26 167.21 256.127 167.16 256.027 167.06C255.934 166.96 255.887 166.833 255.887 166.68C255.887 166.527 255.934 166.397 256.027 166.29C256.127 166.183 256.26 166.13 256.427 166.13C256.587 166.13 256.717 166.183 256.817 166.29C256.917 166.397 256.967 166.527 256.967 166.68C256.967 166.833 256.917 166.96 256.817 167.06C256.717 167.16 256.587 167.21 256.427 167.21ZM256.857 167.97V173H256.007V167.97H256.857ZM260.453 173.1C260.106 173.1 259.779 173.043 259.473 172.93C259.173 172.81 258.909 172.637 258.683 172.41C258.463 172.183 258.286 171.91 258.153 171.59C258.026 171.263 257.963 170.893 257.963 170.48C257.963 170.073 258.026 169.71 258.153 169.39C258.286 169.063 258.466 168.787 258.693 168.56C258.926 168.333 259.199 168.163 259.513 168.05C259.826 167.93 260.163 167.87 260.523 167.87C260.823 167.87 261.093 167.9 261.333 167.96C261.573 168.02 261.773 168.103 261.933 168.21L261.683 168.97C261.489 168.83 261.299 168.723 261.113 168.65C260.933 168.57 260.716 168.53 260.463 168.53C260.243 168.53 260.033 168.573 259.833 168.66C259.633 168.74 259.459 168.863 259.313 169.03C259.166 169.19 259.049 169.393 258.963 169.64C258.876 169.88 258.833 170.16 258.833 170.48C258.833 171.133 258.989 171.62 259.303 171.94C259.616 172.26 260.043 172.42 260.583 172.42C260.763 172.42 260.956 172.387 261.163 172.32C261.376 172.253 261.569 172.157 261.743 172.03L261.933 172.66C261.759 172.793 261.546 172.9 261.293 172.98C261.046 173.06 260.766 173.1 260.453 173.1ZM263.8 165.75V173H262.95V165.75H263.8ZM266.03 173L263.93 170.32L266 167.97H266.89L264.84 170.22L267.03 173H266.03ZM271.161 172.1C271.028 172.38 270.818 172.617 270.531 172.81C270.251 173.003 269.884 173.1 269.431 173.1C268.964 173.1 268.588 172.96 268.301 172.68C268.014 172.393 267.871 171.953 267.871 171.36V167.97H268.731V171.36C268.731 171.56 268.754 171.727 268.801 171.86C268.848 171.993 268.914 172.1 269.001 172.18C269.088 172.26 269.188 172.317 269.301 172.35C269.414 172.383 269.538 172.4 269.671 172.4C270.044 172.4 270.344 172.31 270.571 172.13C270.804 171.95 271.001 171.703 271.161 171.39V167.97H272.011V173H271.261L271.181 172.1H271.161ZM275.829 172.49C276.275 172.49 276.635 172.333 276.909 172.02C277.189 171.7 277.329 171.187 277.329 170.48C277.329 169.787 277.189 169.28 276.909 168.96C276.635 168.633 276.275 168.47 275.829 168.47C275.609 168.47 275.399 168.51 275.199 168.59C274.999 168.663 274.822 168.783 274.669 168.95C274.522 169.11 274.405 169.317 274.319 169.57C274.232 169.823 274.189 170.127 274.189 170.48C274.189 170.84 274.232 171.147 274.319 171.4C274.405 171.653 274.522 171.86 274.669 172.02C274.822 172.18 274.999 172.3 275.199 172.38C275.399 172.453 275.609 172.49 275.829 172.49ZM275.959 173.1C275.585 173.1 275.255 173.02 274.969 172.86C274.689 172.693 274.459 172.467 274.279 172.18V174.87H273.429V167.97H274.179L274.239 168.86C274.419 168.56 274.652 168.32 274.939 168.14C275.232 167.96 275.585 167.87 275.999 167.87C276.292 167.87 276.572 167.923 276.839 168.03C277.105 168.137 277.339 168.297 277.539 168.51C277.745 168.723 277.909 168.997 278.029 169.33C278.149 169.657 278.209 170.04 278.209 170.48C278.209 170.92 278.145 171.307 278.019 171.64C277.899 171.967 277.735 172.24 277.529 172.46C277.322 172.673 277.082 172.833 276.809 172.94C276.542 173.047 276.259 173.1 275.959 173.1ZM283.605 173.1C283.279 173.1 282.969 173.043 282.675 172.93C282.382 172.81 282.125 172.64 281.905 172.42C281.685 172.193 281.509 171.92 281.375 171.6C281.249 171.273 281.185 170.9 281.185 170.48C281.185 170.06 281.249 169.69 281.375 169.37C281.509 169.043 281.685 168.77 281.905 168.55C282.125 168.33 282.382 168.163 282.675 168.05C282.969 167.93 283.279 167.87 283.605 167.87C283.932 167.87 284.242 167.93 284.535 168.05C284.835 168.163 285.095 168.33 285.315 168.55C285.542 168.77 285.722 169.043 285.855 169.37C285.989 169.69 286.055 170.06 286.055 170.48C286.055 170.9 285.989 171.273 285.855 171.6C285.722 171.92 285.542 172.193 285.315 172.42C285.095 172.64 284.835 172.81 284.535 172.93C284.242 173.043 283.932 173.1 283.605 173.1ZM283.605 172.47C283.805 172.47 283.999 172.437 284.185 172.37C284.379 172.297 284.549 172.18 284.695 172.02C284.842 171.86 284.959 171.653 285.045 171.4C285.139 171.147 285.185 170.84 285.185 170.48C285.185 170.12 285.139 169.817 285.045 169.57C284.959 169.317 284.842 169.11 284.695 168.95C284.549 168.79 284.379 168.677 284.185 168.61C283.999 168.537 283.805 168.5 283.605 168.5C283.405 168.5 283.212 168.537 283.025 168.61C282.845 168.677 282.682 168.79 282.535 168.95C282.389 169.11 282.272 169.317 282.185 169.57C282.099 169.817 282.055 170.12 282.055 170.48C282.055 170.84 282.099 171.147 282.185 171.4C282.272 171.653 282.389 171.86 282.535 172.02C282.682 172.18 282.845 172.297 283.025 172.37C283.212 172.437 283.405 172.47 283.605 172.47ZM289.669 168.77C289.495 168.757 289.325 168.77 289.159 168.81C288.992 168.85 288.835 168.913 288.689 169C288.549 169.087 288.419 169.193 288.299 169.32C288.185 169.447 288.095 169.587 288.029 169.74V173H287.179V167.97H287.929L288.009 169.06H288.029C288.095 168.913 288.179 168.773 288.279 168.64C288.385 168.5 288.505 168.38 288.639 168.28C288.779 168.173 288.932 168.087 289.099 168.02C289.272 167.953 289.462 167.92 289.669 167.92V168.77ZM292.805 172.49C293.025 172.49 293.235 172.45 293.435 172.37C293.635 172.29 293.811 172.17 293.965 172.01C294.118 171.843 294.238 171.637 294.325 171.39C294.418 171.137 294.465 170.84 294.465 170.5C294.465 170.16 294.418 169.867 294.325 169.62C294.238 169.367 294.118 169.157 293.965 168.99C293.811 168.817 293.635 168.69 293.435 168.61C293.235 168.523 293.025 168.48 292.805 168.48C292.605 168.48 292.411 168.523 292.225 168.61C292.045 168.697 291.885 168.823 291.745 168.99C291.605 169.157 291.491 169.367 291.405 169.62C291.325 169.867 291.285 170.153 291.285 170.48C291.285 170.813 291.325 171.107 291.405 171.36C291.491 171.613 291.605 171.823 291.745 171.99C291.885 172.157 292.045 172.283 292.225 172.37C292.411 172.45 292.605 172.49 292.805 172.49ZM294.395 172.03C294.235 172.35 294.011 172.61 293.725 172.81C293.445 173.003 293.095 173.1 292.675 173.1C292.395 173.1 292.118 173.047 291.845 172.94C291.578 172.833 291.338 172.673 291.125 172.46C290.911 172.24 290.738 171.967 290.605 171.64C290.478 171.307 290.415 170.92 290.415 170.48C290.415 170.04 290.478 169.657 290.605 169.33C290.738 168.997 290.911 168.723 291.125 168.51C291.338 168.297 291.581 168.137 291.855 168.03C292.128 167.923 292.405 167.87 292.685 167.87C293.058 167.87 293.385 167.947 293.665 168.1C293.945 168.247 294.171 168.46 294.345 168.74V165.75H295.195V173H294.495L294.395 172.03ZM298.622 168.48C298.262 168.48 297.952 168.607 297.692 168.86C297.439 169.113 297.279 169.497 297.212 170.01H299.762C299.802 169.49 299.712 169.107 299.492 168.86C299.279 168.607 298.989 168.48 298.622 168.48ZM300.472 172.57C300.292 172.723 300.059 172.85 299.772 172.95C299.486 173.05 299.159 173.1 298.792 173.1C297.992 173.1 297.379 172.873 296.952 172.42C296.526 171.96 296.312 171.313 296.312 170.48C296.312 170.073 296.372 169.71 296.492 169.39C296.612 169.063 296.776 168.787 296.982 168.56C297.196 168.333 297.442 168.163 297.722 168.05C298.009 167.93 298.316 167.87 298.642 167.87C298.982 167.87 299.286 167.93 299.552 168.05C299.826 168.163 300.049 168.337 300.222 168.57C300.402 168.797 300.522 169.083 300.582 169.43C300.649 169.77 300.649 170.163 300.582 170.61H297.182C297.222 171.817 297.786 172.42 298.872 172.42C299.159 172.42 299.416 172.377 299.642 172.29C299.869 172.203 300.079 172.093 300.272 171.96L300.472 172.57ZM304.239 168.77C304.066 168.757 303.896 168.77 303.729 168.81C303.562 168.85 303.406 168.913 303.259 169C303.119 169.087 302.989 169.193 302.869 169.32C302.756 169.447 302.666 169.587 302.599 169.74V173H301.749V167.97H302.499L302.579 169.06H302.599C302.666 168.913 302.749 168.773 302.849 168.64C302.956 168.5 303.076 168.38 303.209 168.28C303.349 168.173 303.502 168.087 303.669 168.02C303.842 167.953 304.032 167.92 304.239 167.92V168.77ZM306.624 173.1C306.377 173.1 306.164 173.087 305.984 173.06C305.804 173.04 305.644 173.013 305.504 172.98C305.364 172.94 305.24 172.897 305.134 172.85C305.034 172.803 304.94 172.753 304.854 172.7L305.134 171.99C305.18 172.03 305.247 172.077 305.334 172.13C305.42 172.177 305.527 172.227 305.654 172.28C305.78 172.327 305.924 172.367 306.084 172.4C306.25 172.433 306.43 172.45 306.624 172.45C306.984 172.45 307.257 172.38 307.444 172.24C307.63 172.093 307.724 171.893 307.724 171.64C307.724 171.427 307.647 171.257 307.494 171.13C307.34 171.003 307.077 170.883 306.704 170.77C306.49 170.703 306.284 170.637 306.084 170.57C305.89 170.497 305.717 170.407 305.564 170.3C305.41 170.187 305.287 170.05 305.194 169.89C305.1 169.723 305.054 169.513 305.054 169.26C305.054 168.793 305.217 168.447 305.544 168.22C305.87 167.987 306.32 167.87 306.894 167.87C307.24 167.87 307.537 167.9 307.784 167.96C308.03 168.013 308.23 168.077 308.384 168.15L308.184 168.85C308.05 168.777 307.884 168.7 307.684 168.62C307.484 168.54 307.23 168.5 306.924 168.5C306.604 168.5 306.344 168.553 306.144 168.66C305.95 168.76 305.854 168.943 305.854 169.21C305.854 169.33 305.884 169.433 305.944 169.52C306.004 169.607 306.084 169.683 306.184 169.75C306.29 169.81 306.41 169.863 306.544 169.91C306.684 169.957 306.827 170 306.974 170.04C307.167 170.1 307.36 170.167 307.554 170.24C307.747 170.307 307.917 170.397 308.064 170.51C308.217 170.623 308.34 170.767 308.434 170.94C308.527 171.107 308.574 171.32 308.574 171.58C308.574 171.853 308.517 172.087 308.404 172.28C308.297 172.467 308.154 172.623 307.974 172.75C307.794 172.87 307.587 172.957 307.354 173.01C307.12 173.07 306.877 173.1 306.624 173.1ZM309.719 174.35C310.019 174.063 310.273 173.753 310.479 173.42C310.693 173.087 310.863 172.737 310.989 172.37C311.123 172.003 311.216 171.623 311.269 171.23C311.329 170.837 311.359 170.433 311.359 170.02C311.359 169.613 311.329 169.207 311.269 168.8C311.216 168.387 311.123 167.993 310.989 167.62C310.863 167.247 310.693 166.893 310.479 166.56C310.273 166.227 310.019 165.93 309.719 165.67H309.029C309.289 165.923 309.513 166.217 309.699 166.55C309.893 166.877 310.049 167.227 310.169 167.6C310.296 167.973 310.389 168.363 310.449 168.77C310.509 169.177 310.539 169.583 310.539 169.99C310.539 170.817 310.416 171.603 310.169 172.35C309.929 173.097 309.549 173.763 309.029 174.35H309.719Z" fill="black"/><path d="M248.03 222.1C247.783 222.1 247.57 222.087 247.39 222.06C247.21 222.04 247.05 222.013 246.91 221.98C246.77 221.94 246.647 221.897 246.54 221.85C246.44 221.803 246.347 221.753 246.26 221.7L246.54 220.99C246.587 221.03 246.653 221.077 246.74 221.13C246.827 221.177 246.933 221.227 247.06 221.28C247.187 221.327 247.33 221.367 247.49 221.4C247.657 221.433 247.837 221.45 248.03 221.45C248.39 221.45 248.663 221.38 248.85 221.24C249.037 221.093 249.13 220.893 249.13 220.64C249.13 220.427 249.053 220.257 248.9 220.13C248.747 220.003 248.483 219.883 248.11 219.77C247.897 219.703 247.69 219.637 247.49 219.57C247.297 219.497 247.123 219.407 246.97 219.3C246.817 219.187 246.693 219.05 246.6 218.89C246.507 218.723 246.46 218.513 246.46 218.26C246.46 217.793 246.623 217.447 246.95 217.22C247.277 216.987 247.727 216.87 248.3 216.87C248.647 216.87 248.943 216.9 249.19 216.96C249.437 217.013 249.637 217.077 249.79 217.15L249.59 217.85C249.457 217.777 249.29 217.7 249.09 217.62C248.89 217.54 248.637 217.5 248.33 217.5C248.01 217.5 247.75 217.553 247.55 217.66C247.357 217.76 247.26 217.943 247.26 218.21C247.26 218.33 247.29 218.433 247.35 218.52C247.41 218.607 247.49 218.683 247.59 218.75C247.697 218.81 247.817 218.863 247.95 218.91C248.09 218.957 248.233 219 248.38 219.04C248.573 219.1 248.767 219.167 248.96 219.24C249.153 219.307 249.323 219.397 249.47 219.51C249.623 219.623 249.747 219.767 249.84 219.94C249.933 220.107 249.98 220.32 249.98 220.58C249.98 220.853 249.923 221.087 249.81 221.28C249.703 221.467 249.56 221.623 249.38 221.75C249.2 221.87 248.993 221.957 248.76 222.01C248.527 222.07 248.283 222.1 248.03 222.1ZM251.906 222H251.056V214.75H251.906V217.85H251.926C252.059 217.57 252.269 217.337 252.556 217.15C252.842 216.963 253.209 216.87 253.656 216.87C254.149 216.87 254.542 217.003 254.836 217.27C255.129 217.53 255.276 217.93 255.276 218.47V222H254.426V218.51C254.426 218.15 254.339 217.9 254.166 217.76C253.992 217.62 253.749 217.55 253.436 217.55C253.049 217.55 252.736 217.643 252.496 217.83C252.256 218.017 252.059 218.25 251.906 218.53V222ZM257.062 216.21C256.895 216.21 256.762 216.16 256.662 216.06C256.568 215.96 256.522 215.833 256.522 215.68C256.522 215.527 256.568 215.397 256.662 215.29C256.762 215.183 256.895 215.13 257.062 215.13C257.222 215.13 257.352 215.183 257.452 215.29C257.552 215.397 257.602 215.527 257.602 215.68C257.602 215.833 257.552 215.96 257.452 216.06C257.352 216.16 257.222 216.21 257.062 216.21ZM257.492 216.97V222H256.642V216.97H257.492ZM260.048 217.59V222H259.198V217.59H258.588V216.97H259.198V216.5C259.198 215.907 259.344 215.453 259.638 215.14C259.938 214.82 260.348 214.66 260.868 214.66C261.081 214.66 261.248 214.673 261.368 214.7C261.494 214.727 261.588 214.757 261.648 214.79L261.458 215.43C261.404 215.397 261.328 215.37 261.228 215.35C261.128 215.323 261.001 215.31 260.848 215.31C260.581 215.31 260.381 215.413 260.248 215.62C260.114 215.82 260.048 216.113 260.048 216.5V216.97H261.508V217.59H260.048ZM265.01 221.91C264.904 221.963 264.774 222.007 264.62 222.04C264.467 222.08 264.297 222.1 264.11 222.1C263.637 222.1 263.287 221.977 263.06 221.73C262.834 221.477 262.72 221.11 262.72 220.63V217.59H262.12V216.97H262.72V216.01H263.58V216.97H264.84V217.59H263.58V220.59C263.58 220.863 263.624 221.07 263.71 221.21C263.797 221.343 263.957 221.41 264.19 221.41C264.304 221.41 264.42 221.397 264.54 221.37C264.66 221.343 264.767 221.307 264.86 221.26L265.01 221.91ZM267.337 222.1C267.09 222.1 266.877 222.087 266.697 222.06C266.517 222.04 266.357 222.013 266.217 221.98C266.077 221.94 265.953 221.897 265.847 221.85C265.747 221.803 265.653 221.753 265.567 221.7L265.847 220.99C265.893 221.03 265.96 221.077 266.047 221.13C266.133 221.177 266.24 221.227 266.367 221.28C266.493 221.327 266.637 221.367 266.797 221.4C266.963 221.433 267.143 221.45 267.337 221.45C267.697 221.45 267.97 221.38 268.157 221.24C268.343 221.093 268.437 220.893 268.437 220.64C268.437 220.427 268.36 220.257 268.207 220.13C268.053 220.003 267.79 219.883 267.417 219.77C267.203 219.703 266.997 219.637 266.797 219.57C266.603 219.497 266.43 219.407 266.277 219.3C266.123 219.187 266 219.05 265.907 218.89C265.813 218.723 265.767 218.513 265.767 218.26C265.767 217.793 265.93 217.447 266.257 217.22C266.583 216.987 267.033 216.87 267.607 216.87C267.953 216.87 268.25 216.9 268.497 216.96C268.743 217.013 268.943 217.077 269.097 217.15L268.897 217.85C268.763 217.777 268.597 217.7 268.397 217.62C268.197 217.54 267.943 217.5 267.637 217.5C267.317 217.5 267.057 217.553 266.857 217.66C266.663 217.76 266.567 217.943 266.567 218.21C266.567 218.33 266.597 218.433 266.657 218.52C266.717 218.607 266.797 218.683 266.897 218.75C267.003 218.81 267.123 218.863 267.257 218.91C267.397 218.957 267.54 219 267.687 219.04C267.88 219.1 268.073 219.167 268.267 219.24C268.46 219.307 268.63 219.397 268.777 219.51C268.93 219.623 269.053 219.767 269.147 219.94C269.24 220.107 269.287 220.32 269.287 220.58C269.287 220.853 269.23 221.087 269.117 221.28C269.01 221.467 268.867 221.623 268.687 221.75C268.507 221.87 268.3 221.957 268.067 222.01C267.833 222.07 267.59 222.1 267.337 222.1ZM270.732 222.06C270.566 222.06 270.426 222.007 270.312 221.9C270.206 221.787 270.152 221.653 270.152 221.5C270.152 221.333 270.206 221.197 270.312 221.09C270.426 220.983 270.566 220.93 270.732 220.93C270.899 220.93 271.036 220.983 271.142 221.09C271.249 221.197 271.302 221.333 271.302 221.5C271.302 221.653 271.249 221.787 271.142 221.9C271.036 222.007 270.899 222.06 270.732 222.06ZM273.831 222.1C273.584 222.1 273.371 222.087 273.191 222.06C273.011 222.04 272.851 222.013 272.711 221.98C272.571 221.94 272.447 221.897 272.341 221.85C272.241 221.803 272.147 221.753 272.061 221.7L272.341 220.99C272.387 221.03 272.454 221.077 272.541 221.13C272.627 221.177 272.734 221.227 272.861 221.28C272.987 221.327 273.131 221.367 273.291 221.4C273.457 221.433 273.637 221.45 273.831 221.45C274.191 221.45 274.464 221.38 274.651 221.24C274.837 221.093 274.931 220.893 274.931 220.64C274.931 220.427 274.854 220.257 274.701 220.13C274.547 220.003 274.284 219.883 273.911 219.77C273.697 219.703 273.491 219.637 273.291 219.57C273.097 219.497 272.924 219.407 272.771 219.3C272.617 219.187 272.494 219.05 272.401 218.89C272.307 218.723 272.261 218.513 272.261 218.26C272.261 217.793 272.424 217.447 272.751 217.22C273.077 216.987 273.527 216.87 274.101 216.87C274.447 216.87 274.744 216.9 274.991 216.96C275.237 217.013 275.437 217.077 275.591 217.15L275.391 217.85C275.257 217.777 275.091 217.7 274.891 217.62C274.691 217.54 274.437 217.5 274.131 217.5C273.811 217.5 273.551 217.553 273.351 217.66C273.157 217.76 273.061 217.943 273.061 218.21C273.061 218.33 273.091 218.433 273.151 218.52C273.211 218.607 273.291 218.683 273.391 218.75C273.497 218.81 273.617 218.863 273.751 218.91C273.891 218.957 274.034 219 274.181 219.04C274.374 219.1 274.567 219.167 274.761 219.24C274.954 219.307 275.124 219.397 275.271 219.51C275.424 219.623 275.547 219.767 275.641 219.94C275.734 220.107 275.781 220.32 275.781 220.58C275.781 220.853 275.724 221.087 275.611 221.28C275.504 221.467 275.361 221.623 275.181 221.75C275.001 221.87 274.794 221.957 274.561 222.01C274.327 222.07 274.084 222.1 273.831 222.1ZM278.866 217.48C278.506 217.48 278.196 217.607 277.936 217.86C277.683 218.113 277.523 218.497 277.456 219.01H280.006C280.046 218.49 279.956 218.107 279.736 217.86C279.523 217.607 279.233 217.48 278.866 217.48ZM280.716 221.57C280.536 221.723 280.303 221.85 280.016 221.95C279.73 222.05 279.403 222.1 279.036 222.1C278.236 222.1 277.623 221.873 277.196 221.42C276.77 220.96 276.556 220.313 276.556 219.48C276.556 219.073 276.616 218.71 276.736 218.39C276.856 218.063 277.02 217.787 277.226 217.56C277.44 217.333 277.686 217.163 277.966 217.05C278.253 216.93 278.56 216.87 278.886 216.87C279.226 216.87 279.53 216.93 279.796 217.05C280.07 217.163 280.293 217.337 280.466 217.57C280.646 217.797 280.766 218.083 280.826 218.43C280.893 218.77 280.893 219.163 280.826 219.61H277.426C277.466 220.817 278.03 221.42 279.116 221.42C279.403 221.42 279.66 221.377 279.886 221.29C280.113 221.203 280.323 221.093 280.516 220.96L280.716 221.57ZM284.483 217.77C284.31 217.757 284.14 217.77 283.973 217.81C283.807 217.85 283.65 217.913 283.503 218C283.363 218.087 283.233 218.193 283.113 218.32C283 218.447 282.91 218.587 282.843 218.74V222H281.993V216.97H282.743L282.823 218.06H282.843C282.91 217.913 282.993 217.773 283.093 217.64C283.2 217.5 283.32 217.38 283.453 217.28C283.593 217.173 283.747 217.087 283.913 217.02C284.087 216.953 284.277 216.92 284.483 216.92V217.77ZM285.124 216.97H286.014L287.464 221.42L288.894 216.97H289.684L288.004 222H286.794L285.124 216.97ZM290.958 216.21C290.791 216.21 290.658 216.16 290.558 216.06C290.465 215.96 290.418 215.833 290.418 215.68C290.418 215.527 290.465 215.397 290.558 215.29C290.658 215.183 290.791 215.13 290.958 215.13C291.118 215.13 291.248 215.183 291.348 215.29C291.448 215.397 291.498 215.527 291.498 215.68C291.498 215.833 291.448 215.96 291.348 216.06C291.248 216.16 291.118 216.21 290.958 216.21ZM291.388 216.97V222H290.538V216.97H291.388ZM294.984 222.1C294.637 222.1 294.311 222.043 294.004 221.93C293.704 221.81 293.441 221.637 293.214 221.41C292.994 221.183 292.817 220.91 292.684 220.59C292.557 220.263 292.494 219.893 292.494 219.48C292.494 219.073 292.557 218.71 292.684 218.39C292.817 218.063 292.997 217.787 293.224 217.56C293.457 217.333 293.731 217.163 294.044 217.05C294.357 216.93 294.694 216.87 295.054 216.87C295.354 216.87 295.624 216.9 295.864 216.96C296.104 217.02 296.304 217.103 296.464 217.21L296.214 217.97C296.021 217.83 295.831 217.723 295.644 217.65C295.464 217.57 295.247 217.53 294.994 217.53C294.774 217.53 294.564 217.573 294.364 217.66C294.164 217.74 293.991 217.863 293.844 218.03C293.697 218.19 293.581 218.393 293.494 218.64C293.407 218.88 293.364 219.16 293.364 219.48C293.364 220.133 293.521 220.62 293.834 220.94C294.147 221.26 294.574 221.42 295.114 221.42C295.294 221.42 295.487 221.387 295.694 221.32C295.907 221.253 296.101 221.157 296.274 221.03L296.464 221.66C296.291 221.793 296.077 221.9 295.824 221.98C295.577 222.06 295.297 222.1 294.984 222.1ZM299.491 217.48C299.131 217.48 298.821 217.607 298.561 217.86C298.308 218.113 298.148 218.497 298.081 219.01H300.631C300.671 218.49 300.581 218.107 300.361 217.86C300.148 217.607 299.858 217.48 299.491 217.48ZM301.341 221.57C301.161 221.723 300.928 221.85 300.641 221.95C300.355 222.05 300.028 222.1 299.661 222.1C298.861 222.1 298.248 221.873 297.821 221.42C297.395 220.96 297.181 220.313 297.181 219.48C297.181 219.073 297.241 218.71 297.361 218.39C297.481 218.063 297.645 217.787 297.851 217.56C298.065 217.333 298.311 217.163 298.591 217.05C298.878 216.93 299.185 216.87 299.511 216.87C299.851 216.87 300.155 216.93 300.421 217.05C300.695 217.163 300.918 217.337 301.091 217.57C301.271 217.797 301.391 218.083 301.451 218.43C301.518 218.77 301.518 219.163 301.451 219.61H298.051C298.091 220.817 298.655 221.42 299.741 221.42C300.028 221.42 300.285 221.377 300.511 221.29C300.738 221.203 300.948 221.093 301.141 220.96L301.341 221.57ZM301.918 222.47H305.898V223.12H301.918V222.47ZM308.742 221.49C308.962 221.49 309.172 221.45 309.372 221.37C309.572 221.29 309.749 221.17 309.902 221.01C310.055 220.843 310.175 220.637 310.262 220.39C310.355 220.137 310.402 219.84 310.402 219.5C310.402 219.16 310.355 218.867 310.262 218.62C310.175 218.367 310.055 218.157 309.902 217.99C309.749 217.817 309.572 217.69 309.372 217.61C309.172 217.523 308.962 217.48 308.742 217.48C308.542 217.48 308.349 217.523 308.162 217.61C307.982 217.697 307.822 217.823 307.682 217.99C307.542 218.157 307.429 218.367 307.342 218.62C307.262 218.867 307.222 219.153 307.222 219.48C307.222 219.813 307.262 220.107 307.342 220.36C307.429 220.613 307.542 220.823 307.682 220.99C307.822 221.157 307.982 221.283 308.162 221.37C308.349 221.45 308.542 221.49 308.742 221.49ZM310.332 221.03C310.172 221.35 309.949 221.61 309.662 221.81C309.382 222.003 309.032 222.1 308.612 222.1C308.332 222.1 308.055 222.047 307.782 221.94C307.515 221.833 307.275 221.673 307.062 221.46C306.849 221.24 306.675 220.967 306.542 220.64C306.415 220.307 306.352 219.92 306.352 219.48C306.352 219.04 306.415 218.657 306.542 218.33C306.675 217.997 306.849 217.723 307.062 217.51C307.275 217.297 307.519 217.137 307.792 217.03C308.065 216.923 308.342 216.87 308.622 216.87C308.995 216.87 309.322 216.947 309.602 217.1C309.882 217.247 310.109 217.46 310.282 217.74V214.75H311.132V222H310.432L310.332 221.03ZM315.79 221.1C315.657 221.38 315.447 221.617 315.16 221.81C314.88 222.003 314.513 222.1 314.06 222.1C313.593 222.1 313.217 221.96 312.93 221.68C312.643 221.393 312.5 220.953 312.5 220.36V216.97H313.36V220.36C313.36 220.56 313.383 220.727 313.43 220.86C313.477 220.993 313.543 221.1 313.63 221.18C313.717 221.26 313.817 221.317 313.93 221.35C314.043 221.383 314.167 221.4 314.3 221.4C314.673 221.4 314.973 221.31 315.2 221.13C315.433 220.95 315.63 220.703 315.79 220.39V216.97H316.64V222H315.89L315.81 221.1H315.79ZM320.548 217.77C320.374 217.757 320.204 217.77 320.038 217.81C319.871 217.85 319.714 217.913 319.568 218C319.428 218.087 319.298 218.193 319.178 218.32C319.064 218.447 318.974 218.587 318.908 218.74V222H318.058V216.97H318.808L318.888 218.06H318.908C318.974 217.913 319.058 217.773 319.158 217.64C319.264 217.5 319.384 217.38 319.518 217.28C319.658 217.173 319.811 217.087 319.978 217.02C320.151 216.953 320.341 216.92 320.548 216.92V217.77ZM322.956 221.48C323.309 221.48 323.589 221.393 323.796 221.22C324.009 221.04 324.166 220.837 324.266 220.61V219.66H323.826C323.179 219.66 322.713 219.73 322.426 219.87C322.146 220.003 322.006 220.263 322.006 220.65C322.006 220.923 322.099 221.13 322.286 221.27C322.479 221.41 322.703 221.48 322.956 221.48ZM324.426 222C324.399 221.907 324.376 221.797 324.356 221.67C324.336 221.543 324.319 221.407 324.306 221.26C324.246 221.36 324.173 221.46 324.086 221.56C324.006 221.66 323.906 221.75 323.786 221.83C323.666 221.91 323.523 221.973 323.356 222.02C323.189 222.073 322.996 222.1 322.776 222.1C322.556 222.1 322.349 222.07 322.156 222.01C321.963 221.95 321.789 221.86 321.636 221.74C321.489 221.62 321.373 221.473 321.286 221.3C321.199 221.127 321.156 220.927 321.156 220.7C321.156 220.153 321.373 219.757 321.806 219.51C322.246 219.257 322.893 219.13 323.746 219.13H324.266V218.72C324.266 218.313 324.179 218.01 324.006 217.81C323.833 217.61 323.526 217.51 323.086 217.51C322.786 217.51 322.513 217.567 322.266 217.68C322.026 217.787 321.813 217.917 321.626 218.07L321.396 217.37C321.476 217.31 321.579 217.25 321.706 217.19C321.833 217.13 321.976 217.077 322.136 217.03C322.296 216.983 322.466 216.947 322.646 216.92C322.826 216.887 323.009 216.87 323.196 216.87C323.829 216.87 324.306 217.01 324.626 217.29C324.953 217.563 325.116 218 325.116 218.6V221.19C325.116 221.303 325.123 221.447 325.136 221.62C325.149 221.787 325.166 221.913 325.186 222H324.426ZM328.965 221.91C328.859 221.963 328.729 222.007 328.575 222.04C328.422 222.08 328.252 222.1 328.065 222.1C327.592 222.1 327.242 221.977 327.015 221.73C326.789 221.477 326.675 221.11 326.675 220.63V217.59H326.075V216.97H326.675V216.01H327.535V216.97H328.795V217.59H327.535V220.59C327.535 220.863 327.579 221.07 327.665 221.21C327.752 221.343 327.912 221.41 328.145 221.41C328.259 221.41 328.375 221.397 328.495 221.37C328.615 221.343 328.722 221.307 328.815 221.26L328.965 221.91ZM330.392 216.21C330.225 216.21 330.092 216.16 329.992 216.06C329.898 215.96 329.852 215.833 329.852 215.68C329.852 215.527 329.898 215.397 329.992 215.29C330.092 215.183 330.225 215.13 330.392 215.13C330.552 215.13 330.682 215.183 330.782 215.29C330.882 215.397 330.932 215.527 330.932 215.68C330.932 215.833 330.882 215.96 330.782 216.06C330.682 216.16 330.552 216.21 330.392 216.21ZM330.822 216.97V222H329.972V216.97H330.822ZM334.348 222.1C334.021 222.1 333.711 222.043 333.418 221.93C333.124 221.81 332.868 221.64 332.648 221.42C332.428 221.193 332.251 220.92 332.118 220.6C331.991 220.273 331.928 219.9 331.928 219.48C331.928 219.06 331.991 218.69 332.118 218.37C332.251 218.043 332.428 217.77 332.648 217.55C332.868 217.33 333.124 217.163 333.418 217.05C333.711 216.93 334.021 216.87 334.348 216.87C334.674 216.87 334.984 216.93 335.278 217.05C335.578 217.163 335.838 217.33 336.058 217.55C336.284 217.77 336.464 218.043 336.598 218.37C336.731 218.69 336.798 219.06 336.798 219.48C336.798 219.9 336.731 220.273 336.598 220.6C336.464 220.92 336.284 221.193 336.058 221.42C335.838 221.64 335.578 221.81 335.278 221.93C334.984 222.043 334.674 222.1 334.348 222.1ZM334.348 221.47C334.548 221.47 334.741 221.437 334.928 221.37C335.121 221.297 335.291 221.18 335.438 221.02C335.584 220.86 335.701 220.653 335.788 220.4C335.881 220.147 335.928 219.84 335.928 219.48C335.928 219.12 335.881 218.817 335.788 218.57C335.701 218.317 335.584 218.11 335.438 217.95C335.291 217.79 335.121 217.677 334.928 217.61C334.741 217.537 334.548 217.5 334.348 217.5C334.148 217.5 333.954 217.537 333.768 217.61C333.588 217.677 333.424 217.79 333.278 217.95C333.131 218.11 333.014 218.317 332.928 218.57C332.841 218.817 332.798 219.12 332.798 219.48C332.798 219.84 332.841 220.147 332.928 220.4C333.014 220.653 333.131 220.86 333.278 221.02C333.424 221.18 333.588 221.297 333.768 221.37C333.954 221.437 334.148 221.47 334.348 221.47ZM340.301 217.55C339.914 217.55 339.601 217.643 339.361 217.83C339.121 218.017 338.924 218.25 338.771 218.53V222H337.921V216.97H338.721L338.751 217.87H338.771C338.904 217.583 339.118 217.347 339.411 217.16C339.704 216.967 340.074 216.87 340.521 216.87C341.021 216.87 341.418 217.003 341.711 217.27C342.004 217.53 342.151 217.93 342.151 218.47V222H341.291V218.51C341.291 218.15 341.204 217.9 341.031 217.76C340.858 217.62 340.614 217.55 340.301 217.55ZM342.817 222.47H346.797V223.12H342.817V222.47ZM348.841 222.1C348.594 222.1 348.381 222.087 348.201 222.06C348.021 222.04 347.861 222.013 347.721 221.98C347.581 221.94 347.457 221.897 347.351 221.85C347.251 221.803 347.157 221.753 347.071 221.7L347.351 220.99C347.397 221.03 347.464 221.077 347.551 221.13C347.637 221.177 347.744 221.227 347.871 221.28C347.997 221.327 348.141 221.367 348.301 221.4C348.467 221.433 348.647 221.45 348.841 221.45C349.201 221.45 349.474 221.38 349.661 221.24C349.847 221.093 349.941 220.893 349.941 220.64C349.941 220.427 349.864 220.257 349.711 220.13C349.557 220.003 349.294 219.883 348.921 219.77C348.707 219.703 348.501 219.637 348.301 219.57C348.107 219.497 347.934 219.407 347.781 219.3C347.627 219.187 347.504 219.05 347.411 218.89C347.317 218.723 347.271 218.513 347.271 218.26C347.271 217.793 347.434 217.447 347.761 217.22C348.087 216.987 348.537 216.87 349.111 216.87C349.457 216.87 349.754 216.9 350.001 216.96C350.247 217.013 350.447 217.077 350.601 217.15L350.401 217.85C350.267 217.777 350.101 217.7 349.901 217.62C349.701 217.54 349.447 217.5 349.141 217.5C348.821 217.5 348.561 217.553 348.361 217.66C348.167 217.76 348.071 217.943 348.071 218.21C348.071 218.33 348.101 218.433 348.161 218.52C348.221 218.607 348.301 218.683 348.401 218.75C348.507 218.81 348.627 218.863 348.761 218.91C348.901 218.957 349.044 219 349.191 219.04C349.384 219.1 349.577 219.167 349.771 219.24C349.964 219.307 350.134 219.397 350.281 219.51C350.434 219.623 350.557 219.767 350.651 219.94C350.744 220.107 350.791 220.32 350.791 220.58C350.791 220.853 350.734 221.087 350.621 221.28C350.514 221.467 350.371 221.623 350.191 221.75C350.011 221.87 349.804 221.957 349.571 222.01C349.337 222.07 349.094 222.1 348.841 222.1ZM355.714 223.35C355.414 223.063 355.158 222.753 354.944 222.42C354.738 222.087 354.568 221.737 354.434 221.37C354.308 221.003 354.214 220.623 354.154 220.23C354.101 219.837 354.074 219.433 354.074 219.02C354.074 218.613 354.101 218.207 354.154 217.8C354.214 217.387 354.308 216.993 354.434 216.62C354.568 216.247 354.738 215.893 354.944 215.56C355.158 215.227 355.414 214.93 355.714 214.67H356.404C356.144 214.923 355.918 215.217 355.724 215.55C355.538 215.877 355.381 216.227 355.254 216.6C355.134 216.973 355.044 217.363 354.984 217.77C354.924 218.177 354.894 218.583 354.894 218.99C354.894 219.817 355.014 220.603 355.254 221.35C355.501 222.097 355.884 222.763 356.404 223.35H355.714ZM358.475 217.59V222H357.625V217.59H357.015V216.97H357.625V216.5C357.625 215.907 357.772 215.453 358.065 215.14C358.365 214.82 358.775 214.66 359.295 214.66C359.509 214.66 359.675 214.673 359.795 214.7C359.922 214.727 360.015 214.757 360.075 214.79L359.885 215.43C359.832 215.397 359.755 215.37 359.655 215.35C359.555 215.323 359.429 215.31 359.275 215.31C359.009 215.31 358.809 215.413 358.675 215.62C358.542 215.82 358.475 216.113 358.475 216.5V216.97H359.935V217.59H358.475ZM362.883 222.1C362.556 222.1 362.246 222.043 361.953 221.93C361.659 221.81 361.403 221.64 361.183 221.42C360.963 221.193 360.786 220.92 360.653 220.6C360.526 220.273 360.463 219.9 360.463 219.48C360.463 219.06 360.526 218.69 360.653 218.37C360.786 218.043 360.963 217.77 361.183 217.55C361.403 217.33 361.659 217.163 361.953 217.05C362.246 216.93 362.556 216.87 362.883 216.87C363.209 216.87 363.519 216.93 363.813 217.05C364.113 217.163 364.373 217.33 364.593 217.55C364.819 217.77 364.999 218.043 365.133 218.37C365.266 218.69 365.333 219.06 365.333 219.48C365.333 219.9 365.266 220.273 365.133 220.6C364.999 220.92 364.819 221.193 364.593 221.42C364.373 221.64 364.113 221.81 363.813 221.93C363.519 222.043 363.209 222.1 362.883 222.1ZM362.883 221.47C363.083 221.47 363.276 221.437 363.463 221.37C363.656 221.297 363.826 221.18 363.973 221.02C364.119 220.86 364.236 220.653 364.323 220.4C364.416 220.147 364.463 219.84 364.463 219.48C364.463 219.12 364.416 218.817 364.323 218.57C364.236 218.317 364.119 218.11 363.973 217.95C363.826 217.79 363.656 217.677 363.463 217.61C363.276 217.537 363.083 217.5 362.883 217.5C362.683 217.5 362.489 217.537 362.303 217.61C362.123 217.677 361.959 217.79 361.813 217.95C361.666 218.11 361.549 218.317 361.463 218.57C361.376 218.817 361.333 219.12 361.333 219.48C361.333 219.84 361.376 220.147 361.463 220.4C361.549 220.653 361.666 220.86 361.813 221.02C361.959 221.18 362.123 221.297 362.303 221.37C362.489 221.437 362.683 221.47 362.883 221.47ZM368.946 217.77C368.773 217.757 368.603 217.77 368.436 217.81C368.269 217.85 368.113 217.913 367.966 218C367.826 218.087 367.696 218.193 367.576 218.32C367.463 218.447 367.373 218.587 367.306 218.74V222H366.456V216.97H367.206L367.286 218.06H367.306C367.373 217.913 367.456 217.773 367.556 217.64C367.663 217.5 367.783 217.38 367.916 217.28C368.056 217.173 368.209 217.087 368.376 217.02C368.549 216.953 368.739 216.92 368.946 216.92V217.77ZM373.489 222.1C373.242 222.1 373.029 222.087 372.849 222.06C372.669 222.04 372.509 222.013 372.369 221.98C372.229 221.94 372.106 221.897 371.999 221.85C371.899 221.803 371.806 221.753 371.719 221.7L371.999 220.99C372.046 221.03 372.112 221.077 372.199 221.13C372.286 221.177 372.392 221.227 372.519 221.28C372.646 221.327 372.789 221.367 372.949 221.4C373.116 221.433 373.296 221.45 373.489 221.45C373.849 221.45 374.122 221.38 374.309 221.24C374.496 221.093 374.589 220.893 374.589 220.64C374.589 220.427 374.512 220.257 374.359 220.13C374.206 220.003 373.942 219.883 373.569 219.77C373.356 219.703 373.149 219.637 372.949 219.57C372.756 219.497 372.582 219.407 372.429 219.3C372.276 219.187 372.152 219.05 372.059 218.89C371.966 218.723 371.919 218.513 371.919 218.26C371.919 217.793 372.082 217.447 372.409 217.22C372.736 216.987 373.186 216.87 373.759 216.87C374.106 216.87 374.402 216.9 374.649 216.96C374.896 217.013 375.096 217.077 375.249 217.15L375.049 217.85C374.916 217.777 374.749 217.7 374.549 217.62C374.349 217.54 374.096 217.5 373.789 217.5C373.469 217.5 373.209 217.553 373.009 217.66C372.816 217.76 372.719 217.943 372.719 218.21C372.719 218.33 372.749 218.433 372.809 218.52C372.869 218.607 372.949 218.683 373.049 218.75C373.156 218.81 373.276 218.863 373.409 218.91C373.549 218.957 373.692 219 373.839 219.04C374.032 219.1 374.226 219.167 374.419 219.24C374.612 219.307 374.782 219.397 374.929 219.51C375.082 219.623 375.206 219.767 375.299 219.94C375.392 220.107 375.439 220.32 375.439 220.58C375.439 220.853 375.382 221.087 375.269 221.28C375.162 221.467 375.019 221.623 374.839 221.75C374.659 221.87 374.452 221.957 374.219 222.01C373.986 222.07 373.742 222.1 373.489 222.1ZM377.365 222H376.515V214.75H377.365V217.85H377.385C377.518 217.57 377.728 217.337 378.015 217.15C378.301 216.963 378.668 216.87 379.115 216.87C379.608 216.87 380.001 217.003 380.295 217.27C380.588 217.53 380.735 217.93 380.735 218.47V222H379.885V218.51C379.885 218.15 379.798 217.9 379.625 217.76C379.451 217.62 379.208 217.55 378.895 217.55C378.508 217.55 378.195 217.643 377.955 217.83C377.715 218.017 377.518 218.25 377.365 218.53V222ZM382.521 216.21C382.354 216.21 382.221 216.16 382.121 216.06C382.027 215.96 381.981 215.833 381.981 215.68C381.981 215.527 382.027 215.397 382.121 215.29C382.221 215.183 382.354 215.13 382.521 215.13C382.681 215.13 382.811 215.183 382.911 215.29C383.011 215.397 383.061 215.527 383.061 215.68C383.061 215.833 383.011 215.96 382.911 216.06C382.811 216.16 382.681 216.21 382.521 216.21ZM382.951 216.97V222H382.101V216.97H382.951ZM385.506 217.59V222H384.656V217.59H384.046V216.97H384.656V216.5C384.656 215.907 384.803 215.453 385.096 215.14C385.396 214.82 385.806 214.66 386.326 214.66C386.54 214.66 386.706 214.673 386.826 214.7C386.953 214.727 387.046 214.757 387.106 214.79L386.916 215.43C386.863 215.397 386.786 215.37 386.686 215.35C386.586 215.323 386.46 215.31 386.306 215.31C386.04 215.31 385.84 215.413 385.706 215.62C385.573 215.82 385.506 216.113 385.506 216.5V216.97H386.966V217.59H385.506ZM390.469 221.91C390.363 221.963 390.233 222.007 390.079 222.04C389.926 222.08 389.756 222.1 389.569 222.1C389.096 222.1 388.746 221.977 388.519 221.73C388.293 221.477 388.179 221.11 388.179 220.63V217.59H387.579V216.97H388.179V216.01H389.039V216.97H390.299V217.59H389.039V220.59C389.039 220.863 389.083 221.07 389.169 221.21C389.256 221.343 389.416 221.41 389.649 221.41C389.763 221.41 389.879 221.397 389.999 221.37C390.119 221.343 390.226 221.307 390.319 221.26L390.469 221.91ZM394.874 222V215.89L393.504 217.29L393.194 216.66L394.834 215.05H395.764V222H394.874ZM397.551 223.35C397.851 223.063 398.105 222.753 398.311 222.42C398.525 222.087 398.695 221.737 398.821 221.37C398.955 221.003 399.048 220.623 399.101 220.23C399.161 219.837 399.191 219.433 399.191 219.02C399.191 218.613 399.161 218.207 399.101 217.8C399.048 217.387 398.955 216.993 398.821 216.62C398.695 216.247 398.525 215.893 398.311 215.56C398.105 215.227 397.851 214.93 397.551 214.67H396.861C397.121 214.923 397.345 215.217 397.531 215.55C397.725 215.877 397.881 216.227 398.001 216.6C398.128 216.973 398.221 217.363 398.281 217.77C398.341 218.177 398.371 218.583 398.371 218.99C398.371 219.817 398.248 220.603 398.001 221.35C397.761 222.097 397.381 222.763 396.861 223.35H397.551ZM401.25 222.06C401.083 222.06 400.943 222.007 400.83 221.9C400.723 221.787 400.67 221.653 400.67 221.5C400.67 221.333 400.723 221.197 400.83 221.09C400.943 220.983 401.083 220.93 401.25 220.93C401.417 220.93 401.553 220.983 401.66 221.09C401.767 221.197 401.82 221.333 401.82 221.5C401.82 221.653 401.767 221.787 401.66 221.9C401.553 222.007 401.417 222.06 401.25 222.06ZM249.03 228.78L247.89 232.27H250.18L249.03 228.78ZM250.4 232.94H247.67L247 235H246.2L248.48 228.05H249.76L252.05 235H251.08L250.4 232.94ZM255.031 234.49C255.251 234.49 255.461 234.45 255.661 234.37C255.861 234.29 256.038 234.17 256.191 234.01C256.345 233.843 256.465 233.637 256.551 233.39C256.645 233.137 256.691 232.84 256.691 232.5C256.691 232.16 256.645 231.867 256.551 231.62C256.465 231.367 256.345 231.157 256.191 230.99C256.038 230.817 255.861 230.69 255.661 230.61C255.461 230.523 255.251 230.48 255.031 230.48C254.831 230.48 254.638 230.523 254.451 230.61C254.271 230.697 254.111 230.823 253.971 230.99C253.831 231.157 253.718 231.367 253.631 231.62C253.551 231.867 253.511 232.153 253.511 232.48C253.511 232.813 253.551 233.107 253.631 233.36C253.718 233.613 253.831 233.823 253.971 233.99C254.111 234.157 254.271 234.283 254.451 234.37C254.638 234.45 254.831 234.49 255.031 234.49ZM256.621 234.03C256.461 234.35 256.238 234.61 255.951 234.81C255.671 235.003 255.321 235.1 254.901 235.1C254.621 235.1 254.345 235.047 254.071 234.94C253.805 234.833 253.565 234.673 253.351 234.46C253.138 234.24 252.965 233.967 252.831 233.64C252.705 233.307 252.641 232.92 252.641 232.48C252.641 232.04 252.705 231.657 252.831 231.33C252.965 230.997 253.138 230.723 253.351 230.51C253.565 230.297 253.808 230.137 254.081 230.03C254.355 229.923 254.631 229.87 254.911 229.87C255.285 229.87 255.611 229.947 255.891 230.1C256.171 230.247 256.398 230.46 256.571 230.74V227.75H257.421V235H256.721L256.621 234.03ZM260.959 234.49C261.179 234.49 261.389 234.45 261.589 234.37C261.789 234.29 261.966 234.17 262.119 234.01C262.272 233.843 262.392 233.637 262.479 233.39C262.572 233.137 262.619 232.84 262.619 232.5C262.619 232.16 262.572 231.867 262.479 231.62C262.392 231.367 262.272 231.157 262.119 230.99C261.966 230.817 261.789 230.69 261.589 230.61C261.389 230.523 261.179 230.48 260.959 230.48C260.759 230.48 260.566 230.523 260.379 230.61C260.199 230.697 260.039 230.823 259.899 230.99C259.759 231.157 259.646 231.367 259.559 231.62C259.479 231.867 259.439 232.153 259.439 232.48C259.439 232.813 259.479 233.107 259.559 233.36C259.646 233.613 259.759 233.823 259.899 233.99C260.039 234.157 260.199 234.283 260.379 234.37C260.566 234.45 260.759 234.49 260.959 234.49ZM262.549 234.03C262.389 234.35 262.166 234.61 261.879 234.81C261.599 235.003 261.249 235.1 260.829 235.1C260.549 235.1 260.272 235.047 259.999 234.94C259.732 234.833 259.492 234.673 259.279 234.46C259.066 234.24 258.892 233.967 258.759 233.64C258.632 233.307 258.569 232.92 258.569 232.48C258.569 232.04 258.632 231.657 258.759 231.33C258.892 230.997 259.066 230.723 259.279 230.51C259.492 230.297 259.736 230.137 260.009 230.03C260.282 229.923 260.559 229.87 260.839 229.87C261.212 229.87 261.539 229.947 261.819 230.1C262.099 230.247 262.326 230.46 262.499 230.74V227.75H263.349V235H262.649L262.549 234.03ZM266.777 230.48C266.417 230.48 266.107 230.607 265.847 230.86C265.593 231.113 265.433 231.497 265.367 232.01H267.917C267.957 231.49 267.867 231.107 267.647 230.86C267.433 230.607 267.143 230.48 266.777 230.48ZM268.627 234.57C268.447 234.723 268.213 234.85 267.927 234.95C267.64 235.05 267.313 235.1 266.947 235.1C266.147 235.1 265.533 234.873 265.107 234.42C264.68 233.96 264.467 233.313 264.467 232.48C264.467 232.073 264.527 231.71 264.647 231.39C264.767 231.063 264.93 230.787 265.137 230.56C265.35 230.333 265.597 230.163 265.877 230.05C266.163 229.93 266.47 229.87 266.797 229.87C267.137 229.87 267.44 229.93 267.707 230.05C267.98 230.163 268.203 230.337 268.377 230.57C268.557 230.797 268.677 231.083 268.737 231.43C268.803 231.77 268.803 232.163 268.737 232.61H265.337C265.377 233.817 265.94 234.42 267.027 234.42C267.313 234.42 267.57 234.377 267.797 234.29C268.023 234.203 268.233 234.093 268.427 233.96L268.627 234.57ZM272.023 234.49C272.243 234.49 272.453 234.45 272.653 234.37C272.853 234.29 273.03 234.17 273.183 234.01C273.337 233.843 273.457 233.637 273.543 233.39C273.637 233.137 273.683 232.84 273.683 232.5C273.683 232.16 273.637 231.867 273.543 231.62C273.457 231.367 273.337 231.157 273.183 230.99C273.03 230.817 272.853 230.69 272.653 230.61C272.453 230.523 272.243 230.48 272.023 230.48C271.823 230.48 271.63 230.523 271.443 230.61C271.263 230.697 271.103 230.823 270.963 230.99C270.823 231.157 270.71 231.367 270.623 231.62C270.543 231.867 270.503 232.153 270.503 232.48C270.503 232.813 270.543 233.107 270.623 233.36C270.71 233.613 270.823 233.823 270.963 233.99C271.103 234.157 271.263 234.283 271.443 234.37C271.63 234.45 271.823 234.49 272.023 234.49ZM273.613 234.03C273.453 234.35 273.23 234.61 272.943 234.81C272.663 235.003 272.313 235.1 271.893 235.1C271.613 235.1 271.337 235.047 271.063 234.94C270.797 234.833 270.557 234.673 270.343 234.46C270.13 234.24 269.957 233.967 269.823 233.64C269.697 233.307 269.633 232.92 269.633 232.48C269.633 232.04 269.697 231.657 269.823 231.33C269.957 230.997 270.13 230.723 270.343 230.51C270.557 230.297 270.8 230.137 271.073 230.03C271.347 229.923 271.623 229.87 271.903 229.87C272.277 229.87 272.603 229.947 272.883 230.1C273.163 230.247 273.39 230.46 273.563 230.74V227.75H274.413V235H273.713L273.613 234.03ZM280.109 235.1C279.783 235.1 279.473 235.043 279.179 234.93C278.886 234.81 278.629 234.64 278.409 234.42C278.189 234.193 278.013 233.92 277.879 233.6C277.753 233.273 277.689 232.9 277.689 232.48C277.689 232.06 277.753 231.69 277.879 231.37C278.013 231.043 278.189 230.77 278.409 230.55C278.629 230.33 278.886 230.163 279.179 230.05C279.473 229.93 279.783 229.87 280.109 229.87C280.436 229.87 280.746 229.93 281.039 230.05C281.339 230.163 281.599 230.33 281.819 230.55C282.046 230.77 282.226 231.043 282.359 231.37C282.493 231.69 282.559 232.06 282.559 232.48C282.559 232.9 282.493 233.273 282.359 233.6C282.226 233.92 282.046 234.193 281.819 234.42C281.599 234.64 281.339 234.81 281.039 234.93C280.746 235.043 280.436 235.1 280.109 235.1ZM280.109 234.47C280.309 234.47 280.503 234.437 280.689 234.37C280.883 234.297 281.053 234.18 281.199 234.02C281.346 233.86 281.463 233.653 281.549 233.4C281.643 233.147 281.689 232.84 281.689 232.48C281.689 232.12 281.643 231.817 281.549 231.57C281.463 231.317 281.346 231.11 281.199 230.95C281.053 230.79 280.883 230.677 280.689 230.61C280.503 230.537 280.309 230.5 280.109 230.5C279.909 230.5 279.716 230.537 279.529 230.61C279.349 230.677 279.186 230.79 279.039 230.95C278.893 231.11 278.776 231.317 278.689 231.57C278.603 231.817 278.559 232.12 278.559 232.48C278.559 232.84 278.603 233.147 278.689 233.4C278.776 233.653 278.893 233.86 279.039 234.02C279.186 234.18 279.349 234.297 279.529 234.37C279.716 234.437 279.909 234.47 280.109 234.47ZM286.063 230.55C285.676 230.55 285.363 230.643 285.123 230.83C284.883 231.017 284.686 231.25 284.533 231.53V235H283.683V229.97H284.483L284.513 230.87H284.533C284.666 230.583 284.879 230.347 285.173 230.16C285.466 229.967 285.836 229.87 286.283 229.87C286.783 229.87 287.179 230.003 287.473 230.27C287.766 230.53 287.913 230.93 287.913 231.47V235H287.053V231.51C287.053 231.15 286.966 230.9 286.793 230.76C286.619 230.62 286.376 230.55 286.063 230.55ZM290.128 227.75V235H289.278V227.75H290.128ZM291.994 236.96C291.841 236.96 291.701 236.947 291.574 236.92C291.454 236.9 291.347 236.873 291.254 236.84L291.364 236.15C291.444 236.183 291.534 236.213 291.634 236.24C291.734 236.267 291.841 236.28 291.954 236.28C292.141 236.28 292.311 236.22 292.464 236.1C292.617 235.98 292.784 235.767 292.964 235.46L290.974 229.97H291.894L293.424 234.36L294.954 229.97H295.724L293.944 234.94C293.824 235.267 293.701 235.553 293.574 235.8C293.447 236.053 293.307 236.263 293.154 236.43C293.001 236.603 292.827 236.733 292.634 236.82C292.447 236.913 292.234 236.96 291.994 236.96ZM299.151 229.21C298.985 229.21 298.851 229.16 298.751 229.06C298.658 228.96 298.611 228.833 298.611 228.68C298.611 228.527 298.658 228.397 298.751 228.29C298.851 228.183 298.985 228.13 299.151 228.13C299.311 228.13 299.441 228.183 299.541 228.29C299.641 228.397 299.691 228.527 299.691 228.68C299.691 228.833 299.641 228.96 299.541 229.06C299.441 229.16 299.311 229.21 299.151 229.21ZM299.581 229.97V235H298.731V229.97H299.581ZM302.137 230.59V235H301.287V230.59H300.677V229.97H301.287V229.5C301.287 228.907 301.434 228.453 301.727 228.14C302.027 227.82 302.437 227.66 302.957 227.66C303.171 227.66 303.337 227.673 303.457 227.7C303.584 227.727 303.677 227.757 303.737 227.79L303.547 228.43C303.494 228.397 303.417 228.37 303.317 228.35C303.217 228.323 303.091 228.31 302.937 228.31C302.671 228.31 302.471 228.413 302.337 228.62C302.204 228.82 302.137 229.113 302.137 229.5V229.97H303.597V230.59H302.137ZM309.268 230.77C309.095 230.757 308.925 230.77 308.758 230.81C308.592 230.85 308.435 230.913 308.288 231C308.148 231.087 308.018 231.193 307.898 231.32C307.785 231.447 307.695 231.587 307.628 231.74V235H306.778V229.97H307.528L307.608 231.06H307.628C307.695 230.913 307.778 230.773 307.878 230.64C307.985 230.5 308.105 230.38 308.238 230.28C308.378 230.173 308.532 230.087 308.698 230.02C308.872 229.953 309.062 229.92 309.268 229.92V230.77ZM313.573 234.1C313.44 234.38 313.23 234.617 312.943 234.81C312.663 235.003 312.296 235.1 311.843 235.1C311.376 235.1 311 234.96 310.713 234.68C310.426 234.393 310.283 233.953 310.283 233.36V229.97H311.143V233.36C311.143 233.56 311.166 233.727 311.213 233.86C311.26 233.993 311.326 234.1 311.413 234.18C311.5 234.26 311.6 234.317 311.713 234.35C311.826 234.383 311.95 234.4 312.083 234.4C312.456 234.4 312.756 234.31 312.983 234.13C313.216 233.95 313.413 233.703 313.573 233.39V229.97H314.423V235H313.673L313.593 234.1H313.573ZM318.221 230.55C317.834 230.55 317.521 230.643 317.281 230.83C317.041 231.017 316.844 231.25 316.691 231.53V235H315.841V229.97H316.641L316.671 230.87H316.691C316.824 230.583 317.038 230.347 317.331 230.16C317.624 229.967 317.994 229.87 318.441 229.87C318.941 229.87 319.338 230.003 319.631 230.27C319.924 230.53 320.071 230.93 320.071 231.47V235H319.211V231.51C319.211 231.15 319.124 230.9 318.951 230.76C318.778 230.62 318.534 230.55 318.221 230.55ZM322.757 235.1C322.51 235.1 322.297 235.087 322.117 235.06C321.937 235.04 321.777 235.013 321.637 234.98C321.497 234.94 321.373 234.897 321.267 234.85C321.167 234.803 321.073 234.753 320.987 234.7L321.267 233.99C321.313 234.03 321.38 234.077 321.467 234.13C321.553 234.177 321.66 234.227 321.787 234.28C321.913 234.327 322.057 234.367 322.217 234.4C322.383 234.433 322.563 234.45 322.757 234.45C323.117 234.45 323.39 234.38 323.577 234.24C323.763 234.093 323.857 233.893 323.857 233.64C323.857 233.427 323.78 233.257 323.627 233.13C323.473 233.003 323.21 232.883 322.837 232.77C322.623 232.703 322.417 232.637 322.217 232.57C322.023 232.497 321.85 232.407 321.697 232.3C321.543 232.187 321.42 232.05 321.327 231.89C321.233 231.723 321.187 231.513 321.187 231.26C321.187 230.793 321.35 230.447 321.677 230.22C322.003 229.987 322.453 229.87 323.027 229.87C323.373 229.87 323.67 229.9 323.917 229.96C324.163 230.013 324.363 230.077 324.517 230.15L324.317 230.85C324.183 230.777 324.017 230.7 323.817 230.62C323.617 230.54 323.363 230.5 323.057 230.5C322.737 230.5 322.477 230.553 322.277 230.66C322.083 230.76 321.987 230.943 321.987 231.21C321.987 231.33 322.017 231.433 322.077 231.52C322.137 231.607 322.217 231.683 322.317 231.75C322.423 231.81 322.543 231.863 322.677 231.91C322.817 231.957 322.96 232 323.107 232.04C323.3 232.1 323.493 232.167 323.687 232.24C323.88 232.307 324.05 232.397 324.197 232.51C324.35 232.623 324.473 232.767 324.567 232.94C324.66 233.107 324.707 233.32 324.707 233.58C324.707 233.853 324.65 234.087 324.537 234.28C324.43 234.467 324.287 234.623 324.107 234.75C323.927 234.87 323.72 234.957 323.487 235.01C323.253 235.07 323.01 235.1 322.757 235.1ZM329.18 235V228.89L327.81 230.29L327.5 229.66L329.14 228.05H330.07V235H329.18ZM335.436 234.48C335.79 234.48 336.07 234.393 336.276 234.22C336.49 234.04 336.646 233.837 336.746 233.61V232.66H336.306C335.66 232.66 335.193 232.73 334.906 232.87C334.626 233.003 334.486 233.263 334.486 233.65C334.486 233.923 334.58 234.13 334.766 234.27C334.96 234.41 335.183 234.48 335.436 234.48ZM336.906 235C336.88 234.907 336.856 234.797 336.836 234.67C336.816 234.543 336.8 234.407 336.786 234.26C336.726 234.36 336.653 234.46 336.566 234.56C336.486 234.66 336.386 234.75 336.266 234.83C336.146 234.91 336.003 234.973 335.836 235.02C335.67 235.073 335.476 235.1 335.256 235.1C335.036 235.1 334.83 235.07 334.636 235.01C334.443 234.95 334.27 234.86 334.116 234.74C333.97 234.62 333.853 234.473 333.766 234.3C333.68 234.127 333.636 233.927 333.636 233.7C333.636 233.153 333.853 232.757 334.286 232.51C334.726 232.257 335.373 232.13 336.226 232.13H336.746V231.72C336.746 231.313 336.66 231.01 336.486 230.81C336.313 230.61 336.006 230.51 335.566 230.51C335.266 230.51 334.993 230.567 334.746 230.68C334.506 230.787 334.293 230.917 334.106 231.07L333.876 230.37C333.956 230.31 334.06 230.25 334.186 230.19C334.313 230.13 334.456 230.077 334.616 230.03C334.776 229.983 334.946 229.947 335.126 229.92C335.306 229.887 335.49 229.87 335.676 229.87C336.31 229.87 336.786 230.01 337.106 230.29C337.433 230.563 337.596 231 337.596 231.6V234.19C337.596 234.303 337.603 234.447 337.616 234.62C337.63 234.787 337.646 234.913 337.666 235H336.906ZM341.346 230.55C340.959 230.55 340.646 230.643 340.406 230.83C340.166 231.017 339.969 231.25 339.816 231.53V235H338.966V229.97H339.766L339.796 230.87H339.816C339.949 230.583 340.163 230.347 340.456 230.16C340.749 229.967 341.119 229.87 341.566 229.87C342.066 229.87 342.463 230.003 342.756 230.27C343.049 230.53 343.196 230.93 343.196 231.47V235H342.336V231.51C342.336 231.15 342.249 230.9 342.076 230.76C341.903 230.62 341.659 230.55 341.346 230.55ZM346.682 234.49C346.902 234.49 347.112 234.45 347.312 234.37C347.512 234.29 347.688 234.17 347.842 234.01C347.995 233.843 348.115 233.637 348.202 233.39C348.295 233.137 348.342 232.84 348.342 232.5C348.342 232.16 348.295 231.867 348.202 231.62C348.115 231.367 347.995 231.157 347.842 230.99C347.688 230.817 347.512 230.69 347.312 230.61C347.112 230.523 346.902 230.48 346.682 230.48C346.482 230.48 346.288 230.523 346.102 230.61C345.922 230.697 345.762 230.823 345.622 230.99C345.482 231.157 345.368 231.367 345.282 231.62C345.202 231.867 345.162 232.153 345.162 232.48C345.162 232.813 345.202 233.107 345.282 233.36C345.368 233.613 345.482 233.823 345.622 233.99C345.762 234.157 345.922 234.283 346.102 234.37C346.288 234.45 346.482 234.49 346.682 234.49ZM348.272 234.03C348.112 234.35 347.888 234.61 347.602 234.81C347.322 235.003 346.972 235.1 346.552 235.1C346.272 235.1 345.995 235.047 345.722 234.94C345.455 234.833 345.215 234.673 345.002 234.46C344.788 234.24 344.615 233.967 344.482 233.64C344.355 233.307 344.292 232.92 344.292 232.48C344.292 232.04 344.355 231.657 344.482 231.33C344.615 230.997 344.788 230.723 345.002 230.51C345.215 230.297 345.458 230.137 345.732 230.03C346.005 229.923 346.282 229.87 346.562 229.87C346.935 229.87 347.262 229.947 347.542 230.1C347.822 230.247 348.048 230.46 348.222 230.74V227.75H349.072V235H348.372L348.272 234.03ZM352.528 235V234.2C353.048 233.74 353.508 233.327 353.908 232.96C354.314 232.593 354.654 232.25 354.928 231.93C355.201 231.603 355.408 231.287 355.548 230.98C355.688 230.673 355.758 230.353 355.758 230.02C355.758 229.593 355.651 229.253 355.438 229C355.224 228.74 354.881 228.61 354.408 228.61C354.108 228.61 353.824 228.663 353.558 228.77C353.298 228.87 353.048 228.997 352.808 229.15L352.588 228.44C352.828 228.287 353.111 228.17 353.438 228.09C353.771 228.003 354.118 227.96 354.478 227.96C355.204 227.96 355.751 228.14 356.118 228.5C356.484 228.853 356.668 229.333 356.668 229.94C356.668 230.373 356.578 230.777 356.398 231.15C356.224 231.517 355.984 231.877 355.678 232.23C355.378 232.577 355.024 232.92 354.618 233.26C354.211 233.6 353.778 233.953 353.318 234.32H356.738V235H352.528ZM362.087 234.48C362.44 234.48 362.72 234.393 362.927 234.22C363.14 234.04 363.297 233.837 363.397 233.61V232.66H362.957C362.31 232.66 361.843 232.73 361.557 232.87C361.277 233.003 361.137 233.263 361.137 233.65C361.137 233.923 361.23 234.13 361.417 234.27C361.61 234.41 361.833 234.48 362.087 234.48ZM363.557 235C363.53 234.907 363.507 234.797 363.487 234.67C363.467 234.543 363.45 234.407 363.437 234.26C363.377 234.36 363.303 234.46 363.217 234.56C363.137 234.66 363.037 234.75 362.917 234.83C362.797 234.91 362.653 234.973 362.487 235.02C362.32 235.073 362.127 235.1 361.907 235.1C361.687 235.1 361.48 235.07 361.287 235.01C361.093 234.95 360.92 234.86 360.767 234.74C360.62 234.62 360.503 234.473 360.417 234.3C360.33 234.127 360.287 233.927 360.287 233.7C360.287 233.153 360.503 232.757 360.937 232.51C361.377 232.257 362.023 232.13 362.877 232.13H363.397V231.72C363.397 231.313 363.31 231.01 363.137 230.81C362.963 230.61 362.657 230.51 362.217 230.51C361.917 230.51 361.643 230.567 361.397 230.68C361.157 230.787 360.943 230.917 360.757 231.07L360.527 230.37C360.607 230.31 360.71 230.25 360.837 230.19C360.963 230.13 361.107 230.077 361.267 230.03C361.427 229.983 361.597 229.947 361.777 229.92C361.957 229.887 362.14 229.87 362.327 229.87C362.96 229.87 363.437 230.01 363.757 230.29C364.083 230.563 364.247 231 364.247 231.6V234.19C364.247 234.303 364.253 234.447 364.267 234.62C364.28 234.787 364.297 234.913 364.317 235H363.557ZM368.106 230.77C367.933 230.757 367.763 230.77 367.596 230.81C367.43 230.85 367.273 230.913 367.126 231C366.986 231.087 366.856 231.193 366.736 231.32C366.623 231.447 366.533 231.587 366.466 231.74V235H365.616V229.97H366.366L366.446 231.06H366.466C366.533 230.913 366.616 230.773 366.716 230.64C366.823 230.5 366.943 230.38 367.076 230.28C367.216 230.173 367.37 230.087 367.536 230.02C367.71 229.953 367.9 229.92 368.106 229.92V230.77ZM371.083 230.48C370.723 230.48 370.413 230.607 370.153 230.86C369.9 231.113 369.74 231.497 369.673 232.01H372.223C372.263 231.49 372.173 231.107 371.953 230.86C371.74 230.607 371.45 230.48 371.083 230.48ZM372.933 234.57C372.753 234.723 372.52 234.85 372.233 234.95C371.947 235.05 371.62 235.1 371.253 235.1C370.453 235.1 369.84 234.873 369.413 234.42C368.987 233.96 368.773 233.313 368.773 232.48C368.773 232.073 368.833 231.71 368.953 231.39C369.073 231.063 369.237 230.787 369.443 230.56C369.657 230.333 369.903 230.163 370.183 230.05C370.47 229.93 370.777 229.87 371.103 229.87C371.443 229.87 371.747 229.93 372.013 230.05C372.287 230.163 372.51 230.337 372.683 230.57C372.863 230.797 372.983 231.083 373.043 231.43C373.11 231.77 373.11 232.163 373.043 232.61H369.643C369.683 233.817 370.247 234.42 371.333 234.42C371.62 234.42 371.877 234.377 372.103 234.29C372.33 234.203 372.54 234.093 372.733 233.96L372.933 234.57ZM376.788 229.21C376.622 229.21 376.488 229.16 376.388 229.06C376.295 228.96 376.248 228.833 376.248 228.68C376.248 228.527 376.295 228.397 376.388 228.29C376.488 228.183 376.622 228.13 376.788 228.13C376.948 228.13 377.078 228.183 377.178 228.29C377.278 228.397 377.328 228.527 377.328 228.68C377.328 228.833 377.278 228.96 377.178 229.06C377.078 229.16 376.948 229.21 376.788 229.21ZM377.218 229.97V235H376.368V229.97H377.218ZM381.004 230.55C380.617 230.55 380.304 230.643 380.064 230.83C379.824 231.017 379.627 231.25 379.474 231.53V235H378.624V229.97H379.424L379.454 230.87H379.474C379.607 230.583 379.821 230.347 380.114 230.16C380.407 229.967 380.777 229.87 381.224 229.87C381.724 229.87 382.121 230.003 382.414 230.27C382.707 230.53 382.854 230.93 382.854 231.47V235H381.994V231.51C381.994 231.15 381.907 230.9 381.734 230.76C381.561 230.62 381.317 230.55 381.004 230.55ZM388.498 234.49C388.718 234.49 388.928 234.45 389.128 234.37C389.328 234.29 389.505 234.17 389.658 234.01C389.811 233.843 389.931 233.637 390.018 233.39C390.111 233.137 390.158 232.84 390.158 232.5C390.158 232.16 390.111 231.867 390.018 231.62C389.931 231.367 389.811 231.157 389.658 230.99C389.505 230.817 389.328 230.69 389.128 230.61C388.928 230.523 388.718 230.48 388.498 230.48C388.298 230.48 388.105 230.523 387.918 230.61C387.738 230.697 387.578 230.823 387.438 230.99C387.298 231.157 387.185 231.367 387.098 231.62C387.018 231.867 386.978 232.153 386.978 232.48C386.978 232.813 387.018 233.107 387.098 233.36C387.185 233.613 387.298 233.823 387.438 233.99C387.578 234.157 387.738 234.283 387.918 234.37C388.105 234.45 388.298 234.49 388.498 234.49ZM390.088 234.03C389.928 234.35 389.705 234.61 389.418 234.81C389.138 235.003 388.788 235.1 388.368 235.1C388.088 235.1 387.811 235.047 387.538 234.94C387.271 234.833 387.031 234.673 386.818 234.46C386.605 234.24 386.431 233.967 386.298 233.64C386.171 233.307 386.108 232.92 386.108 232.48C386.108 232.04 386.171 231.657 386.298 231.33C386.431 230.997 386.605 230.723 386.818 230.51C387.031 230.297 387.275 230.137 387.548 230.03C387.821 229.923 388.098 229.87 388.378 229.87C388.751 229.87 389.078 229.947 389.358 230.1C389.638 230.247 389.865 230.46 390.038 230.74V227.75H390.888V235H390.188L390.088 234.03ZM392.726 229.21C392.559 229.21 392.426 229.16 392.326 229.06C392.232 228.96 392.186 228.833 392.186 228.68C392.186 228.527 392.232 228.397 392.326 228.29C392.426 228.183 392.559 228.13 392.726 228.13C392.886 228.13 393.016 228.183 393.116 228.29C393.216 228.397 393.266 228.527 393.266 228.68C393.266 228.833 393.216 228.96 393.116 229.06C393.016 229.16 392.886 229.21 392.726 229.21ZM393.156 229.97V235H392.306V229.97H393.156ZM395.712 230.59V235H394.862V230.59H394.252V229.97H394.862V229.5C394.862 228.907 395.008 228.453 395.302 228.14C395.602 227.82 396.012 227.66 396.532 227.66C396.745 227.66 396.912 227.673 397.032 227.7C397.158 227.727 397.252 227.757 397.312 227.79L397.122 228.43C397.068 228.397 396.992 228.37 396.892 228.35C396.792 228.323 396.665 228.31 396.512 228.31C396.245 228.31 396.045 228.413 395.912 228.62C395.778 228.82 395.712 229.113 395.712 229.5V229.97H397.172V230.59H395.712ZM399.198 230.59V235H398.348V230.59H397.738V229.97H398.348V229.5C398.348 228.907 398.495 228.453 398.788 228.14C399.088 227.82 399.498 227.66 400.018 227.66C400.231 227.66 400.398 227.673 400.518 227.7C400.645 227.727 400.738 227.757 400.798 227.79L400.608 228.43C400.555 228.397 400.478 228.37 400.378 228.35C400.278 228.323 400.151 228.31 399.998 228.31C399.731 228.31 399.531 228.413 399.398 228.62C399.265 228.82 399.198 229.113 399.198 229.5V229.97H400.658V230.59H399.198ZM403.495 230.48C403.135 230.48 402.825 230.607 402.565 230.86C402.312 231.113 402.152 231.497 402.085 232.01H404.635C404.675 231.49 404.585 231.107 404.365 230.86C404.152 230.607 403.862 230.48 403.495 230.48ZM405.345 234.57C405.165 234.723 404.932 234.85 404.645 234.95C404.359 235.05 404.032 235.1 403.665 235.1C402.865 235.1 402.252 234.873 401.825 234.42C401.399 233.96 401.185 233.313 401.185 232.48C401.185 232.073 401.245 231.71 401.365 231.39C401.485 231.063 401.649 230.787 401.855 230.56C402.069 230.333 402.315 230.163 402.595 230.05C402.882 229.93 403.189 229.87 403.515 229.87C403.855 229.87 404.159 229.93 404.425 230.05C404.699 230.163 404.922 230.337 405.095 230.57C405.275 230.797 405.395 231.083 405.455 231.43C405.522 231.77 405.522 232.163 405.455 232.61H402.055C402.095 233.817 402.659 234.42 403.745 234.42C404.032 234.42 404.289 234.377 404.515 234.29C404.742 234.203 404.952 234.093 405.145 233.96L405.345 234.57ZM409.112 230.77C408.939 230.757 408.769 230.77 408.602 230.81C408.435 230.85 408.279 230.913 408.132 231C407.992 231.087 407.862 231.193 407.742 231.32C407.629 231.447 407.539 231.587 407.472 231.74V235H406.622V229.97H407.372L407.452 231.06H407.472C407.539 230.913 407.622 230.773 407.722 230.64C407.829 230.5 407.949 230.38 408.082 230.28C408.222 230.173 408.375 230.087 408.542 230.02C408.715 229.953 408.905 229.92 409.112 229.92V230.77ZM412.089 230.48C411.729 230.48 411.419 230.607 411.159 230.86C410.906 231.113 410.746 231.497 410.679 232.01H413.229C413.269 231.49 413.179 231.107 412.959 230.86C412.746 230.607 412.456 230.48 412.089 230.48ZM413.939 234.57C413.759 234.723 413.526 234.85 413.239 234.95C412.952 235.05 412.626 235.1 412.259 235.1C411.459 235.1 410.846 234.873 410.419 234.42C409.992 233.96 409.779 233.313 409.779 232.48C409.779 232.073 409.839 231.71 409.959 231.39C410.079 231.063 410.242 230.787 410.449 230.56C410.662 230.333 410.909 230.163 411.189 230.05C411.476 229.93 411.782 229.87 412.109 229.87C412.449 229.87 412.752 229.93 413.019 230.05C413.292 230.163 413.516 230.337 413.689 230.57C413.869 230.797 413.989 231.083 414.049 231.43C414.116 231.77 414.116 232.163 414.049 232.61H410.649C410.689 233.817 411.252 234.42 412.339 234.42C412.626 234.42 412.882 234.377 413.109 234.29C413.336 234.203 413.546 234.093 413.739 233.96L413.939 234.57ZM417.596 230.55C417.209 230.55 416.896 230.643 416.656 230.83C416.416 231.017 416.219 231.25 416.066 231.53V235H415.216V229.97H416.016L416.046 230.87H416.066C416.199 230.583 416.413 230.347 416.706 230.16C416.999 229.967 417.369 229.87 417.816 229.87C418.316 229.87 418.713 230.003 419.006 230.27C419.299 230.53 419.446 230.93 419.446 231.47V235H418.586V231.51C418.586 231.15 418.499 230.9 418.326 230.76C418.153 230.62 417.909 230.55 417.596 230.55ZM423.292 234.91C423.185 234.963 423.055 235.007 422.902 235.04C422.748 235.08 422.578 235.1 422.392 235.1C421.918 235.1 421.568 234.977 421.342 234.73C421.115 234.477 421.002 234.11 421.002 233.63V230.59H420.402V229.97H421.002V229.01H421.862V229.97H423.122V230.59H421.862V233.59C421.862 233.863 421.905 234.07 421.992 234.21C422.078 234.343 422.238 234.41 422.472 234.41C422.585 234.41 422.702 234.397 422.822 234.37C422.942 234.343 423.048 234.307 423.142 234.26L423.292 234.91ZM248.03 248.1C247.783 248.1 247.57 248.087 247.39 248.06C247.21 248.04 247.05 248.013 246.91 247.98C246.77 247.94 246.647 247.897 246.54 247.85C246.44 247.803 246.347 247.753 246.26 247.7L246.54 246.99C246.587 247.03 246.653 247.077 246.74 247.13C246.827 247.177 246.933 247.227 247.06 247.28C247.187 247.327 247.33 247.367 247.49 247.4C247.657 247.433 247.837 247.45 248.03 247.45C248.39 247.45 248.663 247.38 248.85 247.24C249.037 247.093 249.13 246.893 249.13 246.64C249.13 246.427 249.053 246.257 248.9 246.13C248.747 246.003 248.483 245.883 248.11 245.77C247.897 245.703 247.69 245.637 247.49 245.57C247.297 245.497 247.123 245.407 246.97 245.3C246.817 245.187 246.693 245.05 246.6 244.89C246.507 244.723 246.46 244.513 246.46 244.26C246.46 243.793 246.623 243.447 246.95 243.22C247.277 242.987 247.727 242.87 248.3 242.87C248.647 242.87 248.943 242.9 249.19 242.96C249.437 243.013 249.637 243.077 249.79 243.15L249.59 243.85C249.457 243.777 249.29 243.7 249.09 243.62C248.89 243.54 248.637 243.5 248.33 243.5C248.01 243.5 247.75 243.553 247.55 243.66C247.357 243.76 247.26 243.943 247.26 244.21C247.26 244.33 247.29 244.433 247.35 244.52C247.41 244.607 247.49 244.683 247.59 244.75C247.697 244.81 247.817 244.863 247.95 244.91C248.09 244.957 248.233 245 248.38 245.04C248.573 245.1 248.767 245.167 248.96 245.24C249.153 245.307 249.323 245.397 249.47 245.51C249.623 245.623 249.747 245.767 249.84 245.94C249.933 246.107 249.98 246.32 249.98 246.58C249.98 246.853 249.923 247.087 249.81 247.28C249.703 247.467 249.56 247.623 249.38 247.75C249.2 247.87 248.993 247.957 248.76 248.01C248.527 248.07 248.283 248.1 248.03 248.1ZM251.906 248H251.056V240.75H251.906V243.85H251.926C252.059 243.57 252.269 243.337 252.556 243.15C252.842 242.963 253.209 242.87 253.656 242.87C254.149 242.87 254.542 243.003 254.836 243.27C255.129 243.53 255.276 243.93 255.276 244.47V248H254.426V244.51C254.426 244.15 254.339 243.9 254.166 243.76C253.992 243.62 253.749 243.55 253.436 243.55C253.049 243.55 252.736 243.643 252.496 243.83C252.256 244.017 252.059 244.25 251.906 244.53V248ZM257.062 242.21C256.895 242.21 256.762 242.16 256.662 242.06C256.568 241.96 256.522 241.833 256.522 241.68C256.522 241.527 256.568 241.397 256.662 241.29C256.762 241.183 256.895 241.13 257.062 241.13C257.222 241.13 257.352 241.183 257.452 241.29C257.552 241.397 257.602 241.527 257.602 241.68C257.602 241.833 257.552 241.96 257.452 242.06C257.352 242.16 257.222 242.21 257.062 242.21ZM257.492 242.97V248H256.642V242.97H257.492ZM260.048 243.59V248H259.198V243.59H258.588V242.97H259.198V242.5C259.198 241.907 259.344 241.453 259.638 241.14C259.938 240.82 260.348 240.66 260.868 240.66C261.081 240.66 261.248 240.673 261.368 240.7C261.494 240.727 261.588 240.757 261.648 240.79L261.458 241.43C261.404 241.397 261.328 241.37 261.228 241.35C261.128 241.323 261.001 241.31 260.848 241.31C260.581 241.31 260.381 241.413 260.248 241.62C260.114 241.82 260.048 242.113 260.048 242.5V242.97H261.508V243.59H260.048ZM265.01 247.91C264.904 247.963 264.774 248.007 264.62 248.04C264.467 248.08 264.297 248.1 264.11 248.1C263.637 248.1 263.287 247.977 263.06 247.73C262.834 247.477 262.72 247.11 262.72 246.63V243.59H262.12V242.97H262.72V242.01H263.58V242.97H264.84V243.59H263.58V246.59C263.58 246.863 263.624 247.07 263.71 247.21C263.797 247.343 263.957 247.41 264.19 247.41C264.304 247.41 264.42 247.397 264.54 247.37C264.66 247.343 264.767 247.307 264.86 247.26L265.01 247.91ZM267.337 248.1C267.09 248.1 266.877 248.087 266.697 248.06C266.517 248.04 266.357 248.013 266.217 247.98C266.077 247.94 265.953 247.897 265.847 247.85C265.747 247.803 265.653 247.753 265.567 247.7L265.847 246.99C265.893 247.03 265.96 247.077 266.047 247.13C266.133 247.177 266.24 247.227 266.367 247.28C266.493 247.327 266.637 247.367 266.797 247.4C266.963 247.433 267.143 247.45 267.337 247.45C267.697 247.45 267.97 247.38 268.157 247.24C268.343 247.093 268.437 246.893 268.437 246.64C268.437 246.427 268.36 246.257 268.207 246.13C268.053 246.003 267.79 245.883 267.417 245.77C267.203 245.703 266.997 245.637 266.797 245.57C266.603 245.497 266.43 245.407 266.277 245.3C266.123 245.187 266 245.05 265.907 244.89C265.813 244.723 265.767 244.513 265.767 244.26C265.767 243.793 265.93 243.447 266.257 243.22C266.583 242.987 267.033 242.87 267.607 242.87C267.953 242.87 268.25 242.9 268.497 242.96C268.743 243.013 268.943 243.077 269.097 243.15L268.897 243.85C268.763 243.777 268.597 243.7 268.397 243.62C268.197 243.54 267.943 243.5 267.637 243.5C267.317 243.5 267.057 243.553 266.857 243.66C266.663 243.76 266.567 243.943 266.567 244.21C266.567 244.33 266.597 244.433 266.657 244.52C266.717 244.607 266.797 244.683 266.897 244.75C267.003 244.81 267.123 244.863 267.257 244.91C267.397 244.957 267.54 245 267.687 245.04C267.88 245.1 268.073 245.167 268.267 245.24C268.46 245.307 268.63 245.397 268.777 245.51C268.93 245.623 269.053 245.767 269.147 245.94C269.24 246.107 269.287 246.32 269.287 246.58C269.287 246.853 269.23 247.087 269.117 247.28C269.01 247.467 268.867 247.623 268.687 247.75C268.507 247.87 268.3 247.957 268.067 248.01C267.833 248.07 267.59 248.1 267.337 248.1Z" fill="black"/><path d="M466.25 126.05V128.11H465.45V126.05H463.51V125.41H465.45V123.35H466.25V125.41H468.19V126.05H466.25ZM471.533 128.49C471.753 128.49 471.963 128.45 472.163 128.37C472.363 128.29 472.54 128.17 472.693 128.01C472.846 127.843 472.966 127.637 473.053 127.39C473.146 127.137 473.193 126.84 473.193 126.5C473.193 126.16 473.146 125.867 473.053 125.62C472.966 125.367 472.846 125.157 472.693 124.99C472.54 124.817 472.363 124.69 472.163 124.61C471.963 124.523 471.753 124.48 471.533 124.48C471.333 124.48 471.14 124.523 470.953 124.61C470.773 124.697 470.613 124.823 470.473 124.99C470.333 125.157 470.22 125.367 470.133 125.62C470.053 125.867 470.013 126.153 470.013 126.48C470.013 126.813 470.053 127.107 470.133 127.36C470.22 127.613 470.333 127.823 470.473 127.99C470.613 128.157 470.773 128.283 470.953 128.37C471.14 128.45 471.333 128.49 471.533 128.49ZM473.123 128.03C472.963 128.35 472.74 128.61 472.453 128.81C472.173 129.003 471.823 129.1 471.403 129.1C471.123 129.1 470.846 129.047 470.573 128.94C470.306 128.833 470.066 128.673 469.853 128.46C469.64 128.24 469.466 127.967 469.333 127.64C469.206 127.307 469.143 126.92 469.143 126.48C469.143 126.04 469.206 125.657 469.333 125.33C469.466 124.997 469.64 124.723 469.853 124.51C470.066 124.297 470.31 124.137 470.583 124.03C470.856 123.923 471.133 123.87 471.413 123.87C471.786 123.87 472.113 123.947 472.393 124.1C472.673 124.247 472.9 124.46 473.073 124.74V121.75H473.923V129H473.223L473.123 128.03ZM477.351 124.48C476.991 124.48 476.681 124.607 476.421 124.86C476.168 125.113 476.008 125.497 475.941 126.01H478.491C478.531 125.49 478.441 125.107 478.221 124.86C478.008 124.607 477.718 124.48 477.351 124.48ZM479.201 128.57C479.021 128.723 478.788 128.85 478.501 128.95C478.214 129.05 477.888 129.1 477.521 129.1C476.721 129.1 476.108 128.873 475.681 128.42C475.254 127.96 475.041 127.313 475.041 126.48C475.041 126.073 475.101 125.71 475.221 125.39C475.341 125.063 475.504 124.787 475.711 124.56C475.924 124.333 476.171 124.163 476.451 124.05C476.738 123.93 477.044 123.87 477.371 123.87C477.711 123.87 478.014 123.93 478.281 124.05C478.554 124.163 478.778 124.337 478.951 124.57C479.131 124.797 479.251 125.083 479.311 125.43C479.378 125.77 479.378 126.163 479.311 126.61H475.911C475.951 127.817 476.514 128.42 477.601 128.42C477.888 128.42 478.144 128.377 478.371 128.29C478.598 128.203 478.808 128.093 479.001 127.96L479.201 128.57ZM482.878 128.49C483.324 128.49 483.684 128.333 483.958 128.02C484.238 127.7 484.378 127.187 484.378 126.48C484.378 125.787 484.238 125.28 483.958 124.96C483.684 124.633 483.324 124.47 482.878 124.47C482.658 124.47 482.448 124.51 482.248 124.59C482.048 124.663 481.871 124.783 481.718 124.95C481.571 125.11 481.454 125.317 481.368 125.57C481.281 125.823 481.238 126.127 481.238 126.48C481.238 126.84 481.281 127.147 481.368 127.4C481.454 127.653 481.571 127.86 481.718 128.02C481.871 128.18 482.048 128.3 482.248 128.38C482.448 128.453 482.658 128.49 482.878 128.49ZM483.008 129.1C482.634 129.1 482.304 129.02 482.018 128.86C481.738 128.693 481.508 128.467 481.328 128.18V130.87H480.478V123.97H481.228L481.288 124.86C481.468 124.56 481.701 124.32 481.988 124.14C482.281 123.96 482.634 123.87 483.048 123.87C483.341 123.87 483.621 123.923 483.888 124.03C484.154 124.137 484.388 124.297 484.588 124.51C484.794 124.723 484.958 124.997 485.078 125.33C485.198 125.657 485.258 126.04 485.258 126.48C485.258 126.92 485.194 127.307 485.068 127.64C484.948 127.967 484.784 128.24 484.578 128.46C484.371 128.673 484.131 128.833 483.858 128.94C483.591 129.047 483.308 129.1 483.008 129.1ZM488.496 129.1C488.169 129.1 487.859 129.043 487.566 128.93C487.273 128.81 487.016 128.64 486.796 128.42C486.576 128.193 486.399 127.92 486.266 127.6C486.139 127.273 486.076 126.9 486.076 126.48C486.076 126.06 486.139 125.69 486.266 125.37C486.399 125.043 486.576 124.77 486.796 124.55C487.016 124.33 487.273 124.163 487.566 124.05C487.859 123.93 488.169 123.87 488.496 123.87C488.823 123.87 489.133 123.93 489.426 124.05C489.726 124.163 489.986 124.33 490.206 124.55C490.433 124.77 490.613 125.043 490.746 125.37C490.879 125.69 490.946 126.06 490.946 126.48C490.946 126.9 490.879 127.273 490.746 127.6C490.613 127.92 490.433 128.193 490.206 128.42C489.986 128.64 489.726 128.81 489.426 128.93C489.133 129.043 488.823 129.1 488.496 129.1ZM488.496 128.47C488.696 128.47 488.889 128.437 489.076 128.37C489.269 128.297 489.439 128.18 489.586 128.02C489.733 127.86 489.849 127.653 489.936 127.4C490.029 127.147 490.076 126.84 490.076 126.48C490.076 126.12 490.029 125.817 489.936 125.57C489.849 125.317 489.733 125.11 489.586 124.95C489.439 124.79 489.269 124.677 489.076 124.61C488.889 124.537 488.696 124.5 488.496 124.5C488.296 124.5 488.103 124.537 487.916 124.61C487.736 124.677 487.573 124.79 487.426 124.95C487.279 125.11 487.163 125.317 487.076 125.57C486.989 125.817 486.946 126.12 486.946 126.48C486.946 126.84 486.989 127.147 487.076 127.4C487.163 127.653 487.279 127.86 487.426 128.02C487.573 128.18 487.736 128.297 487.916 128.37C488.103 128.437 488.296 128.47 488.496 128.47ZM494.549 128.91C494.443 128.963 494.313 129.007 494.159 129.04C494.006 129.08 493.836 129.1 493.649 129.1C493.176 129.1 492.826 128.977 492.599 128.73C492.373 128.477 492.259 128.11 492.259 127.63V124.59H491.659V123.97H492.259V123.01H493.119V123.97H494.379V124.59H493.119V127.59C493.119 127.863 493.163 128.07 493.249 128.21C493.336 128.343 493.496 128.41 493.729 128.41C493.843 128.41 493.959 128.397 494.079 128.37C494.199 128.343 494.306 128.307 494.399 128.26L494.549 128.91ZM496.023 129.06C495.857 129.06 495.717 129.007 495.603 128.9C495.497 128.787 495.443 128.653 495.443 128.5C495.443 128.333 495.497 128.197 495.603 128.09C495.717 127.983 495.857 127.93 496.023 127.93C496.19 127.93 496.327 127.983 496.433 128.09C496.54 128.197 496.593 128.333 496.593 128.5C496.593 128.653 496.54 128.787 496.433 128.9C496.327 129.007 496.19 129.06 496.023 129.06ZM500.202 128.49C500.648 128.49 501.008 128.333 501.282 128.02C501.562 127.7 501.702 127.187 501.702 126.48C501.702 125.787 501.562 125.28 501.282 124.96C501.008 124.633 500.648 124.47 500.202 124.47C499.982 124.47 499.772 124.51 499.572 124.59C499.372 124.663 499.195 124.783 499.042 124.95C498.895 125.11 498.778 125.317 498.692 125.57C498.605 125.823 498.562 126.127 498.562 126.48C498.562 126.84 498.605 127.147 498.692 127.4C498.778 127.653 498.895 127.86 499.042 128.02C499.195 128.18 499.372 128.3 499.572 128.38C499.772 128.453 499.982 128.49 500.202 128.49ZM500.332 129.1C499.958 129.1 499.628 129.02 499.342 128.86C499.062 128.693 498.832 128.467 498.652 128.18V130.87H497.802V123.97H498.552L498.612 124.86C498.792 124.56 499.025 124.32 499.312 124.14C499.605 123.96 499.958 123.87 500.372 123.87C500.665 123.87 500.945 123.923 501.212 124.03C501.478 124.137 501.712 124.297 501.912 124.51C502.118 124.723 502.282 124.997 502.402 125.33C502.522 125.657 502.582 126.04 502.582 126.48C502.582 126.92 502.518 127.307 502.392 127.64C502.272 127.967 502.108 128.24 501.902 128.46C501.695 128.673 501.455 128.833 501.182 128.94C500.915 129.047 500.632 129.1 500.332 129.1ZM506.19 124.77C506.017 124.757 505.847 124.77 505.68 124.81C505.514 124.85 505.357 124.913 505.21 125C505.07 125.087 504.94 125.193 504.82 125.32C504.707 125.447 504.617 125.587 504.55 125.74V129H503.7V123.97H504.45L504.53 125.06H504.55C504.617 124.913 504.7 124.773 504.8 124.64C504.907 124.5 505.027 124.38 505.16 124.28C505.3 124.173 505.454 124.087 505.62 124.02C505.794 123.953 505.984 123.92 506.19 123.92V124.77ZM509.167 124.48C508.807 124.48 508.497 124.607 508.237 124.86C507.984 125.113 507.824 125.497 507.757 126.01H510.307C510.347 125.49 510.257 125.107 510.037 124.86C509.824 124.607 509.534 124.48 509.167 124.48ZM511.017 128.57C510.837 128.723 510.604 128.85 510.317 128.95C510.031 129.05 509.704 129.1 509.337 129.1C508.537 129.1 507.924 128.873 507.497 128.42C507.071 127.96 506.857 127.313 506.857 126.48C506.857 126.073 506.917 125.71 507.037 125.39C507.157 125.063 507.321 124.787 507.527 124.56C507.741 124.333 507.987 124.163 508.267 124.05C508.554 123.93 508.861 123.87 509.187 123.87C509.527 123.87 509.831 123.93 510.097 124.05C510.371 124.163 510.594 124.337 510.767 124.57C510.947 124.797 511.067 125.083 511.127 125.43C511.194 125.77 511.194 126.163 511.127 126.61H507.727C507.767 127.817 508.331 128.42 509.417 128.42C509.704 128.42 509.961 128.377 510.187 128.29C510.414 128.203 510.624 128.093 510.817 127.96L511.017 128.57ZM513.144 121.75V129H512.294V121.75H513.144ZM514.98 123.21C514.813 123.21 514.68 123.16 514.58 123.06C514.486 122.96 514.44 122.833 514.44 122.68C514.44 122.527 514.486 122.397 514.58 122.29C514.68 122.183 514.813 122.13 514.98 122.13C515.14 122.13 515.27 122.183 515.37 122.29C515.47 122.397 515.52 122.527 515.52 122.68C515.52 122.833 515.47 122.96 515.37 123.06C515.27 123.16 515.14 123.21 514.98 123.21ZM515.41 123.97V129H514.56V123.97H515.41ZM517.665 129H516.815V123.97H517.565L517.645 124.87H517.665C517.799 124.59 518.002 124.353 518.275 124.16C518.549 123.967 518.905 123.87 519.345 123.87C519.725 123.87 520.042 123.963 520.295 124.15C520.555 124.33 520.722 124.61 520.795 124.99C520.942 124.637 521.162 124.363 521.455 124.17C521.749 123.97 522.105 123.87 522.525 123.87C522.985 123.87 523.352 124.003 523.625 124.27C523.899 124.53 524.035 124.93 524.035 125.47V129H523.175V125.58C523.175 125.22 523.095 124.96 522.935 124.8C522.775 124.64 522.555 124.56 522.275 124.56C522.089 124.56 521.922 124.59 521.775 124.65C521.635 124.71 521.509 124.79 521.395 124.89C521.282 124.99 521.182 125.11 521.095 125.25C521.009 125.383 520.925 125.527 520.845 125.68V129H519.995V125.48C519.995 125.127 519.915 124.887 519.755 124.76C519.595 124.627 519.375 124.56 519.095 124.56C518.729 124.56 518.439 124.653 518.225 124.84C518.012 125.027 517.825 125.277 517.665 125.59V129ZM525.829 123.21C525.663 123.21 525.529 123.16 525.429 123.06C525.336 122.96 525.289 122.833 525.289 122.68C525.289 122.527 525.336 122.397 525.429 122.29C525.529 122.183 525.663 122.13 525.829 122.13C525.989 122.13 526.119 122.183 526.219 122.29C526.319 122.397 526.369 122.527 526.369 122.68C526.369 122.833 526.319 122.96 526.219 123.06C526.119 123.16 525.989 123.21 525.829 123.21ZM526.259 123.97V129H525.409V123.97H526.259ZM530.045 124.55C529.658 124.55 529.345 124.643 529.105 124.83C528.865 125.017 528.668 125.25 528.515 125.53V129H527.665V123.97H528.465L528.495 124.87H528.515C528.648 124.583 528.862 124.347 529.155 124.16C529.448 123.967 529.818 123.87 530.265 123.87C530.765 123.87 531.162 124.003 531.455 124.27C531.748 124.53 531.895 124.93 531.895 125.47V129H531.035V125.51C531.035 125.15 530.948 124.9 530.775 124.76C530.602 124.62 530.358 124.55 530.045 124.55ZM534.751 128.48C535.104 128.48 535.384 128.393 535.591 128.22C535.804 128.04 535.961 127.837 536.061 127.61V126.66H535.621C534.974 126.66 534.507 126.73 534.221 126.87C533.941 127.003 533.801 127.263 533.801 127.65C533.801 127.923 533.894 128.13 534.081 128.27C534.274 128.41 534.497 128.48 534.751 128.48ZM536.221 129C536.194 128.907 536.171 128.797 536.151 128.67C536.131 128.543 536.114 128.407 536.101 128.26C536.041 128.36 535.967 128.46 535.881 128.56C535.801 128.66 535.701 128.75 535.581 128.83C535.461 128.91 535.317 128.973 535.151 129.02C534.984 129.073 534.791 129.1 534.571 129.1C534.351 129.1 534.144 129.07 533.951 129.01C533.757 128.95 533.584 128.86 533.431 128.74C533.284 128.62 533.167 128.473 533.081 128.3C532.994 128.127 532.951 127.927 532.951 127.7C532.951 127.153 533.167 126.757 533.601 126.51C534.041 126.257 534.687 126.13 535.541 126.13H536.061V125.72C536.061 125.313 535.974 125.01 535.801 124.81C535.627 124.61 535.321 124.51 534.881 124.51C534.581 124.51 534.307 124.567 534.061 124.68C533.821 124.787 533.607 124.917 533.421 125.07L533.191 124.37C533.271 124.31 533.374 124.25 533.501 124.19C533.627 124.13 533.771 124.077 533.931 124.03C534.091 123.983 534.261 123.947 534.441 123.92C534.621 123.887 534.804 123.87 534.991 123.87C535.624 123.87 536.101 124.01 536.421 124.29C536.747 124.563 536.911 125 536.911 125.6V128.19C536.911 128.303 536.917 128.447 536.931 128.62C536.944 128.787 536.961 128.913 536.981 129H536.221ZM540.77 124.77C540.597 124.757 540.427 124.77 540.26 124.81C540.094 124.85 539.937 124.913 539.79 125C539.65 125.087 539.52 125.193 539.4 125.32C539.287 125.447 539.197 125.587 539.13 125.74V129H538.28V123.97H539.03L539.11 125.06H539.13C539.197 124.913 539.28 124.773 539.38 124.64C539.487 124.5 539.607 124.38 539.74 124.28C539.88 124.173 540.034 124.087 540.2 124.02C540.374 123.953 540.564 123.92 540.77 123.92V124.77ZM542.383 130.96C542.229 130.96 542.089 130.947 541.963 130.92C541.843 130.9 541.736 130.873 541.643 130.84L541.753 130.15C541.833 130.183 541.923 130.213 542.023 130.24C542.123 130.267 542.229 130.28 542.343 130.28C542.529 130.28 542.699 130.22 542.853 130.1C543.006 129.98 543.173 129.767 543.353 129.46L541.363 123.97H542.283L543.813 128.36L545.343 123.97H546.113L544.333 128.94C544.213 129.267 544.089 129.553 543.963 129.8C543.836 130.053 543.696 130.263 543.543 130.43C543.389 130.603 543.216 130.733 543.023 130.82C542.836 130.913 542.623 130.96 542.383 130.96ZM546.262 129.47H550.242V130.12H546.262V129.47ZM552.286 129.1C552.039 129.1 551.826 129.087 551.646 129.06C551.466 129.04 551.306 129.013 551.166 128.98C551.026 128.94 550.903 128.897 550.796 128.85C550.696 128.803 550.603 128.753 550.516 128.7L550.796 127.99C550.843 128.03 550.909 128.077 550.996 128.13C551.083 128.177 551.189 128.227 551.316 128.28C551.443 128.327 551.586 128.367 551.746 128.4C551.913 128.433 552.093 128.45 552.286 128.45C552.646 128.45 552.919 128.38 553.106 128.24C553.293 128.093 553.386 127.893 553.386 127.64C553.386 127.427 553.309 127.257 553.156 127.13C553.003 127.003 552.739 126.883 552.366 126.77C552.153 126.703 551.946 126.637 551.746 126.57C551.553 126.497 551.379 126.407 551.226 126.3C551.073 126.187 550.949 126.05 550.856 125.89C550.763 125.723 550.716 125.513 550.716 125.26C550.716 124.793 550.879 124.447 551.206 124.22C551.533 123.987 551.983 123.87 552.556 123.87C552.903 123.87 553.199 123.9 553.446 123.96C553.693 124.013 553.893 124.077 554.046 124.15L553.846 124.85C553.713 124.777 553.546 124.7 553.346 124.62C553.146 124.54 552.893 124.5 552.586 124.5C552.266 124.5 552.006 124.553 551.806 124.66C551.613 124.76 551.516 124.943 551.516 125.21C551.516 125.33 551.546 125.433 551.606 125.52C551.666 125.607 551.746 125.683 551.846 125.75C551.953 125.81 552.073 125.863 552.206 125.91C552.346 125.957 552.489 126 552.636 126.04C552.829 126.1 553.023 126.167 553.216 126.24C553.409 126.307 553.579 126.397 553.726 126.51C553.879 126.623 554.003 126.767 554.096 126.94C554.189 127.107 554.236 127.32 554.236 127.58C554.236 127.853 554.179 128.087 554.066 128.28C553.959 128.467 553.816 128.623 553.636 128.75C553.456 128.87 553.249 128.957 553.016 129.01C552.783 129.07 552.539 129.1 552.286 129.1ZM557.322 124.48C556.962 124.48 556.652 124.607 556.392 124.86C556.138 125.113 555.978 125.497 555.912 126.01H558.462C558.502 125.49 558.412 125.107 558.192 124.86C557.978 124.607 557.688 124.48 557.322 124.48ZM559.172 128.57C558.992 128.723 558.758 128.85 558.472 128.95C558.185 129.05 557.858 129.1 557.492 129.1C556.692 129.1 556.078 128.873 555.652 128.42C555.225 127.96 555.012 127.313 555.012 126.48C555.012 126.073 555.072 125.71 555.192 125.39C555.312 125.063 555.475 124.787 555.682 124.56C555.895 124.333 556.142 124.163 556.422 124.05C556.708 123.93 557.015 123.87 557.342 123.87C557.682 123.87 557.985 123.93 558.252 124.05C558.525 124.163 558.748 124.337 558.922 124.57C559.102 124.797 559.222 125.083 559.282 125.43C559.348 125.77 559.348 126.163 559.282 126.61H555.882C555.922 127.817 556.485 128.42 557.572 128.42C557.858 128.42 558.115 128.377 558.342 128.29C558.568 128.203 558.778 128.093 558.972 127.96L559.172 128.57ZM562.938 124.77C562.765 124.757 562.595 124.77 562.428 124.81C562.262 124.85 562.105 124.913 561.958 125C561.818 125.087 561.688 125.193 561.568 125.32C561.455 125.447 561.365 125.587 561.298 125.74V129H560.448V123.97H561.198L561.278 125.06H561.298C561.365 124.913 561.448 124.773 561.548 124.64C561.655 124.5 561.775 124.38 561.908 124.28C562.048 124.173 562.202 124.087 562.368 124.02C562.542 123.953 562.732 123.92 562.938 123.92V124.77ZM563.579 123.97H564.469L565.919 128.42L567.349 123.97H568.139L566.459 129H565.249L563.579 123.97ZM569.413 123.21C569.247 123.21 569.113 123.16 569.013 123.06C568.92 122.96 568.873 122.833 568.873 122.68C568.873 122.527 568.92 122.397 569.013 122.29C569.113 122.183 569.247 122.13 569.413 122.13C569.573 122.13 569.703 122.183 569.803 122.29C569.903 122.397 569.953 122.527 569.953 122.68C569.953 122.833 569.903 122.96 569.803 123.06C569.703 123.16 569.573 123.21 569.413 123.21ZM569.843 123.97V129H568.993V123.97H569.843ZM573.439 129.1C573.092 129.1 572.766 129.043 572.459 128.93C572.159 128.81 571.896 128.637 571.669 128.41C571.449 128.183 571.272 127.91 571.139 127.59C571.012 127.263 570.949 126.893 570.949 126.48C570.949 126.073 571.012 125.71 571.139 125.39C571.272 125.063 571.452 124.787 571.679 124.56C571.912 124.333 572.186 124.163 572.499 124.05C572.812 123.93 573.149 123.87 573.509 123.87C573.809 123.87 574.079 123.9 574.319 123.96C574.559 124.02 574.759 124.103 574.919 124.21L574.669 124.97C574.476 124.83 574.286 124.723 574.099 124.65C573.919 124.57 573.702 124.53 573.449 124.53C573.229 124.53 573.019 124.573 572.819 124.66C572.619 124.74 572.446 124.863 572.299 125.03C572.152 125.19 572.036 125.393 571.949 125.64C571.862 125.88 571.819 126.16 571.819 126.48C571.819 127.133 571.976 127.62 572.289 127.94C572.602 128.26 573.029 128.42 573.569 128.42C573.749 128.42 573.942 128.387 574.149 128.32C574.362 128.253 574.556 128.157 574.729 128.03L574.919 128.66C574.746 128.793 574.532 128.9 574.279 128.98C574.032 129.06 573.752 129.1 573.439 129.1ZM577.947 124.48C577.587 124.48 577.277 124.607 577.017 124.86C576.763 125.113 576.603 125.497 576.537 126.01H579.087C579.127 125.49 579.037 125.107 578.817 124.86C578.603 124.607 578.313 124.48 577.947 124.48ZM579.797 128.57C579.617 128.723 579.383 128.85 579.097 128.95C578.81 129.05 578.483 129.1 578.117 129.1C577.317 129.1 576.703 128.873 576.277 128.42C575.85 127.96 575.637 127.313 575.637 126.48C575.637 126.073 575.697 125.71 575.817 125.39C575.937 125.063 576.1 124.787 576.307 124.56C576.52 124.333 576.767 124.163 577.047 124.05C577.333 123.93 577.64 123.87 577.967 123.87C578.307 123.87 578.61 123.93 578.877 124.05C579.15 124.163 579.373 124.337 579.547 124.57C579.727 124.797 579.847 125.083 579.907 125.43C579.973 125.77 579.973 126.163 579.907 126.61H576.507C576.547 127.817 577.11 128.42 578.197 128.42C578.483 128.42 578.74 128.377 578.967 128.29C579.193 128.203 579.403 128.093 579.597 127.96L579.797 128.57ZM580.373 129.47H584.353V130.12H580.373V129.47ZM587.197 128.49C587.417 128.49 587.627 128.45 587.827 128.37C588.027 128.29 588.204 128.17 588.357 128.01C588.511 127.843 588.631 127.637 588.717 127.39C588.811 127.137 588.857 126.84 588.857 126.5C588.857 126.16 588.811 125.867 588.717 125.62C588.631 125.367 588.511 125.157 588.357 124.99C588.204 124.817 588.027 124.69 587.827 124.61C587.627 124.523 587.417 124.48 587.197 124.48C586.997 124.48 586.804 124.523 586.617 124.61C586.437 124.697 586.277 124.823 586.137 124.99C585.997 125.157 585.884 125.367 585.797 125.62C585.717 125.867 585.677 126.153 585.677 126.48C585.677 126.813 585.717 127.107 585.797 127.36C585.884 127.613 585.997 127.823 586.137 127.99C586.277 128.157 586.437 128.283 586.617 128.37C586.804 128.45 586.997 128.49 587.197 128.49ZM588.787 128.03C588.627 128.35 588.404 128.61 588.117 128.81C587.837 129.003 587.487 129.1 587.067 129.1C586.787 129.1 586.511 129.047 586.237 128.94C585.971 128.833 585.731 128.673 585.517 128.46C585.304 128.24 585.131 127.967 584.997 127.64C584.871 127.307 584.807 126.92 584.807 126.48C584.807 126.04 584.871 125.657 584.997 125.33C585.131 124.997 585.304 124.723 585.517 124.51C585.731 124.297 585.974 124.137 586.247 124.03C586.521 123.923 586.797 123.87 587.077 123.87C587.451 123.87 587.777 123.947 588.057 124.1C588.337 124.247 588.564 124.46 588.737 124.74V121.75H589.587V129H588.887L588.787 128.03ZM594.245 128.1C594.112 128.38 593.902 128.617 593.615 128.81C593.335 129.003 592.968 129.1 592.515 129.1C592.048 129.1 591.672 128.96 591.385 128.68C591.098 128.393 590.955 127.953 590.955 127.36V123.97H591.815V127.36C591.815 127.56 591.838 127.727 591.885 127.86C591.932 127.993 591.998 128.1 592.085 128.18C592.172 128.26 592.272 128.317 592.385 128.35C592.498 128.383 592.622 128.4 592.755 128.4C593.128 128.4 593.428 128.31 593.655 128.13C593.888 127.95 594.085 127.703 594.245 127.39V123.97H595.095V129H594.345L594.265 128.1H594.245ZM599.003 124.77C598.829 124.757 598.659 124.77 598.493 124.81C598.326 124.85 598.169 124.913 598.023 125C597.883 125.087 597.753 125.193 597.633 125.32C597.519 125.447 597.429 125.587 597.363 125.74V129H596.513V123.97H597.263L597.343 125.06H597.363C597.429 124.913 597.513 124.773 597.613 124.64C597.719 124.5 597.839 124.38 597.973 124.28C598.113 124.173 598.266 124.087 598.433 124.02C598.606 123.953 598.796 123.92 599.003 123.92V124.77ZM601.411 128.48C601.764 128.48 602.044 128.393 602.251 128.22C602.464 128.04 602.621 127.837 602.721 127.61V126.66H602.281C601.634 126.66 601.168 126.73 600.881 126.87C600.601 127.003 600.461 127.263 600.461 127.65C600.461 127.923 600.554 128.13 600.741 128.27C600.934 128.41 601.158 128.48 601.411 128.48ZM602.881 129C602.854 128.907 602.831 128.797 602.811 128.67C602.791 128.543 602.774 128.407 602.761 128.26C602.701 128.36 602.628 128.46 602.541 128.56C602.461 128.66 602.361 128.75 602.241 128.83C602.121 128.91 601.978 128.973 601.811 129.02C601.644 129.073 601.451 129.1 601.231 129.1C601.011 129.1 600.804 129.07 600.611 129.01C600.418 128.95 600.244 128.86 600.091 128.74C599.944 128.62 599.828 128.473 599.741 128.3C599.654 128.127 599.611 127.927 599.611 127.7C599.611 127.153 599.828 126.757 600.261 126.51C600.701 126.257 601.348 126.13 602.201 126.13H602.721V125.72C602.721 125.313 602.634 125.01 602.461 124.81C602.288 124.61 601.981 124.51 601.541 124.51C601.241 124.51 600.968 124.567 600.721 124.68C600.481 124.787 600.268 124.917 600.081 125.07L599.851 124.37C599.931 124.31 600.034 124.25 600.161 124.19C600.288 124.13 600.431 124.077 600.591 124.03C600.751 123.983 600.921 123.947 601.101 123.92C601.281 123.887 601.464 123.87 601.651 123.87C602.284 123.87 602.761 124.01 603.081 124.29C603.408 124.563 603.571 125 603.571 125.6V128.19C603.571 128.303 603.578 128.447 603.591 128.62C603.604 128.787 603.621 128.913 603.641 129H602.881ZM607.42 128.91C607.314 128.963 607.184 129.007 607.03 129.04C606.877 129.08 606.707 129.1 606.52 129.1C606.047 129.1 605.697 128.977 605.47 128.73C605.244 128.477 605.13 128.11 605.13 127.63V124.59H604.53V123.97H605.13V123.01H605.99V123.97H607.25V124.59H605.99V127.59C605.99 127.863 606.034 128.07 606.12 128.21C606.207 128.343 606.367 128.41 606.6 128.41C606.714 128.41 606.83 128.397 606.95 128.37C607.07 128.343 607.177 128.307 607.27 128.26L607.42 128.91ZM608.847 123.21C608.68 123.21 608.547 123.16 608.447 123.06C608.353 122.96 608.307 122.833 608.307 122.68C608.307 122.527 608.353 122.397 608.447 122.29C608.547 122.183 608.68 122.13 608.847 122.13C609.007 122.13 609.137 122.183 609.237 122.29C609.337 122.397 609.387 122.527 609.387 122.68C609.387 122.833 609.337 122.96 609.237 123.06C609.137 123.16 609.007 123.21 608.847 123.21ZM609.277 123.97V129H608.427V123.97H609.277ZM612.803 129.1C612.476 129.1 612.166 129.043 611.873 128.93C611.579 128.81 611.323 128.64 611.103 128.42C610.883 128.193 610.706 127.92 610.573 127.6C610.446 127.273 610.383 126.9 610.383 126.48C610.383 126.06 610.446 125.69 610.573 125.37C610.706 125.043 610.883 124.77 611.103 124.55C611.323 124.33 611.579 124.163 611.873 124.05C612.166 123.93 612.476 123.87 612.803 123.87C613.129 123.87 613.439 123.93 613.733 124.05C614.033 124.163 614.293 124.33 614.513 124.55C614.739 124.77 614.919 125.043 615.053 125.37C615.186 125.69 615.253 126.06 615.253 126.48C615.253 126.9 615.186 127.273 615.053 127.6C614.919 127.92 614.739 128.193 614.513 128.42C614.293 128.64 614.033 128.81 613.733 128.93C613.439 129.043 613.129 129.1 612.803 129.1ZM612.803 128.47C613.003 128.47 613.196 128.437 613.383 128.37C613.576 128.297 613.746 128.18 613.893 128.02C614.039 127.86 614.156 127.653 614.243 127.4C614.336 127.147 614.383 126.84 614.383 126.48C614.383 126.12 614.336 125.817 614.243 125.57C614.156 125.317 614.039 125.11 613.893 124.95C613.746 124.79 613.576 124.677 613.383 124.61C613.196 124.537 613.003 124.5 612.803 124.5C612.603 124.5 612.409 124.537 612.223 124.61C612.043 124.677 611.879 124.79 611.733 124.95C611.586 125.11 611.469 125.317 611.383 125.57C611.296 125.817 611.253 126.12 611.253 126.48C611.253 126.84 611.296 127.147 611.383 127.4C611.469 127.653 611.586 127.86 611.733 128.02C611.879 128.18 612.043 128.297 612.223 128.37C612.409 128.437 612.603 128.47 612.803 128.47ZM618.756 124.55C618.369 124.55 618.056 124.643 617.816 124.83C617.576 125.017 617.379 125.25 617.226 125.53V129H616.376V123.97H617.176L617.206 124.87H617.226C617.359 124.583 617.573 124.347 617.866 124.16C618.159 123.967 618.529 123.87 618.976 123.87C619.476 123.87 619.873 124.003 620.166 124.27C620.459 124.53 620.606 124.93 620.606 125.47V129H619.746V125.51C619.746 125.15 619.659 124.9 619.486 124.76C619.313 124.62 619.069 124.55 618.756 124.55ZM621.272 129.47H625.252V130.12H621.272V129.47ZM627.296 129.1C627.049 129.1 626.836 129.087 626.656 129.06C626.476 129.04 626.316 129.013 626.176 128.98C626.036 128.94 625.912 128.897 625.806 128.85C625.706 128.803 625.612 128.753 625.526 128.7L625.806 127.99C625.852 128.03 625.919 128.077 626.006 128.13C626.092 128.177 626.199 128.227 626.326 128.28C626.452 128.327 626.596 128.367 626.756 128.4C626.922 128.433 627.102 128.45 627.296 128.45C627.656 128.45 627.929 128.38 628.116 128.24C628.302 128.093 628.396 127.893 628.396 127.64C628.396 127.427 628.319 127.257 628.166 127.13C628.012 127.003 627.749 126.883 627.376 126.77C627.162 126.703 626.956 126.637 626.756 126.57C626.562 126.497 626.389 126.407 626.236 126.3C626.082 126.187 625.959 126.05 625.866 125.89C625.772 125.723 625.726 125.513 625.726 125.26C625.726 124.793 625.889 124.447 626.216 124.22C626.542 123.987 626.992 123.87 627.566 123.87C627.912 123.87 628.209 123.9 628.456 123.96C628.702 124.013 628.902 124.077 629.056 124.15L628.856 124.85C628.722 124.777 628.556 124.7 628.356 124.62C628.156 124.54 627.902 124.5 627.596 124.5C627.276 124.5 627.016 124.553 626.816 124.66C626.622 124.76 626.526 124.943 626.526 125.21C626.526 125.33 626.556 125.433 626.616 125.52C626.676 125.607 626.756 125.683 626.856 125.75C626.962 125.81 627.082 125.863 627.216 125.91C627.356 125.957 627.499 126 627.646 126.04C627.839 126.1 628.032 126.167 628.226 126.24C628.419 126.307 628.589 126.397 628.736 126.51C628.889 126.623 629.012 126.767 629.106 126.94C629.199 127.107 629.246 127.32 629.246 127.58C629.246 127.853 629.189 128.087 629.076 128.28C628.969 128.467 628.826 128.623 628.646 128.75C628.466 128.87 628.259 128.957 628.026 129.01C627.792 129.07 627.549 129.1 627.296 129.1Z" fill="black"/><path d="M466.25 157.05V159.11H465.45V157.05H463.51V156.41H465.45V154.35H466.25V156.41H468.19V157.05H466.25ZM471.533 159.49C471.753 159.49 471.963 159.45 472.163 159.37C472.363 159.29 472.54 159.17 472.693 159.01C472.846 158.843 472.966 158.637 473.053 158.39C473.146 158.137 473.193 157.84 473.193 157.5C473.193 157.16 473.146 156.867 473.053 156.62C472.966 156.367 472.846 156.157 472.693 155.99C472.54 155.817 472.363 155.69 472.163 155.61C471.963 155.523 471.753 155.48 471.533 155.48C471.333 155.48 471.14 155.523 470.953 155.61C470.773 155.697 470.613 155.823 470.473 155.99C470.333 156.157 470.22 156.367 470.133 156.62C470.053 156.867 470.013 157.153 470.013 157.48C470.013 157.813 470.053 158.107 470.133 158.36C470.22 158.613 470.333 158.823 470.473 158.99C470.613 159.157 470.773 159.283 470.953 159.37C471.14 159.45 471.333 159.49 471.533 159.49ZM473.123 159.03C472.963 159.35 472.74 159.61 472.453 159.81C472.173 160.003 471.823 160.1 471.403 160.1C471.123 160.1 470.846 160.047 470.573 159.94C470.306 159.833 470.066 159.673 469.853 159.46C469.64 159.24 469.466 158.967 469.333 158.64C469.206 158.307 469.143 157.92 469.143 157.48C469.143 157.04 469.206 156.657 469.333 156.33C469.466 155.997 469.64 155.723 469.853 155.51C470.066 155.297 470.31 155.137 470.583 155.03C470.856 154.923 471.133 154.87 471.413 154.87C471.786 154.87 472.113 154.947 472.393 155.1C472.673 155.247 472.9 155.46 473.073 155.74V152.75H473.923V160H473.223L473.123 159.03ZM477.351 155.48C476.991 155.48 476.681 155.607 476.421 155.86C476.168 156.113 476.008 156.497 475.941 157.01H478.491C478.531 156.49 478.441 156.107 478.221 155.86C478.008 155.607 477.718 155.48 477.351 155.48ZM479.201 159.57C479.021 159.723 478.788 159.85 478.501 159.95C478.214 160.05 477.888 160.1 477.521 160.1C476.721 160.1 476.108 159.873 475.681 159.42C475.254 158.96 475.041 158.313 475.041 157.48C475.041 157.073 475.101 156.71 475.221 156.39C475.341 156.063 475.504 155.787 475.711 155.56C475.924 155.333 476.171 155.163 476.451 155.05C476.738 154.93 477.044 154.87 477.371 154.87C477.711 154.87 478.014 154.93 478.281 155.05C478.554 155.163 478.778 155.337 478.951 155.57C479.131 155.797 479.251 156.083 479.311 156.43C479.378 156.77 479.378 157.163 479.311 157.61H475.911C475.951 158.817 476.514 159.42 477.601 159.42C477.888 159.42 478.144 159.377 478.371 159.29C478.598 159.203 478.808 159.093 479.001 158.96L479.201 159.57ZM482.878 159.49C483.324 159.49 483.684 159.333 483.958 159.02C484.238 158.7 484.378 158.187 484.378 157.48C484.378 156.787 484.238 156.28 483.958 155.96C483.684 155.633 483.324 155.47 482.878 155.47C482.658 155.47 482.448 155.51 482.248 155.59C482.048 155.663 481.871 155.783 481.718 155.95C481.571 156.11 481.454 156.317 481.368 156.57C481.281 156.823 481.238 157.127 481.238 157.48C481.238 157.84 481.281 158.147 481.368 158.4C481.454 158.653 481.571 158.86 481.718 159.02C481.871 159.18 482.048 159.3 482.248 159.38C482.448 159.453 482.658 159.49 482.878 159.49ZM483.008 160.1C482.634 160.1 482.304 160.02 482.018 159.86C481.738 159.693 481.508 159.467 481.328 159.18V161.87H480.478V154.97H481.228L481.288 155.86C481.468 155.56 481.701 155.32 481.988 155.14C482.281 154.96 482.634 154.87 483.048 154.87C483.341 154.87 483.621 154.923 483.888 155.03C484.154 155.137 484.388 155.297 484.588 155.51C484.794 155.723 484.958 155.997 485.078 156.33C485.198 156.657 485.258 157.04 485.258 157.48C485.258 157.92 485.194 158.307 485.068 158.64C484.948 158.967 484.784 159.24 484.578 159.46C484.371 159.673 484.131 159.833 483.858 159.94C483.591 160.047 483.308 160.1 483.008 160.1ZM488.496 160.1C488.169 160.1 487.859 160.043 487.566 159.93C487.273 159.81 487.016 159.64 486.796 159.42C486.576 159.193 486.399 158.92 486.266 158.6C486.139 158.273 486.076 157.9 486.076 157.48C486.076 157.06 486.139 156.69 486.266 156.37C486.399 156.043 486.576 155.77 486.796 155.55C487.016 155.33 487.273 155.163 487.566 155.05C487.859 154.93 488.169 154.87 488.496 154.87C488.823 154.87 489.133 154.93 489.426 155.05C489.726 155.163 489.986 155.33 490.206 155.55C490.433 155.77 490.613 156.043 490.746 156.37C490.879 156.69 490.946 157.06 490.946 157.48C490.946 157.9 490.879 158.273 490.746 158.6C490.613 158.92 490.433 159.193 490.206 159.42C489.986 159.64 489.726 159.81 489.426 159.93C489.133 160.043 488.823 160.1 488.496 160.1ZM488.496 159.47C488.696 159.47 488.889 159.437 489.076 159.37C489.269 159.297 489.439 159.18 489.586 159.02C489.733 158.86 489.849 158.653 489.936 158.4C490.029 158.147 490.076 157.84 490.076 157.48C490.076 157.12 490.029 156.817 489.936 156.57C489.849 156.317 489.733 156.11 489.586 155.95C489.439 155.79 489.269 155.677 489.076 155.61C488.889 155.537 488.696 155.5 488.496 155.5C488.296 155.5 488.103 155.537 487.916 155.61C487.736 155.677 487.573 155.79 487.426 155.95C487.279 156.11 487.163 156.317 487.076 156.57C486.989 156.817 486.946 157.12 486.946 157.48C486.946 157.84 486.989 158.147 487.076 158.4C487.163 158.653 487.279 158.86 487.426 159.02C487.573 159.18 487.736 159.297 487.916 159.37C488.103 159.437 488.296 159.47 488.496 159.47ZM494.549 159.91C494.443 159.963 494.313 160.007 494.159 160.04C494.006 160.08 493.836 160.1 493.649 160.1C493.176 160.1 492.826 159.977 492.599 159.73C492.373 159.477 492.259 159.11 492.259 158.63V155.59H491.659V154.97H492.259V154.01H493.119V154.97H494.379V155.59H493.119V158.59C493.119 158.863 493.163 159.07 493.249 159.21C493.336 159.343 493.496 159.41 493.729 159.41C493.843 159.41 493.959 159.397 494.079 159.37C494.199 159.343 494.306 159.307 494.399 159.26L494.549 159.91ZM496.023 160.06C495.857 160.06 495.717 160.007 495.603 159.9C495.497 159.787 495.443 159.653 495.443 159.5C495.443 159.333 495.497 159.197 495.603 159.09C495.717 158.983 495.857 158.93 496.023 158.93C496.19 158.93 496.327 158.983 496.433 159.09C496.54 159.197 496.593 159.333 496.593 159.5C496.593 159.653 496.54 159.787 496.433 159.9C496.327 160.007 496.19 160.06 496.023 160.06ZM499.122 160.1C498.875 160.1 498.662 160.087 498.482 160.06C498.302 160.04 498.142 160.013 498.002 159.98C497.862 159.94 497.738 159.897 497.632 159.85C497.532 159.803 497.438 159.753 497.352 159.7L497.632 158.99C497.678 159.03 497.745 159.077 497.832 159.13C497.918 159.177 498.025 159.227 498.152 159.28C498.278 159.327 498.422 159.367 498.582 159.4C498.748 159.433 498.928 159.45 499.122 159.45C499.482 159.45 499.755 159.38 499.942 159.24C500.128 159.093 500.222 158.893 500.222 158.64C500.222 158.427 500.145 158.257 499.992 158.13C499.838 158.003 499.575 157.883 499.202 157.77C498.988 157.703 498.782 157.637 498.582 157.57C498.388 157.497 498.215 157.407 498.062 157.3C497.908 157.187 497.785 157.05 497.692 156.89C497.598 156.723 497.552 156.513 497.552 156.26C497.552 155.793 497.715 155.447 498.042 155.22C498.368 154.987 498.818 154.87 499.392 154.87C499.738 154.87 500.035 154.9 500.282 154.96C500.528 155.013 500.728 155.077 500.882 155.15L500.682 155.85C500.548 155.777 500.382 155.7 500.182 155.62C499.982 155.54 499.728 155.5 499.422 155.5C499.102 155.5 498.842 155.553 498.642 155.66C498.448 155.76 498.352 155.943 498.352 156.21C498.352 156.33 498.382 156.433 498.442 156.52C498.502 156.607 498.582 156.683 498.682 156.75C498.788 156.81 498.908 156.863 499.042 156.91C499.182 156.957 499.325 157 499.472 157.04C499.665 157.1 499.858 157.167 500.052 157.24C500.245 157.307 500.415 157.397 500.562 157.51C500.715 157.623 500.838 157.767 500.932 157.94C501.025 158.107 501.072 158.32 501.072 158.58C501.072 158.853 501.015 159.087 500.902 159.28C500.795 159.467 500.652 159.623 500.472 159.75C500.292 159.87 500.085 159.957 499.852 160.01C499.618 160.07 499.375 160.1 499.122 160.1ZM504.158 155.48C503.798 155.48 503.488 155.607 503.228 155.86C502.974 156.113 502.814 156.497 502.748 157.01H505.298C505.338 156.49 505.248 156.107 505.028 155.86C504.814 155.607 504.524 155.48 504.158 155.48ZM506.008 159.57C505.828 159.723 505.594 159.85 505.308 159.95C505.021 160.05 504.694 160.1 504.328 160.1C503.528 160.1 502.914 159.873 502.488 159.42C502.061 158.96 501.848 158.313 501.848 157.48C501.848 157.073 501.908 156.71 502.028 156.39C502.148 156.063 502.311 155.787 502.518 155.56C502.731 155.333 502.978 155.163 503.258 155.05C503.544 154.93 503.851 154.87 504.178 154.87C504.518 154.87 504.821 154.93 505.088 155.05C505.361 155.163 505.584 155.337 505.758 155.57C505.938 155.797 506.058 156.083 506.118 156.43C506.184 156.77 506.184 157.163 506.118 157.61H502.718C502.758 158.817 503.321 159.42 504.408 159.42C504.694 159.42 504.951 159.377 505.178 159.29C505.404 159.203 505.614 159.093 505.808 158.96L506.008 159.57ZM509.774 155.77C509.601 155.757 509.431 155.77 509.264 155.81C509.098 155.85 508.941 155.913 508.794 156C508.654 156.087 508.524 156.193 508.404 156.32C508.291 156.447 508.201 156.587 508.134 156.74V160H507.284V154.97H508.034L508.114 156.06H508.134C508.201 155.913 508.284 155.773 508.384 155.64C508.491 155.5 508.611 155.38 508.744 155.28C508.884 155.173 509.038 155.087 509.204 155.02C509.378 154.953 509.568 154.92 509.774 154.92V155.77ZM510.415 154.97H511.305L512.755 159.42L514.185 154.97H514.975L513.295 160H512.085L510.415 154.97ZM516.249 154.21C516.082 154.21 515.949 154.16 515.849 154.06C515.756 153.96 515.709 153.833 515.709 153.68C515.709 153.527 515.756 153.397 515.849 153.29C515.949 153.183 516.082 153.13 516.249 153.13C516.409 153.13 516.539 153.183 516.639 153.29C516.739 153.397 516.789 153.527 516.789 153.68C516.789 153.833 516.739 153.96 516.639 154.06C516.539 154.16 516.409 154.21 516.249 154.21ZM516.679 154.97V160H515.829V154.97H516.679ZM520.275 160.1C519.928 160.1 519.602 160.043 519.295 159.93C518.995 159.81 518.732 159.637 518.505 159.41C518.285 159.183 518.108 158.91 517.975 158.59C517.848 158.263 517.785 157.893 517.785 157.48C517.785 157.073 517.848 156.71 517.975 156.39C518.108 156.063 518.288 155.787 518.515 155.56C518.748 155.333 519.022 155.163 519.335 155.05C519.648 154.93 519.985 154.87 520.345 154.87C520.645 154.87 520.915 154.9 521.155 154.96C521.395 155.02 521.595 155.103 521.755 155.21L521.505 155.97C521.312 155.83 521.122 155.723 520.935 155.65C520.755 155.57 520.538 155.53 520.285 155.53C520.065 155.53 519.855 155.573 519.655 155.66C519.455 155.74 519.282 155.863 519.135 156.03C518.988 156.19 518.872 156.393 518.785 156.64C518.698 156.88 518.655 157.16 518.655 157.48C518.655 158.133 518.812 158.62 519.125 158.94C519.438 159.26 519.865 159.42 520.405 159.42C520.585 159.42 520.778 159.387 520.985 159.32C521.198 159.253 521.392 159.157 521.565 159.03L521.755 159.66C521.582 159.793 521.368 159.9 521.115 159.98C520.868 160.06 520.588 160.1 520.275 160.1ZM524.783 155.48C524.423 155.48 524.113 155.607 523.853 155.86C523.599 156.113 523.439 156.497 523.373 157.01H525.923C525.963 156.49 525.873 156.107 525.653 155.86C525.439 155.607 525.149 155.48 524.783 155.48ZM526.633 159.57C526.453 159.723 526.219 159.85 525.933 159.95C525.646 160.05 525.319 160.1 524.953 160.1C524.153 160.1 523.539 159.873 523.113 159.42C522.686 158.96 522.473 158.313 522.473 157.48C522.473 157.073 522.533 156.71 522.653 156.39C522.773 156.063 522.936 155.787 523.143 155.56C523.356 155.333 523.603 155.163 523.883 155.05C524.169 154.93 524.476 154.87 524.803 154.87C525.143 154.87 525.446 154.93 525.713 155.05C525.986 155.163 526.209 155.337 526.383 155.57C526.563 155.797 526.683 156.083 526.743 156.43C526.809 156.77 526.809 157.163 526.743 157.61H523.343C523.383 158.817 523.946 159.42 525.033 159.42C525.319 159.42 525.576 159.377 525.803 159.29C526.029 159.203 526.239 159.093 526.433 158.96L526.633 159.57ZM527.209 160.47H531.189V161.12H527.209V160.47ZM534.033 159.49C534.253 159.49 534.463 159.45 534.663 159.37C534.863 159.29 535.04 159.17 535.193 159.01C535.346 158.843 535.466 158.637 535.553 158.39C535.646 158.137 535.693 157.84 535.693 157.5C535.693 157.16 535.646 156.867 535.553 156.62C535.466 156.367 535.346 156.157 535.193 155.99C535.04 155.817 534.863 155.69 534.663 155.61C534.463 155.523 534.253 155.48 534.033 155.48C533.833 155.48 533.64 155.523 533.453 155.61C533.273 155.697 533.113 155.823 532.973 155.99C532.833 156.157 532.72 156.367 532.633 156.62C532.553 156.867 532.513 157.153 532.513 157.48C532.513 157.813 532.553 158.107 532.633 158.36C532.72 158.613 532.833 158.823 532.973 158.99C533.113 159.157 533.273 159.283 533.453 159.37C533.64 159.45 533.833 159.49 534.033 159.49ZM535.623 159.03C535.463 159.35 535.24 159.61 534.953 159.81C534.673 160.003 534.323 160.1 533.903 160.1C533.623 160.1 533.346 160.047 533.073 159.94C532.806 159.833 532.566 159.673 532.353 159.46C532.14 159.24 531.966 158.967 531.833 158.64C531.706 158.307 531.643 157.92 531.643 157.48C531.643 157.04 531.706 156.657 531.833 156.33C531.966 155.997 532.14 155.723 532.353 155.51C532.566 155.297 532.81 155.137 533.083 155.03C533.356 154.923 533.633 154.87 533.913 154.87C534.286 154.87 534.613 154.947 534.893 155.1C535.173 155.247 535.4 155.46 535.573 155.74V152.75H536.423V160H535.723L535.623 159.03ZM541.081 159.1C540.948 159.38 540.738 159.617 540.451 159.81C540.171 160.003 539.804 160.1 539.351 160.1C538.884 160.1 538.508 159.96 538.221 159.68C537.934 159.393 537.791 158.953 537.791 158.36V154.97H538.651V158.36C538.651 158.56 538.674 158.727 538.721 158.86C538.768 158.993 538.834 159.1 538.921 159.18C539.008 159.26 539.108 159.317 539.221 159.35C539.334 159.383 539.458 159.4 539.591 159.4C539.964 159.4 540.264 159.31 540.491 159.13C540.724 158.95 540.921 158.703 541.081 158.39V154.97H541.931V160H541.181L541.101 159.1H541.081ZM545.839 155.77C545.665 155.757 545.495 155.77 545.329 155.81C545.162 155.85 545.005 155.913 544.859 156C544.719 156.087 544.589 156.193 544.469 156.32C544.355 156.447 544.265 156.587 544.199 156.74V160H543.349V154.97H544.099L544.179 156.06H544.199C544.265 155.913 544.349 155.773 544.449 155.64C544.555 155.5 544.675 155.38 544.809 155.28C544.949 155.173 545.102 155.087 545.269 155.02C545.442 154.953 545.632 154.92 545.839 154.92V155.77ZM548.247 159.48C548.6 159.48 548.88 159.393 549.087 159.22C549.3 159.04 549.457 158.837 549.557 158.61V157.66H549.117C548.47 157.66 548.004 157.73 547.717 157.87C547.437 158.003 547.297 158.263 547.297 158.65C547.297 158.923 547.39 159.13 547.577 159.27C547.77 159.41 547.994 159.48 548.247 159.48ZM549.717 160C549.69 159.907 549.667 159.797 549.647 159.67C549.627 159.543 549.61 159.407 549.597 159.26C549.537 159.36 549.464 159.46 549.377 159.56C549.297 159.66 549.197 159.75 549.077 159.83C548.957 159.91 548.814 159.973 548.647 160.02C548.48 160.073 548.287 160.1 548.067 160.1C547.847 160.1 547.64 160.07 547.447 160.01C547.254 159.95 547.08 159.86 546.927 159.74C546.78 159.62 546.664 159.473 546.577 159.3C546.49 159.127 546.447 158.927 546.447 158.7C546.447 158.153 546.664 157.757 547.097 157.51C547.537 157.257 548.184 157.13 549.037 157.13H549.557V156.72C549.557 156.313 549.47 156.01 549.297 155.81C549.124 155.61 548.817 155.51 548.377 155.51C548.077 155.51 547.804 155.567 547.557 155.68C547.317 155.787 547.104 155.917 546.917 156.07L546.687 155.37C546.767 155.31 546.87 155.25 546.997 155.19C547.124 155.13 547.267 155.077 547.427 155.03C547.587 154.983 547.757 154.947 547.937 154.92C548.117 154.887 548.3 154.87 548.487 154.87C549.12 154.87 549.597 155.01 549.917 155.29C550.244 155.563 550.407 156 550.407 156.6V159.19C550.407 159.303 550.414 159.447 550.427 159.62C550.44 159.787 550.457 159.913 550.477 160H549.717ZM554.256 159.91C554.15 159.963 554.02 160.007 553.866 160.04C553.713 160.08 553.543 160.1 553.356 160.1C552.883 160.1 552.533 159.977 552.306 159.73C552.08 159.477 551.966 159.11 551.966 158.63V155.59H551.366V154.97H551.966V154.01H552.826V154.97H554.086V155.59H552.826V158.59C552.826 158.863 552.87 159.07 552.956 159.21C553.043 159.343 553.203 159.41 553.436 159.41C553.55 159.41 553.666 159.397 553.786 159.37C553.906 159.343 554.013 159.307 554.106 159.26L554.256 159.91ZM555.683 154.21C555.516 154.21 555.383 154.16 555.283 154.06C555.189 153.96 555.143 153.833 555.143 153.68C555.143 153.527 555.189 153.397 555.283 153.29C555.383 153.183 555.516 153.13 555.683 153.13C555.843 153.13 555.973 153.183 556.073 153.29C556.173 153.397 556.223 153.527 556.223 153.68C556.223 153.833 556.173 153.96 556.073 154.06C555.973 154.16 555.843 154.21 555.683 154.21ZM556.113 154.97V160H555.263V154.97H556.113ZM559.639 160.1C559.312 160.1 559.002 160.043 558.709 159.93C558.415 159.81 558.159 159.64 557.939 159.42C557.719 159.193 557.542 158.92 557.409 158.6C557.282 158.273 557.219 157.9 557.219 157.48C557.219 157.06 557.282 156.69 557.409 156.37C557.542 156.043 557.719 155.77 557.939 155.55C558.159 155.33 558.415 155.163 558.709 155.05C559.002 154.93 559.312 154.87 559.639 154.87C559.965 154.87 560.275 154.93 560.569 155.05C560.869 155.163 561.129 155.33 561.349 155.55C561.575 155.77 561.755 156.043 561.889 156.37C562.022 156.69 562.089 157.06 562.089 157.48C562.089 157.9 562.022 158.273 561.889 158.6C561.755 158.92 561.575 159.193 561.349 159.42C561.129 159.64 560.869 159.81 560.569 159.93C560.275 160.043 559.965 160.1 559.639 160.1ZM559.639 159.47C559.839 159.47 560.032 159.437 560.219 159.37C560.412 159.297 560.582 159.18 560.729 159.02C560.875 158.86 560.992 158.653 561.079 158.4C561.172 158.147 561.219 157.84 561.219 157.48C561.219 157.12 561.172 156.817 561.079 156.57C560.992 156.317 560.875 156.11 560.729 155.95C560.582 155.79 560.412 155.677 560.219 155.61C560.032 155.537 559.839 155.5 559.639 155.5C559.439 155.5 559.245 155.537 559.059 155.61C558.879 155.677 558.715 155.79 558.569 155.95C558.422 156.11 558.305 156.317 558.219 156.57C558.132 156.817 558.089 157.12 558.089 157.48C558.089 157.84 558.132 158.147 558.219 158.4C558.305 158.653 558.422 158.86 558.569 159.02C558.715 159.18 558.879 159.297 559.059 159.37C559.245 159.437 559.439 159.47 559.639 159.47ZM565.592 155.55C565.205 155.55 564.892 155.643 564.652 155.83C564.412 156.017 564.215 156.25 564.062 156.53V160H563.212V154.97H564.012L564.042 155.87H564.062C564.195 155.583 564.409 155.347 564.702 155.16C564.995 154.967 565.365 154.87 565.812 154.87C566.312 154.87 566.709 155.003 567.002 155.27C567.295 155.53 567.442 155.93 567.442 156.47V160H566.582V156.51C566.582 156.15 566.495 155.9 566.322 155.76C566.149 155.62 565.905 155.55 565.592 155.55ZM568.108 160.47H572.088V161.12H568.108V160.47ZM574.132 160.1C573.885 160.1 573.672 160.087 573.492 160.06C573.312 160.04 573.152 160.013 573.012 159.98C572.872 159.94 572.748 159.897 572.642 159.85C572.542 159.803 572.448 159.753 572.362 159.7L572.642 158.99C572.688 159.03 572.755 159.077 572.842 159.13C572.928 159.177 573.035 159.227 573.162 159.28C573.288 159.327 573.432 159.367 573.592 159.4C573.758 159.433 573.938 159.45 574.132 159.45C574.492 159.45 574.765 159.38 574.952 159.24C575.138 159.093 575.232 158.893 575.232 158.64C575.232 158.427 575.155 158.257 575.002 158.13C574.848 158.003 574.585 157.883 574.212 157.77C573.998 157.703 573.792 157.637 573.592 157.57C573.398 157.497 573.225 157.407 573.072 157.3C572.918 157.187 572.795 157.05 572.702 156.89C572.608 156.723 572.562 156.513 572.562 156.26C572.562 155.793 572.725 155.447 573.052 155.22C573.378 154.987 573.828 154.87 574.402 154.87C574.748 154.87 575.045 154.9 575.292 154.96C575.538 155.013 575.738 155.077 575.892 155.15L575.692 155.85C575.558 155.777 575.392 155.7 575.192 155.62C574.992 155.54 574.738 155.5 574.432 155.5C574.112 155.5 573.852 155.553 573.652 155.66C573.458 155.76 573.362 155.943 573.362 156.21C573.362 156.33 573.392 156.433 573.452 156.52C573.512 156.607 573.592 156.683 573.692 156.75C573.798 156.81 573.918 156.863 574.052 156.91C574.192 156.957 574.335 157 574.482 157.04C574.675 157.1 574.868 157.167 575.062 157.24C575.255 157.307 575.425 157.397 575.572 157.51C575.725 157.623 575.848 157.767 575.942 157.94C576.035 158.107 576.082 158.32 576.082 158.58C576.082 158.853 576.025 159.087 575.912 159.28C575.805 159.467 575.662 159.623 575.482 159.75C575.302 159.87 575.095 159.957 574.862 160.01C574.628 160.07 574.385 160.1 574.132 160.1Z" fill="black"/><path d="M466.25 188.05V190.11H465.45V188.05H463.51V187.41H465.45V185.35H466.25V187.41H468.19V188.05H466.25ZM468.843 185.97H469.733L471.183 190.42L472.613 185.97H473.403L471.723 191H470.513L468.843 185.97ZM476.169 186.48C475.809 186.48 475.499 186.607 475.239 186.86C474.986 187.113 474.826 187.497 474.759 188.01H477.309C477.349 187.49 477.259 187.107 477.039 186.86C476.826 186.607 476.536 186.48 476.169 186.48ZM478.019 190.57C477.839 190.723 477.606 190.85 477.319 190.95C477.033 191.05 476.706 191.1 476.339 191.1C475.539 191.1 474.926 190.873 474.499 190.42C474.073 189.96 473.859 189.313 473.859 188.48C473.859 188.073 473.919 187.71 474.039 187.39C474.159 187.063 474.323 186.787 474.529 186.56C474.743 186.333 474.989 186.163 475.269 186.05C475.556 185.93 475.863 185.87 476.189 185.87C476.529 185.87 476.833 185.93 477.099 186.05C477.373 186.163 477.596 186.337 477.769 186.57C477.949 186.797 478.069 187.083 478.129 187.43C478.196 187.77 478.196 188.163 478.129 188.61H474.729C474.769 189.817 475.333 190.42 476.419 190.42C476.706 190.42 476.963 190.377 477.189 190.29C477.416 190.203 477.626 190.093 477.819 189.96L478.019 190.57ZM480.146 191H479.296V183.75H480.146V186.85H480.166C480.299 186.57 480.509 186.337 480.796 186.15C481.083 185.963 481.449 185.87 481.896 185.87C482.389 185.87 482.783 186.003 483.076 186.27C483.369 186.53 483.516 186.93 483.516 187.47V191H482.666V187.51C482.666 187.15 482.579 186.9 482.406 186.76C482.233 186.62 481.989 186.55 481.676 186.55C481.289 186.55 480.976 186.643 480.736 186.83C480.496 187.017 480.299 187.25 480.146 187.53V191ZM485.302 185.21C485.135 185.21 485.002 185.16 484.902 185.06C484.809 184.96 484.762 184.833 484.762 184.68C484.762 184.527 484.809 184.397 484.902 184.29C485.002 184.183 485.135 184.13 485.302 184.13C485.462 184.13 485.592 184.183 485.692 184.29C485.792 184.397 485.842 184.527 485.842 184.68C485.842 184.833 485.792 184.96 485.692 185.06C485.592 185.16 485.462 185.21 485.302 185.21ZM485.732 185.97V191H484.882V185.97H485.732ZM489.328 191.1C488.981 191.1 488.654 191.043 488.348 190.93C488.048 190.81 487.784 190.637 487.558 190.41C487.338 190.183 487.161 189.91 487.028 189.59C486.901 189.263 486.838 188.893 486.838 188.48C486.838 188.073 486.901 187.71 487.028 187.39C487.161 187.063 487.341 186.787 487.568 186.56C487.801 186.333 488.074 186.163 488.388 186.05C488.701 185.93 489.038 185.87 489.398 185.87C489.698 185.87 489.968 185.9 490.208 185.96C490.448 186.02 490.648 186.103 490.808 186.21L490.558 186.97C490.364 186.83 490.174 186.723 489.988 186.65C489.808 186.57 489.591 186.53 489.338 186.53C489.118 186.53 488.908 186.573 488.708 186.66C488.508 186.74 488.334 186.863 488.188 187.03C488.041 187.19 487.924 187.393 487.838 187.64C487.751 187.88 487.708 188.16 487.708 188.48C487.708 189.133 487.864 189.62 488.178 189.94C488.491 190.26 488.918 190.42 489.458 190.42C489.638 190.42 489.831 190.387 490.038 190.32C490.251 190.253 490.444 190.157 490.618 190.03L490.808 190.66C490.634 190.793 490.421 190.9 490.168 190.98C489.921 191.06 489.641 191.1 489.328 191.1ZM492.675 183.75V191H491.825V183.75H492.675ZM496.101 186.48C495.741 186.48 495.431 186.607 495.171 186.86C494.918 187.113 494.758 187.497 494.691 188.01H497.241C497.281 187.49 497.191 187.107 496.971 186.86C496.758 186.607 496.468 186.48 496.101 186.48ZM497.951 190.57C497.771 190.723 497.538 190.85 497.251 190.95C496.964 191.05 496.638 191.1 496.271 191.1C495.471 191.1 494.858 190.873 494.431 190.42C494.004 189.96 493.791 189.313 493.791 188.48C493.791 188.073 493.851 187.71 493.971 187.39C494.091 187.063 494.254 186.787 494.461 186.56C494.674 186.333 494.921 186.163 495.201 186.05C495.488 185.93 495.794 185.87 496.121 185.87C496.461 185.87 496.764 185.93 497.031 186.05C497.304 186.163 497.528 186.337 497.701 186.57C497.881 186.797 498.001 187.083 498.061 187.43C498.128 187.77 498.128 188.163 498.061 188.61H494.661C494.701 189.817 495.264 190.42 496.351 190.42C496.638 190.42 496.894 190.377 497.121 190.29C497.348 190.203 497.558 190.093 497.751 189.96L497.951 190.57ZM499.598 191.06C499.431 191.06 499.291 191.007 499.178 190.9C499.071 190.787 499.018 190.653 499.018 190.5C499.018 190.333 499.071 190.197 499.178 190.09C499.291 189.983 499.431 189.93 499.598 189.93C499.764 189.93 499.901 189.983 500.008 190.09C500.114 190.197 500.168 190.333 500.168 190.5C500.168 190.653 500.114 190.787 500.008 190.9C499.901 191.007 499.764 191.06 499.598 191.06ZM503.35 190.49C503.57 190.49 503.78 190.45 503.98 190.37C504.18 190.29 504.356 190.17 504.51 190.01C504.663 189.843 504.783 189.637 504.87 189.39C504.963 189.137 505.01 188.84 505.01 188.5C505.01 188.16 504.963 187.867 504.87 187.62C504.783 187.367 504.663 187.157 504.51 186.99C504.356 186.817 504.18 186.69 503.98 186.61C503.78 186.523 503.57 186.48 503.35 186.48C503.15 186.48 502.956 186.523 502.77 186.61C502.59 186.697 502.43 186.823 502.29 186.99C502.15 187.157 502.036 187.367 501.95 187.62C501.87 187.867 501.83 188.153 501.83 188.48C501.83 188.813 501.87 189.107 501.95 189.36C502.036 189.613 502.15 189.823 502.29 189.99C502.43 190.157 502.59 190.283 502.77 190.37C502.956 190.45 503.15 190.49 503.35 190.49ZM504.94 190.03C504.78 190.35 504.556 190.61 504.27 190.81C503.99 191.003 503.64 191.1 503.22 191.1C502.94 191.1 502.663 191.047 502.39 190.94C502.123 190.833 501.883 190.673 501.67 190.46C501.456 190.24 501.283 189.967 501.15 189.64C501.023 189.307 500.96 188.92 500.96 188.48C500.96 188.04 501.023 187.657 501.15 187.33C501.283 186.997 501.456 186.723 501.67 186.51C501.883 186.297 502.126 186.137 502.4 186.03C502.673 185.923 502.95 185.87 503.23 185.87C503.603 185.87 503.93 185.947 504.21 186.1C504.49 186.247 504.716 186.46 504.89 186.74V183.75H505.74V191H505.04L504.94 190.03ZM509.167 186.48C508.807 186.48 508.497 186.607 508.237 186.86C507.984 187.113 507.824 187.497 507.757 188.01H510.307C510.347 187.49 510.257 187.107 510.037 186.86C509.824 186.607 509.534 186.48 509.167 186.48ZM511.017 190.57C510.837 190.723 510.604 190.85 510.317 190.95C510.031 191.05 509.704 191.1 509.337 191.1C508.537 191.1 507.924 190.873 507.497 190.42C507.071 189.96 506.857 189.313 506.857 188.48C506.857 188.073 506.917 187.71 507.037 187.39C507.157 187.063 507.321 186.787 507.527 186.56C507.741 186.333 507.987 186.163 508.267 186.05C508.554 185.93 508.861 185.87 509.187 185.87C509.527 185.87 509.831 185.93 510.097 186.05C510.371 186.163 510.594 186.337 510.767 186.57C510.947 186.797 511.067 187.083 511.127 187.43C511.194 187.77 511.194 188.163 511.127 188.61H507.727C507.767 189.817 508.331 190.42 509.417 190.42C509.704 190.42 509.961 190.377 510.187 190.29C510.414 190.203 510.624 190.093 510.817 189.96L511.017 190.57ZM514.694 190.49C515.141 190.49 515.501 190.333 515.774 190.02C516.054 189.7 516.194 189.187 516.194 188.48C516.194 187.787 516.054 187.28 515.774 186.96C515.501 186.633 515.141 186.47 514.694 186.47C514.474 186.47 514.264 186.51 514.064 186.59C513.864 186.663 513.687 186.783 513.534 186.95C513.387 187.11 513.271 187.317 513.184 187.57C513.097 187.823 513.054 188.127 513.054 188.48C513.054 188.84 513.097 189.147 513.184 189.4C513.271 189.653 513.387 189.86 513.534 190.02C513.687 190.18 513.864 190.3 514.064 190.38C514.264 190.453 514.474 190.49 514.694 190.49ZM514.824 191.1C514.451 191.1 514.121 191.02 513.834 190.86C513.554 190.693 513.324 190.467 513.144 190.18V192.87H512.294V185.97H513.044L513.104 186.86C513.284 186.56 513.517 186.32 513.804 186.14C514.097 185.96 514.451 185.87 514.864 185.87C515.157 185.87 515.437 185.923 515.704 186.03C515.971 186.137 516.204 186.297 516.404 186.51C516.611 186.723 516.774 186.997 516.894 187.33C517.014 187.657 517.074 188.04 517.074 188.48C517.074 188.92 517.011 189.307 516.884 189.64C516.764 189.967 516.601 190.24 516.394 190.46C516.187 190.673 515.947 190.833 515.674 190.94C515.407 191.047 515.124 191.1 514.824 191.1ZM520.312 191.1C519.986 191.1 519.676 191.043 519.382 190.93C519.089 190.81 518.832 190.64 518.612 190.42C518.392 190.193 518.216 189.92 518.082 189.6C517.956 189.273 517.892 188.9 517.892 188.48C517.892 188.06 517.956 187.69 518.082 187.37C518.216 187.043 518.392 186.77 518.612 186.55C518.832 186.33 519.089 186.163 519.382 186.05C519.676 185.93 519.986 185.87 520.312 185.87C520.639 185.87 520.949 185.93 521.242 186.05C521.542 186.163 521.802 186.33 522.022 186.55C522.249 186.77 522.429 187.043 522.562 187.37C522.696 187.69 522.762 188.06 522.762 188.48C522.762 188.9 522.696 189.273 522.562 189.6C522.429 189.92 522.249 190.193 522.022 190.42C521.802 190.64 521.542 190.81 521.242 190.93C520.949 191.043 520.639 191.1 520.312 191.1ZM520.312 190.47C520.512 190.47 520.706 190.437 520.892 190.37C521.086 190.297 521.256 190.18 521.402 190.02C521.549 189.86 521.666 189.653 521.752 189.4C521.846 189.147 521.892 188.84 521.892 188.48C521.892 188.12 521.846 187.817 521.752 187.57C521.666 187.317 521.549 187.11 521.402 186.95C521.256 186.79 521.086 186.677 520.892 186.61C520.706 186.537 520.512 186.5 520.312 186.5C520.112 186.5 519.919 186.537 519.732 186.61C519.552 186.677 519.389 186.79 519.242 186.95C519.096 187.11 518.979 187.317 518.892 187.57C518.806 187.817 518.762 188.12 518.762 188.48C518.762 188.84 518.806 189.147 518.892 189.4C518.979 189.653 519.096 189.86 519.242 190.02C519.389 190.18 519.552 190.297 519.732 190.37C519.919 190.437 520.112 190.47 520.312 190.47ZM526.366 190.91C526.259 190.963 526.129 191.007 525.976 191.04C525.822 191.08 525.652 191.1 525.466 191.1C524.992 191.1 524.642 190.977 524.416 190.73C524.189 190.477 524.076 190.11 524.076 189.63V186.59H523.476V185.97H524.076V185.01H524.936V185.97H526.196V186.59H524.936V189.59C524.936 189.863 524.979 190.07 525.066 190.21C525.152 190.343 525.312 190.41 525.546 190.41C525.659 190.41 525.776 190.397 525.896 190.37C526.016 190.343 526.122 190.307 526.216 190.26L526.366 190.91ZM526.672 191.47H530.652V192.12H526.672V191.47ZM533.386 186.48C533.026 186.48 532.716 186.607 532.456 186.86C532.203 187.113 532.043 187.497 531.976 188.01H534.526C534.566 187.49 534.476 187.107 534.256 186.86C534.043 186.607 533.753 186.48 533.386 186.48ZM535.236 190.57C535.056 190.723 534.823 190.85 534.536 190.95C534.249 191.05 533.923 191.1 533.556 191.1C532.756 191.1 532.143 190.873 531.716 190.42C531.289 189.96 531.076 189.313 531.076 188.48C531.076 188.073 531.136 187.71 531.256 187.39C531.376 187.063 531.539 186.787 531.746 186.56C531.959 186.333 532.206 186.163 532.486 186.05C532.773 185.93 533.079 185.87 533.406 185.87C533.746 185.87 534.049 185.93 534.316 186.05C534.589 186.163 534.813 186.337 534.986 186.57C535.166 186.797 535.286 187.083 535.346 187.43C535.413 187.77 535.413 188.163 535.346 188.61H531.946C531.986 189.817 532.549 190.42 533.636 190.42C533.923 190.42 534.179 190.377 534.406 190.29C534.633 190.203 534.843 190.093 535.036 189.96L535.236 190.57ZM538.114 188.96L536.714 191H535.914L537.734 188.39L536.124 185.97H537.144L538.364 187.79L539.614 185.97H540.414L538.744 188.37L540.494 191H539.484L538.114 188.96ZM543.846 190.91C543.74 190.963 543.61 191.007 543.456 191.04C543.303 191.08 543.133 191.1 542.946 191.1C542.473 191.1 542.123 190.977 541.896 190.73C541.67 190.477 541.556 190.11 541.556 189.63V186.59H540.956V185.97H541.556V185.01H542.416V185.97H543.676V186.59H542.416V189.59C542.416 189.863 542.46 190.07 542.546 190.21C542.633 190.343 542.793 190.41 543.026 190.41C543.14 190.41 543.256 190.397 543.376 190.37C543.496 190.343 543.603 190.307 543.696 190.26L543.846 190.91ZM547.343 186.77C547.169 186.757 546.999 186.77 546.833 186.81C546.666 186.85 546.509 186.913 546.363 187C546.223 187.087 546.093 187.193 545.973 187.32C545.859 187.447 545.769 187.587 545.703 187.74V191H544.853V185.97H545.603L545.683 187.06H545.703C545.769 186.913 545.853 186.773 545.953 186.64C546.059 186.5 546.179 186.38 546.313 186.28C546.453 186.173 546.606 186.087 546.773 186.02C546.946 185.953 547.136 185.92 547.343 185.92V186.77ZM549.751 190.48C550.104 190.48 550.384 190.393 550.591 190.22C550.804 190.04 550.961 189.837 551.061 189.61V188.66H550.621C549.974 188.66 549.507 188.73 549.221 188.87C548.941 189.003 548.801 189.263 548.801 189.65C548.801 189.923 548.894 190.13 549.081 190.27C549.274 190.41 549.497 190.48 549.751 190.48ZM551.221 191C551.194 190.907 551.171 190.797 551.151 190.67C551.131 190.543 551.114 190.407 551.101 190.26C551.041 190.36 550.967 190.46 550.881 190.56C550.801 190.66 550.701 190.75 550.581 190.83C550.461 190.91 550.317 190.973 550.151 191.02C549.984 191.073 549.791 191.1 549.571 191.1C549.351 191.1 549.144 191.07 548.951 191.01C548.757 190.95 548.584 190.86 548.431 190.74C548.284 190.62 548.167 190.473 548.081 190.3C547.994 190.127 547.951 189.927 547.951 189.7C547.951 189.153 548.167 188.757 548.601 188.51C549.041 188.257 549.687 188.13 550.541 188.13H551.061V187.72C551.061 187.313 550.974 187.01 550.801 186.81C550.627 186.61 550.321 186.51 549.881 186.51C549.581 186.51 549.307 186.567 549.061 186.68C548.821 186.787 548.607 186.917 548.421 187.07L548.191 186.37C548.271 186.31 548.374 186.25 548.501 186.19C548.627 186.13 548.771 186.077 548.931 186.03C549.091 185.983 549.261 185.947 549.441 185.92C549.621 185.887 549.804 185.87 549.991 185.87C550.624 185.87 551.101 186.01 551.421 186.29C551.747 186.563 551.911 187 551.911 187.6V190.19C551.911 190.303 551.917 190.447 551.931 190.62C551.944 190.787 551.961 190.913 551.981 191H551.221ZM552.58 191.47H556.56V192.12H552.58V191.47ZM558.604 191.1C558.358 191.1 558.144 191.087 557.964 191.06C557.784 191.04 557.624 191.013 557.484 190.98C557.344 190.94 557.221 190.897 557.114 190.85C557.014 190.803 556.921 190.753 556.834 190.7L557.114 189.99C557.161 190.03 557.228 190.077 557.314 190.13C557.401 190.177 557.508 190.227 557.634 190.28C557.761 190.327 557.904 190.367 558.064 190.4C558.231 190.433 558.411 190.45 558.604 190.45C558.964 190.45 559.238 190.38 559.424 190.24C559.611 190.093 559.704 189.893 559.704 189.64C559.704 189.427 559.628 189.257 559.474 189.13C559.321 189.003 559.058 188.883 558.684 188.77C558.471 188.703 558.264 188.637 558.064 188.57C557.871 188.497 557.698 188.407 557.544 188.3C557.391 188.187 557.268 188.05 557.174 187.89C557.081 187.723 557.034 187.513 557.034 187.26C557.034 186.793 557.198 186.447 557.524 186.22C557.851 185.987 558.301 185.87 558.874 185.87C559.221 185.87 559.518 185.9 559.764 185.96C560.011 186.013 560.211 186.077 560.364 186.15L560.164 186.85C560.031 186.777 559.864 186.7 559.664 186.62C559.464 186.54 559.211 186.5 558.904 186.5C558.584 186.5 558.324 186.553 558.124 186.66C557.931 186.76 557.834 186.943 557.834 187.21C557.834 187.33 557.864 187.433 557.924 187.52C557.984 187.607 558.064 187.683 558.164 187.75C558.271 187.81 558.391 187.863 558.524 187.91C558.664 187.957 558.808 188 558.954 188.04C559.148 188.1 559.341 188.167 559.534 188.24C559.728 188.307 559.898 188.397 560.044 188.51C560.198 188.623 560.321 188.767 560.414 188.94C560.508 189.107 560.554 189.32 560.554 189.58C560.554 189.853 560.498 190.087 560.384 190.28C560.278 190.467 560.134 190.623 559.954 190.75C559.774 190.87 559.568 190.957 559.334 191.01C559.101 191.07 558.858 191.1 558.604 191.1ZM563.64 186.48C563.28 186.48 562.97 186.607 562.71 186.86C562.457 187.113 562.297 187.497 562.23 188.01H564.78C564.82 187.49 564.73 187.107 564.51 186.86C564.297 186.607 564.007 186.48 563.64 186.48ZM565.49 190.57C565.31 190.723 565.077 190.85 564.79 190.95C564.503 191.05 564.177 191.1 563.81 191.1C563.01 191.1 562.397 190.873 561.97 190.42C561.543 189.96 561.33 189.313 561.33 188.48C561.33 188.073 561.39 187.71 561.51 187.39C561.63 187.063 561.793 186.787 562 186.56C562.213 186.333 562.46 186.163 562.74 186.05C563.027 185.93 563.333 185.87 563.66 185.87C564 185.87 564.303 185.93 564.57 186.05C564.843 186.163 565.067 186.337 565.24 186.57C565.42 186.797 565.54 187.083 565.6 187.43C565.667 187.77 565.667 188.163 565.6 188.61H562.2C562.24 189.817 562.803 190.42 563.89 190.42C564.177 190.42 564.433 190.377 564.66 190.29C564.887 190.203 565.097 190.093 565.29 189.96L565.49 190.57ZM569.257 186.77C569.083 186.757 568.913 186.77 568.747 186.81C568.58 186.85 568.423 186.913 568.277 187C568.137 187.087 568.007 187.193 567.887 187.32C567.773 187.447 567.683 187.587 567.617 187.74V191H566.767V185.97H567.517L567.597 187.06H567.617C567.683 186.913 567.767 186.773 567.867 186.64C567.973 186.5 568.093 186.38 568.227 186.28C568.367 186.173 568.52 186.087 568.687 186.02C568.86 185.953 569.05 185.92 569.257 185.92V186.77ZM569.898 185.97H570.788L572.238 190.42L573.668 185.97H574.458L572.778 191H571.568L569.898 185.97ZM575.732 185.21C575.565 185.21 575.432 185.16 575.332 185.06C575.238 184.96 575.192 184.833 575.192 184.68C575.192 184.527 575.238 184.397 575.332 184.29C575.432 184.183 575.565 184.13 575.732 184.13C575.892 184.13 576.022 184.183 576.122 184.29C576.222 184.397 576.272 184.527 576.272 184.68C576.272 184.833 576.222 184.96 576.122 185.06C576.022 185.16 575.892 185.21 575.732 185.21ZM576.162 185.97V191H575.312V185.97H576.162ZM579.757 191.1C579.411 191.1 579.084 191.043 578.777 190.93C578.477 190.81 578.214 190.637 577.987 190.41C577.767 190.183 577.591 189.91 577.457 189.59C577.331 189.263 577.267 188.893 577.267 188.48C577.267 188.073 577.331 187.71 577.457 187.39C577.591 187.063 577.771 186.787 577.997 186.56C578.231 186.333 578.504 186.163 578.817 186.05C579.131 185.93 579.467 185.87 579.827 185.87C580.127 185.87 580.397 185.9 580.637 185.96C580.877 186.02 581.077 186.103 581.237 186.21L580.987 186.97C580.794 186.83 580.604 186.723 580.417 186.65C580.237 186.57 580.021 186.53 579.767 186.53C579.547 186.53 579.337 186.573 579.137 186.66C578.937 186.74 578.764 186.863 578.617 187.03C578.471 187.19 578.354 187.393 578.267 187.64C578.181 187.88 578.137 188.16 578.137 188.48C578.137 189.133 578.294 189.62 578.607 189.94C578.921 190.26 579.347 190.42 579.887 190.42C580.067 190.42 580.261 190.387 580.467 190.32C580.681 190.253 580.874 190.157 581.047 190.03L581.237 190.66C581.064 190.793 580.851 190.9 580.597 190.98C580.351 191.06 580.071 191.1 579.757 191.1ZM584.265 186.48C583.905 186.48 583.595 186.607 583.335 186.86C583.082 187.113 582.922 187.497 582.855 188.01H585.405C585.445 187.49 585.355 187.107 585.135 186.86C584.922 186.607 584.632 186.48 584.265 186.48ZM586.115 190.57C585.935 190.723 585.702 190.85 585.415 190.95C585.128 191.05 584.802 191.1 584.435 191.1C583.635 191.1 583.022 190.873 582.595 190.42C582.168 189.96 581.955 189.313 581.955 188.48C581.955 188.073 582.015 187.71 582.135 187.39C582.255 187.063 582.418 186.787 582.625 186.56C582.838 186.333 583.085 186.163 583.365 186.05C583.652 185.93 583.958 185.87 584.285 185.87C584.625 185.87 584.928 185.93 585.195 186.05C585.468 186.163 585.692 186.337 585.865 186.57C586.045 186.797 586.165 187.083 586.225 187.43C586.292 187.77 586.292 188.163 586.225 188.61H582.825C582.865 189.817 583.428 190.42 584.515 190.42C584.802 190.42 585.058 190.377 585.285 190.29C585.512 190.203 585.722 190.093 585.915 189.96L586.115 190.57ZM586.692 191.47H590.672V192.12H586.692V191.47ZM593.516 190.49C593.736 190.49 593.946 190.45 594.146 190.37C594.346 190.29 594.522 190.17 594.676 190.01C594.829 189.843 594.949 189.637 595.036 189.39C595.129 189.137 595.176 188.84 595.176 188.5C595.176 188.16 595.129 187.867 595.036 187.62C594.949 187.367 594.829 187.157 594.676 186.99C594.522 186.817 594.346 186.69 594.146 186.61C593.946 186.523 593.736 186.48 593.516 186.48C593.316 186.48 593.122 186.523 592.936 186.61C592.756 186.697 592.596 186.823 592.456 186.99C592.316 187.157 592.202 187.367 592.116 187.62C592.036 187.867 591.996 188.153 591.996 188.48C591.996 188.813 592.036 189.107 592.116 189.36C592.202 189.613 592.316 189.823 592.456 189.99C592.596 190.157 592.756 190.283 592.936 190.37C593.122 190.45 593.316 190.49 593.516 190.49ZM595.106 190.03C594.946 190.35 594.722 190.61 594.436 190.81C594.156 191.003 593.806 191.1 593.386 191.1C593.106 191.1 592.829 191.047 592.556 190.94C592.289 190.833 592.049 190.673 591.836 190.46C591.622 190.24 591.449 189.967 591.316 189.64C591.189 189.307 591.126 188.92 591.126 188.48C591.126 188.04 591.189 187.657 591.316 187.33C591.449 186.997 591.622 186.723 591.836 186.51C592.049 186.297 592.292 186.137 592.566 186.03C592.839 185.923 593.116 185.87 593.396 185.87C593.769 185.87 594.096 185.947 594.376 186.1C594.656 186.247 594.882 186.46 595.056 186.74V183.75H595.906V191H595.206L595.106 190.03ZM600.563 190.1C600.43 190.38 600.22 190.617 599.933 190.81C599.653 191.003 599.287 191.1 598.833 191.1C598.367 191.1 597.99 190.96 597.703 190.68C597.417 190.393 597.273 189.953 597.273 189.36V185.97H598.133V189.36C598.133 189.56 598.157 189.727 598.203 189.86C598.25 189.993 598.317 190.1 598.403 190.18C598.49 190.26 598.59 190.317 598.703 190.35C598.817 190.383 598.94 190.4 599.073 190.4C599.447 190.4 599.747 190.31 599.973 190.13C600.207 189.95 600.403 189.703 600.563 189.39V185.97H601.413V191H600.663L600.583 190.1H600.563ZM605.321 186.77C605.148 186.757 604.978 186.77 604.811 186.81C604.644 186.85 604.488 186.913 604.341 187C604.201 187.087 604.071 187.193 603.951 187.32C603.838 187.447 603.748 187.587 603.681 187.74V191H602.831V185.97H603.581L603.661 187.06H603.681C603.748 186.913 603.831 186.773 603.931 186.64C604.038 186.5 604.158 186.38 604.291 186.28C604.431 186.173 604.584 186.087 604.751 186.02C604.924 185.953 605.114 185.92 605.321 185.92V186.77ZM607.729 190.48C608.083 190.48 608.363 190.393 608.569 190.22C608.783 190.04 608.939 189.837 609.039 189.61V188.66H608.599C607.953 188.66 607.486 188.73 607.199 188.87C606.919 189.003 606.779 189.263 606.779 189.65C606.779 189.923 606.873 190.13 607.059 190.27C607.253 190.41 607.476 190.48 607.729 190.48ZM609.199 191C609.173 190.907 609.149 190.797 609.129 190.67C609.109 190.543 609.093 190.407 609.079 190.26C609.019 190.36 608.946 190.46 608.859 190.56C608.779 190.66 608.679 190.75 608.559 190.83C608.439 190.91 608.296 190.973 608.129 191.02C607.963 191.073 607.769 191.1 607.549 191.1C607.329 191.1 607.123 191.07 606.929 191.01C606.736 190.95 606.563 190.86 606.409 190.74C606.263 190.62 606.146 190.473 606.059 190.3C605.973 190.127 605.929 189.927 605.929 189.7C605.929 189.153 606.146 188.757 606.579 188.51C607.019 188.257 607.666 188.13 608.519 188.13H609.039V187.72C609.039 187.313 608.953 187.01 608.779 186.81C608.606 186.61 608.299 186.51 607.859 186.51C607.559 186.51 607.286 186.567 607.039 186.68C606.799 186.787 606.586 186.917 606.399 187.07L606.169 186.37C606.249 186.31 606.353 186.25 606.479 186.19C606.606 186.13 606.749 186.077 606.909 186.03C607.069 185.983 607.239 185.947 607.419 185.92C607.599 185.887 607.783 185.87 607.969 185.87C608.603 185.87 609.079 186.01 609.399 186.29C609.726 186.563 609.889 187 609.889 187.6V190.19C609.889 190.303 609.896 190.447 609.909 190.62C609.923 190.787 609.939 190.913 609.959 191H609.199ZM613.739 190.91C613.632 190.963 613.502 191.007 613.349 191.04C613.195 191.08 613.025 191.1 612.839 191.1C612.365 191.1 612.015 190.977 611.789 190.73C611.562 190.477 611.449 190.11 611.449 189.63V186.59H610.849V185.97H611.449V185.01H612.309V185.97H613.569V186.59H612.309V189.59C612.309 189.863 612.352 190.07 612.439 190.21C612.525 190.343 612.685 190.41 612.919 190.41C613.032 190.41 613.149 190.397 613.269 190.37C613.389 190.343 613.495 190.307 613.589 190.26L613.739 190.91ZM615.165 185.21C614.998 185.21 614.865 185.16 614.765 185.06C614.672 184.96 614.625 184.833 614.625 184.68C614.625 184.527 614.672 184.397 614.765 184.29C614.865 184.183 614.998 184.13 615.165 184.13C615.325 184.13 615.455 184.183 615.555 184.29C615.655 184.397 615.705 184.527 615.705 184.68C615.705 184.833 615.655 184.96 615.555 185.06C615.455 185.16 615.325 185.21 615.165 185.21ZM615.595 185.97V191H614.745V185.97H615.595ZM619.121 191.1C618.794 191.1 618.484 191.043 618.191 190.93C617.898 190.81 617.641 190.64 617.421 190.42C617.201 190.193 617.024 189.92 616.891 189.6C616.764 189.273 616.701 188.9 616.701 188.48C616.701 188.06 616.764 187.69 616.891 187.37C617.024 187.043 617.201 186.77 617.421 186.55C617.641 186.33 617.898 186.163 618.191 186.05C618.484 185.93 618.794 185.87 619.121 185.87C619.448 185.87 619.758 185.93 620.051 186.05C620.351 186.163 620.611 186.33 620.831 186.55C621.058 186.77 621.238 187.043 621.371 187.37C621.504 187.69 621.571 188.06 621.571 188.48C621.571 188.9 621.504 189.273 621.371 189.6C621.238 189.92 621.058 190.193 620.831 190.42C620.611 190.64 620.351 190.81 620.051 190.93C619.758 191.043 619.448 191.1 619.121 191.1ZM619.121 190.47C619.321 190.47 619.514 190.437 619.701 190.37C619.894 190.297 620.064 190.18 620.211 190.02C620.358 189.86 620.474 189.653 620.561 189.4C620.654 189.147 620.701 188.84 620.701 188.48C620.701 188.12 620.654 187.817 620.561 187.57C620.474 187.317 620.358 187.11 620.211 186.95C620.064 186.79 619.894 186.677 619.701 186.61C619.514 186.537 619.321 186.5 619.121 186.5C618.921 186.5 618.728 186.537 618.541 186.61C618.361 186.677 618.198 186.79 618.051 186.95C617.904 187.11 617.788 187.317 617.701 187.57C617.614 187.817 617.571 188.12 617.571 188.48C617.571 188.84 617.614 189.147 617.701 189.4C617.788 189.653 617.904 189.86 618.051 190.02C618.198 190.18 618.361 190.297 618.541 190.37C618.728 190.437 618.921 190.47 619.121 190.47ZM625.074 186.55C624.688 186.55 624.374 186.643 624.134 186.83C623.894 187.017 623.698 187.25 623.544 187.53V191H622.694V185.97H623.494L623.524 186.87H623.544C623.678 186.583 623.891 186.347 624.184 186.16C624.478 185.967 624.848 185.87 625.294 185.87C625.794 185.87 626.191 186.003 626.484 186.27C626.778 186.53 626.924 186.93 626.924 187.47V191H626.064V187.51C626.064 187.15 625.978 186.9 625.804 186.76C625.631 186.62 625.388 186.55 625.074 186.55ZM627.59 191.47H631.57V192.12H627.59V191.47ZM633.614 191.1C633.367 191.1 633.154 191.087 632.974 191.06C632.794 191.04 632.634 191.013 632.494 190.98C632.354 190.94 632.231 190.897 632.124 190.85C632.024 190.803 631.931 190.753 631.844 190.7L632.124 189.99C632.171 190.03 632.237 190.077 632.324 190.13C632.411 190.177 632.517 190.227 632.644 190.28C632.771 190.327 632.914 190.367 633.074 190.4C633.241 190.433 633.421 190.45 633.614 190.45C633.974 190.45 634.247 190.38 634.434 190.24C634.621 190.093 634.714 189.893 634.714 189.64C634.714 189.427 634.637 189.257 634.484 189.13C634.331 189.003 634.067 188.883 633.694 188.77C633.481 188.703 633.274 188.637 633.074 188.57C632.881 188.497 632.707 188.407 632.554 188.3C632.401 188.187 632.277 188.05 632.184 187.89C632.091 187.723 632.044 187.513 632.044 187.26C632.044 186.793 632.207 186.447 632.534 186.22C632.861 185.987 633.311 185.87 633.884 185.87C634.231 185.87 634.527 185.9 634.774 185.96C635.021 186.013 635.221 186.077 635.374 186.15L635.174 186.85C635.041 186.777 634.874 186.7 634.674 186.62C634.474 186.54 634.221 186.5 633.914 186.5C633.594 186.5 633.334 186.553 633.134 186.66C632.941 186.76 632.844 186.943 632.844 187.21C632.844 187.33 632.874 187.433 632.934 187.52C632.994 187.607 633.074 187.683 633.174 187.75C633.281 187.81 633.401 187.863 633.534 187.91C633.674 187.957 633.817 188 633.964 188.04C634.157 188.1 634.351 188.167 634.544 188.24C634.737 188.307 634.907 188.397 635.054 188.51C635.207 188.623 635.331 188.767 635.424 188.94C635.517 189.107 635.564 189.32 635.564 189.58C635.564 189.853 635.507 190.087 635.394 190.28C635.287 190.467 635.144 190.623 634.964 190.75C634.784 190.87 634.577 190.957 634.344 191.01C634.111 191.07 633.867 191.1 633.614 191.1Z" fill="black"/><path d="M465.505 220.843V218.88H463.557V218.06H465.505V216.111H466.335V218.06H468.283V218.88H466.335V220.843H465.505ZM469.519 214.72H475.559V215.521H470.734L473.698 219.305L470.529 223.318H475.607V224.104H469.436V223.191L472.463 219.344L469.519 215.574V214.72ZM480.312 214.75V222H479.462V214.75H480.312ZM483.848 222.1C483.521 222.1 483.211 222.043 482.918 221.93C482.624 221.81 482.368 221.64 482.148 221.42C481.928 221.193 481.751 220.92 481.618 220.6C481.491 220.273 481.428 219.9 481.428 219.48C481.428 219.06 481.491 218.69 481.618 218.37C481.751 218.043 481.928 217.77 482.148 217.55C482.368 217.33 482.624 217.163 482.918 217.05C483.211 216.93 483.521 216.87 483.848 216.87C484.174 216.87 484.484 216.93 484.778 217.05C485.078 217.163 485.338 217.33 485.558 217.55C485.784 217.77 485.964 218.043 486.098 218.37C486.231 218.69 486.298 219.06 486.298 219.48C486.298 219.9 486.231 220.273 486.098 220.6C485.964 220.92 485.784 221.193 485.558 221.42C485.338 221.64 485.078 221.81 484.778 221.93C484.484 222.043 484.174 222.1 483.848 222.1ZM483.848 221.47C484.048 221.47 484.241 221.437 484.428 221.37C484.621 221.297 484.791 221.18 484.938 221.02C485.084 220.86 485.201 220.653 485.288 220.4C485.381 220.147 485.428 219.84 485.428 219.48C485.428 219.12 485.381 218.817 485.288 218.57C485.201 218.317 485.084 218.11 484.938 217.95C484.791 217.79 484.621 217.677 484.428 217.61C484.241 217.537 484.048 217.5 483.848 217.5C483.648 217.5 483.454 217.537 483.268 217.61C483.088 217.677 482.924 217.79 482.778 217.95C482.631 218.11 482.514 218.317 482.428 218.57C482.341 218.817 482.298 219.12 482.298 219.48C482.298 219.84 482.341 220.147 482.428 220.4C482.514 220.653 482.631 220.86 482.778 221.02C482.924 221.18 483.088 221.297 483.268 221.37C483.454 221.437 483.648 221.47 483.848 221.47ZM489.611 222.1C489.264 222.1 488.938 222.043 488.631 221.93C488.331 221.81 488.068 221.637 487.841 221.41C487.621 221.183 487.444 220.91 487.311 220.59C487.184 220.263 487.121 219.893 487.121 219.48C487.121 219.073 487.184 218.71 487.311 218.39C487.444 218.063 487.624 217.787 487.851 217.56C488.084 217.333 488.358 217.163 488.671 217.05C488.984 216.93 489.321 216.87 489.681 216.87C489.981 216.87 490.251 216.9 490.491 216.96C490.731 217.02 490.931 217.103 491.091 217.21L490.841 217.97C490.648 217.83 490.458 217.723 490.271 217.65C490.091 217.57 489.874 217.53 489.621 217.53C489.401 217.53 489.191 217.573 488.991 217.66C488.791 217.74 488.618 217.863 488.471 218.03C488.324 218.19 488.208 218.393 488.121 218.64C488.034 218.88 487.991 219.16 487.991 219.48C487.991 220.133 488.148 220.62 488.461 220.94C488.774 221.26 489.201 221.42 489.741 221.42C489.921 221.42 490.114 221.387 490.321 221.32C490.534 221.253 490.728 221.157 490.901 221.03L491.091 221.66C490.918 221.793 490.704 221.9 490.451 221.98C490.204 222.06 489.924 222.1 489.611 222.1ZM493.598 221.48C493.952 221.48 494.232 221.393 494.438 221.22C494.652 221.04 494.808 220.837 494.908 220.61V219.66H494.468C493.822 219.66 493.355 219.73 493.068 219.87C492.788 220.003 492.648 220.263 492.648 220.65C492.648 220.923 492.742 221.13 492.928 221.27C493.122 221.41 493.345 221.48 493.598 221.48ZM495.068 222C495.042 221.907 495.018 221.797 494.998 221.67C494.978 221.543 494.962 221.407 494.948 221.26C494.888 221.36 494.815 221.46 494.728 221.56C494.648 221.66 494.548 221.75 494.428 221.83C494.308 221.91 494.165 221.973 493.998 222.02C493.832 222.073 493.638 222.1 493.418 222.1C493.198 222.1 492.992 222.07 492.798 222.01C492.605 221.95 492.432 221.86 492.278 221.74C492.132 221.62 492.015 221.473 491.928 221.3C491.842 221.127 491.798 220.927 491.798 220.7C491.798 220.153 492.015 219.757 492.448 219.51C492.888 219.257 493.535 219.13 494.388 219.13H494.908V218.72C494.908 218.313 494.822 218.01 494.648 217.81C494.475 217.61 494.168 217.51 493.728 217.51C493.428 217.51 493.155 217.567 492.908 217.68C492.668 217.787 492.455 217.917 492.268 218.07L492.038 217.37C492.118 217.31 492.222 217.25 492.348 217.19C492.475 217.13 492.618 217.077 492.778 217.03C492.938 216.983 493.108 216.947 493.288 216.92C493.468 216.887 493.652 216.87 493.838 216.87C494.472 216.87 494.948 217.01 495.268 217.29C495.595 217.563 495.758 218 495.758 218.6V221.19C495.758 221.303 495.765 221.447 495.778 221.62C495.792 221.787 495.808 221.913 495.828 222H495.068ZM499.608 221.91C499.501 221.963 499.371 222.007 499.218 222.04C499.065 222.08 498.895 222.1 498.708 222.1C498.235 222.1 497.885 221.977 497.658 221.73C497.431 221.477 497.318 221.11 497.318 220.63V217.59H496.718V216.97H497.318V216.01H498.178V216.97H499.438V217.59H498.178V220.59C498.178 220.863 498.221 221.07 498.308 221.21C498.395 221.343 498.555 221.41 498.788 221.41C498.901 221.41 499.018 221.397 499.138 221.37C499.258 221.343 499.365 221.307 499.458 221.26L499.608 221.91ZM501.034 216.21C500.868 216.21 500.734 216.16 500.634 216.06C500.541 215.96 500.494 215.833 500.494 215.68C500.494 215.527 500.541 215.397 500.634 215.29C500.734 215.183 500.868 215.13 501.034 215.13C501.194 215.13 501.324 215.183 501.424 215.29C501.524 215.397 501.574 215.527 501.574 215.68C501.574 215.833 501.524 215.96 501.424 216.06C501.324 216.16 501.194 216.21 501.034 216.21ZM501.464 216.97V222H500.614V216.97H501.464ZM504.99 222.1C504.663 222.1 504.353 222.043 504.06 221.93C503.767 221.81 503.51 221.64 503.29 221.42C503.07 221.193 502.893 220.92 502.76 220.6C502.633 220.273 502.57 219.9 502.57 219.48C502.57 219.06 502.633 218.69 502.76 218.37C502.893 218.043 503.07 217.77 503.29 217.55C503.51 217.33 503.767 217.163 504.06 217.05C504.353 216.93 504.663 216.87 504.99 216.87C505.317 216.87 505.627 216.93 505.92 217.05C506.22 217.163 506.48 217.33 506.7 217.55C506.927 217.77 507.107 218.043 507.24 218.37C507.373 218.69 507.44 219.06 507.44 219.48C507.44 219.9 507.373 220.273 507.24 220.6C507.107 220.92 506.927 221.193 506.7 221.42C506.48 221.64 506.22 221.81 505.92 221.93C505.627 222.043 505.317 222.1 504.99 222.1ZM504.99 221.47C505.19 221.47 505.383 221.437 505.57 221.37C505.763 221.297 505.933 221.18 506.08 221.02C506.227 220.86 506.343 220.653 506.43 220.4C506.523 220.147 506.57 219.84 506.57 219.48C506.57 219.12 506.523 218.817 506.43 218.57C506.343 218.317 506.227 218.11 506.08 217.95C505.933 217.79 505.763 217.677 505.57 217.61C505.383 217.537 505.19 217.5 504.99 217.5C504.79 217.5 504.597 217.537 504.41 217.61C504.23 217.677 504.067 217.79 503.92 217.95C503.773 218.11 503.657 218.317 503.57 218.57C503.483 218.817 503.44 219.12 503.44 219.48C503.44 219.84 503.483 220.147 503.57 220.4C503.657 220.653 503.773 220.86 503.92 221.02C504.067 221.18 504.23 221.297 504.41 221.37C504.597 221.437 504.79 221.47 504.99 221.47ZM510.944 217.55C510.557 217.55 510.244 217.643 510.004 217.83C509.764 218.017 509.567 218.25 509.414 218.53V222H508.564V216.97H509.364L509.394 217.87H509.414C509.547 217.583 509.76 217.347 510.054 217.16C510.347 216.967 510.717 216.87 511.164 216.87C511.664 216.87 512.06 217.003 512.354 217.27C512.647 217.53 512.794 217.93 512.794 218.47V222H511.934V218.51C511.934 218.15 511.847 217.9 511.674 217.76C511.5 217.62 511.257 217.55 510.944 217.55ZM514.529 222.06C514.363 222.06 514.223 222.007 514.109 221.9C514.003 221.787 513.949 221.653 513.949 221.5C513.949 221.333 514.003 221.197 514.109 221.09C514.223 220.983 514.363 220.93 514.529 220.93C514.696 220.93 514.833 220.983 514.939 221.09C515.046 221.197 515.099 221.333 515.099 221.5C515.099 221.653 515.046 221.787 514.939 221.9C514.833 222.007 514.696 222.06 514.529 222.06ZM520.586 221.49C520.806 221.49 521.016 221.45 521.216 221.37C521.416 221.29 521.593 221.17 521.746 221.01C521.899 220.843 522.019 220.637 522.106 220.39C522.199 220.137 522.246 219.84 522.246 219.5C522.246 219.16 522.199 218.867 522.106 218.62C522.019 218.367 521.899 218.157 521.746 217.99C521.593 217.817 521.416 217.69 521.216 217.61C521.016 217.523 520.806 217.48 520.586 217.48C520.386 217.48 520.193 217.523 520.006 217.61C519.826 217.697 519.666 217.823 519.526 217.99C519.386 218.157 519.273 218.367 519.186 218.62C519.106 218.867 519.066 219.153 519.066 219.48C519.066 219.813 519.106 220.107 519.186 220.36C519.273 220.613 519.386 220.823 519.526 220.99C519.666 221.157 519.826 221.283 520.006 221.37C520.193 221.45 520.386 221.49 520.586 221.49ZM522.176 221.03C522.016 221.35 521.793 221.61 521.506 221.81C521.226 222.003 520.876 222.1 520.456 222.1C520.176 222.1 519.899 222.047 519.626 221.94C519.359 221.833 519.119 221.673 518.906 221.46C518.693 221.24 518.519 220.967 518.386 220.64C518.259 220.307 518.196 219.92 518.196 219.48C518.196 219.04 518.259 218.657 518.386 218.33C518.519 217.997 518.693 217.723 518.906 217.51C519.119 217.297 519.363 217.137 519.636 217.03C519.909 216.923 520.186 216.87 520.466 216.87C520.839 216.87 521.166 216.947 521.446 217.1C521.726 217.247 521.953 217.46 522.126 217.74V214.75H522.976V222H522.276L522.176 221.03ZM526.404 217.48C526.044 217.48 525.734 217.607 525.474 217.86C525.22 218.113 525.06 218.497 524.994 219.01H527.544C527.584 218.49 527.494 218.107 527.274 217.86C527.06 217.607 526.77 217.48 526.404 217.48ZM528.254 221.57C528.074 221.723 527.84 221.85 527.554 221.95C527.267 222.05 526.94 222.1 526.574 222.1C525.774 222.1 525.16 221.873 524.734 221.42C524.307 220.96 524.094 220.313 524.094 219.48C524.094 219.073 524.154 218.71 524.274 218.39C524.394 218.063 524.557 217.787 524.764 217.56C524.977 217.333 525.224 217.163 525.504 217.05C525.79 216.93 526.097 216.87 526.424 216.87C526.764 216.87 527.067 216.93 527.334 217.05C527.607 217.163 527.83 217.337 528.004 217.57C528.184 217.797 528.304 218.083 528.364 218.43C528.43 218.77 528.43 219.163 528.364 219.61H524.964C525.004 220.817 525.567 221.42 526.654 221.42C526.94 221.42 527.197 221.377 527.424 221.29C527.65 221.203 527.86 221.093 528.054 220.96L528.254 221.57ZM531.93 221.49C532.377 221.49 532.737 221.333 533.01 221.02C533.29 220.7 533.43 220.187 533.43 219.48C533.43 218.787 533.29 218.28 533.01 217.96C532.737 217.633 532.377 217.47 531.93 217.47C531.71 217.47 531.5 217.51 531.3 217.59C531.1 217.663 530.924 217.783 530.77 217.95C530.624 218.11 530.507 218.317 530.42 218.57C530.334 218.823 530.29 219.127 530.29 219.48C530.29 219.84 530.334 220.147 530.42 220.4C530.507 220.653 530.624 220.86 530.77 221.02C530.924 221.18 531.1 221.3 531.3 221.38C531.5 221.453 531.71 221.49 531.93 221.49ZM532.06 222.1C531.687 222.1 531.357 222.02 531.07 221.86C530.79 221.693 530.56 221.467 530.38 221.18V223.87H529.53V216.97H530.28L530.34 217.86C530.52 217.56 530.754 217.32 531.04 217.14C531.334 216.96 531.687 216.87 532.1 216.87C532.394 216.87 532.674 216.923 532.94 217.03C533.207 217.137 533.44 217.297 533.64 217.51C533.847 217.723 534.01 217.997 534.13 218.33C534.25 218.657 534.31 219.04 534.31 219.48C534.31 219.92 534.247 220.307 534.12 220.64C534 220.967 533.837 221.24 533.63 221.46C533.424 221.673 533.184 221.833 532.91 221.94C532.644 222.047 532.36 222.1 532.06 222.1ZM537.549 222.1C537.222 222.1 536.912 222.043 536.619 221.93C536.325 221.81 536.069 221.64 535.849 221.42C535.629 221.193 535.452 220.92 535.319 220.6C535.192 220.273 535.129 219.9 535.129 219.48C535.129 219.06 535.192 218.69 535.319 218.37C535.452 218.043 535.629 217.77 535.849 217.55C536.069 217.33 536.325 217.163 536.619 217.05C536.912 216.93 537.222 216.87 537.549 216.87C537.875 216.87 538.185 216.93 538.479 217.05C538.779 217.163 539.039 217.33 539.259 217.55C539.485 217.77 539.665 218.043 539.799 218.37C539.932 218.69 539.999 219.06 539.999 219.48C539.999 219.9 539.932 220.273 539.799 220.6C539.665 220.92 539.485 221.193 539.259 221.42C539.039 221.64 538.779 221.81 538.479 221.93C538.185 222.043 537.875 222.1 537.549 222.1ZM537.549 221.47C537.749 221.47 537.942 221.437 538.129 221.37C538.322 221.297 538.492 221.18 538.639 221.02C538.785 220.86 538.902 220.653 538.989 220.4C539.082 220.147 539.129 219.84 539.129 219.48C539.129 219.12 539.082 218.817 538.989 218.57C538.902 218.317 538.785 218.11 538.639 217.95C538.492 217.79 538.322 217.677 538.129 217.61C537.942 217.537 537.749 217.5 537.549 217.5C537.349 217.5 537.155 217.537 536.969 217.61C536.789 217.677 536.625 217.79 536.479 217.95C536.332 218.11 536.215 218.317 536.129 218.57C536.042 218.817 535.999 219.12 535.999 219.48C535.999 219.84 536.042 220.147 536.129 220.4C536.215 220.653 536.332 220.86 536.479 221.02C536.625 221.18 536.789 221.297 536.969 221.37C537.155 221.437 537.349 221.47 537.549 221.47ZM543.602 221.91C543.495 221.963 543.365 222.007 543.212 222.04C543.059 222.08 542.889 222.1 542.702 222.1C542.229 222.1 541.879 221.977 541.652 221.73C541.425 221.477 541.312 221.11 541.312 220.63V217.59H540.712V216.97H541.312V216.01H542.172V216.97H543.432V217.59H542.172V220.59C542.172 220.863 542.215 221.07 542.302 221.21C542.389 221.343 542.549 221.41 542.782 221.41C542.895 221.41 543.012 221.397 543.132 221.37C543.252 221.343 543.359 221.307 543.452 221.26L543.602 221.91ZM543.908 222.47H547.888V223.12H543.908V222.47ZM550.732 221.49C550.952 221.49 551.162 221.45 551.362 221.37C551.562 221.29 551.739 221.17 551.892 221.01C552.046 220.843 552.166 220.637 552.252 220.39C552.346 220.137 552.392 219.84 552.392 219.5C552.392 219.16 552.346 218.867 552.252 218.62C552.166 218.367 552.046 218.157 551.892 217.99C551.739 217.817 551.562 217.69 551.362 217.61C551.162 217.523 550.952 217.48 550.732 217.48C550.532 217.48 550.339 217.523 550.152 217.61C549.972 217.697 549.812 217.823 549.672 217.99C549.532 218.157 549.419 218.367 549.332 218.62C549.252 218.867 549.212 219.153 549.212 219.48C549.212 219.813 549.252 220.107 549.332 220.36C549.419 220.613 549.532 220.823 549.672 220.99C549.812 221.157 549.972 221.283 550.152 221.37C550.339 221.45 550.532 221.49 550.732 221.49ZM552.322 221.03C552.162 221.35 551.939 221.61 551.652 221.81C551.372 222.003 551.022 222.1 550.602 222.1C550.322 222.1 550.046 222.047 549.772 221.94C549.506 221.833 549.266 221.673 549.052 221.46C548.839 221.24 548.666 220.967 548.532 220.64C548.406 220.307 548.342 219.92 548.342 219.48C548.342 219.04 548.406 218.657 548.532 218.33C548.666 217.997 548.839 217.723 549.052 217.51C549.266 217.297 549.509 217.137 549.782 217.03C550.056 216.923 550.332 216.87 550.612 216.87C550.986 216.87 551.312 216.947 551.592 217.1C551.872 217.247 552.099 217.46 552.272 217.74V214.75H553.122V222H552.422L552.322 221.03ZM557.78 221.1C557.647 221.38 557.437 221.617 557.15 221.81C556.87 222.003 556.503 222.1 556.05 222.1C555.583 222.1 555.207 221.96 554.92 221.68C554.633 221.393 554.49 220.953 554.49 220.36V216.97H555.35V220.36C555.35 220.56 555.373 220.727 555.42 220.86C555.467 220.993 555.533 221.1 555.62 221.18C555.707 221.26 555.807 221.317 555.92 221.35C556.033 221.383 556.157 221.4 556.29 221.4C556.663 221.4 556.963 221.31 557.19 221.13C557.423 220.95 557.62 220.703 557.78 220.39V216.97H558.63V222H557.88L557.8 221.1H557.78ZM562.538 217.77C562.365 217.757 562.195 217.77 562.028 217.81C561.861 217.85 561.705 217.913 561.558 218C561.418 218.087 561.288 218.193 561.168 218.32C561.055 218.447 560.965 218.587 560.898 218.74V222H560.048V216.97H560.798L560.878 218.06H560.898C560.965 217.913 561.048 217.773 561.148 217.64C561.255 217.5 561.375 217.38 561.508 217.28C561.648 217.173 561.801 217.087 561.968 217.02C562.141 216.953 562.331 216.92 562.538 216.92V217.77ZM564.946 221.48C565.299 221.48 565.579 221.393 565.786 221.22C565.999 221.04 566.156 220.837 566.256 220.61V219.66H565.816C565.169 219.66 564.703 219.73 564.416 219.87C564.136 220.003 563.996 220.263 563.996 220.65C563.996 220.923 564.089 221.13 564.276 221.27C564.469 221.41 564.693 221.48 564.946 221.48ZM566.416 222C566.389 221.907 566.366 221.797 566.346 221.67C566.326 221.543 566.309 221.407 566.296 221.26C566.236 221.36 566.163 221.46 566.076 221.56C565.996 221.66 565.896 221.75 565.776 221.83C565.656 221.91 565.513 221.973 565.346 222.02C565.179 222.073 564.986 222.1 564.766 222.1C564.546 222.1 564.339 222.07 564.146 222.01C563.953 221.95 563.779 221.86 563.626 221.74C563.479 221.62 563.363 221.473 563.276 221.3C563.189 221.127 563.146 220.927 563.146 220.7C563.146 220.153 563.363 219.757 563.796 219.51C564.236 219.257 564.883 219.13 565.736 219.13H566.256V218.72C566.256 218.313 566.169 218.01 565.996 217.81C565.823 217.61 565.516 217.51 565.076 217.51C564.776 217.51 564.503 217.567 564.256 217.68C564.016 217.787 563.803 217.917 563.616 218.07L563.386 217.37C563.466 217.31 563.569 217.25 563.696 217.19C563.823 217.13 563.966 217.077 564.126 217.03C564.286 216.983 564.456 216.947 564.636 216.92C564.816 216.887 564.999 216.87 565.186 216.87C565.819 216.87 566.296 217.01 566.616 217.29C566.943 217.563 567.106 218 567.106 218.6V221.19C567.106 221.303 567.113 221.447 567.126 221.62C567.139 221.787 567.156 221.913 567.176 222H566.416ZM570.956 221.91C570.849 221.963 570.719 222.007 570.566 222.04C570.412 222.08 570.242 222.1 570.056 222.1C569.582 222.1 569.232 221.977 569.006 221.73C568.779 221.477 568.666 221.11 568.666 220.63V217.59H568.066V216.97H568.666V216.01H569.526V216.97H570.786V217.59H569.526V220.59C569.526 220.863 569.569 221.07 569.656 221.21C569.742 221.343 569.902 221.41 570.136 221.41C570.249 221.41 570.366 221.397 570.486 221.37C570.606 221.343 570.712 221.307 570.806 221.26L570.956 221.91ZM572.382 216.21C572.215 216.21 572.082 216.16 571.982 216.06C571.889 215.96 571.842 215.833 571.842 215.68C571.842 215.527 571.889 215.397 571.982 215.29C572.082 215.183 572.215 215.13 572.382 215.13C572.542 215.13 572.672 215.183 572.772 215.29C572.872 215.397 572.922 215.527 572.922 215.68C572.922 215.833 572.872 215.96 572.772 216.06C572.672 216.16 572.542 216.21 572.382 216.21ZM572.812 216.97V222H571.962V216.97H572.812ZM576.338 222.1C576.011 222.1 575.701 222.043 575.408 221.93C575.114 221.81 574.858 221.64 574.638 221.42C574.418 221.193 574.241 220.92 574.108 220.6C573.981 220.273 573.918 219.9 573.918 219.48C573.918 219.06 573.981 218.69 574.108 218.37C574.241 218.043 574.418 217.77 574.638 217.55C574.858 217.33 575.114 217.163 575.408 217.05C575.701 216.93 576.011 216.87 576.338 216.87C576.664 216.87 576.974 216.93 577.268 217.05C577.568 217.163 577.828 217.33 578.048 217.55C578.274 217.77 578.454 218.043 578.588 218.37C578.721 218.69 578.788 219.06 578.788 219.48C578.788 219.9 578.721 220.273 578.588 220.6C578.454 220.92 578.274 221.193 578.048 221.42C577.828 221.64 577.568 221.81 577.268 221.93C576.974 222.043 576.664 222.1 576.338 222.1ZM576.338 221.47C576.538 221.47 576.731 221.437 576.918 221.37C577.111 221.297 577.281 221.18 577.428 221.02C577.574 220.86 577.691 220.653 577.778 220.4C577.871 220.147 577.918 219.84 577.918 219.48C577.918 219.12 577.871 218.817 577.778 218.57C577.691 218.317 577.574 218.11 577.428 217.95C577.281 217.79 577.111 217.677 576.918 217.61C576.731 217.537 576.538 217.5 576.338 217.5C576.138 217.5 575.944 217.537 575.758 217.61C575.578 217.677 575.414 217.79 575.268 217.95C575.121 218.11 575.004 218.317 574.918 218.57C574.831 218.817 574.788 219.12 574.788 219.48C574.788 219.84 574.831 220.147 574.918 220.4C575.004 220.653 575.121 220.86 575.268 221.02C575.414 221.18 575.578 221.297 575.758 221.37C575.944 221.437 576.138 221.47 576.338 221.47ZM582.291 217.55C581.905 217.55 581.591 217.643 581.351 217.83C581.111 218.017 580.915 218.25 580.761 218.53V222H579.911V216.97H580.711L580.741 217.87H580.761C580.895 217.583 581.108 217.347 581.401 217.16C581.695 216.967 582.065 216.87 582.511 216.87C583.011 216.87 583.408 217.003 583.701 217.27C583.995 217.53 584.141 217.93 584.141 218.47V222H583.281V218.51C583.281 218.15 583.195 217.9 583.021 217.76C582.848 217.62 582.605 217.55 582.291 217.55ZM584.807 222.47H588.787V223.12H584.807V222.47ZM590.831 222.1C590.584 222.1 590.371 222.087 590.191 222.06C590.011 222.04 589.851 222.013 589.711 221.98C589.571 221.94 589.447 221.897 589.341 221.85C589.241 221.803 589.147 221.753 589.061 221.7L589.341 220.99C589.387 221.03 589.454 221.077 589.541 221.13C589.627 221.177 589.734 221.227 589.861 221.28C589.987 221.327 590.131 221.367 590.291 221.4C590.457 221.433 590.637 221.45 590.831 221.45C591.191 221.45 591.464 221.38 591.651 221.24C591.837 221.093 591.931 220.893 591.931 220.64C591.931 220.427 591.854 220.257 591.701 220.13C591.547 220.003 591.284 219.883 590.911 219.77C590.697 219.703 590.491 219.637 590.291 219.57C590.097 219.497 589.924 219.407 589.771 219.3C589.617 219.187 589.494 219.05 589.401 218.89C589.307 218.723 589.261 218.513 589.261 218.26C589.261 217.793 589.424 217.447 589.751 217.22C590.077 216.987 590.527 216.87 591.101 216.87C591.447 216.87 591.744 216.9 591.991 216.96C592.237 217.013 592.437 217.077 592.591 217.15L592.391 217.85C592.257 217.777 592.091 217.7 591.891 217.62C591.691 217.54 591.437 217.5 591.131 217.5C590.811 217.5 590.551 217.553 590.351 217.66C590.157 217.76 590.061 217.943 590.061 218.21C590.061 218.33 590.091 218.433 590.151 218.52C590.211 218.607 590.291 218.683 590.391 218.75C590.497 218.81 590.617 218.863 590.751 218.91C590.891 218.957 591.034 219 591.181 219.04C591.374 219.1 591.567 219.167 591.761 219.24C591.954 219.307 592.124 219.397 592.271 219.51C592.424 219.623 592.547 219.767 592.641 219.94C592.734 220.107 592.781 220.32 592.781 220.58C592.781 220.853 592.724 221.087 592.611 221.28C592.504 221.467 592.361 221.623 592.181 221.75C592.001 221.87 591.794 221.957 591.561 222.01C591.327 222.07 591.084 222.1 590.831 222.1ZM465.4 236.35C465.1 236.063 464.843 235.753 464.63 235.42C464.423 235.087 464.253 234.737 464.12 234.37C463.993 234.003 463.9 233.623 463.84 233.23C463.787 232.837 463.76 232.433 463.76 232.02C463.76 231.613 463.787 231.207 463.84 230.8C463.9 230.387 463.993 229.993 464.12 229.62C464.253 229.247 464.423 228.893 464.63 228.56C464.843 228.227 465.1 227.93 465.4 227.67H466.09C465.83 227.923 465.603 228.217 465.41 228.55C465.223 228.877 465.067 229.227 464.94 229.6C464.82 229.973 464.73 230.363 464.67 230.77C464.61 231.177 464.58 231.583 464.58 231.99C464.58 232.817 464.7 233.603 464.94 234.35C465.187 235.097 465.57 235.763 466.09 236.35H465.4ZM469.131 234.49C469.351 234.49 469.561 234.45 469.761 234.37C469.961 234.29 470.137 234.17 470.291 234.01C470.444 233.843 470.564 233.637 470.651 233.39C470.744 233.137 470.791 232.84 470.791 232.5C470.791 232.16 470.744 231.867 470.651 231.62C470.564 231.367 470.444 231.157 470.291 230.99C470.137 230.817 469.961 230.69 469.761 230.61C469.561 230.523 469.351 230.48 469.131 230.48C468.931 230.48 468.737 230.523 468.551 230.61C468.371 230.697 468.211 230.823 468.071 230.99C467.931 231.157 467.817 231.367 467.731 231.62C467.651 231.867 467.611 232.153 467.611 232.48C467.611 232.813 467.651 233.107 467.731 233.36C467.817 233.613 467.931 233.823 468.071 233.99C468.211 234.157 468.371 234.283 468.551 234.37C468.737 234.45 468.931 234.49 469.131 234.49ZM470.721 234.03C470.561 234.35 470.337 234.61 470.051 234.81C469.771 235.003 469.421 235.1 469.001 235.1C468.721 235.1 468.444 235.047 468.171 234.94C467.904 234.833 467.664 234.673 467.451 234.46C467.237 234.24 467.064 233.967 466.931 233.64C466.804 233.307 466.741 232.92 466.741 232.48C466.741 232.04 466.804 231.657 466.931 231.33C467.064 230.997 467.237 230.723 467.451 230.51C467.664 230.297 467.907 230.137 468.181 230.03C468.454 229.923 468.731 229.87 469.011 229.87C469.384 229.87 469.711 229.947 469.991 230.1C470.271 230.247 470.497 230.46 470.671 230.74V227.75H471.521V235H470.821L470.721 234.03ZM474.949 230.48C474.589 230.48 474.279 230.607 474.019 230.86C473.765 231.113 473.605 231.497 473.539 232.01H476.089C476.129 231.49 476.039 231.107 475.819 230.86C475.605 230.607 475.315 230.48 474.949 230.48ZM476.799 234.57C476.619 234.723 476.385 234.85 476.099 234.95C475.812 235.05 475.485 235.1 475.119 235.1C474.319 235.1 473.705 234.873 473.279 234.42C472.852 233.96 472.639 233.313 472.639 232.48C472.639 232.073 472.699 231.71 472.819 231.39C472.939 231.063 473.102 230.787 473.309 230.56C473.522 230.333 473.769 230.163 474.049 230.05C474.335 229.93 474.642 229.87 474.969 229.87C475.309 229.87 475.612 229.93 475.879 230.05C476.152 230.163 476.375 230.337 476.549 230.57C476.729 230.797 476.849 231.083 476.909 231.43C476.975 231.77 476.975 232.163 476.909 232.61H473.509C473.549 233.817 474.112 234.42 475.199 234.42C475.485 234.42 475.742 234.377 475.969 234.29C476.195 234.203 476.405 234.093 476.599 233.96L476.799 234.57ZM478.925 227.75V235H478.075V227.75H478.925ZM480.761 229.21C480.594 229.21 480.461 229.16 480.361 229.06C480.268 228.96 480.221 228.833 480.221 228.68C480.221 228.527 480.268 228.397 480.361 228.29C480.461 228.183 480.594 228.13 480.761 228.13C480.921 228.13 481.051 228.183 481.151 228.29C481.251 228.397 481.301 228.527 481.301 228.68C481.301 228.833 481.251 228.96 481.151 229.06C481.051 229.16 480.921 229.21 480.761 229.21ZM481.191 229.97V235H480.341V229.97H481.191ZM482.027 229.97H482.917L484.367 234.42L485.797 229.97H486.587L484.907 235H483.697L482.027 229.97ZM489.353 230.48C488.993 230.48 488.683 230.607 488.423 230.86C488.169 231.113 488.009 231.497 487.943 232.01H490.493C490.533 231.49 490.443 231.107 490.223 230.86C490.009 230.607 489.719 230.48 489.353 230.48ZM491.203 234.57C491.023 234.723 490.789 234.85 490.503 234.95C490.216 235.05 489.889 235.1 489.523 235.1C488.723 235.1 488.109 234.873 487.683 234.42C487.256 233.96 487.043 233.313 487.043 232.48C487.043 232.073 487.103 231.71 487.223 231.39C487.343 231.063 487.506 230.787 487.713 230.56C487.926 230.333 488.173 230.163 488.453 230.05C488.739 229.93 489.046 229.87 489.373 229.87C489.713 229.87 490.016 229.93 490.283 230.05C490.556 230.163 490.779 230.337 490.953 230.57C491.133 230.797 491.253 231.083 491.313 231.43C491.379 231.77 491.379 232.163 491.313 232.61H487.913C487.953 233.817 488.516 234.42 489.603 234.42C489.889 234.42 490.146 234.377 490.373 234.29C490.599 234.203 490.809 234.093 491.003 233.96L491.203 234.57ZM494.97 230.77C494.796 230.757 494.626 230.77 494.46 230.81C494.293 230.85 494.136 230.913 493.99 231C493.85 231.087 493.72 231.193 493.6 231.32C493.486 231.447 493.396 231.587 493.33 231.74V235H492.48V229.97H493.23L493.31 231.06H493.33C493.396 230.913 493.48 230.773 493.58 230.64C493.686 230.5 493.806 230.38 493.94 230.28C494.08 230.173 494.233 230.087 494.4 230.02C494.573 229.953 494.763 229.92 494.97 229.92V230.77ZM496.582 236.96C496.429 236.96 496.289 236.947 496.162 236.92C496.042 236.9 495.935 236.873 495.842 236.84L495.952 236.15C496.032 236.183 496.122 236.213 496.222 236.24C496.322 236.267 496.429 236.28 496.542 236.28C496.729 236.28 496.899 236.22 497.052 236.1C497.205 235.98 497.372 235.767 497.552 235.46L495.562 229.97H496.482L498.012 234.36L499.542 229.97H500.312L498.532 234.94C498.412 235.267 498.289 235.553 498.162 235.8C498.035 236.053 497.895 236.263 497.742 236.43C497.589 236.603 497.415 236.733 497.222 236.82C497.035 236.913 496.822 236.96 496.582 236.96ZM505.439 235.1C505.113 235.1 504.803 235.043 504.509 234.93C504.216 234.81 503.959 234.64 503.739 234.42C503.519 234.193 503.343 233.92 503.209 233.6C503.083 233.273 503.019 232.9 503.019 232.48C503.019 232.06 503.083 231.69 503.209 231.37C503.343 231.043 503.519 230.77 503.739 230.55C503.959 230.33 504.216 230.163 504.509 230.05C504.803 229.93 505.113 229.87 505.439 229.87C505.766 229.87 506.076 229.93 506.369 230.05C506.669 230.163 506.929 230.33 507.149 230.55C507.376 230.77 507.556 231.043 507.689 231.37C507.823 231.69 507.889 232.06 507.889 232.48C507.889 232.9 507.823 233.273 507.689 233.6C507.556 233.92 507.376 234.193 507.149 234.42C506.929 234.64 506.669 234.81 506.369 234.93C506.076 235.043 505.766 235.1 505.439 235.1ZM505.439 234.47C505.639 234.47 505.833 234.437 506.019 234.37C506.213 234.297 506.383 234.18 506.529 234.02C506.676 233.86 506.793 233.653 506.879 233.4C506.973 233.147 507.019 232.84 507.019 232.48C507.019 232.12 506.973 231.817 506.879 231.57C506.793 231.317 506.676 231.11 506.529 230.95C506.383 230.79 506.213 230.677 506.019 230.61C505.833 230.537 505.639 230.5 505.439 230.5C505.239 230.5 505.046 230.537 504.859 230.61C504.679 230.677 504.516 230.79 504.369 230.95C504.223 231.11 504.106 231.317 504.019 231.57C503.933 231.817 503.889 232.12 503.889 232.48C503.889 232.84 503.933 233.147 504.019 233.4C504.106 233.653 504.223 233.86 504.369 234.02C504.516 234.18 504.679 234.297 504.859 234.37C505.046 234.437 505.239 234.47 505.439 234.47ZM511.503 230.77C511.329 230.757 511.159 230.77 510.993 230.81C510.826 230.85 510.669 230.913 510.523 231C510.383 231.087 510.253 231.193 510.133 231.32C510.019 231.447 509.929 231.587 509.863 231.74V235H509.013V229.97H509.763L509.843 231.06H509.863C509.929 230.913 510.013 230.773 510.113 230.64C510.219 230.5 510.339 230.38 510.473 230.28C510.613 230.173 510.766 230.087 510.933 230.02C511.106 229.953 511.296 229.92 511.503 229.92V230.77ZM514.639 234.49C514.859 234.49 515.069 234.45 515.269 234.37C515.469 234.29 515.645 234.17 515.799 234.01C515.952 233.843 516.072 233.637 516.159 233.39C516.252 233.137 516.299 232.84 516.299 232.5C516.299 232.16 516.252 231.867 516.159 231.62C516.072 231.367 515.952 231.157 515.799 230.99C515.645 230.817 515.469 230.69 515.269 230.61C515.069 230.523 514.859 230.48 514.639 230.48C514.439 230.48 514.245 230.523 514.059 230.61C513.879 230.697 513.719 230.823 513.579 230.99C513.439 231.157 513.325 231.367 513.239 231.62C513.159 231.867 513.119 232.153 513.119 232.48C513.119 232.813 513.159 233.107 513.239 233.36C513.325 233.613 513.439 233.823 513.579 233.99C513.719 234.157 513.879 234.283 514.059 234.37C514.245 234.45 514.439 234.49 514.639 234.49ZM516.229 234.03C516.069 234.35 515.845 234.61 515.559 234.81C515.279 235.003 514.929 235.1 514.509 235.1C514.229 235.1 513.952 235.047 513.679 234.94C513.412 234.833 513.172 234.673 512.959 234.46C512.745 234.24 512.572 233.967 512.439 233.64C512.312 233.307 512.249 232.92 512.249 232.48C512.249 232.04 512.312 231.657 512.439 231.33C512.572 230.997 512.745 230.723 512.959 230.51C513.172 230.297 513.415 230.137 513.689 230.03C513.962 229.923 514.239 229.87 514.519 229.87C514.892 229.87 515.219 229.947 515.499 230.1C515.779 230.247 516.005 230.46 516.179 230.74V227.75H517.029V235H516.329L516.229 234.03ZM520.456 230.48C520.096 230.48 519.786 230.607 519.526 230.86C519.273 231.113 519.113 231.497 519.046 232.01H521.596C521.636 231.49 521.546 231.107 521.326 230.86C521.113 230.607 520.823 230.48 520.456 230.48ZM522.306 234.57C522.126 234.723 521.893 234.85 521.606 234.95C521.32 235.05 520.993 235.1 520.626 235.1C519.826 235.1 519.213 234.873 518.786 234.42C518.36 233.96 518.146 233.313 518.146 232.48C518.146 232.073 518.206 231.71 518.326 231.39C518.446 231.063 518.61 230.787 518.816 230.56C519.03 230.333 519.276 230.163 519.556 230.05C519.843 229.93 520.15 229.87 520.476 229.87C520.816 229.87 521.12 229.93 521.386 230.05C521.66 230.163 521.883 230.337 522.056 230.57C522.236 230.797 522.356 231.083 522.416 231.43C522.483 231.77 522.483 232.163 522.416 232.61H519.016C519.056 233.817 519.62 234.42 520.706 234.42C520.993 234.42 521.25 234.377 521.476 234.29C521.703 234.203 521.913 234.093 522.106 233.96L522.306 234.57ZM526.073 230.77C525.9 230.757 525.73 230.77 525.563 230.81C525.396 230.85 525.24 230.913 525.093 231C524.953 231.087 524.823 231.193 524.703 231.32C524.59 231.447 524.5 231.587 524.433 231.74V235H523.583V229.97H524.333L524.413 231.06H524.433C524.5 230.913 524.583 230.773 524.683 230.64C524.79 230.5 524.91 230.38 525.043 230.28C525.183 230.173 525.336 230.087 525.503 230.02C525.676 229.953 525.866 229.92 526.073 229.92V230.77ZM528.458 235.1C528.211 235.1 527.998 235.087 527.818 235.06C527.638 235.04 527.478 235.013 527.338 234.98C527.198 234.94 527.074 234.897 526.968 234.85C526.868 234.803 526.774 234.753 526.688 234.7L526.968 233.99C527.014 234.03 527.081 234.077 527.168 234.13C527.254 234.177 527.361 234.227 527.488 234.28C527.614 234.327 527.758 234.367 527.918 234.4C528.084 234.433 528.264 234.45 528.458 234.45C528.818 234.45 529.091 234.38 529.278 234.24C529.464 234.093 529.558 233.893 529.558 233.64C529.558 233.427 529.481 233.257 529.328 233.13C529.174 233.003 528.911 232.883 528.538 232.77C528.324 232.703 528.118 232.637 527.918 232.57C527.724 232.497 527.551 232.407 527.398 232.3C527.244 232.187 527.121 232.05 527.028 231.89C526.934 231.723 526.888 231.513 526.888 231.26C526.888 230.793 527.051 230.447 527.378 230.22C527.704 229.987 528.154 229.87 528.728 229.87C529.074 229.87 529.371 229.9 529.618 229.96C529.864 230.013 530.064 230.077 530.218 230.15L530.018 230.85C529.884 230.777 529.718 230.7 529.518 230.62C529.318 230.54 529.064 230.5 528.758 230.5C528.438 230.5 528.178 230.553 527.978 230.66C527.784 230.76 527.688 230.943 527.688 231.21C527.688 231.33 527.718 231.433 527.778 231.52C527.838 231.607 527.918 231.683 528.018 231.75C528.124 231.81 528.244 231.863 528.378 231.91C528.518 231.957 528.661 232 528.808 232.04C529.001 232.1 529.194 232.167 529.388 232.24C529.581 232.307 529.751 232.397 529.898 232.51C530.051 232.623 530.174 232.767 530.268 232.94C530.361 233.107 530.408 233.32 530.408 233.58C530.408 233.853 530.351 234.087 530.238 234.28C530.131 234.467 529.988 234.623 529.808 234.75C529.628 234.87 529.421 234.957 529.188 235.01C528.954 235.07 528.711 235.1 528.458 235.1ZM531.553 236.35C531.853 236.063 532.107 235.753 532.313 235.42C532.527 235.087 532.697 234.737 532.823 234.37C532.957 234.003 533.05 233.623 533.103 233.23C533.163 232.837 533.193 232.433 533.193 232.02C533.193 231.613 533.163 231.207 533.103 230.8C533.05 230.387 532.957 229.993 532.823 229.62C532.697 229.247 532.527 228.893 532.313 228.56C532.107 228.227 531.853 227.93 531.553 227.67H530.863C531.123 227.923 531.347 228.217 531.533 228.55C531.727 228.877 531.883 229.227 532.003 229.6C532.13 229.973 532.223 230.363 532.283 230.77C532.343 231.177 532.373 231.583 532.373 231.99C532.373 232.817 532.25 233.603 532.003 234.35C531.763 235.097 531.383 235.763 530.863 236.35H531.553Z" fill="black"/><rect x="42.5" y="35.5" width="31" height="44" fill="#C0E6F6" stroke="white"/><rect x="12.5" y="35.5" width="31" height="44" fill="#23A7DA" stroke="white"/><rect x="72.5" y="35.5" width="31" height="44" fill="#DAF6C0" stroke="white"/><rect x="102.5" y="35.5" width="31" height="44" fill="#A1D77E" stroke="white"/><rect x="245.5" y="35.5" width="61" height="44" fill="#5282FF" stroke="white"/><rect x="305.5" y="35.5" width="61" height="44" fill="#67B0F8" stroke="white"/><rect x="365.5" y="35.5" width="101" height="44" fill="#B4B4B4" stroke="white"/><rect x="495.5" y="35.5" width="31" height="44" fill="#C0E6F6" stroke="white"/><rect x="465.5" y="35.5" width="31" height="44" fill="#23A7DA" stroke="white"/><rect x="525.5" y="35.5" width="31" height="44" fill="#DAF6C0" stroke="white"/><rect x="555.5" y="35.5" width="31" height="44" fill="#A1D77E" stroke="white"/><path d="M28.1636 9.73V15.32H29.3836C29.7436 15.32 30.0769 15.2633 30.3836 15.15C30.6903 15.03 30.9536 14.85 31.1736 14.61C31.4003 14.37 31.5769 14.0633 31.7036 13.69C31.8369 13.3167 31.9036 12.87 31.9036 12.35C31.9036 11.83 31.8403 11.4033 31.7136 11.07C31.5869 10.73 31.4136 10.4633 31.1936 10.27C30.9736 10.07 30.7169 9.93 30.4236 9.85C30.1303 9.77 29.8169 9.73 29.4836 9.73H28.1636ZM27.2436 9.05H29.4836C29.9503 9.05 30.3869 9.10333 30.7936 9.21C31.2069 9.31667 31.5669 9.49667 31.8736 9.75C32.1869 10.0033 32.4336 10.3367 32.6136 10.75C32.7936 11.1633 32.8836 11.6767 32.8836 12.29C32.8836 12.9033 32.7936 13.4433 32.6136 13.91C32.4336 14.37 32.1836 14.7567 31.8636 15.07C31.5503 15.3767 31.1803 15.61 30.7536 15.77C30.3269 15.9233 29.8703 16 29.3836 16H27.2436V9.05ZM36.1165 11.48C35.7565 11.48 35.4465 11.6067 35.1865 11.86C34.9332 12.1133 34.7732 12.4967 34.7065 13.01H37.2565C37.2965 12.49 37.2065 12.1067 36.9865 11.86C36.7732 11.6067 36.4832 11.48 36.1165 11.48ZM37.9665 15.57C37.7865 15.7233 37.5532 15.85 37.2665 15.95C36.9798 16.05 36.6532 16.1 36.2865 16.1C35.4865 16.1 34.8732 15.8733 34.4465 15.42C34.0198 14.96 33.8065 14.3133 33.8065 13.48C33.8065 13.0733 33.8665 12.71 33.9865 12.39C34.1065 12.0633 34.2698 11.7867 34.4765 11.56C34.6898 11.3333 34.9365 11.1633 35.2165 11.05C35.5032 10.93 35.8098 10.87 36.1365 10.87C36.4765 10.87 36.7798 10.93 37.0465 11.05C37.3198 11.1633 37.5432 11.3367 37.7165 11.57C37.8965 11.7967 38.0165 12.0833 38.0765 12.43C38.1432 12.77 38.1432 13.1633 38.0765 13.61H34.6765C34.7165 14.8167 35.2798 15.42 36.3665 15.42C36.6532 15.42 36.9098 15.3767 37.1365 15.29C37.3632 15.2033 37.5732 15.0933 37.7665 14.96L37.9665 15.57ZM41.6432 15.49C42.0899 15.49 42.4499 15.3333 42.7232 15.02C43.0032 14.7 43.1432 14.1867 43.1432 13.48C43.1432 12.7867 43.0032 12.28 42.7232 11.96C42.4499 11.6333 42.0899 11.47 41.6432 11.47C41.4232 11.47 41.2132 11.51 41.0132 11.59C40.8132 11.6633 40.6365 11.7833 40.4832 11.95C40.3365 12.11 40.2199 12.3167 40.1332 12.57C40.0465 12.8233 40.0032 13.1267 40.0032 13.48C40.0032 13.84 40.0465 14.1467 40.1332 14.4C40.2199 14.6533 40.3365 14.86 40.4832 15.02C40.6365 15.18 40.8132 15.3 41.0132 15.38C41.2132 15.4533 41.4232 15.49 41.6432 15.49ZM41.7732 16.1C41.3999 16.1 41.0699 16.02 40.7832 15.86C40.5032 15.6933 40.2732 15.4667 40.0932 15.18V17.87H39.2432V10.97H39.9932L40.0532 11.86C40.2332 11.56 40.4665 11.32 40.7532 11.14C41.0465 10.96 41.3999 10.87 41.8132 10.87C42.1065 10.87 42.3865 10.9233 42.6532 11.03C42.9199 11.1367 43.1532 11.2967 43.3532 11.51C43.5599 11.7233 43.7232 11.9967 43.8432 12.33C43.9632 12.6567 44.0232 13.04 44.0232 13.48C44.0232 13.92 43.9599 14.3067 43.8332 14.64C43.7132 14.9667 43.5499 15.24 43.3432 15.46C43.1365 15.6733 42.8965 15.8333 42.6232 15.94C42.3565 16.0467 42.0732 16.1 41.7732 16.1ZM47.2616 16.1C46.935 16.1 46.625 16.0433 46.3316 15.93C46.0383 15.81 45.7816 15.64 45.5616 15.42C45.3416 15.1933 45.165 14.92 45.0316 14.6C44.905 14.2733 44.8416 13.9 44.8416 13.48C44.8416 13.06 44.905 12.69 45.0316 12.37C45.165 12.0433 45.3416 11.77 45.5616 11.55C45.7816 11.33 46.0383 11.1633 46.3316 11.05C46.625 10.93 46.935 10.87 47.2616 10.87C47.5883 10.87 47.8983 10.93 48.1916 11.05C48.4916 11.1633 48.7516 11.33 48.9716 11.55C49.1983 11.77 49.3783 12.0433 49.5116 12.37C49.645 12.69 49.7116 13.06 49.7116 13.48C49.7116 13.9 49.645 14.2733 49.5116 14.6C49.3783 14.92 49.1983 15.1933 48.9716 15.42C48.7516 15.64 48.4916 15.81 48.1916 15.93C47.8983 16.0433 47.5883 16.1 47.2616 16.1ZM47.2616 15.47C47.4616 15.47 47.655 15.4367 47.8416 15.37C48.035 15.2967 48.205 15.18 48.3516 15.02C48.4983 14.86 48.615 14.6533 48.7016 14.4C48.795 14.1467 48.8416 13.84 48.8416 13.48C48.8416 13.12 48.795 12.8167 48.7016 12.57C48.615 12.3167 48.4983 12.11 48.3516 11.95C48.205 11.79 48.035 11.6767 47.8416 11.61C47.655 11.5367 47.4616 11.5 47.2616 11.5C47.0616 11.5 46.8683 11.5367 46.6816 11.61C46.5016 11.6767 46.3383 11.79 46.1916 11.95C46.045 12.11 45.9283 12.3167 45.8416 12.57C45.755 12.8167 45.7116 13.12 45.7116 13.48C45.7116 13.84 45.755 14.1467 45.8416 14.4C45.9283 14.6533 46.045 14.86 46.1916 15.02C46.3383 15.18 46.5016 15.2967 46.6816 15.37C46.8683 15.4367 47.0616 15.47 47.2616 15.47ZM53.315 15.91C53.2083 15.9633 53.0783 16.0067 52.925 16.04C52.7717 16.08 52.6017 16.1 52.415 16.1C51.9417 16.1 51.5917 15.9767 51.365 15.73C51.1383 15.4767 51.025 15.11 51.025 14.63V11.59H50.425V10.97H51.025V10.01H51.885V10.97H53.145V11.59H51.885V14.59C51.885 14.8633 51.9283 15.07 52.015 15.21C52.1017 15.3433 52.2617 15.41 52.495 15.41C52.6083 15.41 52.725 15.3967 52.845 15.37C52.965 15.3433 53.0717 15.3067 53.165 15.26L53.315 15.91ZM58.5995 16.1C58.2729 16.1 57.9629 16.0433 57.6695 15.93C57.3762 15.81 57.1195 15.64 56.8995 15.42C56.6795 15.1933 56.5029 14.92 56.3695 14.6C56.2429 14.2733 56.1795 13.9 56.1795 13.48C56.1795 13.06 56.2429 12.69 56.3695 12.37C56.5029 12.0433 56.6795 11.77 56.8995 11.55C57.1195 11.33 57.3762 11.1633 57.6695 11.05C57.9629 10.93 58.2729 10.87 58.5995 10.87C58.9262 10.87 59.2362 10.93 59.5295 11.05C59.8295 11.1633 60.0895 11.33 60.3095 11.55C60.5362 11.77 60.7162 12.0433 60.8495 12.37C60.9829 12.69 61.0495 13.06 61.0495 13.48C61.0495 13.9 60.9829 14.2733 60.8495 14.6C60.7162 14.92 60.5362 15.1933 60.3095 15.42C60.0895 15.64 59.8295 15.81 59.5295 15.93C59.2362 16.0433 58.9262 16.1 58.5995 16.1ZM58.5995 15.47C58.7995 15.47 58.9929 15.4367 59.1795 15.37C59.3729 15.2967 59.5429 15.18 59.6895 15.02C59.8362 14.86 59.9529 14.6533 60.0395 14.4C60.1329 14.1467 60.1795 13.84 60.1795 13.48C60.1795 13.12 60.1329 12.8167 60.0395 12.57C59.9529 12.3167 59.8362 12.11 59.6895 11.95C59.5429 11.79 59.3729 11.6767 59.1795 11.61C58.9929 11.5367 58.7995 11.5 58.5995 11.5C58.3995 11.5 58.2062 11.5367 58.0195 11.61C57.8395 11.6767 57.6762 11.79 57.5295 11.95C57.3829 12.11 57.2662 12.3167 57.1795 12.57C57.0929 12.8167 57.0495 13.12 57.0495 13.48C57.0495 13.84 57.0929 14.1467 57.1795 14.4C57.2662 14.6533 57.3829 14.86 57.5295 15.02C57.6762 15.18 57.8395 15.2967 58.0195 15.37C58.2062 15.4367 58.3995 15.47 58.5995 15.47ZM64.5729 15.49C65.0196 15.49 65.3796 15.3333 65.6529 15.02C65.9329 14.7 66.0729 14.1867 66.0729 13.48C66.0729 12.7867 65.9329 12.28 65.6529 11.96C65.3796 11.6333 65.0196 11.47 64.5729 11.47C64.3529 11.47 64.1429 11.51 63.9429 11.59C63.7429 11.6633 63.5662 11.7833 63.4129 11.95C63.2662 12.11 63.1496 12.3167 63.0629 12.57C62.9762 12.8233 62.9329 13.1267 62.9329 13.48C62.9329 13.84 62.9762 14.1467 63.0629 14.4C63.1496 14.6533 63.2662 14.86 63.4129 15.02C63.5662 15.18 63.7429 15.3 63.9429 15.38C64.1429 15.4533 64.3529 15.49 64.5729 15.49ZM64.7029 16.1C64.3296 16.1 63.9996 16.02 63.7129 15.86C63.4329 15.6933 63.2029 15.4667 63.0229 15.18V17.87H62.1729V10.97H62.9229L62.9829 11.86C63.1629 11.56 63.3962 11.32 63.6829 11.14C63.9762 10.96 64.3296 10.87 64.7429 10.87C65.0362 10.87 65.3162 10.9233 65.5829 11.03C65.8496 11.1367 66.0829 11.2967 66.2829 11.51C66.4896 11.7233 66.6529 11.9967 66.7729 12.33C66.8929 12.6567 66.9529 13.04 66.9529 13.48C66.9529 13.92 66.8896 14.3067 66.7629 14.64C66.6429 14.9667 66.4796 15.24 66.2729 15.46C66.0662 15.6733 65.8262 15.8333 65.5529 15.94C65.2862 16.0467 65.0029 16.1 64.7029 16.1ZM70.0813 11.48C69.7213 11.48 69.4113 11.6067 69.1513 11.86C68.898 12.1133 68.738 12.4967 68.6713 13.01H71.2213C71.2613 12.49 71.1713 12.1067 70.9513 11.86C70.738 11.6067 70.448 11.48 70.0813 11.48ZM71.9313 15.57C71.7513 15.7233 71.518 15.85 71.2313 15.95C70.9447 16.05 70.618 16.1 70.2513 16.1C69.4513 16.1 68.838 15.8733 68.4113 15.42C67.9847 14.96 67.7713 14.3133 67.7713 13.48C67.7713 13.0733 67.8313 12.71 67.9513 12.39C68.0713 12.0633 68.2347 11.7867 68.4413 11.56C68.6547 11.3333 68.9013 11.1633 69.1813 11.05C69.468 10.93 69.7747 10.87 70.1013 10.87C70.4413 10.87 70.7447 10.93 71.0113 11.05C71.2847 11.1633 71.508 11.3367 71.6813 11.57C71.8613 11.7967 71.9813 12.0833 72.0413 12.43C72.108 12.77 72.108 13.1633 72.0413 13.61H68.6413C68.6813 14.8167 69.2447 15.42 70.3313 15.42C70.618 15.42 70.8747 15.3767 71.1013 15.29C71.328 15.2033 71.538 15.0933 71.7313 14.96L71.9313 15.57ZM75.698 11.77C75.5247 11.7567 75.3547 11.77 75.188 11.81C75.0214 11.85 74.8647 11.9133 74.718 12C74.578 12.0867 74.448 12.1933 74.328 12.32C74.2147 12.4467 74.1247 12.5867 74.058 12.74V16H73.208V10.97H73.958L74.038 12.06H74.058C74.1247 11.9133 74.208 11.7733 74.308 11.64C74.4147 11.5 74.5347 11.38 74.668 11.28C74.808 11.1733 74.9614 11.0867 75.128 11.02C75.3014 10.9533 75.4914 10.92 75.698 10.92V11.77ZM78.1063 15.48C78.4596 15.48 78.7396 15.3933 78.9463 15.22C79.1596 15.04 79.3163 14.8367 79.4163 14.61V13.66H78.9763C78.3296 13.66 77.8629 13.73 77.5763 13.87C77.2963 14.0033 77.1562 14.2633 77.1562 14.65C77.1562 14.9233 77.2496 15.13 77.4363 15.27C77.6296 15.41 77.8529 15.48 78.1063 15.48ZM79.5763 16C79.5496 15.9067 79.5263 15.7967 79.5063 15.67C79.4863 15.5433 79.4696 15.4067 79.4563 15.26C79.3963 15.36 79.3229 15.46 79.2363 15.56C79.1563 15.66 79.0563 15.75 78.9363 15.83C78.8163 15.91 78.6729 15.9733 78.5063 16.02C78.3396 16.0733 78.1463 16.1 77.9263 16.1C77.7063 16.1 77.4996 16.07 77.3063 16.01C77.1129 15.95 76.9396 15.86 76.7863 15.74C76.6396 15.62 76.5229 15.4733 76.4363 15.3C76.3496 15.1267 76.3063 14.9267 76.3063 14.7C76.3063 14.1533 76.5229 13.7567 76.9563 13.51C77.3963 13.2567 78.0429 13.13 78.8963 13.13H79.4163V12.72C79.4163 12.3133 79.3296 12.01 79.1563 11.81C78.9829 11.61 78.6763 11.51 78.2363 11.51C77.9363 11.51 77.6629 11.5667 77.4163 11.68C77.1763 11.7867 76.9629 11.9167 76.7763 12.07L76.5463 11.37C76.6263 11.31 76.7296 11.25 76.8563 11.19C76.9829 11.13 77.1263 11.0767 77.2863 11.03C77.4463 10.9833 77.6163 10.9467 77.7963 10.92C77.9763 10.8867 78.1596 10.87 78.3463 10.87C78.9796 10.87 79.4563 11.01 79.7763 11.29C80.1029 11.5633 80.2663 12 80.2663 12.6V15.19C80.2663 15.3033 80.2729 15.4467 80.2863 15.62C80.2996 15.7867 80.3163 15.9133 80.3363 16H79.5763ZM84.1158 15.91C84.0091 15.9633 83.8791 16.0067 83.7258 16.04C83.5724 16.08 83.4024 16.1 83.2158 16.1C82.7424 16.1 82.3924 15.9767 82.1658 15.73C81.9391 15.4767 81.8258 15.11 81.8258 14.63V11.59H81.2258V10.97H81.8258V10.01H82.6858V10.97H83.9458V11.59H82.6858V14.59C82.6858 14.8633 82.7291 15.07 82.8158 15.21C82.9024 15.3433 83.0624 15.41 83.2958 15.41C83.4091 15.41 83.5258 15.3967 83.6458 15.37C83.7658 15.3433 83.8724 15.3067 83.9658 15.26L84.1158 15.91ZM85.5421 10.21C85.3754 10.21 85.2421 10.16 85.1421 10.06C85.0488 9.96 85.0021 9.83333 85.0021 9.68C85.0021 9.52667 85.0488 9.39667 85.1421 9.29C85.2421 9.18333 85.3754 9.13 85.5421 9.13C85.7021 9.13 85.8321 9.18333 85.9321 9.29C86.0321 9.39667 86.0821 9.52667 86.0821 9.68C86.0821 9.83333 86.0321 9.96 85.9321 10.06C85.8321 10.16 85.7021 10.21 85.5421 10.21ZM85.9721 10.97V16H85.1221V10.97H85.9721ZM89.498 16.1C89.1713 16.1 88.8613 16.0433 88.568 15.93C88.2746 15.81 88.018 15.64 87.798 15.42C87.578 15.1933 87.4013 14.92 87.268 14.6C87.1413 14.2733 87.078 13.9 87.078 13.48C87.078 13.06 87.1413 12.69 87.268 12.37C87.4013 12.0433 87.578 11.77 87.798 11.55C88.018 11.33 88.2746 11.1633 88.568 11.05C88.8613 10.93 89.1713 10.87 89.498 10.87C89.8246 10.87 90.1346 10.93 90.428 11.05C90.728 11.1633 90.988 11.33 91.208 11.55C91.4346 11.77 91.6146 12.0433 91.748 12.37C91.8813 12.69 91.948 13.06 91.948 13.48C91.948 13.9 91.8813 14.2733 91.748 14.6C91.6146 14.92 91.4346 15.1933 91.208 15.42C90.988 15.64 90.728 15.81 90.428 15.93C90.1346 16.0433 89.8246 16.1 89.498 16.1ZM89.498 15.47C89.698 15.47 89.8913 15.4367 90.078 15.37C90.2713 15.2967 90.4413 15.18 90.588 15.02C90.7346 14.86 90.8513 14.6533 90.938 14.4C91.0313 14.1467 91.078 13.84 91.078 13.48C91.078 13.12 91.0313 12.8167 90.938 12.57C90.8513 12.3167 90.7346 12.11 90.588 11.95C90.4413 11.79 90.2713 11.6767 90.078 11.61C89.8913 11.5367 89.698 11.5 89.498 11.5C89.298 11.5 89.1046 11.5367 88.918 11.61C88.738 11.6767 88.5746 11.79 88.428 11.95C88.2813 12.11 88.1646 12.3167 88.078 12.57C87.9913 12.8167 87.948 13.12 87.948 13.48C87.948 13.84 87.9913 14.1467 88.078 14.4C88.1646 14.6533 88.2813 14.86 88.428 15.02C88.5746 15.18 88.738 15.2967 88.918 15.37C89.1046 15.4367 89.298 15.47 89.498 15.47ZM95.4513 11.55C95.0647 11.55 94.7513 11.6433 94.5113 11.83C94.2713 12.0167 94.0747 12.25 93.9213 12.53V16H93.0713V10.97H93.8713L93.9013 11.87H93.9213C94.0547 11.5833 94.268 11.3467 94.5613 11.16C94.8547 10.9667 95.2247 10.87 95.6713 10.87C96.1713 10.87 96.568 11.0033 96.8613 11.27C97.1547 11.53 97.3013 11.93 97.3013 12.47V16H96.4413V12.51C96.4413 12.15 96.3547 11.9 96.1813 11.76C96.008 11.62 95.7647 11.55 95.4513 11.55ZM99.987 16.1C99.7404 16.1 99.527 16.0867 99.347 16.06C99.167 16.04 99.007 16.0133 98.867 15.98C98.727 15.94 98.6037 15.8967 98.497 15.85C98.397 15.8033 98.3037 15.7533 98.217 15.7L98.497 14.99C98.5437 15.03 98.6104 15.0767 98.697 15.13C98.7837 15.1767 98.8904 15.2267 99.017 15.28C99.1437 15.3267 99.287 15.3667 99.447 15.4C99.6137 15.4333 99.7937 15.45 99.987 15.45C100.347 15.45 100.62 15.38 100.807 15.24C100.994 15.0933 101.087 14.8933 101.087 14.64C101.087 14.4267 101.01 14.2567 100.857 14.13C100.704 14.0033 100.44 13.8833 100.067 13.77C99.8537 13.7033 99.647 13.6367 99.447 13.57C99.2537 13.4967 99.0804 13.4067 98.927 13.3C98.7737 13.1867 98.6504 13.05 98.557 12.89C98.4637 12.7233 98.417 12.5133 98.417 12.26C98.417 11.7933 98.5804 11.4467 98.907 11.22C99.2337 10.9867 99.6837 10.87 100.257 10.87C100.604 10.87 100.9 10.9 101.147 10.96C101.394 11.0133 101.594 11.0767 101.747 11.15L101.547 11.85C101.414 11.7767 101.247 11.7 101.047 11.62C100.847 11.54 100.594 11.5 100.287 11.5C99.967 11.5 99.707 11.5533 99.507 11.66C99.3137 11.76 99.217 11.9433 99.217 12.21C99.217 12.33 99.247 12.4333 99.307 12.52C99.367 12.6067 99.447 12.6833 99.547 12.75C99.6537 12.81 99.7737 12.8633 99.907 12.91C100.047 12.9567 100.19 13 100.337 13.04C100.53 13.1 100.724 13.1667 100.917 13.24C101.11 13.3067 101.28 13.3967 101.427 13.51C101.58 13.6233 101.704 13.7667 101.797 13.94C101.89 14.1067 101.937 14.32 101.937 14.58C101.937 14.8533 101.88 15.0867 101.767 15.28C101.66 15.4667 101.517 15.6233 101.337 15.75C101.157 15.87 100.95 15.9567 100.717 16.01C100.484 16.07 100.24 16.1 99.987 16.1ZM106.321 11.59V16H105.471V11.59H104.861V10.97H105.471V10.5C105.471 9.90667 105.618 9.45333 105.911 9.14C106.211 8.82 106.621 8.66 107.141 8.66C107.354 8.66 107.521 8.67333 107.641 8.7C107.768 8.72667 107.861 8.75667 107.921 8.79L107.731 9.43C107.678 9.39667 107.601 9.37 107.501 9.35C107.401 9.32333 107.274 9.31 107.121 9.31C106.854 9.31 106.654 9.41333 106.521 9.62C106.388 9.82 106.321 10.1133 106.321 10.5V10.97H107.781V11.59H106.321ZM110.728 16.1C110.402 16.1 110.092 16.0433 109.798 15.93C109.505 15.81 109.248 15.64 109.028 15.42C108.808 15.1933 108.632 14.92 108.498 14.6C108.372 14.2733 108.308 13.9 108.308 13.48C108.308 13.06 108.372 12.69 108.498 12.37C108.632 12.0433 108.808 11.77 109.028 11.55C109.248 11.33 109.505 11.1633 109.798 11.05C110.092 10.93 110.402 10.87 110.728 10.87C111.055 10.87 111.365 10.93 111.658 11.05C111.958 11.1633 112.218 11.33 112.438 11.55C112.665 11.77 112.845 12.0433 112.978 12.37C113.112 12.69 113.178 13.06 113.178 13.48C113.178 13.9 113.112 14.2733 112.978 14.6C112.845 14.92 112.665 15.1933 112.438 15.42C112.218 15.64 111.958 15.81 111.658 15.93C111.365 16.0433 111.055 16.1 110.728 16.1ZM110.728 15.47C110.928 15.47 111.122 15.4367 111.308 15.37C111.502 15.2967 111.672 15.18 111.818 15.02C111.965 14.86 112.082 14.6533 112.168 14.4C112.262 14.1467 112.308 13.84 112.308 13.48C112.308 13.12 112.262 12.8167 112.168 12.57C112.082 12.3167 111.965 12.11 111.818 11.95C111.672 11.79 111.502 11.6767 111.308 11.61C111.122 11.5367 110.928 11.5 110.728 11.5C110.528 11.5 110.335 11.5367 110.148 11.61C109.968 11.6767 109.805 11.79 109.658 11.95C109.512 12.11 109.395 12.3167 109.308 12.57C109.222 12.8167 109.178 13.12 109.178 13.48C109.178 13.84 109.222 14.1467 109.308 14.4C109.395 14.6533 109.512 14.86 109.658 15.02C109.805 15.18 109.968 15.2967 110.148 15.37C110.335 15.4367 110.528 15.47 110.728 15.47ZM116.792 11.77C116.618 11.7567 116.448 11.77 116.282 11.81C116.115 11.85 115.958 11.9133 115.812 12C115.672 12.0867 115.542 12.1933 115.422 12.32C115.308 12.4467 115.218 12.5867 115.152 12.74V16H114.302V10.97H115.052L115.132 12.06H115.152C115.218 11.9133 115.302 11.7733 115.402 11.64C115.508 11.5 115.628 11.38 115.762 11.28C115.902 11.1733 116.055 11.0867 116.222 11.02C116.395 10.9533 116.585 10.92 116.792 10.92V11.77ZM122.505 11.77C122.331 11.7567 122.161 11.77 121.995 11.81C121.828 11.85 121.671 11.9133 121.525 12C121.385 12.0867 121.255 12.1933 121.135 12.32C121.021 12.4467 120.931 12.5867 120.865 12.74V16H120.015V10.97H120.765L120.845 12.06H120.865C120.931 11.9133 121.015 11.7733 121.115 11.64C121.221 11.5 121.341 11.38 121.475 11.28C121.615 11.1733 121.768 11.0867 121.935 11.02C122.108 10.9533 122.298 10.92 122.505 10.92V11.77ZM126.809 15.1C126.676 15.38 126.466 15.6167 126.179 15.81C125.899 16.0033 125.533 16.1 125.079 16.1C124.613 16.1 124.236 15.96 123.949 15.68C123.663 15.3933 123.519 14.9533 123.519 14.36V10.97H124.379V14.36C124.379 14.56 124.403 14.7267 124.449 14.86C124.496 14.9933 124.563 15.1 124.649 15.18C124.736 15.26 124.836 15.3167 124.949 15.35C125.063 15.3833 125.186 15.4 125.319 15.4C125.693 15.4 125.993 15.31 126.219 15.13C126.453 14.95 126.649 14.7033 126.809 14.39V10.97H127.659V16H126.909L126.829 15.1H126.809ZM131.457 11.55C131.071 11.55 130.757 11.6433 130.517 11.83C130.277 12.0167 130.081 12.25 129.927 12.53V16H129.077V10.97H129.877L129.907 11.87H129.927C130.061 11.5833 130.274 11.3467 130.567 11.16C130.861 10.9667 131.231 10.87 131.677 10.87C132.177 10.87 132.574 11.0033 132.867 11.27C133.161 11.53 133.307 11.93 133.307 12.47V16H132.447V12.51C132.447 12.15 132.361 11.9 132.187 11.76C132.014 11.62 131.771 11.55 131.457 11.55ZM138.071 16V9.89L136.701 11.29L136.391 10.66L138.031 9.05H138.961V16H138.071Z" fill="black"/><path d="M250.962 9.73V15.32H252.182C252.542 15.32 252.876 15.2633 253.182 15.15C253.489 15.03 253.752 14.85 253.972 14.61C254.199 14.37 254.376 14.0633 254.502 13.69C254.636 13.3167 254.702 12.87 254.702 12.35C254.702 11.83 254.639 11.4033 254.512 11.07C254.386 10.73 254.212 10.4633 253.992 10.27C253.772 10.07 253.516 9.93 253.222 9.85C252.929 9.77 252.616 9.73 252.282 9.73H250.962ZM250.042 9.05H252.282C252.749 9.05 253.186 9.10333 253.592 9.21C254.006 9.31667 254.366 9.49667 254.672 9.75C254.986 10.0033 255.232 10.3367 255.412 10.75C255.592 11.1633 255.682 11.6767 255.682 12.29C255.682 12.9033 255.592 13.4433 255.412 13.91C255.232 14.37 254.982 14.7567 254.662 15.07C254.349 15.3767 253.979 15.61 253.552 15.77C253.126 15.9233 252.669 16 252.182 16H250.042V9.05ZM258.915 11.48C258.555 11.48 258.245 11.6067 257.985 11.86C257.732 12.1133 257.572 12.4967 257.505 13.01H260.055C260.095 12.49 260.005 12.1067 259.785 11.86C259.572 11.6067 259.282 11.48 258.915 11.48ZM260.765 15.57C260.585 15.7233 260.352 15.85 260.065 15.95C259.779 16.05 259.452 16.1 259.085 16.1C258.285 16.1 257.672 15.8733 257.245 15.42C256.819 14.96 256.605 14.3133 256.605 13.48C256.605 13.0733 256.665 12.71 256.785 12.39C256.905 12.0633 257.069 11.7867 257.275 11.56C257.489 11.3333 257.735 11.1633 258.015 11.05C258.302 10.93 258.609 10.87 258.935 10.87C259.275 10.87 259.579 10.93 259.845 11.05C260.119 11.1633 260.342 11.3367 260.515 11.57C260.695 11.7967 260.815 12.0833 260.875 12.43C260.942 12.77 260.942 13.1633 260.875 13.61H257.475C257.515 14.8167 258.079 15.42 259.165 15.42C259.452 15.42 259.709 15.3767 259.935 15.29C260.162 15.2033 260.372 15.0933 260.565 14.96L260.765 15.57ZM264.442 15.49C264.889 15.49 265.249 15.3333 265.522 15.02C265.802 14.7 265.942 14.1867 265.942 13.48C265.942 12.7867 265.802 12.28 265.522 11.96C265.249 11.6333 264.889 11.47 264.442 11.47C264.222 11.47 264.012 11.51 263.812 11.59C263.612 11.6633 263.435 11.7833 263.282 11.95C263.135 12.11 263.019 12.3167 262.932 12.57C262.845 12.8233 262.802 13.1267 262.802 13.48C262.802 13.84 262.845 14.1467 262.932 14.4C263.019 14.6533 263.135 14.86 263.282 15.02C263.435 15.18 263.612 15.3 263.812 15.38C264.012 15.4533 264.222 15.49 264.442 15.49ZM264.572 16.1C264.199 16.1 263.869 16.02 263.582 15.86C263.302 15.6933 263.072 15.4667 262.892 15.18V17.87H262.042V10.97H262.792L262.852 11.86C263.032 11.56 263.265 11.32 263.552 11.14C263.845 10.96 264.199 10.87 264.612 10.87C264.905 10.87 265.185 10.9233 265.452 11.03C265.719 11.1367 265.952 11.2967 266.152 11.51C266.359 11.7233 266.522 11.9967 266.642 12.33C266.762 12.6567 266.822 13.04 266.822 13.48C266.822 13.92 266.759 14.3067 266.632 14.64C266.512 14.9667 266.349 15.24 266.142 15.46C265.935 15.6733 265.695 15.8333 265.422 15.94C265.155 16.0467 264.872 16.1 264.572 16.1ZM270.06 16.1C269.734 16.1 269.424 16.0433 269.13 15.93C268.837 15.81 268.58 15.64 268.36 15.42C268.14 15.1933 267.964 14.92 267.83 14.6C267.704 14.2733 267.64 13.9 267.64 13.48C267.64 13.06 267.704 12.69 267.83 12.37C267.964 12.0433 268.14 11.77 268.36 11.55C268.58 11.33 268.837 11.1633 269.13 11.05C269.424 10.93 269.734 10.87 270.06 10.87C270.387 10.87 270.697 10.93 270.99 11.05C271.29 11.1633 271.55 11.33 271.77 11.55C271.997 11.77 272.177 12.0433 272.31 12.37C272.444 12.69 272.51 13.06 272.51 13.48C272.51 13.9 272.444 14.2733 272.31 14.6C272.177 14.92 271.997 15.1933 271.77 15.42C271.55 15.64 271.29 15.81 270.99 15.93C270.697 16.0433 270.387 16.1 270.06 16.1ZM270.06 15.47C270.26 15.47 270.454 15.4367 270.64 15.37C270.834 15.2967 271.004 15.18 271.15 15.02C271.297 14.86 271.414 14.6533 271.5 14.4C271.594 14.1467 271.64 13.84 271.64 13.48C271.64 13.12 271.594 12.8167 271.5 12.57C271.414 12.3167 271.297 12.11 271.15 11.95C271.004 11.79 270.834 11.6767 270.64 11.61C270.454 11.5367 270.26 11.5 270.06 11.5C269.86 11.5 269.667 11.5367 269.48 11.61C269.3 11.6767 269.137 11.79 268.99 11.95C268.844 12.11 268.727 12.3167 268.64 12.57C268.554 12.8167 268.51 13.12 268.51 13.48C268.51 13.84 268.554 14.1467 268.64 14.4C268.727 14.6533 268.844 14.86 268.99 15.02C269.137 15.18 269.3 15.2967 269.48 15.37C269.667 15.4367 269.86 15.47 270.06 15.47ZM276.114 15.91C276.007 15.9633 275.877 16.0067 275.724 16.04C275.57 16.08 275.4 16.1 275.214 16.1C274.74 16.1 274.39 15.9767 274.164 15.73C273.937 15.4767 273.824 15.11 273.824 14.63V11.59H273.224V10.97H273.824V10.01H274.684V10.97H275.944V11.59H274.684V14.59C274.684 14.8633 274.727 15.07 274.814 15.21C274.9 15.3433 275.06 15.41 275.294 15.41C275.407 15.41 275.524 15.3967 275.644 15.37C275.764 15.3433 275.87 15.3067 275.964 15.26L276.114 15.91ZM281.398 16.1C281.072 16.1 280.762 16.0433 280.468 15.93C280.175 15.81 279.918 15.64 279.698 15.42C279.478 15.1933 279.302 14.92 279.168 14.6C279.042 14.2733 278.978 13.9 278.978 13.48C278.978 13.06 279.042 12.69 279.168 12.37C279.302 12.0433 279.478 11.77 279.698 11.55C279.918 11.33 280.175 11.1633 280.468 11.05C280.762 10.93 281.072 10.87 281.398 10.87C281.725 10.87 282.035 10.93 282.328 11.05C282.628 11.1633 282.888 11.33 283.108 11.55C283.335 11.77 283.515 12.0433 283.648 12.37C283.782 12.69 283.848 13.06 283.848 13.48C283.848 13.9 283.782 14.2733 283.648 14.6C283.515 14.92 283.335 15.1933 283.108 15.42C282.888 15.64 282.628 15.81 282.328 15.93C282.035 16.0433 281.725 16.1 281.398 16.1ZM281.398 15.47C281.598 15.47 281.792 15.4367 281.978 15.37C282.172 15.2967 282.342 15.18 282.488 15.02C282.635 14.86 282.752 14.6533 282.838 14.4C282.932 14.1467 282.978 13.84 282.978 13.48C282.978 13.12 282.932 12.8167 282.838 12.57C282.752 12.3167 282.635 12.11 282.488 11.95C282.342 11.79 282.172 11.6767 281.978 11.61C281.792 11.5367 281.598 11.5 281.398 11.5C281.198 11.5 281.005 11.5367 280.818 11.61C280.638 11.6767 280.475 11.79 280.328 11.95C280.182 12.11 280.065 12.3167 279.978 12.57C279.892 12.8167 279.848 13.12 279.848 13.48C279.848 13.84 279.892 14.1467 279.978 14.4C280.065 14.6533 280.182 14.86 280.328 15.02C280.475 15.18 280.638 15.2967 280.818 15.37C281.005 15.4367 281.198 15.47 281.398 15.47ZM287.372 15.49C287.818 15.49 288.178 15.3333 288.452 15.02C288.732 14.7 288.872 14.1867 288.872 13.48C288.872 12.7867 288.732 12.28 288.452 11.96C288.178 11.6333 287.818 11.47 287.372 11.47C287.152 11.47 286.942 11.51 286.742 11.59C286.542 11.6633 286.365 11.7833 286.212 11.95C286.065 12.11 285.948 12.3167 285.862 12.57C285.775 12.8233 285.732 13.1267 285.732 13.48C285.732 13.84 285.775 14.1467 285.862 14.4C285.948 14.6533 286.065 14.86 286.212 15.02C286.365 15.18 286.542 15.3 286.742 15.38C286.942 15.4533 287.152 15.49 287.372 15.49ZM287.502 16.1C287.128 16.1 286.798 16.02 286.512 15.86C286.232 15.6933 286.002 15.4667 285.822 15.18V17.87H284.972V10.97H285.722L285.782 11.86C285.962 11.56 286.195 11.32 286.482 11.14C286.775 10.96 287.128 10.87 287.542 10.87C287.835 10.87 288.115 10.9233 288.382 11.03C288.648 11.1367 288.882 11.2967 289.082 11.51C289.288 11.7233 289.452 11.9967 289.572 12.33C289.692 12.6567 289.752 13.04 289.752 13.48C289.752 13.92 289.688 14.3067 289.562 14.64C289.442 14.9667 289.278 15.24 289.072 15.46C288.865 15.6733 288.625 15.8333 288.352 15.94C288.085 16.0467 287.802 16.1 287.502 16.1ZM292.88 11.48C292.52 11.48 292.21 11.6067 291.95 11.86C291.697 12.1133 291.537 12.4967 291.47 13.01H294.02C294.06 12.49 293.97 12.1067 293.75 11.86C293.537 11.6067 293.247 11.48 292.88 11.48ZM294.73 15.57C294.55 15.7233 294.317 15.85 294.03 15.95C293.743 16.05 293.417 16.1 293.05 16.1C292.25 16.1 291.637 15.8733 291.21 15.42C290.783 14.96 290.57 14.3133 290.57 13.48C290.57 13.0733 290.63 12.71 290.75 12.39C290.87 12.0633 291.033 11.7867 291.24 11.56C291.453 11.3333 291.7 11.1633 291.98 11.05C292.267 10.93 292.573 10.87 292.9 10.87C293.24 10.87 293.543 10.93 293.81 11.05C294.083 11.1633 294.307 11.3367 294.48 11.57C294.66 11.7967 294.78 12.0833 294.84 12.43C294.907 12.77 294.907 13.1633 294.84 13.61H291.44C291.48 14.8167 292.043 15.42 293.13 15.42C293.417 15.42 293.673 15.3767 293.9 15.29C294.127 15.2033 294.337 15.0933 294.53 14.96L294.73 15.57ZM298.497 11.77C298.324 11.7567 298.154 11.77 297.987 11.81C297.82 11.85 297.664 11.9133 297.517 12C297.377 12.0867 297.247 12.1933 297.127 12.32C297.014 12.4467 296.924 12.5867 296.857 12.74V16H296.007V10.97H296.757L296.837 12.06H296.857C296.924 11.9133 297.007 11.7733 297.107 11.64C297.214 11.5 297.334 11.38 297.467 11.28C297.607 11.1733 297.76 11.0867 297.927 11.02C298.1 10.9533 298.29 10.92 298.497 10.92V11.77ZM300.905 15.48C301.258 15.48 301.538 15.3933 301.745 15.22C301.958 15.04 302.115 14.8367 302.215 14.61V13.66H301.775C301.128 13.66 300.662 13.73 300.375 13.87C300.095 14.0033 299.955 14.2633 299.955 14.65C299.955 14.9233 300.048 15.13 300.235 15.27C300.428 15.41 300.652 15.48 300.905 15.48ZM302.375 16C302.348 15.9067 302.325 15.7967 302.305 15.67C302.285 15.5433 302.268 15.4067 302.255 15.26C302.195 15.36 302.122 15.46 302.035 15.56C301.955 15.66 301.855 15.75 301.735 15.83C301.615 15.91 301.472 15.9733 301.305 16.02C301.138 16.0733 300.945 16.1 300.725 16.1C300.505 16.1 300.298 16.07 300.105 16.01C299.912 15.95 299.738 15.86 299.585 15.74C299.438 15.62 299.322 15.4733 299.235 15.3C299.148 15.1267 299.105 14.9267 299.105 14.7C299.105 14.1533 299.322 13.7567 299.755 13.51C300.195 13.2567 300.842 13.13 301.695 13.13H302.215V12.72C302.215 12.3133 302.128 12.01 301.955 11.81C301.782 11.61 301.475 11.51 301.035 11.51C300.735 11.51 300.462 11.5667 300.215 11.68C299.975 11.7867 299.762 11.9167 299.575 12.07L299.345 11.37C299.425 11.31 299.528 11.25 299.655 11.19C299.782 11.13 299.925 11.0767 300.085 11.03C300.245 10.9833 300.415 10.9467 300.595 10.92C300.775 10.8867 300.958 10.87 301.145 10.87C301.778 10.87 302.255 11.01 302.575 11.29C302.902 11.5633 303.065 12 303.065 12.6V15.19C303.065 15.3033 303.072 15.4467 303.085 15.62C303.098 15.7867 303.115 15.9133 303.135 16H302.375ZM306.915 15.91C306.808 15.9633 306.678 16.0067 306.525 16.04C306.371 16.08 306.201 16.1 306.015 16.1C305.541 16.1 305.191 15.9767 304.965 15.73C304.738 15.4767 304.625 15.11 304.625 14.63V11.59H304.025V10.97H304.625V10.01H305.485V10.97H306.745V11.59H305.485V14.59C305.485 14.8633 305.528 15.07 305.615 15.21C305.701 15.3433 305.861 15.41 306.095 15.41C306.208 15.41 306.325 15.3967 306.445 15.37C306.565 15.3433 306.671 15.3067 306.765 15.26L306.915 15.91ZM308.341 10.21C308.174 10.21 308.041 10.16 307.941 10.06C307.848 9.96 307.801 9.83333 307.801 9.68C307.801 9.52667 307.848 9.39667 307.941 9.29C308.041 9.18333 308.174 9.13 308.341 9.13C308.501 9.13 308.631 9.18333 308.731 9.29C308.831 9.39667 308.881 9.52667 308.881 9.68C308.881 9.83333 308.831 9.96 308.731 10.06C308.631 10.16 308.501 10.21 308.341 10.21ZM308.771 10.97V16H307.921V10.97H308.771ZM312.297 16.1C311.97 16.1 311.66 16.0433 311.367 15.93C311.073 15.81 310.817 15.64 310.597 15.42C310.377 15.1933 310.2 14.92 310.067 14.6C309.94 14.2733 309.877 13.9 309.877 13.48C309.877 13.06 309.94 12.69 310.067 12.37C310.2 12.0433 310.377 11.77 310.597 11.55C310.817 11.33 311.073 11.1633 311.367 11.05C311.66 10.93 311.97 10.87 312.297 10.87C312.623 10.87 312.933 10.93 313.227 11.05C313.527 11.1633 313.787 11.33 314.007 11.55C314.233 11.77 314.413 12.0433 314.547 12.37C314.68 12.69 314.747 13.06 314.747 13.48C314.747 13.9 314.68 14.2733 314.547 14.6C314.413 14.92 314.233 15.1933 314.007 15.42C313.787 15.64 313.527 15.81 313.227 15.93C312.933 16.0433 312.623 16.1 312.297 16.1ZM312.297 15.47C312.497 15.47 312.69 15.4367 312.877 15.37C313.07 15.2967 313.24 15.18 313.387 15.02C313.533 14.86 313.65 14.6533 313.737 14.4C313.83 14.1467 313.877 13.84 313.877 13.48C313.877 13.12 313.83 12.8167 313.737 12.57C313.65 12.3167 313.533 12.11 313.387 11.95C313.24 11.79 313.07 11.6767 312.877 11.61C312.69 11.5367 312.497 11.5 312.297 11.5C312.097 11.5 311.903 11.5367 311.717 11.61C311.537 11.6767 311.373 11.79 311.227 11.95C311.08 12.11 310.963 12.3167 310.877 12.57C310.79 12.8167 310.747 13.12 310.747 13.48C310.747 13.84 310.79 14.1467 310.877 14.4C310.963 14.6533 311.08 14.86 311.227 15.02C311.373 15.18 311.537 15.2967 311.717 15.37C311.903 15.4367 312.097 15.47 312.297 15.47ZM318.25 11.55C317.863 11.55 317.55 11.6433 317.31 11.83C317.07 12.0167 316.873 12.25 316.72 12.53V16H315.87V10.97H316.67L316.7 11.87H316.72C316.853 11.5833 317.067 11.3467 317.36 11.16C317.653 10.9667 318.023 10.87 318.47 10.87C318.97 10.87 319.367 11.0033 319.66 11.27C319.953 11.53 320.1 11.93 320.1 12.47V16H319.24V12.51C319.24 12.15 319.153 11.9 318.98 11.76C318.807 11.62 318.563 11.55 318.25 11.55ZM322.786 16.1C322.539 16.1 322.326 16.0867 322.146 16.06C321.966 16.04 321.806 16.0133 321.666 15.98C321.526 15.94 321.403 15.8967 321.296 15.85C321.196 15.8033 321.103 15.7533 321.016 15.7L321.296 14.99C321.343 15.03 321.409 15.0767 321.496 15.13C321.583 15.1767 321.689 15.2267 321.816 15.28C321.943 15.3267 322.086 15.3667 322.246 15.4C322.413 15.4333 322.593 15.45 322.786 15.45C323.146 15.45 323.419 15.38 323.606 15.24C323.793 15.0933 323.886 14.8933 323.886 14.64C323.886 14.4267 323.809 14.2567 323.656 14.13C323.503 14.0033 323.239 13.8833 322.866 13.77C322.653 13.7033 322.446 13.6367 322.246 13.57C322.053 13.4967 321.879 13.4067 321.726 13.3C321.573 13.1867 321.449 13.05 321.356 12.89C321.263 12.7233 321.216 12.5133 321.216 12.26C321.216 11.7933 321.379 11.4467 321.706 11.22C322.033 10.9867 322.483 10.87 323.056 10.87C323.403 10.87 323.699 10.9 323.946 10.96C324.193 11.0133 324.393 11.0767 324.546 11.15L324.346 11.85C324.213 11.7767 324.046 11.7 323.846 11.62C323.646 11.54 323.393 11.5 323.086 11.5C322.766 11.5 322.506 11.5533 322.306 11.66C322.113 11.76 322.016 11.9433 322.016 12.21C322.016 12.33 322.046 12.4333 322.106 12.52C322.166 12.6067 322.246 12.6833 322.346 12.75C322.453 12.81 322.573 12.8633 322.706 12.91C322.846 12.9567 322.989 13 323.136 13.04C323.329 13.1 323.523 13.1667 323.716 13.24C323.909 13.3067 324.079 13.3967 324.226 13.51C324.379 13.6233 324.503 13.7667 324.596 13.94C324.689 14.1067 324.736 14.32 324.736 14.58C324.736 14.8533 324.679 15.0867 324.566 15.28C324.459 15.4667 324.316 15.6233 324.136 15.75C323.956 15.87 323.749 15.9567 323.516 16.01C323.283 16.07 323.039 16.1 322.786 16.1ZM329.12 11.59V16H328.27V11.59H327.66V10.97H328.27V10.5C328.27 9.90667 328.416 9.45333 328.71 9.14C329.01 8.82 329.42 8.66 329.94 8.66C330.153 8.66 330.32 8.67333 330.44 8.7C330.566 8.72667 330.66 8.75667 330.72 8.79L330.53 9.43C330.476 9.39667 330.4 9.37 330.3 9.35C330.2 9.32333 330.073 9.31 329.92 9.31C329.653 9.31 329.453 9.41333 329.32 9.62C329.186 9.82 329.12 10.1133 329.12 10.5V10.97H330.58V11.59H329.12ZM333.527 16.1C333.201 16.1 332.891 16.0433 332.597 15.93C332.304 15.81 332.047 15.64 331.827 15.42C331.607 15.1933 331.431 14.92 331.297 14.6C331.171 14.2733 331.107 13.9 331.107 13.48C331.107 13.06 331.171 12.69 331.297 12.37C331.431 12.0433 331.607 11.77 331.827 11.55C332.047 11.33 332.304 11.1633 332.597 11.05C332.891 10.93 333.201 10.87 333.527 10.87C333.854 10.87 334.164 10.93 334.457 11.05C334.757 11.1633 335.017 11.33 335.237 11.55C335.464 11.77 335.644 12.0433 335.777 12.37C335.911 12.69 335.977 13.06 335.977 13.48C335.977 13.9 335.911 14.2733 335.777 14.6C335.644 14.92 335.464 15.1933 335.237 15.42C335.017 15.64 334.757 15.81 334.457 15.93C334.164 16.0433 333.854 16.1 333.527 16.1ZM333.527 15.47C333.727 15.47 333.921 15.4367 334.107 15.37C334.301 15.2967 334.471 15.18 334.617 15.02C334.764 14.86 334.881 14.6533 334.967 14.4C335.061 14.1467 335.107 13.84 335.107 13.48C335.107 13.12 335.061 12.8167 334.967 12.57C334.881 12.3167 334.764 12.11 334.617 11.95C334.471 11.79 334.301 11.6767 334.107 11.61C333.921 11.5367 333.727 11.5 333.527 11.5C333.327 11.5 333.134 11.5367 332.947 11.61C332.767 11.6767 332.604 11.79 332.457 11.95C332.311 12.11 332.194 12.3167 332.107 12.57C332.021 12.8167 331.977 13.12 331.977 13.48C331.977 13.84 332.021 14.1467 332.107 14.4C332.194 14.6533 332.311 14.86 332.457 15.02C332.604 15.18 332.767 15.2967 332.947 15.37C333.134 15.4367 333.327 15.47 333.527 15.47ZM339.591 11.77C339.417 11.7567 339.247 11.77 339.081 11.81C338.914 11.85 338.757 11.9133 338.611 12C338.471 12.0867 338.341 12.1933 338.221 12.32C338.107 12.4467 338.017 12.5867 337.951 12.74V16H337.101V10.97H337.851L337.931 12.06H337.951C338.017 11.9133 338.101 11.7733 338.201 11.64C338.307 11.5 338.427 11.38 338.561 11.28C338.701 11.1733 338.854 11.0867 339.021 11.02C339.194 10.9533 339.384 10.92 339.591 10.92V11.77ZM345.304 11.77C345.13 11.7567 344.96 11.77 344.794 11.81C344.627 11.85 344.47 11.9133 344.324 12C344.184 12.0867 344.054 12.1933 343.934 12.32C343.82 12.4467 343.73 12.5867 343.664 12.74V16H342.814V10.97H343.564L343.644 12.06H343.664C343.73 11.9133 343.814 11.7733 343.914 11.64C344.02 11.5 344.14 11.38 344.274 11.28C344.414 11.1733 344.567 11.0867 344.734 11.02C344.907 10.9533 345.097 10.92 345.304 10.92V11.77ZM349.608 15.1C349.475 15.38 349.265 15.6167 348.978 15.81C348.698 16.0033 348.332 16.1 347.878 16.1C347.412 16.1 347.035 15.96 346.748 15.68C346.462 15.3933 346.318 14.9533 346.318 14.36V10.97H347.178V14.36C347.178 14.56 347.202 14.7267 347.248 14.86C347.295 14.9933 347.362 15.1 347.448 15.18C347.535 15.26 347.635 15.3167 347.748 15.35C347.862 15.3833 347.985 15.4 348.118 15.4C348.492 15.4 348.792 15.31 349.018 15.13C349.252 14.95 349.448 14.7033 349.608 14.39V10.97H350.458V16H349.708L349.628 15.1H349.608ZM354.256 11.55C353.869 11.55 353.556 11.6433 353.316 11.83C353.076 12.0167 352.879 12.25 352.726 12.53V16H351.876V10.97H352.676L352.706 11.87H352.726C352.859 11.5833 353.073 11.3467 353.366 11.16C353.659 10.9667 354.029 10.87 354.476 10.87C354.976 10.87 355.373 11.0033 355.666 11.27C355.959 11.53 356.106 11.93 356.106 12.47V16H355.246V12.51C355.246 12.15 355.159 11.9 354.986 11.76C354.813 11.62 354.569 11.55 354.256 11.55ZM360.87 16V9.89L359.5 11.29L359.19 10.66L360.83 9.05H361.76V16H360.87Z" fill="black"/><path d="M467.991 9.73V15.32H469.211C469.571 15.32 469.904 15.2633 470.211 15.15C470.517 15.03 470.781 14.85 471.001 14.61C471.227 14.37 471.404 14.0633 471.531 13.69C471.664 13.3167 471.731 12.87 471.731 12.35C471.731 11.83 471.667 11.4033 471.541 11.07C471.414 10.73 471.241 10.4633 471.021 10.27C470.801 10.07 470.544 9.93 470.251 9.85C469.957 9.77 469.644 9.73 469.311 9.73H467.991ZM467.071 9.05H469.311C469.777 9.05 470.214 9.10333 470.621 9.21C471.034 9.31667 471.394 9.49667 471.701 9.75C472.014 10.0033 472.261 10.3367 472.441 10.75C472.621 11.1633 472.711 11.6767 472.711 12.29C472.711 12.9033 472.621 13.4433 472.441 13.91C472.261 14.37 472.011 14.7567 471.691 15.07C471.377 15.3767 471.007 15.61 470.581 15.77C470.154 15.9233 469.697 16 469.211 16H467.071V9.05ZM475.944 11.48C475.584 11.48 475.274 11.6067 475.014 11.86C474.76 12.1133 474.6 12.4967 474.534 13.01H477.084C477.124 12.49 477.034 12.1067 476.814 11.86C476.6 11.6067 476.31 11.48 475.944 11.48ZM477.794 15.57C477.614 15.7233 477.38 15.85 477.094 15.95C476.807 16.05 476.48 16.1 476.114 16.1C475.314 16.1 474.7 15.8733 474.274 15.42C473.847 14.96 473.634 14.3133 473.634 13.48C473.634 13.0733 473.694 12.71 473.814 12.39C473.934 12.0633 474.097 11.7867 474.304 11.56C474.517 11.3333 474.764 11.1633 475.044 11.05C475.33 10.93 475.637 10.87 475.964 10.87C476.304 10.87 476.607 10.93 476.874 11.05C477.147 11.1633 477.37 11.3367 477.544 11.57C477.724 11.7967 477.844 12.0833 477.904 12.43C477.97 12.77 477.97 13.1633 477.904 13.61H474.504C474.544 14.8167 475.107 15.42 476.194 15.42C476.48 15.42 476.737 15.3767 476.964 15.29C477.19 15.2033 477.4 15.0933 477.594 14.96L477.794 15.57ZM481.47 15.49C481.917 15.49 482.277 15.3333 482.55 15.02C482.83 14.7 482.97 14.1867 482.97 13.48C482.97 12.7867 482.83 12.28 482.55 11.96C482.277 11.6333 481.917 11.47 481.47 11.47C481.25 11.47 481.04 11.51 480.84 11.59C480.64 11.6633 480.464 11.7833 480.31 11.95C480.164 12.11 480.047 12.3167 479.96 12.57C479.874 12.8233 479.83 13.1267 479.83 13.48C479.83 13.84 479.874 14.1467 479.96 14.4C480.047 14.6533 480.164 14.86 480.31 15.02C480.464 15.18 480.64 15.3 480.84 15.38C481.04 15.4533 481.25 15.49 481.47 15.49ZM481.6 16.1C481.227 16.1 480.897 16.02 480.61 15.86C480.33 15.6933 480.1 15.4667 479.92 15.18V17.87H479.07V10.97H479.82L479.88 11.86C480.06 11.56 480.294 11.32 480.58 11.14C480.874 10.96 481.227 10.87 481.64 10.87C481.934 10.87 482.214 10.9233 482.48 11.03C482.747 11.1367 482.98 11.2967 483.18 11.51C483.387 11.7233 483.55 11.9967 483.67 12.33C483.79 12.6567 483.85 13.04 483.85 13.48C483.85 13.92 483.787 14.3067 483.66 14.64C483.54 14.9667 483.377 15.24 483.17 15.46C482.964 15.6733 482.724 15.8333 482.45 15.94C482.184 16.0467 481.9 16.1 481.6 16.1ZM487.089 16.1C486.762 16.1 486.452 16.0433 486.159 15.93C485.865 15.81 485.609 15.64 485.389 15.42C485.169 15.1933 484.992 14.92 484.859 14.6C484.732 14.2733 484.669 13.9 484.669 13.48C484.669 13.06 484.732 12.69 484.859 12.37C484.992 12.0433 485.169 11.77 485.389 11.55C485.609 11.33 485.865 11.1633 486.159 11.05C486.452 10.93 486.762 10.87 487.089 10.87C487.415 10.87 487.725 10.93 488.019 11.05C488.319 11.1633 488.579 11.33 488.799 11.55C489.025 11.77 489.205 12.0433 489.339 12.37C489.472 12.69 489.539 13.06 489.539 13.48C489.539 13.9 489.472 14.2733 489.339 14.6C489.205 14.92 489.025 15.1933 488.799 15.42C488.579 15.64 488.319 15.81 488.019 15.93C487.725 16.0433 487.415 16.1 487.089 16.1ZM487.089 15.47C487.289 15.47 487.482 15.4367 487.669 15.37C487.862 15.2967 488.032 15.18 488.179 15.02C488.325 14.86 488.442 14.6533 488.529 14.4C488.622 14.1467 488.669 13.84 488.669 13.48C488.669 13.12 488.622 12.8167 488.529 12.57C488.442 12.3167 488.325 12.11 488.179 11.95C488.032 11.79 487.862 11.6767 487.669 11.61C487.482 11.5367 487.289 11.5 487.089 11.5C486.889 11.5 486.695 11.5367 486.509 11.61C486.329 11.6767 486.165 11.79 486.019 11.95C485.872 12.11 485.755 12.3167 485.669 12.57C485.582 12.8167 485.539 13.12 485.539 13.48C485.539 13.84 485.582 14.1467 485.669 14.4C485.755 14.6533 485.872 14.86 486.019 15.02C486.165 15.18 486.329 15.2967 486.509 15.37C486.695 15.4367 486.889 15.47 487.089 15.47ZM493.142 15.91C493.035 15.9633 492.905 16.0067 492.752 16.04C492.599 16.08 492.429 16.1 492.242 16.1C491.769 16.1 491.419 15.9767 491.192 15.73C490.965 15.4767 490.852 15.11 490.852 14.63V11.59H490.252V10.97H490.852V10.01H491.712V10.97H492.972V11.59H491.712V14.59C491.712 14.8633 491.755 15.07 491.842 15.21C491.929 15.3433 492.089 15.41 492.322 15.41C492.435 15.41 492.552 15.3967 492.672 15.37C492.792 15.3433 492.899 15.3067 492.992 15.26L493.142 15.91ZM498.427 16.1C498.1 16.1 497.79 16.0433 497.497 15.93C497.203 15.81 496.947 15.64 496.727 15.42C496.507 15.1933 496.33 14.92 496.197 14.6C496.07 14.2733 496.007 13.9 496.007 13.48C496.007 13.06 496.07 12.69 496.197 12.37C496.33 12.0433 496.507 11.77 496.727 11.55C496.947 11.33 497.203 11.1633 497.497 11.05C497.79 10.93 498.1 10.87 498.427 10.87C498.753 10.87 499.063 10.93 499.357 11.05C499.657 11.1633 499.917 11.33 500.137 11.55C500.363 11.77 500.543 12.0433 500.677 12.37C500.81 12.69 500.877 13.06 500.877 13.48C500.877 13.9 500.81 14.2733 500.677 14.6C500.543 14.92 500.363 15.1933 500.137 15.42C499.917 15.64 499.657 15.81 499.357 15.93C499.063 16.0433 498.753 16.1 498.427 16.1ZM498.427 15.47C498.627 15.47 498.82 15.4367 499.007 15.37C499.2 15.2967 499.37 15.18 499.517 15.02C499.663 14.86 499.78 14.6533 499.867 14.4C499.96 14.1467 500.007 13.84 500.007 13.48C500.007 13.12 499.96 12.8167 499.867 12.57C499.78 12.3167 499.663 12.11 499.517 11.95C499.37 11.79 499.2 11.6767 499.007 11.61C498.82 11.5367 498.627 11.5 498.427 11.5C498.227 11.5 498.033 11.5367 497.847 11.61C497.667 11.6767 497.503 11.79 497.357 11.95C497.21 12.11 497.093 12.3167 497.007 12.57C496.92 12.8167 496.877 13.12 496.877 13.48C496.877 13.84 496.92 14.1467 497.007 14.4C497.093 14.6533 497.21 14.86 497.357 15.02C497.503 15.18 497.667 15.2967 497.847 15.37C498.033 15.4367 498.227 15.47 498.427 15.47ZM504.4 15.49C504.847 15.49 505.207 15.3333 505.48 15.02C505.76 14.7 505.9 14.1867 505.9 13.48C505.9 12.7867 505.76 12.28 505.48 11.96C505.207 11.6333 504.847 11.47 504.4 11.47C504.18 11.47 503.97 11.51 503.77 11.59C503.57 11.6633 503.393 11.7833 503.24 11.95C503.093 12.11 502.977 12.3167 502.89 12.57C502.803 12.8233 502.76 13.1267 502.76 13.48C502.76 13.84 502.803 14.1467 502.89 14.4C502.977 14.6533 503.093 14.86 503.24 15.02C503.393 15.18 503.57 15.3 503.77 15.38C503.97 15.4533 504.18 15.49 504.4 15.49ZM504.53 16.1C504.157 16.1 503.827 16.02 503.54 15.86C503.26 15.6933 503.03 15.4667 502.85 15.18V17.87H502V10.97H502.75L502.81 11.86C502.99 11.56 503.223 11.32 503.51 11.14C503.803 10.96 504.157 10.87 504.57 10.87C504.863 10.87 505.143 10.9233 505.41 11.03C505.677 11.1367 505.91 11.2967 506.11 11.51C506.317 11.7233 506.48 11.9967 506.6 12.33C506.72 12.6567 506.78 13.04 506.78 13.48C506.78 13.92 506.717 14.3067 506.59 14.64C506.47 14.9667 506.307 15.24 506.1 15.46C505.893 15.6733 505.653 15.8333 505.38 15.94C505.113 16.0467 504.83 16.1 504.53 16.1ZM509.908 11.48C509.548 11.48 509.238 11.6067 508.978 11.86C508.725 12.1133 508.565 12.4967 508.498 13.01H511.048C511.088 12.49 510.998 12.1067 510.778 11.86C510.565 11.6067 510.275 11.48 509.908 11.48ZM511.758 15.57C511.578 15.7233 511.345 15.85 511.058 15.95C510.772 16.05 510.445 16.1 510.078 16.1C509.278 16.1 508.665 15.8733 508.238 15.42C507.812 14.96 507.598 14.3133 507.598 13.48C507.598 13.0733 507.658 12.71 507.778 12.39C507.898 12.0633 508.062 11.7867 508.268 11.56C508.482 11.3333 508.728 11.1633 509.008 11.05C509.295 10.93 509.602 10.87 509.928 10.87C510.268 10.87 510.572 10.93 510.838 11.05C511.112 11.1633 511.335 11.3367 511.508 11.57C511.688 11.7967 511.808 12.0833 511.868 12.43C511.935 12.77 511.935 13.1633 511.868 13.61H508.468C508.508 14.8167 509.072 15.42 510.158 15.42C510.445 15.42 510.702 15.3767 510.928 15.29C511.155 15.2033 511.365 15.0933 511.558 14.96L511.758 15.57ZM515.525 11.77C515.352 11.7567 515.182 11.77 515.015 11.81C514.849 11.85 514.692 11.9133 514.545 12C514.405 12.0867 514.275 12.1933 514.155 12.32C514.042 12.4467 513.952 12.5867 513.885 12.74V16H513.035V10.97H513.785L513.865 12.06H513.885C513.952 11.9133 514.035 11.7733 514.135 11.64C514.242 11.5 514.362 11.38 514.495 11.28C514.635 11.1733 514.789 11.0867 514.955 11.02C515.129 10.9533 515.319 10.92 515.525 10.92V11.77ZM517.933 15.48C518.287 15.48 518.567 15.3933 518.773 15.22C518.987 15.04 519.143 14.8367 519.243 14.61V13.66H518.803C518.157 13.66 517.69 13.73 517.403 13.87C517.123 14.0033 516.983 14.2633 516.983 14.65C516.983 14.9233 517.077 15.13 517.263 15.27C517.457 15.41 517.68 15.48 517.933 15.48ZM519.403 16C519.377 15.9067 519.353 15.7967 519.333 15.67C519.313 15.5433 519.297 15.4067 519.283 15.26C519.223 15.36 519.15 15.46 519.063 15.56C518.983 15.66 518.883 15.75 518.763 15.83C518.643 15.91 518.5 15.9733 518.333 16.02C518.167 16.0733 517.973 16.1 517.753 16.1C517.533 16.1 517.327 16.07 517.133 16.01C516.94 15.95 516.767 15.86 516.613 15.74C516.467 15.62 516.35 15.4733 516.263 15.3C516.177 15.1267 516.133 14.9267 516.133 14.7C516.133 14.1533 516.35 13.7567 516.783 13.51C517.223 13.2567 517.87 13.13 518.723 13.13H519.243V12.72C519.243 12.3133 519.157 12.01 518.983 11.81C518.81 11.61 518.503 11.51 518.063 11.51C517.763 11.51 517.49 11.5667 517.243 11.68C517.003 11.7867 516.79 11.9167 516.603 12.07L516.373 11.37C516.453 11.31 516.557 11.25 516.683 11.19C516.81 11.13 516.953 11.0767 517.113 11.03C517.273 10.9833 517.443 10.9467 517.623 10.92C517.803 10.8867 517.987 10.87 518.173 10.87C518.807 10.87 519.283 11.01 519.603 11.29C519.93 11.5633 520.093 12 520.093 12.6V15.19C520.093 15.3033 520.1 15.4467 520.113 15.62C520.127 15.7867 520.143 15.9133 520.163 16H519.403ZM523.943 15.91C523.836 15.9633 523.706 16.0067 523.553 16.04C523.4 16.08 523.23 16.1 523.043 16.1C522.57 16.1 522.22 15.9767 521.993 15.73C521.766 15.4767 521.653 15.11 521.653 14.63V11.59H521.053V10.97H521.653V10.01H522.513V10.97H523.773V11.59H522.513V14.59C522.513 14.8633 522.556 15.07 522.643 15.21C522.73 15.3433 522.89 15.41 523.123 15.41C523.236 15.41 523.353 15.3967 523.473 15.37C523.593 15.3433 523.7 15.3067 523.793 15.26L523.943 15.91ZM525.369 10.21C525.203 10.21 525.069 10.16 524.969 10.06C524.876 9.96 524.829 9.83333 524.829 9.68C524.829 9.52667 524.876 9.39667 524.969 9.29C525.069 9.18333 525.203 9.13 525.369 9.13C525.529 9.13 525.659 9.18333 525.759 9.29C525.859 9.39667 525.909 9.52667 525.909 9.68C525.909 9.83333 525.859 9.96 525.759 10.06C525.659 10.16 525.529 10.21 525.369 10.21ZM525.799 10.97V16H524.949V10.97H525.799ZM529.325 16.1C528.998 16.1 528.688 16.0433 528.395 15.93C528.102 15.81 527.845 15.64 527.625 15.42C527.405 15.1933 527.228 14.92 527.095 14.6C526.968 14.2733 526.905 13.9 526.905 13.48C526.905 13.06 526.968 12.69 527.095 12.37C527.228 12.0433 527.405 11.77 527.625 11.55C527.845 11.33 528.102 11.1633 528.395 11.05C528.688 10.93 528.998 10.87 529.325 10.87C529.652 10.87 529.962 10.93 530.255 11.05C530.555 11.1633 530.815 11.33 531.035 11.55C531.262 11.77 531.442 12.0433 531.575 12.37C531.708 12.69 531.775 13.06 531.775 13.48C531.775 13.9 531.708 14.2733 531.575 14.6C531.442 14.92 531.262 15.1933 531.035 15.42C530.815 15.64 530.555 15.81 530.255 15.93C529.962 16.0433 529.652 16.1 529.325 16.1ZM529.325 15.47C529.525 15.47 529.718 15.4367 529.905 15.37C530.098 15.2967 530.268 15.18 530.415 15.02C530.562 14.86 530.678 14.6533 530.765 14.4C530.858 14.1467 530.905 13.84 530.905 13.48C530.905 13.12 530.858 12.8167 530.765 12.57C530.678 12.3167 530.562 12.11 530.415 11.95C530.268 11.79 530.098 11.6767 529.905 11.61C529.718 11.5367 529.525 11.5 529.325 11.5C529.125 11.5 528.932 11.5367 528.745 11.61C528.565 11.6767 528.402 11.79 528.255 11.95C528.108 12.11 527.992 12.3167 527.905 12.57C527.818 12.8167 527.775 13.12 527.775 13.48C527.775 13.84 527.818 14.1467 527.905 14.4C527.992 14.6533 528.108 14.86 528.255 15.02C528.402 15.18 528.565 15.2967 528.745 15.37C528.932 15.4367 529.125 15.47 529.325 15.47ZM535.278 11.55C534.892 11.55 534.578 11.6433 534.338 11.83C534.098 12.0167 533.902 12.25 533.748 12.53V16H532.898V10.97H533.698L533.728 11.87H533.748C533.882 11.5833 534.095 11.3467 534.388 11.16C534.682 10.9667 535.052 10.87 535.498 10.87C535.998 10.87 536.395 11.0033 536.688 11.27C536.982 11.53 537.128 11.93 537.128 12.47V16H536.268V12.51C536.268 12.15 536.182 11.9 536.008 11.76C535.835 11.62 535.592 11.55 535.278 11.55ZM539.814 16.1C539.568 16.1 539.354 16.0867 539.174 16.06C538.994 16.04 538.834 16.0133 538.694 15.98C538.554 15.94 538.431 15.8967 538.324 15.85C538.224 15.8033 538.131 15.7533 538.044 15.7L538.324 14.99C538.371 15.03 538.438 15.0767 538.524 15.13C538.611 15.1767 538.718 15.2267 538.844 15.28C538.971 15.3267 539.114 15.3667 539.274 15.4C539.441 15.4333 539.621 15.45 539.814 15.45C540.174 15.45 540.448 15.38 540.634 15.24C540.821 15.0933 540.914 14.8933 540.914 14.64C540.914 14.4267 540.838 14.2567 540.684 14.13C540.531 14.0033 540.268 13.8833 539.894 13.77C539.681 13.7033 539.474 13.6367 539.274 13.57C539.081 13.4967 538.908 13.4067 538.754 13.3C538.601 13.1867 538.478 13.05 538.384 12.89C538.291 12.7233 538.244 12.5133 538.244 12.26C538.244 11.7933 538.408 11.4467 538.734 11.22C539.061 10.9867 539.511 10.87 540.084 10.87C540.431 10.87 540.728 10.9 540.974 10.96C541.221 11.0133 541.421 11.0767 541.574 11.15L541.374 11.85C541.241 11.7767 541.074 11.7 540.874 11.62C540.674 11.54 540.421 11.5 540.114 11.5C539.794 11.5 539.534 11.5533 539.334 11.66C539.141 11.76 539.044 11.9433 539.044 12.21C539.044 12.33 539.074 12.4333 539.134 12.52C539.194 12.6067 539.274 12.6833 539.374 12.75C539.481 12.81 539.601 12.8633 539.734 12.91C539.874 12.9567 540.018 13 540.164 13.04C540.358 13.1 540.551 13.1667 540.744 13.24C540.938 13.3067 541.108 13.3967 541.254 13.51C541.408 13.6233 541.531 13.7667 541.624 13.94C541.718 14.1067 541.764 14.32 541.764 14.58C541.764 14.8533 541.708 15.0867 541.594 15.28C541.488 15.4667 541.344 15.6233 541.164 15.75C540.984 15.87 540.778 15.9567 540.544 16.01C540.311 16.07 540.068 16.1 539.814 16.1ZM546.148 11.59V16H545.298V11.59H544.688V10.97H545.298V10.5C545.298 9.90667 545.445 9.45333 545.738 9.14C546.038 8.82 546.448 8.66 546.968 8.66C547.181 8.66 547.348 8.67333 547.468 8.7C547.595 8.72667 547.688 8.75667 547.748 8.79L547.558 9.43C547.505 9.39667 547.428 9.37 547.328 9.35C547.228 9.32333 547.101 9.31 546.948 9.31C546.681 9.31 546.481 9.41333 546.348 9.62C546.215 9.82 546.148 10.1133 546.148 10.5V10.97H547.608V11.59H546.148ZM550.556 16.1C550.229 16.1 549.919 16.0433 549.626 15.93C549.332 15.81 549.076 15.64 548.856 15.42C548.636 15.1933 548.459 14.92 548.326 14.6C548.199 14.2733 548.136 13.9 548.136 13.48C548.136 13.06 548.199 12.69 548.326 12.37C548.459 12.0433 548.636 11.77 548.856 11.55C549.076 11.33 549.332 11.1633 549.626 11.05C549.919 10.93 550.229 10.87 550.556 10.87C550.882 10.87 551.192 10.93 551.486 11.05C551.786 11.1633 552.046 11.33 552.266 11.55C552.492 11.77 552.672 12.0433 552.806 12.37C552.939 12.69 553.006 13.06 553.006 13.48C553.006 13.9 552.939 14.2733 552.806 14.6C552.672 14.92 552.492 15.1933 552.266 15.42C552.046 15.64 551.786 15.81 551.486 15.93C551.192 16.0433 550.882 16.1 550.556 16.1ZM550.556 15.47C550.756 15.47 550.949 15.4367 551.136 15.37C551.329 15.2967 551.499 15.18 551.646 15.02C551.792 14.86 551.909 14.6533 551.996 14.4C552.089 14.1467 552.136 13.84 552.136 13.48C552.136 13.12 552.089 12.8167 551.996 12.57C551.909 12.3167 551.792 12.11 551.646 11.95C551.499 11.79 551.329 11.6767 551.136 11.61C550.949 11.5367 550.756 11.5 550.556 11.5C550.356 11.5 550.162 11.5367 549.976 11.61C549.796 11.6767 549.632 11.79 549.486 11.95C549.339 12.11 549.222 12.3167 549.136 12.57C549.049 12.8167 549.006 13.12 549.006 13.48C549.006 13.84 549.049 14.1467 549.136 14.4C549.222 14.6533 549.339 14.86 549.486 15.02C549.632 15.18 549.796 15.2967 549.976 15.37C550.162 15.4367 550.356 15.47 550.556 15.47ZM556.619 11.77C556.446 11.7567 556.276 11.77 556.109 11.81C555.942 11.85 555.786 11.9133 555.639 12C555.499 12.0867 555.369 12.1933 555.249 12.32C555.136 12.4467 555.046 12.5867 554.979 12.74V16H554.129V10.97H554.879L554.959 12.06H554.979C555.046 11.9133 555.129 11.7733 555.229 11.64C555.336 11.5 555.456 11.38 555.589 11.28C555.729 11.1733 555.882 11.0867 556.049 11.02C556.222 10.9533 556.412 10.92 556.619 10.92V11.77ZM562.332 11.77C562.159 11.7567 561.989 11.77 561.822 11.81C561.655 11.85 561.499 11.9133 561.352 12C561.212 12.0867 561.082 12.1933 560.962 12.32C560.849 12.4467 560.759 12.5867 560.692 12.74V16H559.842V10.97H560.592L560.672 12.06H560.692C560.759 11.9133 560.842 11.7733 560.942 11.64C561.049 11.5 561.169 11.38 561.302 11.28C561.442 11.1733 561.595 11.0867 561.762 11.02C561.935 10.9533 562.125 10.92 562.332 10.92V11.77ZM566.637 15.1C566.503 15.38 566.293 15.6167 566.007 15.81C565.727 16.0033 565.36 16.1 564.907 16.1C564.44 16.1 564.063 15.96 563.777 15.68C563.49 15.3933 563.347 14.9533 563.347 14.36V10.97H564.207V14.36C564.207 14.56 564.23 14.7267 564.277 14.86C564.323 14.9933 564.39 15.1 564.477 15.18C564.563 15.26 564.663 15.3167 564.777 15.35C564.89 15.3833 565.013 15.4 565.147 15.4C565.52 15.4 565.82 15.31 566.047 15.13C566.28 14.95 566.477 14.7033 566.637 14.39V10.97H567.487V16H566.737L566.657 15.1H566.637ZM571.284 11.55C570.898 11.55 570.584 11.6433 570.344 11.83C570.104 12.0167 569.908 12.25 569.754 12.53V16H568.904V10.97H569.704L569.734 11.87H569.754C569.888 11.5833 570.101 11.3467 570.394 11.16C570.688 10.9667 571.058 10.87 571.504 10.87C572.004 10.87 572.401 11.0033 572.694 11.27C572.988 11.53 573.134 11.93 573.134 12.47V16H572.274V12.51C572.274 12.15 572.188 11.9 572.014 11.76C571.841 11.62 571.598 11.55 571.284 11.55ZM576.538 16V15.2C577.058 14.74 577.518 14.3267 577.918 13.96C578.325 13.5933 578.665 13.25 578.938 12.93C579.212 12.6033 579.418 12.2867 579.558 11.98C579.698 11.6733 579.768 11.3533 579.768 11.02C579.768 10.5933 579.662 10.2533 579.448 10C579.235 9.74 578.892 9.61 578.418 9.61C578.118 9.61 577.835 9.66333 577.568 9.77C577.308 9.87 577.058 9.99667 576.818 10.15L576.598 9.44C576.838 9.28667 577.122 9.17 577.448 9.09C577.782 9.00333 578.128 8.96 578.488 8.96C579.215 8.96 579.762 9.14 580.128 9.5C580.495 9.85333 580.678 10.3333 580.678 10.94C580.678 11.3733 580.588 11.7767 580.408 12.15C580.235 12.5167 579.995 12.8767 579.688 13.23C579.388 13.5767 579.035 13.92 578.628 14.26C578.222 14.6 577.788 14.9533 577.328 15.32H580.748V16H576.538Z" fill="black"/><path d="M33 79V115" stroke="#23A7DA"/><path d="M33 79V115" stroke="#23A7DA"/><path d="M33 79V115" stroke="#23A7DA"/><path d="M481 79V115" stroke="#23A7DA"/><path d="M481 79V115" stroke="#23A7DA"/><path d="M481 79V115" stroke="#23A7DA"/></g><defs><clipPath id="rnd-f03e116__clip0_1_2"><rect width="700" height="270" fill="white"/></clipPath></defs></svg>


**Example 1**

Two couriers deliver 30 orders. The depot's and couriers' working hours are from 8:00 to 20:00. All orders must be delivered between 11:00 and 19:00. The couriers arrive at the depot at 8:00 and load the orders. Order loading time is the combination of the depot handling time `depot.service_duration_s`, the time to load each order `location.depot_duration_s`, and the time to load orders into the vehicle`vehicle.depot_extra_service_duration_s`. Because `flexible_start_time`=`false`, every courier has additional waiting time.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/e0a784a1-fa597366-b0f7702-4d17285) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/e0a784a1-fa597366-b0f7702-4d17285) ⋅ [View on map](https://yandex.com/courier/mvrp-map#e0a784a1-fa597366-b0f7702-4d17285)

**Example 2**

The same as in example 1, but `flexible_start_time`=`true`. The algorithm calculates the departure time to eliminate any unnecessary waiting. The following parameters are also set:

- `penalize_late_service`=`true`: Penalty for order handling outside the time window.
- `minimize_lateness_risk`=`true`: Minimize the risk of delay.
- `penalty.arrival_after_start`:

    - `average_h` = 2000: Penalty for arriving after the start of the time window.
    - `as_soon_as_possible`=`true`: Ability to promptly start the route.

The start time is now later, and the routes don't have any long waits.

[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/7474cf97-ca629d5-7a231672-985b1cc8) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/7474cf97-ca629d5-7a231672-985b1cc8) ⋅ [View on map](https://yandex.com/courier/mvrp-map#7474cf97-ca629d5-7a231672-985b1cc8)

## Pricing by geofences {#rate-zones}

**When to use**

Use this scenario if the delivery cost depends on the [geofence](https://docs.routeq.com/doc/en/vrp/geozones.md).

**How to implement this scenario**

Set the vehicle or courier cost using the formula with [advanced cost settings](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles-cost.md#custom-route-cost). To determine the order geofence, use the `in_zone` option.

This scenario has some restrictions:
- [The](https://docs.routeq.com/doc/en/vrp/options-geozones.md#ignore-zones) `ignore_zones` option needs to be disabled.
- You can use [public geofences](https://docs.routeq.com/doc/en/vrp/interface-geozones.md#geozones-public) when planning via the API only.
- You need to specify geofences for couriers in the formula and in one or more of the [parameters](https://docs.routeq.com/doc/en/vrp/properties-of-vehicles.md#geozones): `allowed_zones`, `forbidden_zones`, or `incompatible_zones`.

**Example**

In the example, 4 couriers deliver 18 orders. Four of the orders have the optional `vip` tag. There are four geofences in the delivery zone: `North-West`, `South-West`, `North-East`, and `South-East`.

The following pricing plan is used:
- Basic route cost: 5 units per 1 kilometer.
- Delivery cost by zone (regardless of the number of orders):
    - `South-West`: 150 units.
    - `North-West`: 100 units.
    - `South-East`: 100 units.
    - `North-East`: 50 units.

- For orders with the optional `vip` tag, 70 units are added to the basic route cost.

The price is expressed by the following formula:

```
5 * distance_km + 150 * has_location(is_delivery() & in_zone('South-West')) +
100 * has_location(is_delivery() & in_zone('South-East') | in_zone('North-West')) +
50 * has_location(is_delivery() & in_zone('North-East')) + 70 * order_count(has_tag('vip'))
```

The planning results in an optimized route where each courier visits one geofence only. The route cost is:
- For courier 1: `5 * 49.506 + 100 + 70 * 1 = 417.53` units.
- For courier 2: `5 * 39.03 + 50 + 70 * 1 = 315.15` units.
- For courier 3: `5 * 39.405 + 150 = 347.025` units.
- For courier 4: `5 * 34.047 + 100 + 70 * 2 = 410.235` units.


[API request (JSON)](https://courier.yandex.ru/vrs/api/v1/log/request/eff79bef-f6e8f999-a615fef7-87386f4d) ⋅ [API response](https://courier.yandex.ru/vrs/api/v1/result/eff79bef-f6e8f999-a615fef7-87386f4d) ⋅ [View on map](https://yandex.com/courier/mvrp-map#eff79bef-f6e8f999-a615fef7-87386f4d)

{% include [warehouse-feedback](_includes/feedback-81845556eeea.md) %}


